:root {
  --bg: #050b10;
  --bg-soft: #09131a;
  --panel: rgba(14, 25, 34, 0.7);
  --panel-2: rgba(18, 31, 41, 0.82);
  --text: #f6fbff;
  --muted: #9eb4bf;
  --line: rgba(255,255,255,0.08);
  --brand: #1fd5d0;
  --brand-2: #8cf3ee;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(0,0,0,0.34);
  --shadow-soft: 0 14px 28px rgba(0,0,0,0.18);
  --max: 1220px;
  --nav-h: 82px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #04090d 0%, #071018 35%, #050b10 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 0%, rgba(31, 213, 208, 0.16), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(31, 213, 208, 0.10), transparent 20%),
    radial-gradient(circle at 30% 100%, rgba(31, 213, 208, 0.10), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  filter: saturate(115%);
}

.bg-mesh::before,
.bg-mesh::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.26;
  background: radial-gradient(circle, rgba(31, 213, 208, 0.58), transparent 60%);
  animation: floatGlow 16s ease-in-out infinite;
}

.bg-mesh::before {
  top: -12vw;
  left: -10vw;
}

.bg-mesh::after {
  right: -12vw;
  bottom: -12vw;
  animation-delay: -8s;
}

@keyframes floatGlow {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0, 20px, 0) scale(1.08); }
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(18px);
  background: rgba(5, 11, 16, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(31, 213, 208, 0.18));
  transition: transform 220ms ease, filter 220ms ease;
}

.brand-wordmark {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.brand:hover .brand-mark {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 14px 26px rgba(31, 213, 208, 0.26));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent 92%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.hero {
  padding: 42px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h) - 24px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(31,213,208,0.18);
  background: rgba(31,213,208,0.08);
  color: #b9fbf7;
  font-size: 0.88rem;
  margin-bottom: 22px;
}

h1,
.page-title {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 10.5ch;
}

.hero-copy,
.page-copy {
  margin: 24px 0 0;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 650px;
}

.hero-copy strong { color: var(--text); }

.hero-actions,
.centered-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.centered-actions {
  justify-content: center;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-points span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: -0.01em;
  padding: 15px 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-primary {
  color: #041217;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 36px rgba(31,213,208,0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(31,213,208,0.30);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.hero-visual,
.proof-card,
.offer-card,
.service-detail,
.process-step,
.industry-card,
.faq-item,
.cta-panel,
.quote-box,
.contact-panel,
.contact-sidebar .sidebar-card,
.glass-card,
.metric-chip {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  padding: 28px;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(31,213,208,0.14), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(31,213,208,0.09), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle at center, black 44%, transparent 88%);
  mask-image: radial-gradient(circle at center, black 44%, transparent 88%);
}

.hero-logo-main-wrap {
  position: absolute;
  top: 112px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 70px));
  display: grid;
  place-items: center;
}

.hero-logo-main {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,0.4));
  animation: floatLogo 6.5s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.glass-card,
.metric-chip {
  position: absolute;
  border-radius: 20px;
  background: rgba(8, 19, 26, 0.68);
  box-shadow: var(--shadow-soft);
}

.glass-card {
  padding: 18px 18px 16px;
  width: min(260px, 56%);
}

.card-top {
  top: 118px;
  left: 22px;
  animation: floatPanel 6s ease-in-out infinite;
}

.card-bottom {
  right: 22px;
  bottom: 132px;
  animation: floatPanel 7.5s ease-in-out infinite reverse;
}

.metric-a { right: 34px; top: 188px; }
.metric-b { left: 34px; bottom: 34px; }

.metric-chip {
  padding: 16px 18px;
  width: 170px;
}

.metric-chip strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.05em;
}

.metric-chip span,
.glass-card p { color: var(--muted); }

.mini-label,
.label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aef5f0;
}

.logo-mini-3d {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 120px;
  opacity: 0.92;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.3));
}

@keyframes floatPanel {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-8px,0); }
}

.section-shell {
  position: relative;
  isolation: isolate;
  padding: 34px 0;
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 20px 0 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
  border-radius: 34px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head h2,
.cta-copy h2,
.contact-panel h2,
.service-detail h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 13ch;
}

.section-head p,
.cta-copy p,
.contact-panel p,
.service-detail p,
.footer-copy,
.page-copy {
  color: var(--muted);
}

.proof-grid,
.offers-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.proof-grid { grid-template-columns: repeat(4, 1fr); }
.offers-grid { grid-template-columns: repeat(3, 1fr); }
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }

.proof-card,
.offer-card,
.service-detail,
.process-step,
.industry-card,
.faq-item,
.cta-panel,
.quote-box,
.contact-panel,
.contact-sidebar .sidebar-card {
  padding: 24px;
}

.proof-card h3,
.offer-card h3,
.service-detail h2,
.contact-panel h2,
.contact-sidebar h3 {
  margin-top: 0;
}

.stat-number {
  font-size: 2rem;
  font-weight: 820;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.page-main {
  padding-top: 24px;
}

.page-hero {
  padding: 42px 0 20px;
}

.service-stack {
  display: grid;
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.contact-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.94rem;
  color: #d7e8ef;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(31,213,208,0.55);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px rgba(31,213,208,0.10);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.cta-band {
  padding: 16px 0 56px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 10%, rgba(31,213,208,0.18), transparent 26%),
    linear-gradient(135deg, rgba(31,213,208,0.11), rgba(255,255,255,0.03));
  border: 1px solid rgba(31,213,208,0.12);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-panel {
  background: rgba(6, 15, 21, 0.65);
}

.cta-panel .btn {
  width: 100%;
  margin-top: 16px;
}

footer {
  padding: 0 0 40px;
}

.footer-wrap {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img:first-child {
  width: auto;
  height: auto;
  max-width: 260px;
}

.footer-brand img:last-child {
  height: 30px;
  width: auto;
}

.footer-copy {
  margin-top: 14px;
  max-width: 520px;
}

.footer-links a {
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.copyright {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

@media (max-width: 1120px) {
  .hero-grid,
  .cta-inner,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 24px)); }

  .nav {
    padding: 14px 0;
    min-height: auto;
    flex-wrap: wrap;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-wordmark {
    height: 22px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
    padding: 18px;
  }

  .hero-logo-main-wrap {
    top: 100px;
    width: calc(100% - 40px);
  }

  .glass-card {
    width: min(250px, calc(100% - 36px));
  }

  .card-top {
    top: auto;
    left: 18px;
    bottom: 168px;
  }

  .card-bottom {
    right: 18px;
    bottom: 88px;
  }

  .metric-a {
    top: 136px;
    right: 18px;
  }

  .metric-b {
    left: 18px;
    bottom: 18px;
  }

  .logo-mini-3d {
    display: none;
  }

  .proof-grid,
  .offers-grid,
  .footer-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .centered-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .proof-card,
  .offer-card,
  .service-detail,
  .contact-panel,
  .contact-sidebar .sidebar-card,
  .cta-panel {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* GRID LAYOUT */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-col {
    order: -1;
    display: flex;
    justify-content: center;
  }
}

/* LOGO COLUMN */
.hero-logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 3D WRAP (adds depth) */
.logo-3d-wrap {
  perspective: 1000px;
}

/* ROTATING LOGO */
.logo-3d {
  width: 280px;
  max-width: 100%;
  animation: rotate3d 10s linear infinite;
  transform-style: preserve-3d;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* HERO GRID + RIGHT-SIDE LOGO */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 56px;
}

.hero-copy-col {
  max-width: 680px;
}

.hero-logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-3d-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  width: 100%;
  min-height: 320px;
}

.logo-3d-wrap::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,213,208,0.22), transparent 70%);
  filter: blur(34px);
  z-index: 0;
}

.logo-3d {
  position: relative;
  z-index: 1;
  width: min(320px, 100%);
  height: auto;
  display: block;
  transform-style: preserve-3d;
  backface-visibility: visible;
  animation: rotate3d 10s linear infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.40));
}

@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy-col {
    max-width: 100%;
  }

  .hero-logo-col {
    justify-content: center;
  }

  .logo-3d-wrap {
    min-height: 220px;
  }

  .logo-3d {
    width: min(240px, 72vw);
  }
}

.hero-logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-3d-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  width: 100%;
  min-height: 360px;
  isolation: isolate;
}

.logo-3d-wrap::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,213,208,0.18), transparent 70%);
  filter: blur(34px);
  z-index: 0;
}

.logo-3d {
  position: relative;
  z-index: 2;
  width: min(320px, 100%);
  height: auto;
  display: block;
  transform-style: preserve-3d;
  backface-visibility: visible;
  animation: rotate3d 10s linear infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.40));
}

@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* PARTICLES */
.particle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(140,243,238,0.95) 0%, rgba(31,213,208,0.45) 45%, rgba(31,213,208,0) 75%);
  box-shadow: 0 0 18px rgba(31,213,208,0.18);
  opacity: 0.75;
}

.particle-1 {
  width: 10px;
  height: 10px;
  top: 16%;
  left: 20%;
  animation: floatParticle1 7s ease-in-out infinite;
}

.particle-2 {
  width: 6px;
  height: 6px;
  top: 26%;
  right: 18%;
  animation: floatParticle2 9s ease-in-out infinite;
}

.particle-3 {
  width: 14px;
  height: 14px;
  bottom: 18%;
  left: 18%;
  animation: floatParticle3 8.5s ease-in-out infinite;
}

.particle-4 {
  width: 8px;
  height: 8px;
  bottom: 24%;
  right: 14%;
  animation: floatParticle4 10s ease-in-out infinite;
}

.particle-5 {
  width: 5px;
  height: 5px;
  top: 48%;
  left: 10%;
  animation: floatParticle5 6.5s ease-in-out infinite;
}

.particle-6 {
  width: 12px;
  height: 12px;
  top: 54%;
  right: 10%;
  animation: floatParticle6 11s ease-in-out infinite;
}

@keyframes floatParticle1 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 0.55; }
  50% { transform: translate3d(18px,-20px,0) scale(1.2); opacity: 0.95; }
}

@keyframes floatParticle2 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 0.45; }
  50% { transform: translate3d(-14px,22px,0) scale(1.25); opacity: 0.9; }
}

@keyframes floatParticle3 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 0.6; }
  50% { transform: translate3d(22px,-12px,0) scale(1.15); opacity: 1; }
}

@keyframes floatParticle4 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 0.5; }
  50% { transform: translate3d(-18px,-18px,0) scale(1.2); opacity: 0.85; }
}

@keyframes floatParticle5 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 0.35; }
  50% { transform: translate3d(16px,14px,0) scale(1.3); opacity: 0.75; }
}

@keyframes floatParticle6 {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 0.5; }
  50% { transform: translate3d(-20px,10px,0) scale(1.18); opacity: 0.9; }
}

@media (max-width: 900px) {
  .logo-3d-wrap {
    min-height: 240px;
  }

  .logo-3d {
    width: min(240px, 72vw);
  }
}

/* CENTERED FOOTER LOGO */
.centered-logo {
  justify-content: center;
  margin-bottom: 18px;
}

.centered-logo img {
  width: 220px; /* adjust size here */
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* CENTERED COPY */
.centered-copy {
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .footer-links {
    justify-content: center;
    text-align: center;
  }
}

.centered-logo img {
  filter: drop-shadow(0 10px 25px rgba(31,213,208,0.25));
}

.footer-grid.footer-grid-two {
  grid-template-columns: 1.3fr 1fr;
  align-items: start;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand.centered-logo img {
  width: 220px;
  height: 220px;
}

.centered-logo {
  justify-content: center;
  margin-bottom: 18px;
  width: 100%;
}

.centered-logo img {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 25px rgba(31, 213, 208, 0.25));
}

.centered-copy {
  text-align: center;
  margin: 0 auto;
  max-width: 560px;
}

.footer-policy-block strong {
  display: block;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.footer-links li {
  margin: 0;
}

.footer-links li::before {
  content: none !important;
}

.footer-links a {
  color: var(--muted);
  transition: color 160ms ease;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1120px) {
  .footer-grid.footer-grid-two {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-policy-block {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

.footer-grid.footer-grid-two {
  grid-template-columns: 1.3fr 1fr;
  align-items: start;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-policy-block {
  padding-top: 70px;
}

.multi-step-form {
  margin-top: 24px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.step-sub {
  margin: 0 0 22px;
  color: var(--muted);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.option-grid-services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-card {
  position: relative;
  display: flex;
  align-items: stretch;
  cursor: pointer;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card span {
  width: 100%;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
  text-align: center;
  font-weight: 600;
}

.option-card:hover span {
  transform: translateY(-2px);
  border-color: rgba(31,213,208,0.28);
  background: rgba(255,255,255,0.05);
}

.option-card input:checked + span {
  border-color: rgba(31,213,208,0.72);
  background: linear-gradient(180deg, rgba(31,213,208,0.20), rgba(255,255,255,0.04));
  box-shadow: 0 0 0 4px rgba(31,213,208,0.10), var(--shadow-soft);
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.consent-text {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-message {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.form-success {
  background: rgba(31,213,208,0.10);
  color: #c8fffb;
}

.form-error {
  background: rgba(255,255,255,0.05);
  color: #ffd3d3;
}

@media (max-width: 760px) {
  .option-grid,
  .option-grid-services,
  .field-row {
    grid-template-columns: 1fr;
  }

  .step-actions .btn {
    width: 100%;
  }
}

.thank-you-page {
  padding: 40px 0 80px;
}

.thank-you-shell {
  padding-top: 48px;
}

.thank-you-card {
  position: relative;
  padding: 42px 34px;
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.thank-you-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(31,213,208,0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.thank-you-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.thank-you-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  color: #041217;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 40px rgba(31,213,208,0.22);
}

.thank-you-title {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-copy {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  text-align: left;
}

.thank-you-step {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-soft);
}

.thank-you-step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.thank-you-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .thank-you-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .thank-you-card {
    padding: 30px 20px;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}

.legal-card {
  padding: 32px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-card h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.legal-card h3 {
  margin: 24px 0 10px;
  font-size: 1.05rem;
  color: var(--text);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card p {
  margin: 0 0 16px;
}

.legal-card ul {
  margin: 0 0 18px 0;
  padding-left: 20px;
}

.legal-card li {
  margin-bottom: 10px;
}

.legal-card a {
  color: var(--brand-2);
}

.legal-card a:hover {
  color: var(--text);
}

@media (max-width: 760px) {
  .legal-card {
    padding: 24px 20px;
  }
}