/* IAccess website UI kit styles */
/* === Design tokens (inlined from colors_and_type.css for portable deploy) === */
/* IAccess — Design Tokens
   Brand: IAccess (Bogotá). Single source of truth for color, type, spacing.
*/

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* === BRAND COLORS === */
  --ia-navy:    #0A0E1A;  /* Primary dark surface */
  --ia-mint:    #00CFD8;  /* Primary accent — cyan (latest brand) */
  --ia-cyan:    #00DCE6;  /* Bright cyan for highlights */
  --ia-cyan-soft: #5EE9F0; /* Soft readable cyan on dark */
  --ia-amber:   #FF9A3D;  /* Secondary warm accent (CTAs on cream, highlights) */
  --ia-blue:    #29B4FF;  /* Tech blue / mid-stop in gradients */
  --ia-surface: #FAF5EC;  /* Cream / off-white sections */
  --ia-cream:   #FAF5EC;  /* Alias */
  --ia-paper:   #FFFCF6;  /* Lighter cream for cards on cream */
  --ia-text:    #1A1A2E;  /* Body copy on light */
  --ia-red:     #FF4D4D;  /* Access denied, warnings only */

  /* === NEUTRAL SCALE === */
  --ia-n-50:  #FAF5EC;
  --ia-n-100: #F1EBE0;
  --ia-n-200: #DDD5C5;
  --ia-n-300: #B4ADA0;
  --ia-n-400: #8B8579;
  --ia-n-500: #5F5A52;
  --ia-n-600: #3F3C36;
  --ia-n-700: #262421;
  --ia-n-800: #161513;
  --ia-n-900: #0A0E1A;

  /* === MINT SCALE === */
  --ia-mint-50:  #E0FBFD;
  --ia-mint-100: #B3F4F8;
  --ia-mint-300: #5EE9F0;
  --ia-mint-500: #00CFD8;
  --ia-mint-700: #0099A6;
  --ia-mint-900: #00505A;

  /* === AMBER SCALE === */
  --ia-amber-50:  #FFF3E2;
  --ia-amber-100: #FFE2B8;
  --ia-amber-300: #FFC074;
  --ia-amber-500: #FF9A3D;
  --ia-amber-700: #C46817;
  --ia-amber-900: #5C2C00;

  /* === SEMANTIC FOREGROUND/BACKGROUND === */
  --fg-1: var(--ia-text);
  --fg-2: var(--ia-n-500);
  --fg-3: var(--ia-n-400);
  --fg-on-dark-1: #FFFFFF;
  --fg-on-dark-2: rgba(255,255,255,0.72);
  --fg-on-dark-3: rgba(255,255,255,0.5);

  --bg-1: #FFFFFF;
  --bg-2: var(--ia-surface);
  --bg-3: var(--ia-n-100);
  --bg-dark-1: var(--ia-navy);
  --bg-dark-2: var(--ia-n-800);

  --border-light: rgba(10,14,26,0.08);
  --border-dark:  rgba(255,255,255,0.08);

  /* === TYPE === */
  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Type scale (clamped for fluid) */
  --t-display:  clamp(3rem, 6vw, 4.5rem);   /* 48–72px */
  --t-h1:       clamp(2.25rem, 4vw, 3.25rem); /* 36–52px */
  --t-h2:       clamp(1.75rem, 3vw, 2.25rem); /* 28–36px */
  --t-h3:       1.5rem;     /* 24px */
  --t-h4:       1.25rem;    /* 20px */
  --t-body-lg:  1.125rem;   /* 18px */
  --t-body:     1rem;       /* 16px */
  --t-body-sm:  0.875rem;   /* 14px */
  --t-caption:  0.75rem;    /* 12px */

  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-normal:  1.5;
  --lh-loose:   1.7;

  /* === SPACING (4px grid) === */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-6: 24px;
  --s-8: 32px;
  --s-12: 48px;
  --s-16: 64px;
  --s-24: 96px;
  --s-32: 128px;

  /* === RADII === */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* === SHADOWS === */
  --shadow-sm:  0 1px 2px rgba(10,14,26,0.04), 0 1px 1px rgba(10,14,26,0.02);
  --shadow-md:  0 8px 24px -8px rgba(10,14,26,0.10), 0 2px 4px rgba(10,14,26,0.04);
  --shadow-lg:  0 24px 48px -16px rgba(10,14,26,0.16), 0 8px 16px -8px rgba(10,14,26,0.06);
  --shadow-xl:  0 40px 80px -24px rgba(10,14,26,0.22), 0 16px 24px -12px rgba(10,14,26,0.08);
  --shadow-mint: 0 0 0 4px rgba(61, 90, 254, 0.22);
  --shadow-mint-glow: 0 0 32px rgba(61, 90, 254, 0.45), 0 0 14px rgba(255, 154, 61, 0.18), 0 0 0 1px rgba(61, 90, 254, 0.45);
  --shadow-amber: 0 0 0 4px rgba(255, 154, 61, 0.22);

  /* === MOTION === */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 600ms;
}

/* === SEMANTIC ELEMENT STYLES === */
html { font-family: var(--font-body); color: var(--fg-1); }
body { font-size: var(--t-body); line-height: var(--lh-normal); -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--fg-1);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: var(--t-h1); letter-spacing: -0.03em; }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); }
h4 { font-size: var(--t-h4); }

.display {
  font-family: var(--font-display);
  font-size: var(--t-display);
  line-height: var(--lh-tight);
  letter-spacing: -0.035em;
  font-weight: 600;
}

p { margin: 0; line-height: var(--lh-normal); color: var(--fg-1); }

code, .mono { font-family: var(--font-mono); font-size: 0.92em; }

a { color: var(--ia-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: none; cursor: pointer;
  font-size: var(--t-body);
  transition: transform var(--dur-fast) var(--ease-out-expo),
              box-shadow var(--dur-fast) var(--ease-out-expo),
              background var(--dur-fast) var(--ease-out-expo);
  min-height: 48px;
}
.btn-primary {
  background: linear-gradient(95deg, var(--ia-mint) 0%, #5B4BFF 55%, var(--ia-amber) 140%);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 22px rgba(61,90,254,0.30), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-primary:hover { box-shadow: var(--shadow-mint); filter: brightness(1.04); }
.btn-primary:active { transform: scale(0.98); }

.btn-ghost-dark {
  background: transparent;
  color: var(--fg-on-dark-1);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.06); }

.btn-ghost-light {
  background: transparent;
  color: var(--ia-text);
  border: 1px solid var(--border-light);
}
.btn-ghost-light:hover { background: rgba(10,14,26,0.04); }

/* === end tokens === */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-1); color: var(--fg-1); }
body { font-family: var(--font-body); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 500; padding: 14px 22px; border-radius: 999px; border: none; cursor: pointer; font-size: 15px; min-height: 48px; transition: all 180ms var(--ease-out-expo); text-decoration: none; }
.btn-sm { padding: 10px 16px; min-height: 40px; font-size: 14px; }
.btn-lg { padding: 18px 32px; min-height: 56px; font-size: 17px; }
:root { --ia-cyan: #00DCE6; --ia-cyan-soft: #5EE9F0; }
.btn-primary {
  background: linear-gradient(90deg, #00DCE6 0%, #29B4FF 45%, #3D5AFE 100%) !important;
  color: #fff !important; font-weight: 600;
  box-shadow: 0 6px 24px -8px rgba(0,220,230,0.5), inset 0 1px 0 rgba(255,255,255,0.25) !important;
}
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 10px 32px -8px rgba(0,220,230,0.7), inset 0 1px 0 rgba(255,255,255,0.3) !important; }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost-dark { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.06); }

.section-eyebrow { font-family: var(--font-mono); font-size: 12px; color: var(--fg-2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.section-eyebrow--mint { color: var(--ia-mint); }
.section-title { font-family: var(--font-display); font-size: var(--t-h1); letter-spacing: -0.03em; font-weight: 600; margin: 0 0 24px; line-height: 1.05; max-width: 720px; }
.section-title--light { color: #fff; }
.muted { color: var(--fg-2); }
.section-title--light .muted { color: rgba(255,255,255,0.5); }

/* === NAVBAR === */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 240ms var(--ease-out-expo); }
.nav__inner { max-width: 1280px; margin: 0 auto; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; }
.nav--scrolled { background: rgba(10,14,26,0.7); backdrop-filter: blur(20px) saturate(140%); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.03em; color: #fff; text-decoration: none; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: rgba(255,255,255,0.75); font-size: 14px; text-decoration: none; }
.nav__links a:hover { color: #fff; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.lang-pill { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; padding: 6px 12px; font-family: var(--font-mono); font-size: 12px; cursor: pointer; }
.lang-pill:hover { color: #fff; }

/* === PAGE HERO (subpages: servicios, tecnologia, contacto) === */
.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,207,216,0.12), transparent 60%),
    linear-gradient(180deg, #060810 0%, #0A0F22 60%, #0A0F22 100%);
  color: #fff;
  padding: 120px 0 100px;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--ia-surface) 100%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ia-mint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
  max-width: 880px;
}
.page-hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  margin: 0;
}

/* === HERO === */
.hero { position: relative; min-height: 720px; background: #060810; color: #fff; overflow: hidden; display: flex; flex-direction: column; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg-grad { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(0, 220, 230, 0.10) 0%, rgba(61, 90, 254, 0.03) 28%, transparent 55%),
  linear-gradient(90deg, #060810 0%, #0A0F22 35%, #111733 65%, #060810 100%); }
.hero__bg-glow { position: absolute; left: 50%; top: -10%; transform: translateX(-50%); width: 90%; height: 50%; background: radial-gradient(ellipse, rgba(0,220,230,0.10), transparent 65%); filter: blur(40px); }
.hero__scan { position: absolute; right: 18%; top: 38%; width: 240px; height: 240px; }
.hero__scan-ring { position: absolute; inset: 0; border: 2px solid var(--ia-mint); border-radius: 50%; opacity: 0.5; animation: scan 3s infinite var(--ease-out-expo); }
.hero__scan-ring--delayed { animation-delay: 1.5s; }
@keyframes scan { 0% { transform: scale(0.7); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } }

.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,8,16,0.94) 0%, rgba(6,8,16,0.7) 50%, rgba(6,8,16,0.45) 100%); }
.hero__content { position: relative; padding: 180px 32px 80px; max-width: 1280px; margin: 0 auto; flex: 1; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ia-cyan-soft); margin-bottom: 24px; }
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ia-cyan); box-shadow: 0 0 12px var(--ia-cyan); }
.hero__headline { font-family: var(--font-display); font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.02; letter-spacing: -0.035em; font-weight: 700; margin: 0 0 24px; max-width: 760px; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero__headline .muted { color: rgba(255,255,255,0.78); }
.hero__sub { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 0 36px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__proof { position: relative; max-width: 1280px; margin: 0 auto; padding: 24px 32px 96px; display: flex; gap: 48px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.08); }
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  background: linear-gradient(180deg, transparent 0%, rgba(250,245,236,0.35) 60%, var(--ia-surface) 100%);
  pointer-events: none; z-index: 1;
}
.hero__proof-item { display: flex; align-items: center; gap: 12px; }
.hero__proof-emoji { font-size: 20px; }
.hero__proof-item strong { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.hero__proof-item span { display: block; font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }

/* === PROBLEM === */
.problem { background: var(--ia-surface); padding: 96px 0; }
.problem__inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: stretch; }
.problem__col { padding: 32px; background: #fff; border-radius: 20px; }
.problem__col--before { background: #FFF1F0; }
.problem__col--after { background: #E5FFFA; }
.problem__label { font-family: var(--font-display); font-size: 32px; font-weight: 600; letter-spacing: -0.02em; color: #C73D3D; margin-bottom: 20px; }
.problem__label--good { color: var(--ia-mint-700); }
.problem__col ul li { display: flex; gap: 12px; padding: 10px 0; font-size: 15px; line-height: 1.5; }
.problem__col .ic { flex-shrink: 0; }
.problem__divider { width: 1px; background: var(--border-light); }

/* === HOW === */
.how { padding: 96px 0; background: #fff; }
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.how__step { padding: 32px; border-radius: 20px; background: var(--ia-surface); transition: all 180ms var(--ease-out-expo); }
.how__step:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.how__step-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.how__step-num { font-family: var(--font-mono); font-size: 14px; color: var(--ia-mint-700); letter-spacing: 0.05em; }
.how__step-icon { color: var(--ia-text); }
.how__step-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 8px; }
.how__step-body { font-size: 15px; color: var(--fg-2); line-height: 1.55; margin: 0; }

/* === AIRBNB === */
.airbnb { background: var(--ia-navy); padding: 120px 0; color: #fff; position: relative; overflow: hidden; }
.airbnb::before { content: ''; position: absolute; top: -10%; left: 0; right: 0; height: 40%; background: linear-gradient(90deg, rgba(0,220,230,0.10) 0%, rgba(61,90,254,0.06) 50%, rgba(255,154,61,0.05) 100%); filter: blur(60px); }
.airbnb__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.airbnb__body { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.55; margin: 0 0 24px; max-width: 480px; }
.airbnb__list { margin: 0 0 36px; }
.airbnb__list li { padding: 10px 0; padding-left: 24px; position: relative; color: rgba(255,255,255,0.85); font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.airbnb__list li::before { content: '→'; position: absolute; left: 0; color: var(--ia-mint); }
.airbnb__phones { position: relative; height: 480px; }
.phone { position: absolute; width: 240px; height: 460px; border-radius: 36px; background: #fff; padding: 12px; box-shadow: var(--shadow-xl); border: 8px solid #161A26; }
.phone--back { top: 0; left: 0; transform: rotate(-6deg); }
.phone--front { bottom: 0; right: 0; transform: rotate(4deg); }
.phone__notch { width: 60px; height: 6px; background: #161A26; border-radius: 4px; margin: 0 auto 16px; }
.phone__screen { background: #F8F9FC; border-radius: 24px; padding: 16px; height: calc(100% - 22px); }
.phone__screen--dark { background: #0A0E1A; }
.phone__notif { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.phone__app { display: flex; align-items: center; gap: 8px; }
.phone__appicon { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-size: 12px; font-weight: 700; }
.phone__appicon--brand { background: rgba(0,221,190,0.15); }
.phone__appname { font-size: 12px; font-weight: 500; }
.phone__time { font-size: 11px; color: var(--fg-3); }
.phone__title { font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.phone__msg { font-size: 12px; color: var(--fg-2); line-height: 1.4; }
.phone__qr { margin-top: 20px; padding: 16px; background: rgba(0,221,190,0.08); border-radius: 12px; display: flex; justify-content: center; }

/* === SERVICES === */
.services { padding: 96px 0; background: var(--ia-surface); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.service-card { background: #fff; border-radius: 16px; padding: 28px; transition: all 180ms var(--ease-out-expo); cursor: pointer; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-card__icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(0,221,190,0.12); color: var(--ia-mint-700); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card__title { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; }
.service-card__body { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0 0 16px; }
.service-card__link { font-family: var(--font-mono); font-size: 12px; color: var(--ia-blue); text-transform: uppercase; letter-spacing: 0.05em; }

/* === QUOTE === */
.quote { background: var(--ia-navy); padding: 120px 0; color: #fff; position: relative; overflow: hidden; }
.quote__grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 32px 32px; }
.quote .container { position: relative; }
.quote__sub { color: rgba(255,255,255,0.6); font-size: 17px; margin: 0 0 48px; max-width: 600px; }
.quote__card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; overflow: hidden; backdrop-filter: blur(20px); }
.quote__form { padding: 40px; display: flex; flex-direction: column; gap: 24px; }
.quote__field label { display: block; font-family: var(--font-mono); font-size: 11px; color: #9EEFF5; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.seg { display: flex; gap: 6px; flex-wrap: wrap; }
.seg__btn { padding: 10px 14px; border-radius: 999px; background: rgba(94,233,240,0.06); color: #9EEFF5; border: 1px solid rgba(94,233,240,0.22); font-family: var(--font-body); font-size: 13px; cursor: pointer; transition: all 180ms var(--ease-out-expo); }
.seg__btn:hover { background: rgba(94,233,240,0.12); color: #C8F6FA; border-color: rgba(94,233,240,0.4); }
.seg__btn--active { background: linear-gradient(90deg, #00DCE6 0%, #29B4FF 100%); color: #042026; border-color: #5EE9F0; font-weight: 600; box-shadow: 0 4px 16px -6px rgba(0,220,230,0.5); }
.quote__toggles { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }
.toggle { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: rgba(255,255,255,0.8); }
.toggle input { display: none; }
.toggle__pill { width: 36px; height: 20px; background: rgba(255,255,255,0.1); border-radius: 999px; position: relative; transition: all 180ms; }
.toggle__pill::after { content: ''; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: all 180ms; }
.toggle--on .toggle__pill { background: var(--ia-mint); }
.toggle--on .toggle__pill::after { left: 18px; }

.quote__result { padding: 40px; background: linear-gradient(90deg, rgba(0,220,230,0.10), rgba(61,90,254,0.05) 60%, rgba(255,154,61,0.04)); border-left: 1px solid rgba(255,255,255,0.06); }
.quote__result-label { font-family: var(--font-mono); font-size: 12px; color: #9EEFF5; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.quote__result-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; font-size: 14px; color: rgba(255,255,255,0.7); }
.quote__result-row--save { color: rgba(255,255,255,0.85); }
.quote__mono { font-family: var(--font-mono); font-size: 15px; color: #fff; font-weight: 500; letter-spacing: -0.01em; }
.quote__mono--mint { color: var(--ia-mint); }
.quote__divider { height: 1px; background: rgba(255,255,255,0.08); margin: 12px 0; }
.quote__cta { margin-top: 20px; width: 100%; justify-content: center; }
.quote__disclaimer { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 14px; line-height: 1.4; }

/* === FINAL CTA === */
.final-cta { background: var(--ia-navy); padding: 120px 0; color: #fff; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
.final-cta__title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.035em; line-height: 1.05; font-weight: 600; margin: 0 0 16px; }
.final-cta__title .muted { color: rgba(255,255,255,0.45); }
.final-cta__sub { font-size: 17px; color: rgba(255,255,255,0.6); margin: 0 0 36px; }
.final-cta__ctas { display: inline-flex; flex-direction: column; gap: 16px; align-items: center; }
.final-cta__phone { color: rgba(255,255,255,0.7); font-family: var(--font-mono); font-size: 14px; text-decoration: none; }
.final-cta__phone:hover { color: #fff; }

/* === FOOTER === */
.footer { background: #07090F; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 48px; }
.footer__brand { display: flex; gap: 12px; align-items: flex-start; }
.footer__brand-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #fff; letter-spacing: -0.02em; }
.footer__brand-tag { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; max-width: 200px; line-height: 1.4; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer__col-title { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer__col ul li { padding: 4px 0; }
.footer__col a { color: rgba(255,255,255,0.7); font-size: 13px; text-decoration: none; }
.footer__col a:hover { color: var(--ia-mint); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); }


/* === DETAILED QUOTE === */
.dquote { position: relative; background: linear-gradient(180deg, #0A0E1C 0%, #0D1428 50%, #0A0E1C 100%); padding: 120px 0; color: #fff; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); }
.dquote__grid-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(0,220,230,0.07) 1px, transparent 0); background-size: 28px 28px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 80%); pointer-events: none; }
.dquote .container { position: relative; z-index: 1; }

.dquote__intro { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.dquote__intro .section-eyebrow { justify-content: center; display: flex; }
.dquote__intro .section-title { margin: 0 auto 20px; }
.dquote__sub { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.65); margin: 0 0 32px; }
.dquote__promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 640px; margin: 0 auto; }
.dquote__promise > div { background: rgba(255,255,255,0.03); border: 1px solid rgba(0,220,230,0.15); border-radius: 12px; padding: 18px 12px; }
.dquote__promise strong { display: block; font-family: var(--font-display); font-size: 22px; color: var(--ia-cyan); font-weight: 600; margin-bottom: 4px; letter-spacing: -0.02em; }
.dquote__promise span { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }

.dquote__card { max-width: 920px; margin: 0 auto; background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.015) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 8px; box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,220,230,0.05); position: relative; }
.dquote__card::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(0,220,230,0.5) 50%, transparent 100%); }

.dquote__section { padding: 32px 36px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dquote__section:last-of-type { border-bottom: none; }
.dquote__section-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.dquote__section-num { font-family: var(--font-mono); font-size: 13px; color: var(--ia-cyan); font-weight: 500; padding: 4px 10px; border: 1px solid rgba(0,220,230,0.3); border-radius: 999px; background: rgba(0,220,230,0.05); }
.dquote__section-head h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 0; color: #fff; }

.dquote__row { display: grid; gap: 16px; margin-bottom: 16px; }
.dquote__row--2 { grid-template-columns: 1fr 1fr; }
.dquote__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.dquote__row:last-child { margin-bottom: 0; }

.dquote__field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.dquote__field label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }
.dquote__hint { text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.35); font-size: 11px; }
.dquote__field input,
.dquote__field select,
.dquote__field textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 14px 16px; color: #fff; font-family: var(--font-body); font-size: 14px; transition: all 160ms var(--ease-out-expo); outline: none; }
.dquote__field input::placeholder,
.dquote__field textarea::placeholder { color: rgba(255,255,255,0.3); }
.dquote__field input:focus,
.dquote__field select:focus,
.dquote__field textarea:focus { border-color: rgba(0,220,230,0.6); background: rgba(0,220,230,0.04); box-shadow: 0 0 0 3px rgba(0,220,230,0.12); }
.dquote__field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23fff' stroke-opacity='0.5' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.dquote__field textarea { font-family: var(--font-body); resize: vertical; min-height: 80px; }

.seg--inline { display: flex; gap: 6px; }
.seg--inline .seg__btn { flex: 1; padding: 12px 10px; font-size: 13px; }

.dquote__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.dchip { font-family: var(--font-body); font-size: 13px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); cursor: pointer; transition: all 160ms var(--ease-out-expo); }
.dchip:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #fff; }
.dchip--on { background: rgba(0,220,230,0.12); border-color: rgba(0,220,230,0.5); color: var(--ia-cyan); font-weight: 500; }
.dchip--on:hover { background: rgba(0,220,230,0.16); }

.dquote__radio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.dradio { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; cursor: pointer; transition: all 160ms var(--ease-out-expo); text-align: left; }
.dradio:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); }
.dradio strong { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.dradio span { font-size: 12px; color: rgba(255,255,255,0.5); }
.dradio--on { background: rgba(0,220,230,0.1); border-color: rgba(0,220,230,0.55); box-shadow: 0 0 0 3px rgba(0,220,230,0.1); }
.dradio--on strong { color: var(--ia-cyan); }
.dradio--on span { color: rgba(255,255,255,0.7); }

.dquote__submit { padding: 32px 36px 36px; background: linear-gradient(180deg, rgba(0,220,230,0.03) 0%, transparent 100%); border-top: 1px solid rgba(0,220,230,0.1); border-radius: 0 0 20px 20px; text-align: center; }
.dquote__submit .btn { padding: 18px 36px; font-size: 16px; }
.dquote__legal { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 16px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* SUCCESS STATE */
.dquote--sent { padding: 160px 0; text-align: center; }
.dquote__success { max-width: 640px; margin: 0 auto; }
.dquote__check { width: 80px; height: 80px; margin: 0 auto 32px; border-radius: 50%; background: linear-gradient(135deg, #00DCE6 0%, #3D5AFE 100%); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 40px; font-weight: 600; box-shadow: 0 20px 50px -10px rgba(0,220,230,0.4); }
.dquote__success-sub { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.7); margin: 0 0 40px; }
.dquote__success-sub strong { color: var(--ia-cyan); font-weight: 600; }
.dquote__success-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 540px; margin: 0 auto 36px; }
.dquote__success-meta > div { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 18px 12px; }
.dquote__success-meta span { display: block; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.dquote__success-meta strong { display: block; font-family: var(--font-display); font-size: 16px; color: #fff; font-weight: 600; letter-spacing: -0.01em; }

@media (max-width: 760px) {
  .dquote { padding: 80px 0; }
  .dquote__section { padding: 24px 20px; }
  .dquote__submit { padding: 24px 20px 28px; }
  .dquote__row--2, .dquote__row--3 { grid-template-columns: 1fr; }
  .dquote__radio-grid { grid-template-columns: 1fr 1fr; }
  .dquote__promise { grid-template-columns: 1fr; }
  .dquote__success-meta { grid-template-columns: 1fr; }
}


/* ─── Competitor Comparison ─── */
.cmp { background: linear-gradient(180deg, #0A0E1A 0%, #0F1428 100%); color: #fff; padding: 120px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.cmp__sub { color: rgba(255,255,255,0.55); margin: -8px 0 40px; font-size: 16px; }
.cmp__wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; background: rgba(255,255,255,0.02); }
.cmp__table { width: 100%; border-collapse: collapse; min-width: 720px; font-family: var(--font-body); }
.cmp__table thead th { padding: 24px 20px; text-align: center; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65); border-bottom: 1px solid rgba(255,255,255,0.08); }
.cmp__table thead th small { display: block; font-weight: 400; font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.cmp__table thead th.cmp__us { color: var(--ia-mint); font-weight: 700; font-family: var(--font-display); font-size: 16px; }
.cmp__table tbody td { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); text-align: center; font-size: 14px; }
.cmp__table tbody td.cmp__feature { text-align: left; color: rgba(255,255,255,0.85); font-weight: 500; }
.cmp__table tbody td.cmp__us { background: rgba(0,229,160,0.04); }
.cmp__yes { color: var(--ia-mint); font-weight: 700; font-size: 18px; }
.cmp__no { color: #FF4D6D; font-weight: 700; font-size: 18px; opacity: 0.8; }
.cmp__partial { color: #F5C24A; font-size: 12px; font-weight: 600; }
.cmp__note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.4); }
.cmp__note a { color: var(--ia-mint); text-decoration: underline; }

/* ─── SIC Compliance ─── */
.sic { background: linear-gradient(180deg, #fbf9f4 0%, #f5f1e8 100%); padding: 120px 0; position: relative; overflow: hidden; }
.sic::before { content: ''; position: absolute; top: 0; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,194,74,0.15), transparent 70%); pointer-events: none; }
.sic__inner { position: relative; }
.sic__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(10,14,26,0.06); border: 1px solid rgba(10,14,26,0.12); border-radius: 999px; font-family: var(--font-mono); font-size: 12px; color: var(--ia-navy); margin-bottom: 28px; }
.sic__title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 600; color: var(--ia-navy); margin: 0 0 24px; max-width: 920px; }
.sic__title .muted { color: rgba(10,14,26,0.55); }
.sic__lead { max-width: 720px; font-size: 17px; line-height: 1.55; color: rgba(10,14,26,0.7); margin: 0 0 56px; }
.sic__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sic__card { background: #fff; border: 1px solid rgba(10,14,26,0.08); border-radius: 14px; padding: 28px; position: relative; }
.sic__card--alert { background: var(--ia-navy); color: #fff; border-color: var(--ia-navy); }
.sic__num { font-family: var(--font-mono); font-size: 12px; color: var(--ia-mint); margin-bottom: 14px; letter-spacing: 0.08em; }
.sic__card--alert .sic__num { color: #FF4D6D; font-size: 20px; }
.sic__head { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ia-navy); margin-bottom: 10px; letter-spacing: -0.015em; }
.sic__card--alert .sic__head { color: #fff; }
.sic__card p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(10,14,26,0.65); }
.sic__card--alert p { color: rgba(255,255,255,0.7); }
.sic__card--alert strong { color: var(--ia-mint); }

@media (max-width: 768px) {
  .sic__grid { grid-template-columns: 1fr; }
  .cmp, .sic { padding: 80px 0; }
}
