  /* ---------- Tokens ---------- */
  :root {
    --brown: #3B2C23;
    --brown-deep: #261A14;
    --brown-soft: #6B5A50;
    --brown-mute: #8C7B70;
    --green: #A5B991;
    --green-soft: #C2D2B0;
    --green-deep: #82986C;
    --cream: #F7F3EC;
    --cream-warm: #F1ECE2;
    --cream-deep: #E8E1D2;
    --orange: #E97A4C;
    --orange-soft: #F39A75;
    --orange-deep: #D2643A;
    --white: #FFFFFF;

    --display: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
    --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-xs: 0 1px 2px rgba(59, 44, 35, 0.04);
    --shadow-sm: 0 4px 16px rgba(59, 44, 35, 0.05);
    --shadow-md: 0 12px 40px rgba(59, 44, 35, 0.07);
    --shadow-lg: 0 24px 60px rgba(59, 44, 35, 0.1);
    --shadow-xl: 0 40px 100px rgba(59, 44, 35, 0.14);

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --radius-pill: 999px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--brown);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Use `clip` instead of `hidden` — `hidden` breaks position: sticky on mobile */
    overflow-x: clip;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

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

  .wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ---------- Typography ---------- */
  h1, h2, h3, h4, h5 {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--brown);
    line-height: 1.05;
  }

  .eyebrow {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange-deep);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--orange-deep);
    opacity: 0.55;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(233, 122, 76, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
  }
  .btn-primary:hover {
    background: var(--orange-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(233, 122, 76, 0.36), inset 0 1px 0 rgba(255,255,255,0.18);
  }
  .btn .arrow { transition: transform 0.4s var(--ease); }
  .btn:hover .arrow { transform: translateX(3px); }

  .btn-dark { background: var(--brown); color: var(--cream); }
  .btn-dark:hover { background: var(--brown-deep); transform: translateY(-2px); }

  .btn-ghost {
    background: transparent;
    color: var(--brown);
    border: 1.5px solid rgba(59, 44, 35, 0.16);
  }
  .btn-ghost:hover {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
  }

  .btn-cream { background: var(--cream); color: var(--brown); }
  .btn-cream:hover { background: var(--white); transform: translateY(-2px); }

  /* ---------- NAV (transparent at rest → morphs into a floating glass pill on scroll) ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    border-bottom: none;
    /* horizontal padding kicks in on scroll to give the pill side breathing room on smaller screens */
    padding: 0;
    transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition:
      background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Scrolled — wrap.nav-inner morphs into a floating glass pill */
  .nav.scrolled {
    top: 12px;
    padding: 0 16px;
  }
  .nav.scrolled .nav-inner {
    background: rgba(247, 243, 236, 0.7);
    backdrop-filter: saturate(170%) blur(20px);
    -webkit-backdrop-filter: saturate(170%) blur(20px);
    border-radius: 999px;
    box-shadow:
      0 14px 32px -10px rgba(59, 44, 35, 0.18),
      0 4px 12px -4px rgba(59, 44, 35, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    padding: 16px 28px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.025em;
    color: var(--brown);
    flex-shrink: 0;
  }
  .logo-mark {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
  .logo-text { line-height: 1.05; white-space: nowrap; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
  }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--brown);
    border-radius: var(--radius-pill);
    transition: background 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
  }
  .nav-links > li > a:hover { background: rgba(59, 44, 35, 0.05); }
  .caret {
    width: 9px; height: 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0.55;
    transition: transform 0.3s var(--ease);
  }
  .nav-links > li:hover .caret { transform: rotate(225deg) translate(-2px, -2px); }

  /* Dropdowns */
  .dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(59,44,35,0.06);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    z-index: 200;
  }
  .dropdown::before {
    content: "";
    position: absolute;
    top: -8px; left: 0; right: 0;
    height: 8px;
  }
  .nav-links > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--brown);
    transition: background 0.25s var(--ease);
  }
  .dropdown a:hover { background: var(--cream); }
  .dropdown-icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: var(--cream-warm);
    color: var(--brown);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .dropdown a:hover .dropdown-icon {
    background: var(--orange);
    color: var(--white);
  }
  .dropdown-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--brown);
  }
  .dropdown-text span {
    display: block;
    font-size: 12px;
    color: var(--brown-soft);
    margin-top: 1px;
    font-weight: 400;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
  }
  .nav-cta .btn { padding: 12px 22px; font-size: 13.5px; }
  .nav-login {
    font-size: 14px;
    font-weight: 500;
    color: var(--brown);
    transition: color 0.3s var(--ease);
    white-space: nowrap;
  }
  .nav-login:hover { color: var(--brown-deep); opacity: 0.7; }

  .menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
  }
  .menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
    display: block;
    width: 22px; height: 2px;
    background: var(--brown);
    border-radius: 2px;
  }
  .menu-toggle span { position: relative; }
  .menu-toggle span::before, .menu-toggle span::after {
    content: ""; position: absolute; left: 0;
  }
  .menu-toggle span::before { top: -7px; }
  .menu-toggle span::after { top: 7px; }

  /* ---------- HERO — premium centered, breathing-room layout ---------- */
  .hero {
    position: relative;
    padding: 56px 0 320px;
    overflow: hidden;
    min-height: auto;
  }
  .hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
  }
  .blob-1 {
    top: -160px; right: -160px;
    width: 600px; height: 600px;
    background: radial-gradient(circle at 30% 30%, var(--orange-soft), transparent 65%);
  }
  .blob-2 {
    top: 200px; left: -200px;
    width: 540px; height: 540px;
    background: radial-gradient(circle at 70% 50%, var(--green-soft), transparent 60%);
    opacity: 0.4;
  }
  .hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(59,44,35,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(59,44,35,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 40%, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 60% 55% at 50% 40%, black 30%, transparent 80%);
    pointer-events: none;
  }

  .hero .wrap {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .hero-content {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
  }

  .hero-tag {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 4px 13px 4px 4px;
    background: var(--white);
    border: 1px solid rgba(59,44,35,0.06);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    color: var(--brown);
    box-shadow: var(--shadow-xs);
    margin: 0 auto 32px;
  }

  /* Trust strip — "Trusted by" + overlapping avatars (no pill background) */
  .hero-trust-strip {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 14px;
    margin: 0 auto 28px;
  }
  .hts-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brown-soft);
    white-space: nowrap;
  }
  .hts-avatars {
    display: inline-flex;
    align-items: center;
  }
  .hts-avatar,
  .hts-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--cream);
    margin-left: -12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 44, 35, 0.14);
    position: relative; /* required so the natural DOM stacking applies */
  }
  .hts-avatar:first-child { margin-left: 0; }
  .hts-avatar {
    overflow: hidden;
    background: var(--cream-warm);
  }
  .hts-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    display: block;
  }
  .hts-count {
    background: linear-gradient(135deg, var(--cream-warm) 0%, #E8DDC9 100%);
    color: var(--brown);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.02em;
    z-index: 2; /* always paints over the last avatar */
  }
  @media (max-width: 480px) {
    .hero-trust-strip { gap: 10px; }
    .hts-label { font-size: 10.5px; letter-spacing: 0.12em; }
    .hts-avatar, .hts-count { width: 32px; height: 32px; margin-left: -10px; border-width: 2px; }
    .hts-count { font-size: 9.5px; }
  }
  .hero-tag-pill {
    background: var(--green);
    color: var(--white);
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .hero-tag-dot {
    width: 5px; height: 5px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(233,122,76,0.18);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(233,122,76,0.18); }
    50% { box-shadow: 0 0 0 6px rgba(233,122,76,0.04); }
  }

  .hero h1 {
    font-size: clamp(44px, 6.4vw, 84px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin: 0 auto 24px;
    font-weight: 700;
    text-align: center;
  }
  .hero h1 .light { font-weight: 300; color: var(--brown-soft); }
  .hero h1 .accent {
    position: relative;
    display: inline-block;
    color: var(--orange);
    font-weight: 700;
  }

  /* Rolling text — vertical slot animation */
  .rolling-text {
    display: inline-block;
    height: 1em;
    overflow: hidden;
    vertical-align: bottom;
    position: relative;
    line-height: 1;
  }
  .rolling-words {
    display: flex;
    flex-direction: column;
    animation: rollText 12s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  }
  .rolling-words > span {
    display: block;
    height: 1em;
    line-height: 1;
    color: var(--orange);
    font-weight: 700;
    white-space: nowrap;
  }
  .rolling-words > span::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: 0.04em;
    height: 0.14em;
    background: var(--green);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.5;
  }
  @keyframes rollText {
    0%, 16%   { transform: translateY(0); }
    20%, 36%  { transform: translateY(-1em); }
    40%, 56%  { transform: translateY(-2em); }
    60%, 76%  { transform: translateY(-3em); }
    80%, 96%  { transform: translateY(-4em); }
    100%      { transform: translateY(-5em); }
  }

  .hero-sub {
    font-size: 19px;
    line-height: 1.6;
    color: var(--brown-soft);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
    text-align: center;
  }

  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 36px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn-lg {
    padding: 18px 32px;
    font-size: 15px;
    border-radius: var(--radius-pill);
  }

  .hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--brown-soft);
    font-weight: 500;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-trust .dot {
    width: 4px; height: 4px;
    background: var(--brown-soft);
    opacity: 0.4;
    border-radius: 50%;
  }
  .hero-trust strong { color: var(--brown); font-weight: 700; }

  /* Decorative floating badges scattered around the hero */
  .hero-deco {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 14px 32px rgba(59,44,35,0.14), inset 0 1px 0 rgba(255,255,255,0.35);
    width: 60px;
    height: 60px;
  }
  .hero-deco-1 {
    top: 22%;
    left: 9%;
    background: linear-gradient(135deg, #FFDA8E 0%, #F4A93C 100%);
    color: var(--white);
    animation: floaty 6s ease-in-out infinite;
  }
  .hero-deco-2 {
    top: 26%;
    right: 10%;
    background: var(--white);
    color: var(--orange);
    animation: floaty 7s ease-in-out infinite 0.5s;
    border: 1.5px solid rgba(233,122,76,0.18);
  }
  .hero-deco-3 {
    bottom: 36%;
    left: 13%;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: var(--white);
    width: 48px;
    height: 48px;
    animation: floaty 8s ease-in-out infinite 1s;
  }

  /* Cards fanned at the bottom — absolutely anchored to the hero's bottom edge */
  .hero-cards-fan {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 4;
    padding: 0 24px;
    width: max-content;
  }
  .hero-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 30px 60px -20px rgba(59,44,35,0.22), 0 14px 28px -10px rgba(59,44,35,0.10);
    padding: 22px;
    border: 1px solid rgba(59,44,35,0.04);
    flex-shrink: 0;
  }
  .hero-card-1 {
    width: 280px;
    transform: rotate(-9deg);
    margin: 36px -36px 0 0;
    z-index: 2;
    animation: floaty 6s ease-in-out infinite;
  }
  .hero-card-2 {
    width: 320px;
    transform: rotate(0deg);
    z-index: 4;
    animation: floaty 7s ease-in-out infinite 0.6s;
  }
  .hero-card-3 {
    width: 280px;
    transform: rotate(9deg);
    margin: 36px 0 0 -36px;
    z-index: 2;
    animation: floaty 8s ease-in-out infinite 1.2s;
  }
  @keyframes floaty {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -8px; }
  }


  .card-avatar { display: flex; align-items: center; gap: 12px; }
  .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(165,185,145,0.4);
  }
  .card-avatar-text strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--brown); letter-spacing: -0.01em; }
  .card-avatar-text span { display: block; font-size: 12px; color: var(--brown-soft); margin-top: 2px; font-weight: 500; }

  .status-row {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(59,44,35,0.1);
    display: flex; align-items: center; justify-content: space-between;
  }
  .status-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 10px;
    background: rgba(165,185,145,0.2);
    color: var(--green-deep);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
  }
  .status-pill .live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-deep);
    animation: pulse-dot 1.6s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .task-item {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--brown);
  }
  .task-check {
    width: 18px; height: 18px;
    border-radius: 6px;
    border: 1.5px solid rgba(59,44,35,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .task-check.done {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
  }
  .task-item.done { color: var(--brown-soft); text-decoration: line-through; text-decoration-color: rgba(59,44,35,0.3); }
  .card-mini-title {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown-soft);
    margin-bottom: 12px;
  }

  .stat-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .stat-num {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: var(--brown);
    letter-spacing: -0.035em;
  }
  .stat-num span { color: var(--orange); }
  .stat-label {
    font-size: 12px;
    color: var(--brown-soft);
    line-height: 1.4;
    max-width: 140px;
    font-weight: 500;
    margin-top: 8px;
  }
  .stat-bars {
    display: flex; align-items: flex-end; gap: 4px;
    height: 40px;
  }
  .stat-bars div {
    width: 6px;
    border-radius: 3px;
    background: var(--green);
  }

  /* ---------- SECTIONS ---------- */
  section { position: relative; }
  .section-pad { padding: 96px 0; }
  .section-pad-sm { padding: 72px 0; }

  .section-head {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
  }
  .section-head.left { text-align: left; margin: 0 0 64px; }

  .section-head h2 {
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin: 18px 0 22px;
    font-weight: 700;
  }
  .section-head h2 .light { font-weight: 300; color: var(--brown-soft); }
  .section-head h2 .accent { color: var(--orange); font-weight: 700; }
  .section-head p {
    font-size: 17px;
    color: var(--brown-soft);
    line-height: 1.6;
    font-weight: 400;
    max-width: 580px;
    margin: 0 auto;
  }

  /* ---------- PROBLEM ---------- */
  .problem {
    background: var(--brown);
    color: var(--cream);
    border-radius: var(--radius-xl);
    margin: 0 32px;
    padding: 88px 0;
    position: relative;
    overflow: hidden;
  }
  .problem::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233,122,76,0.16), transparent 60%);
  }
  .problem::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -150px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(165,185,145,0.12), transparent 60%);
  }
  .problem .wrap { position: relative; z-index: 2; }
  .problem .eyebrow { color: var(--orange-soft); }
  .problem h2 { color: var(--cream); }
  .problem h2 .light { color: rgba(247,243,236,0.5); }
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
  }
  .problem h2 {
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 1.04;
    margin-top: 18px;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.035em;
  }
  .problem-intro {
    font-size: 16px;
    color: rgba(247,243,236,0.7);
    line-height: 1.65;
    font-weight: 400;
  }

  .problem-list {
    list-style: none;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .problem-list li {
    display: flex; align-items: flex-start; gap: 16px;
    font-size: 15.5px;
    color: rgba(247,243,236,0.85);
    line-height: 1.55;
    font-weight: 400;
  }
  .problem-list li strong { color: var(--cream); font-weight: 700; }
  .problem-list .x {
    width: 28px; height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(233,122,76,0.15);
    color: var(--orange-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600;
  }

  .problem-quote {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: var(--cream);
    padding: 40px;
    border-left: 2px solid var(--orange);
    background: rgba(247,243,236,0.03);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-weight: 500;
  }
  .problem-quote .punch {
    display: block;
    margin-top: 20px;
    font-weight: 700;
    font-size: 13px;
    color: var(--orange-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ---------- WHO WE HELP ---------- */
  .who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .who-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid rgba(59,44,35,0.04);
    box-shadow: var(--shadow-xs);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
  }
  .who-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }
  .who-card::after {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: var(--cream-warm);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    z-index: 0;
  }
  .who-card:hover::after { opacity: 1; }
  .who-card > * { position: relative; z-index: 1; }

  .who-card .icon-box {
    width: 60px; height: 60px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s var(--ease);
  }
  .who-card:hover .icon-box { transform: scale(1.06) rotate(-4deg); }
  .icon-green { background: var(--green); color: var(--white); }
  .icon-orange { background: var(--orange); color: var(--white); }
  .icon-brown { background: var(--brown); color: var(--cream); }
  .icon-cream { background: var(--cream-warm); color: var(--brown); }

  .who-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.025em;
  }
  .who-card p {
    font-size: 15px;
    color: var(--brown-soft);
    line-height: 1.65;
    margin-bottom: 22px;
    font-weight: 400;
  }
  .who-card .who-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-deep);
    transition: gap 0.3s var(--ease);
    letter-spacing: -0.005em;
  }
  .who-card .who-link:hover { gap: 10px; }

  /* ---------- DIFFERENT ---------- */
  .different {
    background: var(--cream-warm);
    border-radius: var(--radius-xl);
    margin: 0 32px;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
  }
  .different::before {
    content: "";
    position: absolute;
    top: -80px; left: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: var(--green-soft);
    opacity: 0.4;
    filter: blur(40px);
  }

  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }
  .pillar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    border: 1px solid rgba(59,44,35,0.05);
    transition: all 0.4s var(--ease);
    position: relative;
  }
  .pillar:nth-child(2) {
    background: var(--brown);
    color: var(--cream);
    transform: translateY(-20px);
    border-color: var(--brown);
  }
  .pillar:nth-child(2) h3 { color: var(--cream); }
  .pillar:nth-child(2) p { color: rgba(247,243,236,0.75); }

  .pillar:hover { transform: translateY(-26px); box-shadow: var(--shadow-md); }
  .pillar:nth-child(2):hover { transform: translateY(-26px); }

  .pillar-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .pillar-num::after {
    content: ""; flex: 1; height: 1px;
    background: rgba(59,44,35,0.1);
  }
  .pillar:nth-child(2) .pillar-num { color: var(--orange-soft); }
  .pillar:nth-child(2) .pillar-num::after { background: rgba(247,243,236,0.15); }

  .pillar h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.025em;
  }
  .pillar p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.65;
    font-weight: 400;
  }

  /* ---------- FOUNDER ---------- */
  .founder-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
  }
  .founder-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    box-shadow: var(--shadow-lg);
  }
  .founder-portrait {
    position: absolute;
    inset: 0;
    background: url("Images/rivka-profile.png") center/cover no-repeat,
                linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  }
  .founder-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  .founder-badge strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--brown); margin-bottom: 3px; letter-spacing: -0.015em; }
  .founder-badge span { color: var(--brown-soft); font-size: 12px; font-weight: 500; }

  .founder-decoration {
    position: absolute;
    top: -20px; right: -20px;
    width: 100px; height: 100px;
    background: var(--orange);
    border-radius: 50%;
    z-index: -1;
  }
  .founder-deco-2 {
    position: absolute;
    bottom: -30px; left: -30px;
    width: 70px; height: 70px;
    background: var(--cream-warm);
    border-radius: 50%;
    z-index: -1;
  }

  .founder-content h2 {
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05;
    margin: 18px 0 28px;
    font-weight: 700;
    letter-spacing: -0.035em;
  }
  .founder-content h2 .light { font-weight: 300; color: var(--brown-soft); }
  .founder-bio {
    font-size: 16px;
    color: var(--brown-soft);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
  }
  .founder-belief {
    padding: 28px 32px;
    background: var(--cream-warm);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--orange);
    margin: 32px 0;
  }
  .founder-belief p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--brown);
    font-weight: 500;
    letter-spacing: -0.015em;
  }
  .founder-credentials {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 24px;
  }
  .credential {
    padding: 7px 14px;
    background: var(--white);
    border: 1px solid rgba(59,44,35,0.08);
    border-radius: var(--radius-pill);
    font-size: 12px;
    color: var(--brown);
    font-weight: 600;
    letter-spacing: -0.005em;
  }

  /* ---------- AI VAS ---------- */
  .ai {
    background: var(--green);
    color: var(--brown);
    border-radius: var(--radius-xl);
    margin: 0 32px;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
  }
  .ai::before {
    content: "";
    position: absolute;
    top: 50%; right: -150px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: var(--green-soft);
    opacity: 0.4;
    filter: blur(60px);
  }
  .ai .eyebrow { color: var(--brown); }
  .ai .eyebrow::before { background: var(--brown); }

  .ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .ai h2 {
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.02;
    margin: 18px 0 26px;
    font-weight: 700;
    letter-spacing: -0.035em;
  }
  .ai h2 .light { font-weight: 300; color: var(--brown-soft); }

  .ai-sub {
    font-size: 17px;
    color: var(--brown-soft);
    line-height: 1.65;
    margin-bottom: 32px;
    font-weight: 400;
  }
  .ai-punch {
    margin-top: 32px;
    padding: 24px 28px;
    background: var(--brown);
    color: var(--cream);
    border-radius: var(--radius-md);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: -0.015em;
  }
  .ai-punch strong { color: var(--orange-soft); font-weight: 700; display: block; margin-top: 4px; }

  .ai-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .ai-benefit {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all 0.4s var(--ease);
  }
  .ai-benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .ai-benefit-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
  }
  .ai-benefit h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
    color: var(--brown);
  }
  .ai-benefit p {
    font-size: 13px;
    color: var(--brown-soft);
    line-height: 1.55;
    font-weight: 400;
  }

  /* ---------- SERVICES ---------- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(59,44,35,0.05);
    cursor: pointer;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
  }
  .service:hover {
    background: var(--brown);
    transform: translateY(-6px);
  }
  .service:hover h3, .service:hover .service-num { color: var(--cream); }
  .service:hover p { color: rgba(247,243,236,0.7); }
  .service:hover .service-tags span {
    background: rgba(247,243,236,0.08);
    color: var(--cream);
  }
  .service:hover .service-arrow {
    background: var(--orange);
    color: var(--white);
    transform: rotate(-45deg);
  }

  .service-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px;
  }
  .service-num {
    font-size: 12px;
    color: var(--brown-soft);
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: color 0.4s var(--ease);
  }
  .service-arrow {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--cream-warm);
    color: var(--brown);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s var(--ease);
  }
  .service h3 {
    font-size: 21px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.025em;
    transition: color 0.4s var(--ease);
  }
  .service p {
    font-size: 14px;
    color: var(--brown-soft);
    line-height: 1.65;
    margin-bottom: 22px;
    transition: color 0.4s var(--ease);
    font-weight: 400;
  }
  .service-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .service-tags span {
    padding: 5px 11px;
    background: var(--cream);
    border-radius: var(--radius-pill);
    font-size: 11.5px;
    color: var(--brown-soft);
    font-weight: 600;
    transition: all 0.4s var(--ease);
    letter-spacing: -0.005em;
  }

  /* ---------- HEALTHCARE ---------- */
  .healthcare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .health-visual {
    position: relative;
    aspect-ratio: 1;
    background: var(--orange);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .health-visual::before {
    content: "";
    position: absolute;
    inset: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.18);
  }
  .health-visual::after {
    content: "";
    position: absolute;
    bottom: -100px; right: -100px;
    width: 400px; height: 400px;
    background:
      radial-gradient(circle, transparent 0%, transparent 38%, rgba(247,243,236,0.12) 38.5%, rgba(247,243,236,0.12) 42%, transparent 42.5%),
      radial-gradient(circle, transparent 0%, transparent 53%, rgba(247,243,236,0.12) 53.5%, rgba(247,243,236,0.12) 57%, transparent 57.5%),
      radial-gradient(circle, transparent 0%, transparent 68%, rgba(247,243,236,0.12) 68.5%, rgba(247,243,236,0.12) 72%, transparent 72.5%),
      radial-gradient(circle, transparent 0%, transparent 83%, rgba(247,243,236,0.12) 83.5%, rgba(247,243,236,0.12) 87%, transparent 87.5%);
    border-radius: 50%;
  }
  .health-cards {
    position: absolute;
    bottom: 32px; left: 32px; right: 32px;
    display: flex; flex-direction: column; gap: 10px;
    z-index: 2;
  }
  .health-card {
    background: rgba(247,243,236,0.96);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
  }
  .health-card-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--green);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .health-card-text strong {
    display: block;
    font-size: 13px;
    color: var(--brown);
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .health-card-text span {
    display: block;
    font-size: 11.5px;
    color: var(--brown-soft);
    margin-top: 2px;
    font-weight: 500;
  }

  .compliance-note {
    margin-top: 32px;
    padding: 22px 26px;
    background: var(--cream-warm);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--brown);
    font-size: 13.5px;
    color: var(--brown-soft);
    line-height: 1.6;
    font-weight: 400;
  }
  .compliance-note strong { color: var(--brown); display: block; margin-bottom: 6px; font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }

  /* ---------- WHY PAKISTAN ---------- */
  .pakistan {
    background: var(--brown);
    color: var(--cream);
    border-radius: var(--radius-xl);
    margin: 0 32px;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
  }
  .pakistan::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(165,185,145,0.13), transparent 60%);
  }
  .pakistan .eyebrow { color: var(--orange-soft); }
  .pakistan .section-head h2 { color: var(--cream); }
  .pakistan .section-head h2 .light { color: rgba(247,243,236,0.45); }
  .pakistan .section-head p { color: rgba(247,243,236,0.7); }

  .pakistan-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 72px;
  }
  .stat-block {
    padding: 36px 28px;
    background: rgba(247,243,236,0.04);
    border: 1px solid rgba(247,243,236,0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
  }
  .stat-block:hover {
    background: rgba(247,243,236,0.08);
    transform: translateY(-4px);
  }
  .stat-block .big {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: var(--orange-soft);
    letter-spacing: -0.04em;
    margin-bottom: 16px;
  }
  .stat-block h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 8px;
    letter-spacing: -0.015em;
  }
  .stat-block p {
    font-size: 12.5px;
    color: rgba(247,243,236,0.6);
    line-height: 1.55;
    font-weight: 400;
  }

  .pakistan-punch {
    margin-top: 64px;
    padding: 44px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
  }
  .pakistan-punch p {
    font-size: 26px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.025em;
  }
  .pakistan-punch strong { font-weight: 700; display: block; margin-top: 6px; }

  /* ---------- SAVINGS ---------- */
  .savings-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 72px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(59,44,35,0.04);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .savings-card::before {
    content: "";
    position: absolute;
    bottom: -100px; right: -100px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(165,185,145,0.3), transparent 60%);
    border-radius: 50%;
  }
  .savings-content { position: relative; z-index: 2; }
  .savings-content h2 {
    font-size: clamp(34px, 3.6vw, 46px);
    line-height: 1.05;
    margin: 18px 0 22px;
    font-weight: 700;
    letter-spacing: -0.035em;
  }
  .savings-content h2 .light { font-weight: 300; color: var(--brown-soft); }
  .savings-content p {
    font-size: 16px;
    color: var(--brown-soft);
    line-height: 1.65;
    margin-bottom: 32px;
    font-weight: 400;
  }

  .savings-mock {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    z-index: 2;
  }
  .savings-mock-title {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brown-soft);
    margin-bottom: 20px;
  }
  .savings-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(59,44,35,0.1);
    font-size: 14px;
  }
  .savings-row:last-of-type { border-bottom: none; }
  .savings-row .label { color: var(--brown-soft); font-weight: 500; }
  .savings-row .val { font-weight: 700; color: var(--brown); font-size: 16px; letter-spacing: -0.02em; }
  .savings-row.total .label { color: var(--brown); font-weight: 700; }
  .savings-total {
    margin-top: 20px;
    padding: 26px;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
  }
  .savings-total .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 8px;
  }
  .savings-total .num {
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
  }
  .savings-microcopy {
    margin-top: 22px;
    font-size: 13px;
    color: var(--brown-soft);
    font-style: italic;
    font-weight: 400;
  }

  /* ---------- HOW IT WORKS ---------- */
  .steps { position: relative; }
  .steps-line {
    position: absolute;
    top: 60px; left: 5%; right: 5%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(59,44,35,0.12), transparent);
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    position: relative;
  }
  .step {
    text-align: center;
    padding: 0 8px;
  }
  .step-num {
    width: 80px; height: 80px;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid rgba(59,44,35,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--brown);
    position: relative;
    transition: all 0.4s var(--ease);
    letter-spacing: -0.035em;
  }
  .step:hover .step-num {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: scale(1.05);
  }
  .step-num::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(59,44,35,0.15);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
  }
  .step:hover .step-num::before { opacity: 1; }
  .step h4, .step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.25;
  }
  .step p {
    font-size: 13px;
    color: var(--brown-soft);
    line-height: 1.6;
    font-weight: 400;
  }

  /* ---------- PACKAGES ---------- */
  .packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .package {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    border: 1px solid rgba(59,44,35,0.06);
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
  }
  .package:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
  }
  .package.featured {
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
  }
  .package.featured h3 { color: var(--cream); }
  .package.featured .package-tag { background: var(--orange); color: var(--white); }
  .package.featured > p { color: rgba(247,243,236,0.75); }
  .package.featured .package-best { background: rgba(247,243,236,0.06); }
  .package.featured .package-best span { color: rgba(247,243,236,0.7); }
  .package.featured .package-best strong { color: var(--orange-soft); }

  .package-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--cream-warm);
    color: var(--brown);
    border-radius: var(--radius-pill);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
    align-self: flex-start;
  }
  .package h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
  }
  .package > p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
    font-weight: 400;
  }
  .package-best {
    padding: 16px 18px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    margin-bottom: 26px;
  }
  .package-best strong {
    color: var(--brown);
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .package-best span { font-size: 13px; color: var(--brown-soft); line-height: 1.5; font-weight: 400; }
  .package .btn { width: 100%; justify-content: center; }

  /* ---------- COMPARISON ---------- */
  .compare-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(59,44,35,0.04);
  }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
  }
  .compare-table thead th {
    padding: 32px;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.025em;
    border-bottom: 1px solid rgba(59,44,35,0.08);
  }
  .compare-table thead th:first-child {
    color: var(--brown-soft);
    font-weight: 500;
    font-size: 14px;
    width: 38%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .compare-table thead th:nth-child(2) {
    background: var(--cream-warm);
    color: var(--brown-soft);
    font-weight: 600;
    font-size: 18px;
  }
  .compare-table thead th:nth-child(3) {
    background: var(--brown);
    color: var(--cream);
  }
  .compare-table tbody td {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(59,44,35,0.06);
    font-size: 14.5px;
    color: var(--brown);
    font-weight: 500;
  }
  .compare-table tbody td:first-child { font-weight: 600; }
  .compare-table tbody td:nth-child(2) {
    background: var(--cream-warm);
    color: var(--brown-soft);
    font-weight: 400;
  }
  .compare-table tbody td:nth-child(3) {
    color: var(--brown);
    font-weight: 600;
    background: rgba(247,243,236,0.5);
  }
  .compare-table tbody tr:last-child td { border-bottom: none; }
  .check-circle {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 22px; height: 22px;
    background: var(--green);
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
  }
  .x-circle {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 22px; height: 22px;
    background: rgba(59,44,35,0.08);
    border-radius: 50%;
    color: var(--brown-soft);
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
  }
  .compare-close {
    padding: 44px 32px;
    background: var(--cream-warm);
    text-align: center;
    font-size: 22px;
    color: var(--brown);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.025em;
  }
  .compare-close strong { font-weight: 700; display: block; margin-top: 6px; color: var(--brown); }

  /* ---------- FAQ ---------- */
  .faq-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    align-items: start;
  }
  .faq-grid .eyebrow { margin-bottom: 0; }
  .faq-side h2 {
    font-size: clamp(36px, 4vw, 50px);
    margin: 18px 0 22px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }
  .faq-side h2 .light { font-weight: 300; color: var(--brown-soft); }
  .faq-side p {
    font-size: 15.5px;
    color: var(--brown-soft);
    line-height: 1.65;
    margin-bottom: 32px;
    font-weight: 400;
  }
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(59,44,35,0.06);
    overflow: hidden;
    transition: all 0.3s var(--ease);
  }
  .faq-item:hover { border-color: rgba(59,44,35,0.14); }
  .faq-item[open] {
    background: var(--cream);
    border-color: var(--orange);
  }
  .faq-summary {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--brown);
    letter-spacing: -0.015em;
  }
  .faq-summary::-webkit-details-marker { display: none; }
  .faq-icon {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--cream-warm);
    color: var(--brown);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s var(--ease);
  }
  .faq-item[open] .faq-icon {
    background: var(--orange);
    color: var(--white);
    transform: rotate(45deg);
  }
  .faq-body {
    padding: 0 28px 26px;
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.7;
    font-weight: 400;
  }
  .faq-body p + p { margin-top: 12px; }

  /* ---------- BLOGS ---------- */
  .blog-section {
    background: var(--cream-warm);
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .blog-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(59,44,35,0.06);
    border-radius: var(--radius-lg);
    padding: 34px;
    transition: all 0.5s var(--ease);
    box-shadow: var(--shadow-xs);
  }
  .blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(233,122,76,0.45);
    box-shadow: var(--shadow-md);
  }
  .blog-card-kicker,
  .blog-article-kicker {
    width: fit-content;
    margin-bottom: 22px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--cream);
    color: var(--orange-deep);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .blog-card h3 {
    font-size: 23px;
    line-height: 1.18;
    margin-bottom: 14px;
    letter-spacing: -0.025em;
  }
  .blog-card p {
    color: var(--brown-soft);
    font-size: 14.5px;
    line-height: 1.7;
    flex: 1;
  }
  .blog-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(59,44,35,0.08);
    color: var(--brown-soft);
    font-size: 12px;
    font-weight: 700;
  }
  .blog-card-meta span:last-child { color: var(--orange-deep); }
  .blog-section-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
  }
  .blog-list-hero {
    padding-bottom: 64px;
  }
  .blog-article-hero {
    padding-bottom: 48px;
  }
  .blog-article-wrap {
    max-width: 820px;
    margin: 0 auto;
  }
  .blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 0;
    color: var(--brown-soft);
    font-size: 13px;
    font-weight: 700;
  }
  .blog-article {
    padding: 0 0 96px;
  }
  .blog-article-body {
    background: var(--white);
    border: 1px solid rgba(59,44,35,0.06);
    border-radius: var(--radius-lg);
    padding: 54px;
    box-shadow: var(--shadow-sm);
  }
  .blog-article-body h2 {
    font-size: 30px;
    line-height: 1.18;
    margin: 34px 0 14px;
  }
  .blog-article-body h2:first-child { margin-top: 0; }
  .blog-article-body p {
    color: var(--brown-soft);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
  }
  .blog-article-body ul {
    margin: 0 0 24px 22px;
    color: var(--brown-soft);
  }
  .blog-article-body li {
    margin-bottom: 12px;
    line-height: 1.7;
  }
  .blog-article-cta {
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgba(59,44,35,0.08);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* ---------- FINAL CTA ---------- */
  .final-cta {
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-xl);
    margin: 0 32px;
    padding: 88px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,243,236,0.16), transparent 60%);
  }
  .final-cta::after {
    content: "";
    position: absolute;
    bottom: -120px; right: -120px;
    width: 360px; height: 360px;
    background:
      radial-gradient(circle, transparent 0%, transparent 38%, rgba(247,243,236,0.12) 38.5%, rgba(247,243,236,0.12) 42%, transparent 42.5%),
      radial-gradient(circle, transparent 0%, transparent 53%, rgba(247,243,236,0.12) 53.5%, rgba(247,243,236,0.12) 57%, transparent 57.5%),
      radial-gradient(circle, transparent 0%, transparent 68%, rgba(247,243,236,0.12) 68.5%, rgba(247,243,236,0.12) 72%, transparent 72.5%),
      radial-gradient(circle, transparent 0%, transparent 83%, rgba(247,243,236,0.12) 83.5%, rgba(247,243,236,0.12) 87%, transparent 87.5%);
    border-radius: 50%;
  }
  .final-cta .wrap { position: relative; z-index: 2; }
  .final-cta h2 {
    color: var(--white);
    font-size: clamp(42px, 5.6vw, 78px);
    line-height: 1;
    margin-bottom: 26px;
    font-weight: 700;
    letter-spacing: -0.04em;
  }
  .final-cta h2 .light { font-weight: 300; color: rgba(247,243,236,0.7); }
  .final-cta p {
    font-size: 18px;
    color: rgba(247,243,236,0.88);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
  }
  .final-cta .cta-row {
    display: flex; gap: 14px; justify-content: center;
    flex-wrap: wrap;
  }
  .final-line {
    margin-top: 44px;
    font-size: 18px;
    color: rgba(247,243,236,0.85);
    line-height: 1.4;
    font-weight: 400;
  }
  .final-line strong { display: block; font-weight: 700; color: var(--white); }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--brown-deep);
    color: rgba(247,243,236,0.7);
    padding: 96px 0 40px;
    margin-top: 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 64px;
  }
  .footer-brand .logo {
    color: var(--cream);
    margin-bottom: 24px;
    gap: 0;
  }
  .footer-brand .logo-mark {
    width: auto;
    height: 64px;
  }
  .footer-brand .logo-text { display: none; }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: rgba(247,243,236,0.55);
    font-weight: 400;
  }
  .footer-brand .locations {
    display: flex; gap: 10px; flex-wrap: wrap;
  }
  .location-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: rgba(247,243,236,0.06);
    border: 1px solid rgba(247,243,236,0.08);
    border-radius: var(--radius-pill);
    font-size: 12.5px;
    color: rgba(247,243,236,0.8);
    font-weight: 500;
  }
  .location-pill .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
  }
  .location-pill .dot.green { background: var(--green); }

  .footer-col h5 {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 22px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 14px; }
  .footer-col a {
    font-size: 14px;
    color: rgba(247,243,236,0.7);
    transition: color 0.3s var(--ease);
    font-weight: 400;
  }
  .footer-col a:hover { color: var(--orange-soft); }

  .footer-bottom {
    padding-top: 36px;
    border-top: 1px solid rgba(247,243,236,0.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    font-size: 13px;
    color: rgba(247,243,236,0.5);
    font-weight: 400;
  }
  .footer-bottom-links { display: flex; gap: 26px; }

  /* ---------- ANIMATIONS ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal.delay-1 { transition-delay: 0.1s; }
  .reveal.delay-2 { transition-delay: 0.2s; }
  .reveal.delay-3 { transition-delay: 0.3s; }
  .reveal.delay-4 { transition-delay: 0.4s; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1180px) {
    .nav-inner { grid-template-columns: 1fr auto; position: relative; }
    .nav-inner > nav { display: none; }
    .menu-toggle { display: inline-flex; }

    /* Hamburger animates to X when the menu is open */
    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), top 0.3s var(--ease);
    }
    .nav.is-open .menu-toggle span { background: transparent; }
    .nav.is-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
    .nav.is-open .menu-toggle span::after  { top: 0; transform: rotate(-45deg); }

    /* Slide-down menu panel */
    .nav.is-open .nav-inner > nav {
      display: block;
      position: absolute;
      top: calc(100% + 12px);
      left: 0;
      right: 0;
      background: rgba(247, 243, 236, 0.96);
      backdrop-filter: saturate(170%) blur(20px);
      -webkit-backdrop-filter: saturate(170%) blur(20px);
      padding: 6px;
      border-radius: 22px;
      box-shadow:
        0 16px 40px -12px rgba(59, 44, 35, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.55);
      max-height: calc(100vh - 110px);
      overflow-y: auto;
      z-index: 50;
      animation: nav-slide-down 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }
    @keyframes nav-slide-down {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Vertical link list */
    .nav.is-open .nav-links {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0;
      margin: 0;
      list-style: none;
    }
    .nav.is-open .nav-links > li {
      border-bottom: 1px solid rgba(59, 44, 35, 0.06);
      width: 100%;
    }
    .nav.is-open .nav-links > li:last-child { border-bottom: none; }
    .nav.is-open .nav-links > li > a {
      padding: 14px 16px;
      font-size: 15px;
      font-weight: 600;
      color: var(--brown);
      border-radius: 12px;
      width: 100%;
      justify-content: space-between;
      letter-spacing: -0.005em;
    }
    .nav.is-open .caret { display: none; }

    /* Dropdowns inline (always expanded on mobile) */
    .nav.is-open .dropdown {
      position: static;
      transform: none;
      opacity: 1;
      visibility: visible;
      box-shadow: none;
      border: none;
      padding: 2px 6px 8px;
      background: transparent;
      min-width: 0;
      display: block;
      transition: none;
    }
    .nav.is-open .dropdown::before { display: none; }
    .nav.is-open .dropdown a {
      padding: 10px 12px;
      border-radius: 10px;
    }
    .nav.is-open .dropdown a:hover { background: rgba(59, 44, 35, 0.05); }
    .nav.is-open .dropdown-text strong { font-size: 13.5px; }
    .nav.is-open .dropdown-text span { font-size: 11.5px; }
  }
  @media (max-width: 1080px) {
    .hero { min-height: auto; padding: 80px 0 280px; }
    .hero h1 { font-size: clamp(40px, 7vw, 64px); }
    .hero-deco-1 { top: 11%; left: 4%; width: 48px; height: 48px; }
    .hero-deco-2 { top: 15%; right: 4%; width: 48px; height: 48px; }
    .hero-deco-3 { bottom: 28%; left: 4%; width: 42px; height: 42px; }
    .hero-cards-fan { bottom: 32px; }
    .hero-card-1 { width: 220px; transform: rotate(-7deg); margin: 24px -24px 0 0; }
    .hero-card-2 { width: 260px; }
    .hero-card-3 { width: 220px; transform: rotate(7deg); margin: 24px 0 0 -24px; }
    .pillars { grid-template-columns: 1fr; }
    .pillar:nth-child(2) { transform: none; }
    .pillar:hover, .pillar:nth-child(2):hover { transform: translateY(-4px); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .pakistan-stats { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .steps-line { display: none; }
    .packages { grid-template-columns: 1fr; }
    .package.featured { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .problem-grid, .founder-grid, .ai-grid, .healthcare, .savings-card, .faq-grid {
      grid-template-columns: 1fr; gap: 48px;
    }
    .savings-card { padding: 48px; }
  }
  @media (max-width: 720px) {
    .section-pad { padding: 80px 0; }
    .section-pad-sm { padding: 64px 0; }
    .problem, .different, .ai, .pakistan, .final-cta { margin: 0 14px; padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card { min-height: 0; padding: 30px; }
    .blog-article-body { padding: 32px; }
    .pakistan-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .compare-table thead th, .compare-table tbody td { padding: 18px 16px; font-size: 13px; }
    .compare-table thead th { font-size: 16px; }
    .compare-table thead th:first-child { font-size: 12px; }
    .savings-card { padding: 32px; }
    .ai-benefits { grid-template-columns: 1fr; }
    .hero { padding: 64px 0 240px; }
    .hero h1 { font-size: 40px; }
    .hero-sub { font-size: 16px; }
    .hero-deco { display: none; }
    .hero-ctas .btn-lg { padding: 14px 24px; font-size: 14px; }
    .hero-cards-fan {
      bottom: 24px;
      transform: translateX(-50%) scale(0.7);
      transform-origin: bottom center;
    }
    .nav-login { display: none; }
    .nav-cta .btn { padding: 10px 18px; font-size: 13px; }
    .who-card, .pillar, .service { padding: 32px; }
    .package { padding: 36px 30px; }
    .founder-belief { padding: 24px; }
    .founder-belief p { font-size: 16px; }
  }

  /* ---------- SAVINGS CALCULATOR MODAL ---------- */
  .calc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(38, 26, 20, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }
  .calc-overlay.open { opacity: 1; visibility: visible; }
  .calc-modal {
    position: relative;
    background: var(--cream);
    border-radius: 24px;
    width: 100%;
    max-width: 600px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.35);
    padding: 48px 40px 40px;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s var(--ease);
  }
  .calc-overlay.open .calc-modal { transform: translateY(0) scale(1); }
  .calc-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(59,44,35,0.06);
    color: var(--brown);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s var(--ease);
  }
  .calc-close:hover { background: rgba(59,44,35,0.12); }

  .calc-progress {
    height: 4px;
    background: rgba(59,44,35,0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 28px;
  }
  .calc-progress-bar {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--orange), var(--green));
    border-radius: 4px;
    transition: width 0.4s var(--ease);
  }

  .calc-step { display: none; }
  .calc-step.active { display: block; animation: calcFadeIn 0.4s var(--ease); }
  @keyframes calcFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .calc-step-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }
  .calc-step-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brown);
    margin-bottom: 8px;
    line-height: 1.15;
  }
  .calc-step-sub {
    font-size: 15px;
    color: var(--brown-soft);
    margin-bottom: 28px;
    line-height: 1.5;
  }

  .calc-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  .calc-options-rate { grid-template-columns: 1fr 1fr; }
  .calc-option {
    background: var(--white);
    border: 1.5px solid rgba(59,44,35,0.08);
    border-radius: 14px;
    padding: 18px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--brown);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--sans);
  }
  .calc-option > span:first-child { font-size: 24px; line-height: 1; margin-bottom: 4px; }
  .calc-option strong { display: block; font-size: 17px; font-weight: 700; }
  .calc-option span { font-size: 12.5px; color: var(--brown-soft); font-weight: 500; }
  .calc-option:hover, .calc-option.selected {
    border-color: var(--orange);
    background: rgba(233,122,76,0.05);
    transform: translateY(-1px);
  }
  .calc-option.selected {
    box-shadow: 0 0 0 3px rgba(233,122,76,0.18);
  }

  .calc-slider-wrap {
    background: var(--white);
    padding: 28px 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(59,44,35,0.06);
    margin-bottom: 24px;
    text-align: center;
  }
  .calc-slider-value {
    font-size: 56px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 16px;
  }
  .calc-slider-value small { font-size: 16px; color: var(--brown-soft); font-weight: 500; }
  .calc-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 6px;
    background: rgba(59,44,35,0.1);
    outline: none;
    margin-bottom: 8px;
  }
  .calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(233,122,76,0.4);
    border: 3px solid var(--white);
  }
  .calc-slider::-moz-range-thumb {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(233,122,76,0.4);
    border: 3px solid var(--white);
  }
  .calc-slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--brown-soft);
    font-weight: 600;
    padding: 0 4px;
  }

  .calc-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
  }
  .calc-step-actions .btn { padding: 12px 22px; font-size: 14px; }

  /* Result */
  .calc-result {
    text-align: center;
    margin-bottom: 28px;
    padding: 28px 20px;
    background: linear-gradient(135deg, rgba(165,185,145,0.18), rgba(233,122,76,0.10));
    border-radius: 16px;
  }
  .calc-result-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brown-soft);
    margin-bottom: 6px;
  }
  .calc-result-num {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: var(--brown);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--display);
  }
  .calc-result-sub {
    font-size: 14px;
    color: var(--brown-soft);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .calc-breakdown {
    background: var(--white);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: left;
    border: 1px solid rgba(59,44,35,0.06);
  }
  .calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: var(--brown-soft);
  }
  .calc-row strong { color: var(--brown); font-weight: 700; font-size: 15px; }
  .calc-row.total {
    border-top: 1px dashed rgba(59,44,35,0.12);
    padding-top: 12px;
    margin-top: 4px;
    font-weight: 700;
    color: var(--brown);
  }
  .calc-row.total strong { color: var(--orange); font-size: 18px; }

  /* Lead form */
  .calc-lead h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }
  .calc-lead p {
    font-size: 14px;
    color: var(--brown-soft);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .calc-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .calc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .calc-form input {
    padding: 14px 16px;
    background: var(--white);
    border: 1.5px solid rgba(59,44,35,0.10);
    border-radius: 12px;
    font-size: 14.5px;
    font-family: var(--sans);
    font-weight: 500;
    color: var(--brown);
    transition: all 0.25s var(--ease);
    width: 100%;
  }
  .calc-form input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(233,122,76,0.10);
  }
  .calc-submit {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
  }
  .calc-form-trust {
    font-size: 12px;
    color: var(--brown-soft);
    text-align: center;
    margin-top: 8px;
    line-height: 1.5;
  }

  .calc-success {
    text-align: center;
    padding: 24px 0;
  }
  .calc-success-icon {
    width: 80px; height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 30px rgba(165,185,145,0.4);
  }
  .calc-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
  }
  .calc-success p {
    font-size: 14.5px;
    color: var(--brown-soft);
    line-height: 1.55;
    margin-bottom: 20px;
  }

  body.calc-open { overflow: hidden; }

  @media (max-width: 560px) {
    .calc-modal { padding: 40px 22px 28px; border-radius: 18px; }
    .calc-step-title { font-size: 22px; }
    .calc-options { grid-template-columns: 1fr; }
    .calc-form-row { grid-template-columns: 1fr; }
    .calc-slider-value { font-size: 44px; }
  }


/* =============================================
   INNER PAGE STYLES
   ============================================= */

/* Page hero — used on all inner pages */
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.page-hero-content {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 16px 0 20px;
  font-weight: 700;
}
.page-hero h1 .light { font-weight: 300; color: var(--brown-soft); }
.page-hero h1 .accent { color: var(--orange); font-weight: 700; }
.page-hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--brown-soft);
  max-width: 640px;
  margin: 0 auto 32px;
}
.page-hero .hero-ctas { justify-content: center; }

/* Service cards (inner services page) */
.service {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(59,44,35,0.06);
  transition: all 0.3s var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream-warm);
  color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.service-icon.icon-orange { background: rgba(233,122,76,0.12); color: var(--orange); }
.service-icon.icon-green { background: rgba(165,185,145,0.18); color: var(--green-deep); }
.service-icon.icon-brown { background: rgba(59,44,35,0.08); color: var(--brown); }
.service h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--brown);
}
.service p {
  font-size: 14.5px;
  color: var(--brown-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: var(--brown);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
  transition: color 0.4s var(--ease);
}
.service-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Hover states for inner service cards (since the card turns dark brown on hover) */
.service:hover .service-icon {
  background: rgba(247, 243, 236, 0.1);
  color: var(--orange);
}
.service:hover .service-icon.icon-orange,
.service:hover .service-icon.icon-green,
.service:hover .service-icon.icon-brown {
  background: rgba(247, 243, 236, 0.1);
  color: var(--orange);
}
.service:hover .service-list li { color: rgba(247, 243, 236, 0.85); }
.service:hover .service-list li::before { color: var(--orange-soft); }

/* Industry tags */
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.industry-tags .tag {
  padding: 5px 11px;
  background: var(--cream-warm);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--brown);
}

/* AI benefits grid — only when used inside an inner page (.page-hero context) */
body:has(.page-hero) .ai-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  background: transparent;
}
body:has(.page-hero) .ai-benefit {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(59,44,35,0.06);
  transition: all 0.3s var(--ease);
}
body:has(.page-hero) .ai-benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
body:has(.page-hero) .ai-benefit h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 16px 0 10px;
  color: var(--brown);
}
body:has(.page-hero) .ai-benefit p {
  font-size: 14.5px;
  color: var(--brown-soft);
  line-height: 1.6;
}

/* Compare table */
.compare-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59,44,35,0.06);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.compare-table thead th {
  background: var(--cream-warm);
  text-align: left;
  padding: 22px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brown);
  border-bottom: 1px solid rgba(59,44,35,0.08);
}
.compare-table thead th:first-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-soft);
}
.compare-table tbody td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--brown);
  border-bottom: 1px solid rgba(59,44,35,0.04);
}
.compare-table tbody td:first-child {
  color: var(--brown-soft);
}
.compare-table tr.total-row td {
  background: rgba(165,185,145,0.10);
  border-bottom: none;
  font-weight: 600;
}

/* Steps grid (inner pages) — auto-fit so 4-step or 5-step pages both balance */
body:has(.page-hero) .steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* FAQ category title (FAQ page) */
.faq-cat-title {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 18px;
}
.faq-cat-title + .faq-list { margin-bottom: 48px; }
.faq-cat-title:not(:first-of-type) { margin-top: 8px; }

/* Values grid (About page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(59,44,35,0.06);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.value-card:hover::before { opacity: 1; }
.value-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--brown);
  line-height: 1.2;
}
.value-card p {
  font-size: 14.5px;
  color: var(--brown-soft);
  line-height: 1.6;
}
@media (max-width: 980px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* Pakistan stats grid (inner page why-pakistan only — uses .pak-stat, not .stat-block) */
body:has(.page-hero) .pakistan-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  background: transparent;
  padding: 0;
}
.pak-stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(59,44,35,0.06);
  text-align: center;
}
.pak-stat .num {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--display);
}
.pak-stat .label {
  font-size: 13px;
  color: var(--brown-soft);
  line-height: 1.4;
  font-weight: 500;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(59,44,35,0.06);
  transition: all 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar:nth-child(2) { transform: translateY(-12px); }
.pillar:nth-child(2):hover { transform: translateY(-16px); }
.pillar-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.pillar h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--brown);
}
.pillar p {
  font-size: 14.5px;
  color: var(--brown-soft);
  line-height: 1.6;
}

/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.package {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(59,44,35,0.06);
  position: relative;
  transition: all 0.3s var(--ease);
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package.featured {
  background: var(--brown);
  color: var(--cream);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  border-color: var(--brown);
}
.package.featured:hover { transform: scale(1.04) translateY(-4px); }
.package.featured .pkg-name { color: rgba(247,243,236,0.7); }
.package.featured .pkg-price .num { color: var(--cream); }
.package.featured .pkg-price .per { color: rgba(247,243,236,0.55); }
.package.featured .pkg-tag { color: rgba(247,243,236,0.65); }
.package.featured .pkg-features li { color: rgba(247,243,236,0.85); }
.package.featured .check { color: var(--orange); }
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pkg-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 12px;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.pkg-price .num {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brown);
  font-family: var(--display);
}
.pkg-price .per {
  font-size: 16px;
  color: var(--brown-soft);
  font-weight: 500;
}
.pkg-tag {
  font-size: 14px;
  color: var(--brown-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-features li {
  font-size: 14px;
  color: var(--brown);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}
.pkg-features .check {
  color: var(--green-deep);
  font-weight: 700;
  flex-shrink: 0;
}
.package .btn {
  width: 100%;
  justify-content: center;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59,44,35,0.06);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 14px;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-size: 14.5px;
  font-family: var(--sans);
  color: var(--brown);
  font-weight: 500;
  transition: all 0.25s var(--ease);
  width: 100%;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(233,122,76,0.10);
}
.contact-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(59,44,35,0.06);
}
.contact-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--brown);
  margin-bottom: 12px;
}
.contact-card p {
  font-size: 14px;
  color: var(--brown);
  line-height: 1.55;
  margin-bottom: 6px;
}
.contact-steps {
  list-style: none;
  counter-reset: stepcount;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-steps li {
  counter-increment: stepcount;
  font-size: 14px;
  color: var(--brown);
  line-height: 1.5;
  padding-left: 30px;
  position: relative;
}
.contact-steps li::before {
  content: counter(stepcount);
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* Legal pages */
.legal-hero {
  background: var(--cream-warm);
  padding: 88px 0 56px;
}
.legal-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 12px 0 8px;
  color: var(--brown);
}
.legal-meta {
  font-size: 13px;
  color: var(--brown-soft);
  font-weight: 500;
}
.legal-body { padding: 56px 0 96px; }
.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 36px 0 12px;
  color: var(--brown);
}
.legal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--brown-soft);
  margin-bottom: 16px;
}
.legal-body ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
}
.legal-body li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--brown-soft);
  margin-bottom: 6px;
}
.legal-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-body a:hover { color: var(--orange-deep); }
.legal-body strong { color: var(--brown); }

@media (max-width: 980px) {
  body:has(.page-hero) .ai-benefits,
  body:has(.page-hero) .pakistan-stats,
  .pillars, .packages { grid-template-columns: 1fr 1fr; gap: 16px; }
  .package.featured { transform: none; }
  .package.featured:hover { transform: translateY(-4px); }
  .pillar:nth-child(2) { transform: none; }
  .pillar:nth-child(2):hover { transform: translateY(-4px); }
}
@media (max-width: 720px) {
  .page-hero { padding: 80px 0 56px; }
  body:has(.page-hero) .ai-benefits,
  body:has(.page-hero) .pakistan-stats,
  .pillars, .packages { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .legal-hero { padding: 64px 0 40px; }
}


/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(59, 44, 35, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease), background 0.25s var(--ease);
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-3px) scale(1.04);
}
.back-to-top svg { width: 18px; height: 18px; }

@media (max-width: 720px) {
  .back-to-top { bottom: 18px; right: 18px; width: 44px; height: 44px; }
}


/* =============================================
   PRICING — TEAM BUILDER
   ============================================= */

/* --- Three tracks (top of page) --- */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.track-card {
  background: var(--white);
  border: 1.5px solid rgba(59,44,35,0.08);
  border-radius: 22px;
  padding: 34px 30px;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--brown);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.track-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -24px rgba(59,44,35,0.22);
  border-color: rgba(233,122,76,0.4);
}
.track-card.track-featured {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}
.track-card.track-featured:hover {
  border-color: var(--orange);
  box-shadow: 0 28px 60px -20px rgba(38,26,20,0.55);
}
.track-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 16px;
}
.track-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.track-card.track-featured .track-tagline { color: var(--orange-soft); }
.track-card h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  line-height: 1.15;
}
.track-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.track-price .num {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: var(--display);
  line-height: 1;
}
.track-price .per {
  font-size: 16px;
  color: var(--brown-soft);
  font-weight: 500;
}
.track-card.track-featured .track-price .per { color: rgba(247,243,236,0.6); }
.track-price-note {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(233,122,76,0.14);
  padding: 4px 9px;
  border-radius: 999px;
  margin-left: 4px;
}
.track-card.track-featured .track-price-note {
  background: rgba(233,122,76,0.22);
  color: var(--orange-soft);
}
.track-card p {
  font-size: 14.5px;
  color: var(--brown-soft);
  line-height: 1.55;
  margin-bottom: 18px;
}
.track-card.track-featured p { color: rgba(247,243,236,0.78); }
.track-best-for {
  font-size: 12.5px;
  color: var(--brown-soft);
  margin-bottom: 22px;
  line-height: 1.5;
}
.track-best-for span {
  font-weight: 700;
  color: var(--brown);
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  margin-right: 6px;
}
.track-card.track-featured .track-best-for { color: rgba(247,243,236,0.7); }
.track-card.track-featured .track-best-for span { color: var(--cream); }
.track-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease);
}
.track-card:hover .track-cta { transform: translateX(4px); }
.track-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

/* --- Builder shell (configurator) --- */
.builder-section { padding-top: 96px; padding-bottom: 96px; }
.builder-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-top: 56px;
  align-items: start;
}
.builder-config {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(59,44,35,0.06);
}
.builder-step {
  margin-bottom: 36px;
}
.builder-step:last-child { margin-bottom: 0; }
.builder-step[data-show-when]:not(.is-shown) { display: none; }
.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.step-num-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

/* Track pills (within builder) */
.builder-tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.b-track-pill {
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--brown);
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.b-track-pill strong {
  font-size: 14px;
  font-weight: 700;
}
.b-track-pill span {
  font-size: 12px;
  color: var(--brown-soft);
}
.b-track-pill:hover {
  border-color: rgba(233,122,76,0.35);
}
.b-track-pill.is-active {
  background: rgba(233,122,76,0.1);
  border-color: var(--orange);
}
.b-track-pill.is-active strong { color: var(--orange-deep); }

/* Team type grid */
.team-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.team-type {
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--brown);
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tt-emoji { font-size: 24px; line-height: 1; }
.team-type strong {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.team-type span {
  font-size: 11.5px;
  color: var(--brown-soft);
  line-height: 1.3;
}
.team-type:hover { border-color: rgba(233,122,76,0.35); transform: translateY(-2px); }
.team-type.is-active {
  background: rgba(233,122,76,0.1);
  border-color: var(--orange);
}

/* Generic blocks within Step 3 */
.b-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed rgba(59,44,35,0.08);
}
.b-block:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.b-block[data-show-when]:not(.is-shown) { display: none; }
.b-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  display: block;
}
.b-label-sub {
  font-weight: 500;
  color: var(--brown-soft);
  font-size: 12px;
}
.b-note {
  font-size: 12.5px;
  color: var(--brown-soft);
  margin-top: 10px;
  font-style: italic;
}

/* Slider */
.b-slider-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  padding: 16px 18px;
  border-radius: 14px;
}
.b-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 6px;
  background: rgba(59,44,35,0.12);
  outline: none;
}
.b-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(233,122,76,0.4);
  border: 3px solid var(--white);
}
.b-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(233,122,76,0.4);
  border: 3px solid var(--white);
}
.b-slider-readout {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 70px;
}
.b-slider-readout span {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.025em;
  line-height: 1;
  font-family: var(--display);
}
.b-slider-readout small {
  font-size: 11px;
  color: var(--brown-soft);
  font-weight: 600;
  margin-top: 2px;
}
.b-slider-marks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--brown-soft);
  font-weight: 600;
  margin-top: 8px;
  padding: 0 8px;
}

/* Industry chips */
.b-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.b-chip {
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s var(--ease);
}
.b-chip:hover { border-color: rgba(233,122,76,0.35); }
.b-chip.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Team commitment */
.b-commit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.b-commit {
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--brown);
  transition: all 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.b-commit strong { font-size: 14px; font-weight: 700; }
.b-commit span { font-size: 11.5px; color: var(--brown-soft); }
.b-commit:hover { border-color: rgba(233,122,76,0.35); }
.b-commit.is-active {
  background: rgba(233,122,76,0.1);
  border-color: var(--orange);
}

/* Roster (team members list) */
.b-roster {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.b-roster-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brown);
  border: 1px solid rgba(59,44,35,0.04);
}
.b-roster-item .role-name { display: flex; align-items: center; gap: 10px; }
.b-roster-item .role-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.b-roster-item .role-meta {
  font-size: 12px;
  color: var(--brown-soft);
  font-weight: 500;
}

/* Upsells */
.b-upsells {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.b-upsell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--cream);
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.b-upsell:hover { border-color: rgba(233,122,76,0.25); }
.b-upsell input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--orange);
  cursor: pointer;
}
.b-upsell:has(input:checked) {
  background: rgba(233,122,76,0.08);
  border-color: var(--orange);
}
.b-upsell-body { display: flex; flex-direction: column; gap: 2px; }
.b-upsell-body strong {
  font-size: 14px;
  color: var(--brown);
  font-weight: 700;
}
.b-upsell-body span {
  font-size: 12.5px;
  color: var(--brown-soft);
  line-height: 1.4;
}
.b-upsell-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

/* Custom textarea */
.b-textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--brown);
  font-weight: 500;
  resize: vertical;
  transition: all 0.25s var(--ease);
}
.b-textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(233,122,76,0.1);
}

/* --- Live total (right column) --- */
.builder-summary { position: sticky; top: 92px; }
.summary-card {
  background: var(--brown);
  color: var(--cream);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 28px 60px -20px rgba(38,26,20,0.4);
}
.summary-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 14px;
}
.summary-cost {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.cost-amount {
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.035em;
  line-height: 1;
  font-family: var(--display);
  transition: opacity 0.2s var(--ease);
}
.cost-amount.flash { opacity: 0.4; }
.cost-per {
  font-size: 18px;
  color: rgba(247,243,236,0.6);
  font-weight: 500;
}
.summary-meta {
  font-size: 13px;
  color: rgba(247,243,236,0.65);
  line-height: 1.55;
  margin-bottom: 22px;
  font-weight: 500;
}
.summary-divider {
  height: 1px;
  background: rgba(247,243,236,0.12);
  margin: 22px 0;
}
.summary-anchor {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.anchor-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: rgba(247,243,236,0.65);
}
.anchor-row strong {
  color: var(--cream);
  font-weight: 700;
  font-size: 15px;
}
.anchor-row.anchor-savings strong {
  color: var(--orange-soft);
  font-size: 18px;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
.builder-cta {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 14.5px;
}
.summary-fineprint {
  font-size: 12px;
  color: rgba(247,243,236,0.5);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* --- Lead form --- */
.lead-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  margin-top: 32px;
  border: 1px solid rgba(59,44,35,0.06);
  scroll-margin-top: 100px;
}
.lead-card-head {
  text-align: center;
  margin-bottom: 28px;
}
.lead-card-head h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--brown);
  margin: 8px 0 8px;
}
.lead-card-head p {
  font-size: 14.5px;
  color: var(--brown-soft);
  line-height: 1.55;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}
.lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-form .form-field { display: flex; flex-direction: column; gap: 6px; }
.lead-form label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brown);
}
.lead-form input,
.lead-form select {
  padding: 13px 14px;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-size: 14.5px;
  font-family: var(--sans);
  color: var(--brown);
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(233,122,76,0.1);
}
.lead-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
}
.form-fineprint {
  font-size: 12px;
  color: var(--brown-soft);
  text-align: center;
  margin-top: 4px;
}
.form-fineprint a { color: var(--orange); text-decoration: underline; }
.lead-success {
  text-align: center;
  padding: 16px 0;
}
.lead-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(165,185,145,0.4);
}
.lead-success h3 {
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 8px;
}
.lead-success p {
  font-size: 14.5px;
  color: var(--brown-soft);
  line-height: 1.55;
  max-width: 440px;
  margin: 0 auto;
}

/* --- Comparison hero ("entire team for less than one local hire") --- */
.compare-hero { background: var(--cream); }
.compare-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.compare-hero h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 14px 0 18px;
  line-height: 1.05;
}
.compare-hero h2 .light { font-weight: 300; color: var(--brown-soft); }
.compare-hero h2 .accent { color: var(--orange); font-weight: 700; }
.compare-hero p {
  font-size: 16px;
  color: var(--brown-soft);
  line-height: 1.65;
}
.compare-stack {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.compare-side {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(59,44,35,0.06);
}
.compare-them { background: var(--white); }
.compare-us {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  box-shadow: 0 24px 50px -18px rgba(38,26,20,0.4);
}
.cs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 12px;
}
.compare-us .cs-label { color: var(--orange-soft); }
.cs-cost {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--brown);
  font-family: var(--display);
  margin-bottom: 12px;
  line-height: 1.05;
}
.compare-us .cs-cost { color: var(--cream); }
.cs-cost span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--brown-soft);
  margin-top: 4px;
  font-family: var(--sans);
  letter-spacing: 0;
}
.compare-us .cs-cost span { color: rgba(247,243,236,0.55); }
.compare-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.compare-side li {
  font-size: 13.5px;
  color: var(--brown-soft);
  line-height: 1.55;
}
.compare-us li { color: rgba(247,243,236,0.78); }
.compare-vs {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-soft);
  font-style: italic;
}
.compare-pullquote {
  margin: 56px auto 0;
  text-align: center;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--brown);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 720px;
  line-height: 1.4;
}
.compare-pullquote strong {
  color: var(--orange);
  font-weight: 700;
}

/* --- Always Included grid --- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.included-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid rgba(59,44,35,0.06);
  transition: all 0.3s var(--ease);
}
.included-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ic-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 14px;
}
.included-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.included-card p {
  font-size: 14px;
  color: var(--brown-soft);
  line-height: 1.55;
}

/* --- Responsive --- */
@media (max-width: 1080px) {
  .tracks-grid { grid-template-columns: 1fr; }
  .builder-shell { grid-template-columns: 1fr; }
  .builder-summary { position: static; }
  .compare-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .compare-stack { grid-template-columns: 1fr; }
  .compare-vs { padding: 4px 0; }
  .included-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .builder-config { padding: 24px; }
  .lead-card { padding: 28px 22px; }
  .builder-tracks, .b-commit-row { grid-template-columns: 1fr; }
  .lead-form .form-row { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .b-upsell { grid-template-columns: auto 1fr; }
  .b-upsell-price { grid-column: 2; padding-left: 0; padding-top: 4px; }
}


/* =============================================
   ACTIVITY TOAST (social-proof rotator)
   ============================================= */
.activity-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 320px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border: 1px solid rgba(59, 44, 35, 0.06);
  border-radius: 16px;
  padding: 12px 14px 12px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  box-shadow:
    0 18px 40px -12px rgba(59, 44, 35, 0.20),
    0 6px 14px -4px rgba(59, 44, 35, 0.08);
  opacity: 0;
  transform: translateX(-110%) translateY(0);
  transition:
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity  0.4s var(--ease);
  z-index: 80;
  pointer-events: none;
}
.activity-toast.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.activity-toast.hiding {
  opacity: 0;
  transform: translateX(-110%);
}

.at-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 10px rgba(233, 122, 76, 0.28);
}
.at-avatar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 0 rgba(165, 185, 145, 0.6);
  animation: at-pulse 2s ease-in-out infinite;
}
@keyframes at-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(165, 185, 145, 0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(165, 185, 145, 0); }
}

.at-body {
  min-width: 0;
}
.at-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.35;
  letter-spacing: -0.01em;
  /* Clamp to 2 lines to keep height stable */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.at-meta {
  font-size: 11px;
  color: var(--brown-soft);
  font-weight: 500;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.at-meta::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.at-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--brown-soft);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  padding: 0;
}
.at-close:hover {
  background: rgba(59, 44, 35, 0.08);
  color: var(--brown);
}

/* Mobile + small screens */
@media (max-width: 560px) {
  .activity-toast {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    padding: 10px 12px;
  }
  .at-text { font-size: 12.5px; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .activity-toast { transition: opacity 0.2s ease; transform: none !important; }
  .at-avatar::after { animation: none; }
}


/* =============================================
   PRELOADER — cinematic logo reveal
   Background: #f7f3ec (cream)
   ============================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: #f7f3ec;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Default to visible while still in flow; JS removes it after exit */
}

/* Soft warm radial glow that breathes behind the logo */
.preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 50%, rgba(233, 122, 76, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(165, 185, 145, 0.06) 0%, transparent 70%);
  opacity: 0;
  animation: preloader-glow 2.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

/* Subtle dotted grid behind everything (matches hero pattern) */
.preloader::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(59, 44, 35, 0.07) 1px, transparent 1.5px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 50% 45% at 50% 50%, black 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 50% 45% at 50% 50%, black 20%, transparent 75%);
  opacity: 0;
  animation: preloader-glow 2.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

/* Stack: logo + accent line beneath it */
.preloader-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.preloader-logo {
  width: 240px;
  max-width: 60vw;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.94) translateY(8px);
  filter: blur(6px);
  animation: preloader-logo-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.15s;
  will-change: opacity, transform, filter;
}

/* Thin orange-to-green accent line that draws beneath the logo */
.preloader-line {
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 30%, var(--green) 70%, transparent 100%);
  border-radius: 2px;
  opacity: 0;
  animation: preloader-line-draw 1.0s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0.85s;
  will-change: width, opacity;
}

@keyframes preloader-logo-in {
  0% {
    opacity: 0;
    transform: scale(0.94) translateY(8px);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes preloader-line-draw {
  0%   { width: 0; opacity: 0; }
  100% { width: 280px; opacity: 1; }
}

@keyframes preloader-glow {
  0%   { opacity: 0; }
  60%  { opacity: 1; }
  100% { opacity: 1; }
}

/* Exit state — added by JS once the page has loaded + min-showtime elapsed */
.preloader.is-leaving {
  pointer-events: none;
  animation: preloader-out 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.preloader.is-leaving .preloader-logo {
  animation: preloader-logo-out 0.55s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.preloader.is-leaving .preloader-line {
  animation: preloader-line-out 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes preloader-out {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes preloader-logo-out {
  0%   { opacity: 1; transform: scale(1); filter: blur(0); }
  100% { opacity: 0; transform: scale(1.04); filter: blur(2px); }
}
@keyframes preloader-line-out {
  0%   { opacity: 1; }
  100% { opacity: 0; transform: scaleX(0.6); }
}

/* Lock scrolling while preloader is up */
body.preloader-active {
  overflow: hidden;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .preloader::before,
  .preloader::after,
  .preloader-logo,
  .preloader-line {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .preloader-line { width: 240px; }
  .preloader.is-leaving { transition: opacity 0.3s ease; opacity: 0; }
}

/* Mobile sizing */
@media (max-width: 480px) {
  .preloader-logo { width: 180px; }
  @keyframes preloader-line-draw {
    0%   { width: 0; opacity: 0; }
    100% { width: 200px; opacity: 1; }
  }
}


/* =============================================
   PERFORMANCE & MOBILE OPTIMIZATIONS
   ============================================= */

/* Prevent horizontal scroll anywhere on the page (defensive).
   `overflow-x: clip` is critical here — `hidden` creates a scroll container
   on the body and breaks `position: sticky` on mobile (especially iOS Safari). */
html, body { overflow-x: clip; max-width: 100%; }

/* All images respect their container by default — prevents overflow */
img { max-width: 100%; height: auto; }

/* Skip painting offscreen sections until they're scrolled near
   — massive win for initial render on long pages */
.section-pad,
.problem,
.different,
.ai,
.pakistan,
.final-cta,
.legal-body,
.builder-section,
.compare-hero,
.included-grid,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* GPU-accelerate elements that animate continuously */
.blob,
.hero-card,
.hero-deco,
.rolling-words,
.cost-amount {
  will-change: transform;
}

/* Mobile: reduce expensive backdrop-filter cost on smaller devices.
   Glass blur is gorgeous on desktop but a battery/perf hit on phones. */
@media (max-width: 720px) {
  .nav.scrolled .nav-inner {
    /* Cheaper but still visible glass on mobile */
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
  }
  .calc-overlay {
    /* Slightly cheaper backdrop */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  /* Disable hero parallax on touch devices — feels janky and costs paint */
  .blob-1, .blob-2 {
    transform: none !important;
  }
  /* Decoration badges hidden on small screens — already done, but reinforce */
  .hero-deco { display: none; }
}

/* Honor data-saver mode (Chrome on Android, etc.) — strip heavy effects */
@media (prefers-reduced-data: reduce) {
  .blob, .hero-grid-pattern, .hero-deco { display: none; }
  .nav.scrolled .nav-inner,
  .calc-overlay,
  .activity-toast {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* Touch-target minimum — WCAG / Apple HIG recommend 44x44px for tap targets */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-cta .btn,
  .menu-toggle,
  .footer-col a,
  .nav-links > li > a {
    min-height: 44px;
  }
  /* Slightly larger tap area for the back-to-top + close buttons */
  .back-to-top { width: 50px; height: 50px; }
  .calc-close, .at-close { min-width: 36px; min-height: 36px; }
}

/* Safe-area insets for notched phones (iPhone 14+, Pixel etc.) */
.nav { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
footer { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
.activity-toast { left: max(24px, env(safe-area-inset-left, 24px)); }
.back-to-top { right: max(28px, env(safe-area-inset-right, 28px)); }

/* Tap-highlight cleanup — removes the ugly blue/grey flash on iOS taps */
* { -webkit-tap-highlight-color: rgba(233, 122, 76, 0.15); }

/* Smooth scrolling sitewide — feels nicer on anchor jumps */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Tiny mobile fixes for previously-spotted edge cases */
@media (max-width: 480px) {
  /* Hero h1 at really tight widths — make sure rolling text doesn't push off-screen */
  .hero h1 { font-size: clamp(34px, 9vw, 44px); }
  /* Compare table allows horizontal scroll inside its wrapper but not the page */
  .compare-table-wrap { -webkit-overflow-scrolling: touch; }
  /* Modal header tightens up */
  .calc-step-title { font-size: 20px; }
}

/* Homepage mobile polish only. Desktop/tablet layouts above this breakpoint stay unchanged. */
@media (max-width: 720px) {
  .nav.is-open {
    z-index: 1000;
  }
  .nav.is-open .nav-inner {
    border-radius: 24px;
  }
  .nav.is-open .nav-inner > nav {
    position: fixed;
    top: calc(72px + env(safe-area-inset-top, 0px));
    left: 14px;
    right: 14px;
    max-height: calc(100dvh - 96px - env(safe-area-inset-top, 0px));
    overscroll-behavior: contain;
    z-index: 1001;
  }

  #how .section-head,
  #packages .section-head,
  #compare .section-head,
  #faq > .wrap > .faq-grid .faq-side {
    margin-bottom: 34px;
  }

  #how .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #how .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 16px;
    text-align: left;
    padding: 22px;
    background: var(--white);
    border: 1px solid rgba(59,44,35,0.06);
    border-radius: 22px;
    box-shadow: var(--shadow-xs);
  }
  #how .step-num {
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
    margin: 0;
    font-size: 18px;
  }
  #how .step h4 {
    margin: 0 0 6px;
    font-size: 16px;
  }
  #how .step p {
    margin: 0;
    font-size: 13px;
  }

  #packages .packages {
    margin-top: 0;
    gap: 16px;
  }
  #packages .package,
  #packages .package.featured {
    grid-column: auto !important;
    width: 100%;
    padding: 30px 24px;
    border-radius: 24px;
    transform: none;
  }
  #packages .package:hover,
  #packages .package.featured:hover {
    transform: none;
  }
  #packages .package-tag {
    margin-bottom: 16px;
  }
  #packages .package h3 {
    font-size: 21px;
    margin-bottom: 12px;
  }
  #packages .package > p {
    margin-bottom: 18px;
  }
  #packages .package-best {
    margin-bottom: 20px;
    padding: 14px 16px;
  }

  #compare .compare-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 24px;
  }
  #compare .compare-table {
    min-width: 620px;
  }
  #compare .compare-table thead th,
  #compare .compare-table tbody td {
    padding: 16px 14px;
    font-size: 13px;
    line-height: 1.45;
  }
  #compare .compare-table thead th {
    font-size: 15px;
  }
  #compare .compare-table thead th:first-child {
    width: 30%;
    font-size: 11px;
  }
  #compare .check-circle,
  #compare .x-circle {
    width: 18px;
    height: 18px;
    margin-right: 7px;
  }
  #compare .compare-close {
    min-width: 620px;
    padding: 28px 20px;
    font-size: 17px;
  }

  #faq > .wrap > .faq-grid {
    gap: 28px;
  }
  #faq > .wrap > .faq-grid .faq-side {
    position: static !important;
    top: auto !important;
    text-align: center;
  }
  #faq > .wrap > .faq-grid .faq-side .eyebrow,
  #faq > .wrap > .faq-grid .faq-side .btn {
    justify-content: center;
  }
  #faq > .wrap > .faq-grid .faq-side h2 {
    font-size: clamp(30px, 9vw, 38px);
    margin: 14px 0 16px;
  }
  #faq > .wrap > .faq-grid .faq-side p {
    margin-bottom: 22px;
  }
  #faq > .wrap > .faq-grid .faq-list {
    gap: 10px;
  }
  #faq > .wrap > .faq-grid .faq-summary {
    padding: 18px 18px;
    gap: 14px;
    font-size: 14.5px;
    line-height: 1.35;
  }
  #faq > .wrap > .faq-grid .faq-body {
    padding: 0 18px 20px;
    font-size: 13.5px;
  }
}

/* Print: hide the noise (preloader, toasts, modals, decorations, back-to-top) */
@media print {
  .preloader, .activity-toast, .back-to-top, .calc-overlay,
  .hero-deco, .blob, .hero-grid-pattern,
  .nav .nav-cta .btn, .menu-toggle {
    display: none !important;
  }
  .nav { position: static !important; background: white !important; box-shadow: none !important; }
  body { background: white !important; color: black !important; }
}


 .mid-trust-heading{
  text-align:center;
  font-size: 12px;
  font-weight:500;
  letter-spacing:0.5px;
  color: var(--brown);
  opacity:0.9;
}

.mid-trust-heading{
  display:block;
}

.mid-trust-heading::before,
.mid-trust-heading::after{
  content:"";
  display:inline-block;
  width:40px;
  height:1px;
  background: rgba(255,255,255,0.2);
  vertical-align:middle;
  margin:0 12px;}

