:root {
  --navy-950: #030a13;
  --navy-900: #071321;
  --navy-850: #0a1828;
  --navy-800: #0d1d30;
  --blue-700: #0756b3;
  --blue-600: #0878d8;
  --blue-500: #0ea5e9;
  --cyan-400: #38bdf8;
  --cyan-300: #67d6ff;
  --white: #ffffff;
  --paper: #f5f9fd;
  --ink: #071321;
  --muted: #8ea3b8;
  --muted-dark: #536a7d;
  --line: rgba(148, 183, 213, 0.18);
  --line-light: #dce8f2;
  --shadow-lg: 0 36px 100px rgba(0, 23, 55, 0.34);
  --shadow-md: 0 18px 50px rgba(1, 31, 68, 0.15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background: var(--navy-950);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--white);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan-300);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan-400), transparent);
}
.eyebrow.dark { color: var(--blue-700); }
.eyebrow.dark::before { background: linear-gradient(90deg, var(--blue-600), transparent); }

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-heading h2,
.split-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.section-heading p,
.split-heading p {
  margin: 20px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}
.section-heading.dark h2,
.split-heading.dark h2 { color: var(--ink); }
.section-heading.dark p,
.split-heading.dark p { color: var(--muted-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #03101c;
  background: linear-gradient(135deg, var(--cyan-300), var(--blue-500));
  box-shadow: 0 16px 38px rgba(14, 165, 233, .25);
}
.btn-primary:hover { box-shadow: 0 22px 48px rgba(14, 165, 233, .36); }
.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
}
.btn-secondary:hover { border-color: rgba(56,189,248,.5); background: rgba(56,189,248,.08); }
.btn-dark {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 15px 35px rgba(0,26,59,.18);
}
.btn-dark:hover { background: #10263e; }
.btn-arrow::after { content: "→"; font-size: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(3, 10, 19, .9);
  border-color: rgba(148,183,213,.15);
  backdrop-filter: blur(18px);
}
.header-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name { font-size: 20px; font-weight: 900; letter-spacing: -.025em; }
.brand-name span { color: var(--cyan-400); }
.brand-tagline { margin-top: 5px; color: #7f96aa; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a {
  color: #c3d0dc;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--white); }
.header-cta { min-height: 44px; padding-inline: 18px; font-size: 14px; }
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  background: rgba(255,255,255,.05);
  position: relative;
}
.menu-button span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.menu-button span:nth-child(1) { top: 16px; }
.menu-button span:nth-child(2) { top: 23px; }
.menu-button span:nth-child(3) { top: 30px; }
.menu-button.active span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-button.active span:nth-child(2) { opacity: 0; }
.menu-button.active span:nth-child(3) { top: 23px; transform: rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 999;
  padding: 28px 20px 40px;
  background: rgba(3,10,19,.98);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { width: min(100%, 520px); margin: 0 auto; }
.mobile-menu a:not(.btn) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 2px;
  border-bottom: 1px solid var(--line);
  color: #e7f0f7;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.mobile-menu a:not(.btn)::after { content: "↗"; color: var(--cyan-400); font-size: 18px; }
.mobile-menu .btn { width: 100%; margin-top: 28px; }
.mobile-contact { margin-top: 24px; color: var(--muted); font-size: 14px; }

.hero {
  position: relative;
  min-height: 790px;
  padding: calc(var(--header-h) + 82px) 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(0,143,255,.22), transparent 32%),
    radial-gradient(circle at 15% 65%, rgba(5,86,179,.16), transparent 30%),
    linear-gradient(145deg, #020711 0%, #061321 54%, #06101c 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(91,180,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,180,255,.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  bottom: -280px;
  border: 1px solid rgba(56,189,248,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(56,189,248,.025), 0 0 0 160px rgba(56,189,248,.018);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  align-items: center;
  gap: 68px;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 .gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #fff 5%, #7dd8ff 42%, #0ea5e9 78%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-copy > p {
  max-width: 630px;
  margin: 28px 0 0;
  color: #a7bacb;
  font-size: 19px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: #c3d1dd;
  font-size: 14px;
  font-weight: 700;
}
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(56,189,248,.12);
}
.hero-visual { position: relative; }
.logo-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(144,203,255,.2);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.018));
  box-shadow: var(--shadow-lg);
}
.logo-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.logo-stage img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  object-position: center;
  background: #2d3338;
  opacity: .98;
}
.browser-bar {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  right: 18px;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(4,11,18,.66);
  backdrop-filter: blur(10px);
}
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #35536d; }
.browser-bar i:nth-child(2) { background: #387ca8; }
.browser-bar i:nth-child(3) { background: var(--cyan-400); }
.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(158,215,255,.22);
  border-radius: 15px;
  color: #e8f7ff;
  background: rgba(3,12,22,.82);
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}
.floating-chip::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 15px rgba(56,189,248,.8); }
.floating-chip.one { left: -28px; bottom: 64px; }
.floating-chip.two { right: -26px; top: 92px; }

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -38px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(148,183,213,.15);
  border-radius: 20px;
  background: rgba(8,25,42,.95);
  box-shadow: 0 22px 52px rgba(0,13,30,.34);
  overflow: hidden;
}
.trust-item { padding: 25px 30px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--white); font-size: 17px; }
.trust-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.section { padding: 116px 0; }
.section-light { color: var(--ink); background: var(--paper); }
.section-dark { background: var(--navy-950); }
.section-blue {
  background:
    radial-gradient(circle at 10% 50%, rgba(14,165,233,.16), transparent 32%),
    linear-gradient(145deg, #071522, #0a1f34);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,36,77,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #b8daef; box-shadow: var(--shadow-md); }
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-700);
  background: linear-gradient(135deg, #e1f5ff, #eff8ff);
}
.service-icon svg { width: 25px; height: 25px; }
.service-card h3 { margin: 25px 0 10px; font-size: 22px; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted-dark); font-size: 15px; }
.service-number {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #d5e5f1;
  font-size: 13px;
  font-weight: 900;
}

.portfolio-layout { display: grid; gap: 28px; }
.project-card {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(148,183,213,.16);
  border-radius: var(--radius-xl);
  background: #081728;
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
}
.project-card:nth-child(even) { grid-template-columns: .82fr 1.18fr; }
.project-card:nth-child(even) .project-media { order: 2; }
.project-media {
  min-height: 460px;
  overflow: hidden;
  background: #02070d;
}
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-media img { transform: scale(1.025); }
.project-content { padding: 52px; display: flex; flex-direction: column; justify-content: center; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tag {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(56,189,248,.25);
  border-radius: 999px;
  color: #99dfff;
  background: rgba(56,189,248,.065);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-content h3 { margin: 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.05; letter-spacing: -.04em; }
.project-content p { margin: 20px 0 0; color: var(--muted); font-size: 16px; }
.project-list { display: grid; gap: 10px; margin: 27px 0 0; padding: 0; list-style: none; }
.project-list li { display: flex; gap: 10px; color: #c7d7e3; font-size: 14px; }
.project-list li::before { content: "✓"; color: var(--cyan-400); font-weight: 900; }
.project-note { margin-top: 28px; color: #6f889d; font-size: 12px; }

.process-top {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 60px;
}
.process-intro { color: var(--muted-dark); font-size: 18px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card {
  position: relative;
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.process-card::after {
  content: "";
  position: absolute;
  right: -19px;
  top: 42px;
  width: 20px;
  height: 1px;
  background: #b9cfdf;
}
.process-card:last-child::after { display: none; }
.process-step {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-400));
  font-size: 14px;
  font-weight: 900;
}
.process-card h3 { margin: 70px 0 10px; font-size: 21px; letter-spacing: -.025em; }
.process-card p { margin: 0; color: var(--muted-dark); font-size: 14px; }
.process-link { margin-top: 34px; }

.price-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.price-copy p { color: var(--muted); font-size: 18px; }
.price-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(111,205,255,.26);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(14,165,233,.13), rgba(255,255,255,.025));
  box-shadow: var(--shadow-lg);
}
.price-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -100px;
  border-radius: 50%;
  background: rgba(14,165,233,.18);
  filter: blur(60px);
}
.price-kicker { color: #a8dfff; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.price-main { display: flex; align-items: baseline; gap: 10px; margin-top: 12px; }
.price-main strong { font-size: clamp(50px, 7vw, 76px); line-height: 1; letter-spacing: -.055em; }
.price-main span { color: var(--muted); }
.price-details { display: grid; gap: 0; margin: 31px 0; border-top: 1px solid var(--line); }
.price-row { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); color: #d7e5ee; font-size: 14px; }
.price-row span:last-child { color: var(--muted); text-align: right; }
.price-fine { margin: 18px 0 0; color: #708ba0; font-size: 12px; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
}
.faq-button::after { content: "+"; color: var(--blue-600); font-size: 24px; font-weight: 500; transition: transform .2s ease; }
.faq-item.open .faq-button::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 50px 24px 0; color: var(--muted-dark); }

.contact-section { padding: 116px 0; background: #061321; }
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.contact-copy h2 { margin: 0; font-size: clamp(42px, 6vw, 68px); line-height: 1.02; letter-spacing: -.05em; }
.contact-copy > p { margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.contact-details { display: grid; gap: 14px; margin-top: 34px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
}
.contact-detail-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: var(--cyan-400); background: rgba(56,189,248,.1); }
.contact-detail strong { display: block; font-size: 13px; }
.contact-detail span { display: block; color: var(--muted); font-size: 14px; }
.contact-form {
  padding: 38px;
  border: 1px solid rgba(156,211,255,.18);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.045);
  box-shadow: 0 30px 70px rgba(0,0,0,.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label { color: #dce9f2; font-size: 13px; font-weight: 800; }
.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(158,196,225,.17);
  border-radius: 13px;
  outline: 0;
  color: var(--white);
  background: rgba(1,9,17,.5);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input { height: 52px; padding: 0 15px; }
.field textarea { min-height: 145px; padding: 15px; resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--cyan-400); box-shadow: 0 0 0 4px rgba(56,189,248,.1); }
.field input::placeholder,
.field textarea::placeholder { color: #637b90; }
.form-consent { margin: 2px 0 20px; color: #728a9e; font-size: 12px; }
.contact-form .btn { width: 100%; }

.site-footer { border-top: 1px solid var(--line); background: #02070d; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr .75fr .75fr;
  gap: 60px;
  padding: 68px 0 48px;
}
.footer-brand p { max-width: 440px; margin: 20px 0 0; color: #768da1; font-size: 14px; }
.footer-brand .brand img { width: 56px; height: 56px; }
.footer-column h3 { margin: 0 0 18px; color: #d8e6ef; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: #7f96aa; font-size: 14px; transition: color .2s ease; }
.footer-links a:hover { color: var(--cyan-300); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0 26px;
  border-top: 1px solid var(--line);
  color: #607689;
  font-size: 12px;
}
.footer-bottom a:hover { color: var(--white); }

/* Guide page */
.page-hero {
  padding: calc(var(--header-h) + 100px) 0 90px;
  background:
    radial-gradient(circle at 78% 20%, rgba(14,165,233,.2), transparent 28%),
    linear-gradient(145deg, #020711, #081a2d);
}
.page-hero h1 { margin: 0; max-width: 900px; font-size: clamp(48px, 7vw, 84px); line-height: .98; letter-spacing: -.055em; }
.page-hero p { max-width: 680px; margin: 25px 0 0; color: var(--muted); font-size: 19px; }
.guide-section { color: var(--ink); background: var(--paper); }
.guide-grid { display: grid; gap: 16px; }
.guide-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 34px;
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: var(--white);
}
.guide-number { color: #d3e6f3; font-size: 46px; font-weight: 900; line-height: 1; letter-spacing: -.05em; }
.guide-step h2 { margin: 0; font-size: 25px; letter-spacing: -.03em; }
.guide-step p { margin: 10px 0 0; max-width: 800px; color: var(--muted-dark); }
.guide-cta {
  margin-top: 36px;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), #0b2e50);
}
.guide-cta h2 { margin: 0; font-size: 34px; letter-spacing: -.035em; }
.guide-cta p { color: #a9bdcd; }

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 50px 20px;
  background: radial-gradient(circle at 50% 20%, rgba(14,165,233,.22), transparent 34%), var(--navy-950);
}
.thank-you-card {
  width: min(100%, 680px);
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  text-align: center;
  background: rgba(255,255,255,.04);
}
.thank-you-card img { width: 92px; margin: 0 auto 20px; }
.thank-you-card h1 { margin: 0; font-size: 48px; letter-spacing: -.04em; }
.thank-you-card p { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero { min-height: auto; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 760px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card,
  .project-card:nth-child(even) { grid-template-columns: 1fr; }
  .project-card:nth-child(even) .project-media { order: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card::after { display: none; }
  .price-shell,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .price-copy, .contact-copy { max-width: 760px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 74px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 43px; height: 43px; }
  .brand-name { font-size: 18px; }
  .brand-tagline { display: none; }
  .hero { padding-top: calc(var(--header-h) + 58px); padding-bottom: 72px; }
  .hero h1 { font-size: clamp(44px, 14vw, 62px); }
  .hero-copy > p { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; gap: 12px; }
  .logo-stage img { height: 300px; }
  .floating-chip { font-size: 11px; padding: 10px 12px; }
  .floating-chip.one { left: 12px; bottom: 15px; }
  .floating-chip.two { right: 12px; top: 65px; }
  .trust-strip { margin-top: -22px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 19px 22px; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading p, .split-heading p { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .project-card { min-height: 0; }
  .project-media { min-height: 320px; }
  .project-content { padding: 30px 24px 34px; }
  .process-top { grid-template-columns: 1fr; gap: 15px; margin-bottom: 38px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 0; }
  .process-card h3 { margin-top: 38px; }
  .price-card { padding: 30px 23px; }
  .price-main { display: block; }
  .price-main span { display: block; margin-top: 7px; }
  .price-row { display: grid; gap: 2px; }
  .price-row span:last-child { text-align: left; }
  .contact-section { padding: 82px 0; }
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; padding-top: 50px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { padding-top: calc(var(--header-h) + 72px); }
  .guide-step { grid-template-columns: 1fr; gap: 16px; padding: 25px 22px; }
  .guide-number { font-size: 30px; }
  .guide-cta { padding: 30px 24px; }
  .thank-you-card { padding: 38px 24px; }
  .thank-you-card h1 { font-size: 38px; }
}
