:root {
  --ink: #101828;
  --muted: #667085;
  --paper: #f5f7fb;
  --panel: #ffffff;
  --line: #e4e7ec;
  --teal: #0891b2;
  --cyan: #67e8f9;
  --orange: #f97316;
  --green: #16a34a;
  --blue: #2563eb;
  --dark: #07111d;
  --shadow: 0 18px 44px rgba(13, 25, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.asset-marquee {
  position: relative;
  z-index: 15;
  overflow: hidden;
  padding: 104px 0 18px;
  background:
    linear-gradient(90deg, rgba(6, 182, 212, 0.22), rgba(34, 197, 94, 0.18), rgba(249, 115, 22, 0.18), rgba(239, 68, 68, 0.16)),
    #06111f;
}

.asset-marquee::before,
.asset-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.asset-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #06111f, transparent);
}

.asset-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #06111f, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marqueeMove 42s linear infinite;
}

.asset-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.asset-marquee figure {
  position: relative;
  flex: 0 0 320px;
  height: 148px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.asset-marquee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.22) saturate(1.22) contrast(0.96) hue-rotate(5deg);
}

.asset-marquee figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  background: rgba(6, 17, 31, 0.68);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(9, 16, 28, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav > a,
.nav-group > a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-group {
  position: relative;
  padding: 14px 0;
}

.nav-menu {
  position: absolute;
  top: 44px;
  left: 50%;
  display: grid;
  min-width: 300px;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
}

.nav-menu a:hover {
  background: var(--paper);
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: brightness(1.2) saturate(1.12) contrast(0.95) hue-rotate(4deg);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(2, 8, 13, 0.04) 0%, rgba(2, 8, 13, 0.02) 38%, rgba(2, 8, 13, 0.08) 100%),
    radial-gradient(circle at 78% 42%, rgba(249, 115, 22, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(2, 8, 13, 0.02), rgba(2, 8, 13, 0.12));
}

.hero-content {
  position: relative;
  width: min(560px, calc(100% - 36px));
  margin-left: clamp(420px, 43vw, 760px);
  padding-top: 132px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(28px, 3.1vw, 46px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.button.primary {
  color: #061017;
  background: var(--cyan);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 48px;
}

.hero-stats span {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 25px;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.about-copy p,
.section-heading + p {
  margin: 0;
}

.services,
.industries,
.plans,
.process {
  border-top: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 0 22px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(13, 25, 38, 0.04);
}

.service-media {
  width: calc(100% + 44px);
  height: 168px;
  margin: 0 -22px 18px;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
  filter: brightness(1.24) saturate(1.18) contrast(0.96) hue-rotate(5deg);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--dark);
  font-weight: 900;
}

.service-card:nth-child(2) .service-icon {
  background: var(--teal);
}

.service-card:nth-child(3) .service-icon {
  background: var(--green);
}

.service-card:nth-child(4) .service-icon {
  background: var(--orange);
}

.service-card:nth-child(5) .service-icon {
  background: var(--blue);
}

.service-card:nth-child(6) .service-icon {
  background: #7c3aed;
}

.service-card:nth-child(7) .service-icon {
  background: #dc2626;
}

.service-card:nth-child(8) .service-icon {
  background: #475569;
}

.service-card p,
.industry-grid p,
.benefits p,
.plan-grid p,
.plan-grid li,
.timeline span,
.contact-band p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 900;
}

.cta-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #07111d, #0f3b46);
  box-shadow: var(--shadow);
}

.cta-strip .eyebrow {
  color: var(--cyan);
}

.quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.quick-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.quick-form input,
.quick-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.quick-form select option {
  color: var(--ink);
}

.quick-form input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.industry-grid article {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(103, 232, 249, 0.16), rgba(255, 255, 255, 0) 58%),
    var(--dark);
}

.industry-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
}

.benefits {
  display: grid;
  gap: 16px;
}

.benefits > div {
  padding: 24px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(13, 25, 38, 0.04);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.plan-grid article {
  min-height: 340px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.plan-grid .featured {
  border-color: rgba(249, 115, 22, 0.48);
  box-shadow: var(--shadow);
}

.plan-grid article > span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--dark);
  font-size: 13px;
  font-weight: 900;
}

.plan-grid .featured > span {
  background: var(--orange);
}

.plan-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 24px 0 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  min-height: 210px;
  padding: 22px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  counter-increment: step;
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 42px;
  color: var(--cyan);
  font-weight: 900;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 92px;
}

.numbers div {
  min-height: 138px;
  display: grid;
  align-content: center;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0b1726, #10313a);
}

.numbers strong {
  font-size: 40px;
  line-height: 1;
}

.numbers span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 40px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 28px;
  padding: 46px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-band h2 {
  margin-bottom: 14px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  align-content: center;
}

.contact-panel a,
.contact-panel span {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 48px clamp(18px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #07111d;
}

.site-footer h3 {
  color: #fff;
  font-size: 16px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 10px;
}

.footer-brand {
  color: #fff;
  margin-bottom: 18px;
}

@media (max-width: 1100px) {
  .service-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .site-nav a,
  .nav-group > a {
    padding: 12px;
  }

  .nav-group {
    padding: 0;
  }

  .nav-menu {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    margin: 0 8px 8px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: var(--paper);
  }

  .about,
  .cta-strip,
  .split,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-form,
  .plan-grid,
  .numbers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 98vh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 96px;
  }

  h1 {
    font-size: 39px;
  }

  .hero-text {
    font-size: 16px;
  }

  .button,
  .quick-form .button {
    width: 100%;
  }

  .hero-stats,
  .service-grid,
  .quick-form,
  .industry-grid,
  .plan-grid,
  .timeline,
  .numbers {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .service-card,
  .timeline li,
  .industry-grid article,
  .plan-grid article,
  .numbers div {
    min-height: auto;
  }

  .cta-strip,
  .contact-band {
    padding: 28px;
  }

}

/* Bright corporate theme pass */
body {
  background:
    radial-gradient(circle at 12% 18%, rgba(6, 182, 212, 0.22), transparent 28%),
    radial-gradient(circle at 38% 34%, rgba(34, 197, 94, 0.2), transparent 30%),
    radial-gradient(circle at 64% 28%, rgba(250, 204, 21, 0.2), transparent 28%),
    radial-gradient(circle at 82% 44%, rgba(249, 115, 22, 0.2), transparent 30%),
    radial-gradient(circle at 92% 68%, rgba(239, 68, 68, 0.16), transparent 28%),
    linear-gradient(180deg, #e8fbff 0, #ffffff 520px, #f4fbff 1000px, #fff7ed 100%);
}

.site-header {
  top: 14px;
  left: clamp(14px, 3vw, 36px);
  right: clamp(14px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(6, 17, 29, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.96);
}

.brand-mark {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #0891b2, #22c55e 58%, #f97316);
  box-shadow: 0 12px 24px rgba(8, 145, 178, 0.28);
}

.image-mark {
  position: relative;
  overflow: hidden;
  background: #07111d;
}

.image-mark img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transform: none;
}

.site-nav > a,
.nav-group > a {
  position: relative;
  color: #1f2937;
  opacity: 1;
}

.site-nav > a::after,
.nav-group > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav > a:hover::after,
.nav-group > a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 96vh;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 16px;
  z-index: 2;
  background: linear-gradient(90deg, #06b6d4, #22c55e, #f97316, #ef4444);
}

.hero-image {
  filter: saturate(1.24) contrast(1.04) brightness(1.08);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 20, 32, 0.88) 0%, rgba(3, 38, 51, 0.68) 40%, rgba(255, 255, 255, 0.06) 82%),
    linear-gradient(135deg, rgba(8, 145, 178, 0.34), rgba(249, 115, 22, 0.24) 58%, rgba(34, 197, 94, 0.2));
}

.hero .eyebrow,
.cta-strip .eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 8px;
  color: #05202b;
  background: #a7f3d0;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.2);
}

h1 {
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.button.primary {
  color: #101828;
  background: linear-gradient(135deg, #facc15, #fb923c 48%, #67e8f9);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.32);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-stats span {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.section-heading .eyebrow {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  color: #075985;
  background: #cffafe;
}

.about {
  position: relative;
}

main {
  background:
    linear-gradient(90deg, rgba(6, 182, 212, 0.16), rgba(34, 197, 94, 0.14) 28%, rgba(250, 204, 21, 0.13) 52%, rgba(249, 115, 22, 0.13) 74%, rgba(239, 68, 68, 0.12)),
    radial-gradient(circle at 18% 9%, rgba(6, 182, 212, 0.26), transparent 22%),
    radial-gradient(circle at 78% 17%, rgba(249, 115, 22, 0.22), transparent 24%),
    radial-gradient(circle at 52% 42%, rgba(34, 197, 94, 0.16), transparent 26%),
    radial-gradient(circle at 88% 62%, rgba(239, 68, 68, 0.16), transparent 24%),
    linear-gradient(180deg, #f7fdff 0, #fffaf3 45%, #f7fbff 100%);
}

main > section:not(.hero) {
  position: relative;
  z-index: 1;
}

main > section:not(.hero)::after {
  content: "";
  position: absolute;
  inset: 10px -18px;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(6, 182, 212, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(249, 115, 22, 0.18) 0 1px, transparent 2px);
  background-position: 0 0, 34px 26px, 72px 58px;
  background-size: 120px 120px, 150px 150px, 180px 180px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.about,
.services,
.industries,
.split,
.plans,
.process {
  padding-left: clamp(22px, 4vw, 48px);
  padding-right: clamp(22px, 4vw, 48px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    linear-gradient(90deg, rgba(6, 182, 212, 0.08), rgba(34, 197, 94, 0.07), rgba(249, 115, 22, 0.08), rgba(239, 68, 68, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.about::before,
.services::before,
.industries::before,
.plans::before {
  content: "";
  display: block;
  width: 86px;
  height: 6px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #06b6d4, #22c55e, #f97316);
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 0;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, #06b6d4, #22c55e);
}

.service-card:nth-child(2)::before {
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.service-card:nth-child(3)::before {
  background: linear-gradient(90deg, #22c55e, #84cc16);
}

.service-card:nth-child(4)::before {
  background: linear-gradient(90deg, #f97316, #facc15);
}

.service-card:nth-child(5)::before {
  background: linear-gradient(90deg, #ef4444, #f97316);
}

.service-card:nth-child(6)::before {
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
}

.service-card:nth-child(7)::before {
  background: linear-gradient(90deg, #dc2626, #fb7185);
}

.service-card:nth-child(8)::before {
  background: linear-gradient(90deg, #475569, #22c55e);
}

.service-card:hover,
.plan-grid article:hover,
.industry-grid article:hover {
  transform: translateY(-4px);
}

.service-card,
.plan-grid article,
.industry-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.plan-grid article:hover {
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.service-card a {
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 8px;
  color: #064e3b;
  background: #d1fae5;
}

.cta-strip {
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.94), rgba(34, 197, 94, 0.9) 48%, rgba(249, 115, 22, 0.95)),
    #0891b2;
  box-shadow: 0 26px 58px rgba(8, 145, 178, 0.28);
}

.cta-strip h2 {
  color: #05202b;
}

.quick-form input,
.quick-form select {
  border-color: rgba(255, 255, 255, 0.72);
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
}

.quick-form input::placeholder {
  color: #64748b;
}

.industry-grid article {
  color: #0f172a;
  background: linear-gradient(135deg, #cffafe, #ffffff 62%, #fed7aa);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.industry-grid article:nth-child(2) {
  background: linear-gradient(135deg, #dcfce7, #ffffff 58%, #bfdbfe);
}

.industry-grid article:nth-child(3) {
  background: linear-gradient(135deg, #fef3c7, #ffffff 58%, #bae6fd);
}

.industry-grid article:nth-child(4) {
  background: linear-gradient(135deg, #fee2e2, #ffffff 58%, #ddd6fe);
}

.industry-grid p {
  color: #475569;
}

.benefits > div {
  border-left: 0;
  border-top: 6px solid var(--teal);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.benefits > div:nth-child(2) {
  border-top-color: var(--orange);
}

.benefits > div:nth-child(3) {
  border-top-color: var(--green);
}

.plan-grid article {
  border: 0;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.plan-grid .featured {
  background: linear-gradient(145deg, #fff7ed, #ffffff 50%, #cffafe);
  box-shadow: 0 26px 58px rgba(249, 115, 22, 0.18);
}

.timeline li {
  color: #0f172a;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.timeline li::before {
  color: #fff;
  width: fit-content;
  margin-bottom: 42px;
  padding: 7px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0891b2, #22c55e);
}

.timeline li:nth-child(2)::before {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.timeline li:nth-child(3)::before {
  background: linear-gradient(135deg, #f97316, #facc15);
}

.timeline li:nth-child(4)::before {
  background: linear-gradient(135deg, #22c55e, #84cc16);
}

.timeline li:nth-child(5)::before {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.timeline span {
  color: var(--muted);
}

.numbers div {
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.numbers div:nth-child(1) {
  background: linear-gradient(135deg, #0891b2, #22c55e);
}

.numbers div:nth-child(2) {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.numbers div:nth-child(3) {
  background: linear-gradient(135deg, #f97316, #facc15);
}

.numbers div:nth-child(4) {
  background: linear-gradient(135deg, #ef4444, #7c3aed);
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(207, 250, 254, 0.88), rgba(255, 255, 255, 0.94) 58%, rgba(254, 215, 170, 0.9)),
    #fff;
}

.contact-panel a,
.contact-panel span {
  border: 0;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(8, 145, 178, 0.22), rgba(249, 115, 22, 0.16)),
    #06111f;
}

.floating-contact {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(18px, 4vw, 36px);
  z-index: 40;
  display: grid;
  gap: 14px;
  animation: contactSlideIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both 420ms;
}

.floating-contact.is-hidden {
  pointer-events: none;
  animation: contactSlideOut 260ms ease both;
}

.floating-close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #111827;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
}

.floating-action {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-action:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.3);
}

.floating-action svg {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
}

.whatsapp-action {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.call-action {
  background: linear-gradient(135deg, #7dd3fc, #0ea5e9);
}

.pulse-ring,
.floating-action::before,
.floating-action::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
}

.pulse-ring {
  border: 2px solid currentColor;
  opacity: 0.5;
  animation: contactPulse 1.9s ease-out infinite;
}

.floating-action::before {
  background: rgba(255, 255, 255, 0.18);
  animation: contactGlow 2.2s ease-in-out infinite;
}

.floating-action::after {
  border: 1px solid currentColor;
  opacity: 0.24;
  animation: contactPulse 1.9s ease-out infinite 620ms;
}

@keyframes contactSlideIn {
  from {
    opacity: 0;
    transform: translateX(120px) translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes contactSlideOut {
  to {
    opacity: 0;
    transform: translateX(110px);
  }
}

@keyframes contactPulse {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}

@keyframes contactGlow {
  0%,
  100% {
    transform: scale(0.86);
    opacity: 0.16;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.32;
  }
}

@media (max-width: 920px) {
  .site-header {
    top: 10px;
  }

  .site-nav {
    top: 72px;
  }
}

@media (max-width: 640px) {
  .floating-contact {
    right: 16px;
    bottom: 18px;
    gap: 12px;
  }

  .floating-action {
    width: 56px;
    height: 56px;
  }

  .floating-action svg {
    width: 31px;
    height: 31px;
  }
}

/* Final asset marquee and hero placement overrides */
@media (max-width: 920px) {
  .asset-marquee {
    padding-top: 90px;
  }

  .asset-marquee figure {
    flex-basis: 260px;
    height: 122px;
  }

  .hero-content {
    width: min(500px, calc(100% - 36px));
    margin-left: auto;
    margin-right: 18px;
  }
}

@media (max-width: 640px) {
  .asset-marquee {
    padding-top: 86px;
  }

  .asset-marquee figure {
    flex-basis: 230px;
    height: 108px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-image {
    object-position: 42% center;
  }

  .hero-content {
    width: min(340px, calc(100% - 36px));
    margin: 0 auto;
    padding-top: 220px;
  }

  h1 {
    font-size: 27px;
  }
}

/* Final brightness pass: reduce the heavy dark-blue cast on supplied images. */
.hero-image {
  filter: brightness(1.24) saturate(1.12) contrast(0.94) hue-rotate(5deg);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(1, 11, 20, 0.03) 0%, rgba(1, 11, 20, 0.02) 38%, rgba(1, 11, 20, 0.08) 100%),
    radial-gradient(circle at 75% 42%, rgba(249, 115, 22, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(1, 11, 20, 0.01), rgba(1, 11, 20, 0.1));
}

.asset-marquee img,
.service-media {
  filter: brightness(1.25) saturate(1.2) contrast(0.95) hue-rotate(5deg);
}

.service-card {
  min-height: 430px;
}

/* Glass header and no numeric badges on service cards. */
.site-header {
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(42, 71, 126, 0.48), rgba(12, 30, 58, 0.36) 42%, rgba(13, 148, 136, 0.26)),
    rgba(10, 18, 34, 0.38);
  box-shadow:
    0 18px 42px rgba(3, 10, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px) saturate(1.32);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 24%, rgba(103, 232, 249, 0.42), transparent 18%),
    radial-gradient(circle at 78% 34%, rgba(249, 115, 22, 0.28), transparent 18%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.34) 42%, transparent 54%);
  opacity: 0.86;
  transform: translateX(-115%);
  animation: headerSpark 5.8s ease-in-out infinite;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(103, 232, 249, 0.55) 0 1px, transparent 1.8px);
  background-position: 20px 18px, 90px 42px;
  background-size: 120px 80px, 170px 100px;
  opacity: 0.18;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-switcher {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.language-current,
.language-option,
.theme-toggle {
  display: inline-flex;
  min-width: 42px;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.language-current {
  padding: 0 8px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(9, 22, 39, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  padding: 0 7px;
}

.language-option span {
  font-size: 15px;
}

.flag-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.flag-ru {
  background: linear-gradient(180deg, #fff 0 33.33%, #1c57a7 33.33% 66.66%, #d52b1e 66.66%);
}

.flag-kg {
  background: #e11d2e;
}

.flag-kg::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: #facc15;
}

.flag-kg::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid #e11d2e;
  border-radius: 999px;
}

.flag-en {
  background:
    linear-gradient(33deg, transparent 42%, #fff 42% 48%, #c8102e 48% 54%, #fff 54% 60%, transparent 60%),
    linear-gradient(147deg, transparent 42%, #fff 42% 48%, #c8102e 48% 54%, #fff 54% 60%, transparent 60%),
    linear-gradient(90deg, transparent 38%, #fff 38% 45%, #c8102e 45% 55%, #fff 55% 62%, transparent 62%),
    linear-gradient(180deg, transparent 38%, #fff 38% 45%, #c8102e 45% 55%, #fff 55% 62%, transparent 62%),
    #012169;
}

.language-option.is-active,
.theme-toggle.is-dark {
  color: #fff;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.72), rgba(30, 64, 175, 0.78));
  border-color: rgba(186, 230, 253, 0.72);
}

.theme-toggle {
  min-width: 40px;
  overflow: hidden;
}

.theme-moon {
  display: none;
}

.theme-toggle.is-dark .theme-sun {
  display: none;
}

.theme-toggle.is-dark .theme-moon {
  display: inline;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(40, 68, 118, 0.56), rgba(8, 22, 44, 0.42) 44%, rgba(8, 145, 178, 0.3)),
    rgba(8, 16, 31, 0.46);
}

.brand small,
.site-nav > a,
.nav-group > a {
  color: rgba(255, 255, 255, 0.9);
}

.brand strong {
  color: #fff;
}

.service-icon {
  display: none;
}

.timeline li::before {
  content: "";
  width: 64px;
  height: 7px;
  margin-bottom: 42px;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #06b6d4, #22c55e, #f97316);
}

.service-media {
  margin-bottom: 22px;
}

@keyframes headerSpark {
  0%,
  40% {
    transform: translateX(-115%);
  }

  70%,
  100% {
    transform: translateX(115%);
  }
}

.floating-close {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.34);
  border-radius: 999px;
  color: #111827;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.hero .eyebrow {
  display: none;
}

.button.primary {
  color: #301505;
  background: linear-gradient(135deg, #fed7aa, #fdba74 52%, #fb923c);
  box-shadow: 0 16px 32px rgba(251, 146, 60, 0.24);
}

.button.primary:hover {
  background: linear-gradient(135deg, #ffedd5, #fed7aa 48%, #fb923c);
}

.floating-action {
  border: 1px solid rgba(255, 255, 255, 0.56);
}

body.dark-mode {
  color: #e5eefb;
  background:
    radial-gradient(circle at 12% 18%, rgba(6, 182, 212, 0.2), transparent 28%),
    radial-gradient(circle at 78% 30%, rgba(249, 115, 22, 0.14), transparent 30%),
    linear-gradient(180deg, #07111d 0, #0d1726 55%, #06111f 100%);
}

body.dark-mode main {
  background:
    linear-gradient(90deg, rgba(6, 182, 212, 0.12), rgba(34, 197, 94, 0.1), rgba(249, 115, 22, 0.1)),
    radial-gradient(circle at 18% 9%, rgba(6, 182, 212, 0.18), transparent 22%),
    radial-gradient(circle at 78% 17%, rgba(249, 115, 22, 0.13), transparent 24%),
    linear-gradient(180deg, #07111d 0, #0d1726 45%, #06111f 100%);
}

body.dark-mode .about,
body.dark-mode .services,
body.dark-mode .industries,
body.dark-mode .split,
body.dark-mode .plans,
body.dark-mode .process {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(8, 19, 34, 0.64)),
    linear-gradient(90deg, rgba(6, 182, 212, 0.08), rgba(34, 197, 94, 0.07), rgba(249, 115, 22, 0.08));
  color: #e5eefb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.dark-mode .service-card,
body.dark-mode .benefits > div,
body.dark-mode .plan-grid article,
body.dark-mode .timeline li,
body.dark-mode .contact-band {
  color: #e5eefb;
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .service-card p,
body.dark-mode .benefits p,
body.dark-mode .plan-grid p,
body.dark-mode .plan-grid li,
body.dark-mode .timeline span,
body.dark-mode .contact-band p,
body.dark-mode .about-copy,
body.dark-mode .site-footer p {
  color: rgba(226, 232, 240, 0.72);
}

body.dark-mode .contact-panel a,
body.dark-mode .contact-panel span {
  color: #e5eefb;
  background: rgba(2, 8, 23, 0.68);
}

/* Final close-button polish: centered black x, white circle, thin crisp outline. */
.floating-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0 0 2px;
  border: 1px solid rgba(17, 24, 39, 0.38);
  color: #111827;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

/* Mobile polish: compact header, clean menu, readable service list. */
@media (max-width: 920px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "brand controls toggle"
      "nav nav nav";
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    overflow: visible;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .brand strong {
    font-size: 18px;
    line-height: 1.08;
  }

  .brand small {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    white-space: nowrap;
  }

  .header-controls {
    grid-area: controls;
    justify-self: end;
    gap: 6px;
  }

  .language-switcher {
    border-radius: 8px;
  }

  .language-current,
  .language-option,
  .theme-toggle {
    width: 42px;
    min-width: 42px;
    height: 36px;
    padding: 0;
    border-radius: 8px;
    font-size: 12px;
  }

  .language-current b,
  .language-option b {
    display: none;
  }

  .flag-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
  }

  .language-menu {
    right: 0;
    top: calc(100% + 7px);
    width: 54px;
    gap: 6px;
    padding: 6px;
  }

  .language-menu .language-option b {
    display: block;
    font-size: 11px;
  }

  .language-menu .language-option {
    width: 42px;
    gap: 3px;
  }

  .language-menu .flag-icon {
    width: 18px;
    height: 18px;
  }

  .theme-toggle {
    font-size: 17px;
  }

  .nav-toggle {
    grid-area: toggle;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 9px;
    border-color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span {
    width: 22px;
    margin: 0;
  }

  .site-nav {
    grid-area: nav;
    position: static;
    display: none;
    width: 100%;
    margin-top: 2px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: #fff;
    background: rgba(4, 14, 27, 0.64);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 34px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    display: grid;
    gap: 6px;
  }

  .site-nav > a,
  .nav-group > a {
    display: block;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-group {
    display: grid;
    gap: 6px;
    padding: 0;
  }

  .nav-menu {
    position: static;
    display: grid;
    min-width: 0;
    gap: 6px;
    margin: 0;
    padding: 0 0 0 10px;
    border: 0;
    color: #fff;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    min-height: 40px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.05);
    font-size: 12px;
    font-weight: 800;
  }

  .asset-marquee {
    padding-top: 104px;
  }
}

@media (max-width: 640px) {
  .site-header {
    left: 8px;
    right: 8px;
    gap: 8px;
    padding: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand strong {
    max-width: 92px;
    font-size: 17px;
  }

  .brand small {
    display: none;
  }

  .language-current,
  .language-option,
  .theme-toggle,
  .nav-toggle {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .asset-marquee {
    padding-top: 94px;
    padding-bottom: 12px;
  }

  .asset-marquee figure {
    flex-basis: 240px;
    height: 112px;
  }

  .asset-marquee figcaption {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 7px 9px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    align-items: end;
    padding: 230px 0 38px;
  }

  .hero-image {
    object-position: 47% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 0;
  }

  h1 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.12;
  }

  .hero-text {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
  }

  .button,
  .quick-form .button {
    min-height: 50px;
    width: 100%;
    padding: 13px 14px;
    border-radius: 8px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-grid,
  .industry-grid,
  .quick-form,
  .plan-grid,
  .numbers,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .floating-contact {
    right: 12px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-action {
    width: 58px;
    height: 58px;
  }

  .floating-close {
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 380px) {
  .nav-menu {
    grid-template-columns: 1fr;
  }

  .nav-menu a {
    font-size: 13px;
  }
}
