    /* ─── Reset & Base ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: #1F2937;
      background: #FFFFFF;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }

    /* ─── Design Tokens ─────────────────────────────────────────── */
    :root {
      --navy:       #1A3A5C;
      --navy-dark:  #122840;
      --teal:       #2A8F80;
      --teal-light: #3DB3A1;
      --teal-pale:  #EAF5F3;
      --warm-bg:    #F8F5F1;
      --gold:       #D4943A;
      --gold-light: #F2B85A;
      --text-dark:  #1F2937;
      --text-mid:   #4B5563;
      --text-light: #9CA3AF;
      --white:      #FFFFFF;
      --border:     #E5E7EB;
      --radius:     12px;
      --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
      --shadow-md:  0 8px 30px rgba(0,0,0,.10);
      --shadow-lg:  0 20px 60px rgba(0,0,0,.13);
    }

    /* ─── Utilities ─────────────────────────────────────────────── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 96px 0; }
    .section--alt { background: var(--warm-bg); }
    .section--teal-pale { background: var(--teal-pale); }
    .section--navy { background: var(--navy); color: var(--white); }

    .badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--teal-pale); color: var(--teal);
      font-size: .75rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; padding: 5px 14px;
      border-radius: 50px; margin-bottom: 16px;
    }
    .badge--gold { background: #FEF3E2; color: var(--gold); }

    h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
    h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
    h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 700; }
    h3 { font-size: 1.35rem; font-weight: 600; }

    .lead {
      font-size: 1.125rem; color: var(--text-mid);
      max-width: 640px; line-height: 1.75;
    }
    .lead--white { color: rgba(255,255,255,.8); }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 28px; border-radius: 8px;
      font-size: 1rem; font-weight: 600; cursor: pointer;
      transition: all .2s ease; border: 2px solid transparent;
      text-align: center;
    }
    .btn-primary {
      background: var(--navy); color: var(--white);
      box-shadow: 0 4px 16px rgba(26,58,92,.35);
    }
    .btn-primary:hover {
      background: var(--navy-dark); transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(26,58,92,.45);
    }
    .btn-outline {
      background: transparent; color: var(--white);
      border-color: rgba(255,255,255,.5);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,.1);
      border-color: var(--white);
      transform: translateY(-2px);
    }
    .btn-outline-navy {
      background: transparent; color: var(--navy);
      border-color: var(--navy);
    }
    .btn-outline-navy:hover {
      background: var(--navy); color: var(--white);
      transform: translateY(-2px);
    }

    /* ─── Nav ────────────────────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow .3s ease;
    }
    .nav.scrolled { box-shadow: var(--shadow-md); }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 80px; gap: 16px;
    }
    .nav__logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem; font-weight: 700; color: var(--navy);
      white-space: nowrap;
    }
    .nav__logo-icon {
      width: 38px; height: 38px; background: var(--teal);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .nav__links {
      display: flex; align-items: center; gap: 6px;
      list-style: none;
    }
    .nav__links a {
      white-space: nowrap;
      padding: 6px 10px; border-radius: 6px;
      font-size: .9rem; font-weight: 500; color: var(--text-mid);
      transition: color .2s, background .2s;
    }
    .nav__links a:hover { color: var(--teal); background: var(--teal-pale); }
    .nav__cta { margin-left: 4px; display:flex; align-items:center; gap:6px; flex-shrink:0; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      padding: 6px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--navy); border-radius: 2px;
      transition: all .3s ease;
    }
    .mobile-menu {
      display: none; position: fixed; top: 72px; left: 0; right: 0;
      background: var(--white); border-bottom: 1px solid var(--border);
      padding: 16px 24px 24px; z-index: 999;
      box-shadow: var(--shadow-md);
    }
    .mobile-menu.open { display: block; }
    .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
    .mobile-menu a {
      display: block; padding: 10px 12px; border-radius: 8px;
      font-size: 1rem; font-weight: 500; color: var(--text-dark);
      transition: background .2s, color .2s;
    }
    .mobile-menu a:hover { background: var(--teal-pale); color: var(--teal); }
    .mobile-menu .btn { width: 100%; justify-content: center; margin-top: 12px; }

    /* ─── Hero ───────────────────────────────────────────────────── */
    @keyframes kenburns {
      0%   { transform: scale(1.06) translateX(0%); }
      50%  { transform: scale(1.12) translateX(-2.5%); }
      100% { transform: scale(1.06) translateX(0%); }
    }
    @keyframes kenburns-mobile {
      0%   { transform: scale(1.04); }
      100% { transform: scale(1.09); }
    }
    .hero {
      padding-top: 160px; padding-bottom: 60px;
      position: relative; overflow: hidden;
      background: var(--navy-dark);
    }
    .hero__bg {
      position: absolute; inset: -6%;
      background: url('images/hero-caregiver.jpg') center 20% / cover no-repeat;
      animation: kenburns 22s ease-in-out infinite alternate;
      z-index: 0;
    }
    .hero__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        105deg,
        rgba(10,22,52,0.72) 0%,
        rgba(10,22,52,0.52) 45%,
        rgba(10,22,52,0.18) 100%
      );
      z-index: 1;
    }
    .hero .container { position: relative; z-index: 2; }
    .hero__copy { max-width: 620px; }
    .hero__eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
      font-size: .8rem; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; padding: 6px 16px;
      border-radius: 50px; border: 1px solid rgba(255,255,255,.2);
      margin-bottom: 20px;
    }
    .hero__title { color: var(--white); margin-bottom: 20px; }
    .hero__title em { color: var(--teal-light); font-style: normal; }
    .hero__actions {
      display: flex; align-items: center; gap: 16px;
      flex-wrap: wrap; margin-top: 32px;
    }
    .hero__stats-bar {
      display: flex; gap: 16px; flex-wrap: wrap;
      margin-top: 56px; padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,.15);
    }
    .hero__stat-pill {
      display: flex; flex-direction: column; gap: 4px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 12px; padding: 16px 24px;
      backdrop-filter: blur(6px);
      flex: 1; min-width: 120px;
    }
    .hero__stat-pill-num {
      font-family: 'Inter', sans-serif !important;
      font-size: 2rem; font-weight: 800;
      color: #ffffff; line-height: 1;
      letter-spacing: -0.03em;
    }
    .hero__stat-pill-label {
      font-size: .75rem; font-weight: 500;
      color: rgba(255,255,255,.7); line-height: 1.3;
    }
    .hero__card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 20px; padding: 40px;
      backdrop-filter: blur(8px);
    }
    .hero__stat-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    }
    .hero__stat {
      text-align: center; padding: 20px 16px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px;
    }
    .hero__stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem; font-weight: 700;
      color: var(--teal-light); line-height: 1;
      margin-bottom: 6px;
    }
    .hero__stat-label {
      font-size: .8rem; font-weight: 500;
      color: rgba(255,255,255,.7); line-height: 1.3;
    }
    .hero__card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; color: var(--white);
      margin-bottom: 20px; font-weight: 600;
      opacity: .85; text-align: center;
    }

    /* ─── Trust Bar ──────────────────────────────────────────────── */
    .trust-bar {
      background: var(--navy);
      padding: 20px 0;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .trust-bar__inner {
      display: flex; align-items: center; justify-content: center;
      gap: 0; flex-wrap: wrap;
    }
    .trust-bar__item {
      display: flex; align-items: center; gap: 10px;
      padding: 8px 28px; color: rgba(255,255,255,.8);
      font-size: .85rem; font-weight: 500;
    }
    .trust-bar__item + .trust-bar__item {
      border-left: 1px solid rgba(255,255,255,.15);
    }
    .trust-bar__icon {
      width: 22px; height: 22px; color: var(--teal-light);
      flex-shrink: 0;
    }

    /* ─── Pillar overrides for dark hero background ──────────────── */
    .solutions-hero-section .pillar {
      background: var(--warm-bg);
      border-color: rgba(255,255,255,.15);
    }
    .solutions-hero-section .pillar h4 { color: var(--navy); }
    .solutions-hero-section .pillar p { color: var(--text-mid); }

    /* ─── About visual card — glassmorphism on dark background ───── */
    .solutions-hero-section .about__visual {
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.20);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .solutions-hero-section .mission-statement { color: rgba(255,255,255,.90); }
    .solutions-hero-section .mission-statement::before { color: var(--teal-light); opacity: .5; }
    .solutions-hero-section .values-list li { color: rgba(255,255,255,.85); }
    .solutions-hero-section .values-list li span { background: rgba(255,255,255,.12); }

    /* ─── Solutions Hero Section ─────────────────────────────────── */
    .solutions-hero-section {
      position: relative; overflow: hidden;
      background: var(--navy-dark);
    }
    .solutions-hero-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
      background-color: var(--navy-dark);
      /* Default image for solutions page */
      background-image: url('images/solutions.webp');
      z-index: 0;
    }
    .solutions-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        105deg,
        rgba(10,22,52,0.80) 0%,
        rgba(10,22,52,0.55) 40%,
        rgba(10,22,52,0.20) 100%
      );
      z-index: 1;
    }
    .solutions-page-header {
      text-align: center; max-width: 720px;
      margin: 0 auto; padding-top: 140px;
    }
    .solutions-why-matters {
      max-width: 640px; padding-bottom: 96px;
    }

    /* ─── Solutions ──────────────────────────────────────────────── */
    .solutions-intro {
      text-align: center; max-width: 640px; margin: 0 auto 64px;
    }
    .solutions-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .solution-card {
      background: var(--warm-bg);
      border: 1px solid rgba(255,255,255,.6);
      border-radius: 16px; padding: 36px 28px;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
      position: relative; overflow: hidden;
    }
    .solution-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--teal);
      transform: scaleX(0); transform-origin: left;
      transition: transform .3s ease;
    }
    .solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .solution-card:hover::after { transform: scaleX(1); }
    .solution-card__icon {
      width: 56px; height: 56px; background: var(--teal-pale);
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .solution-card__icon svg { width: 28px; height: 28px; color: var(--teal); }
    .solution-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.2rem; }
    .solution-card p { color: var(--text-mid); font-size: .95rem; line-height: 1.7; }
    .solution-card__features {
      list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 7px;
    }
    .solution-card__features li {
      font-size: .875rem; color: var(--text-mid);
      display: flex; align-items: flex-start; gap: 8px;
    }
    .solution-card__features li::before {
      content: ''; width: 6px; height: 6px; background: var(--teal);
      border-radius: 50%; flex-shrink: 0; margin-top: 7px;
    }

    /* ─── Why Us ─────────────────────────────────────────────────── */
    .whyus__grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center;
    }
    .whyus__visual {
      position: relative;
    }
    .whyus__bg-card {
      background: linear-gradient(135deg, var(--navy) 0%, #1E5068 100%);
      border-radius: 20px; padding: 48px 40px;
      color: var(--white);
    }
    .whyus__bg-card h3 {
      font-size: 1.5rem; margin-bottom: 24px;
      color: var(--white);
    }
    .credential-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
    .credential-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px; background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
    }
    .credential-icon {
      width: 40px; height: 40px; background: var(--teal);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .credential-icon svg { width: 20px; height: 20px; color: var(--white); }
    .credential-item strong { display: block; font-size: .95rem; color: var(--white); margin-bottom: 3px; }
    .credential-item span { font-size: .83rem; color: rgba(255,255,255,.65); }
    .whyus__content .badge { margin-bottom: 16px; }
    .whyus__content h2 { margin-bottom: 20px; color: var(--navy); }
    .whyus__pillars { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
    .pillar {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px; background: var(--white);
      border: 1px solid var(--border); border-radius: 12px;
      transition: box-shadow .2s ease, border-color .2s ease;
    }
    .pillar:hover { box-shadow: var(--shadow-sm); border-color: var(--teal-light); }
    .pillar__num {
      width: 38px; height: 38px; background: var(--teal);
      color: var(--white); font-weight: 700; font-size: .95rem;
      border-radius: 10px; display: flex; align-items: center;
      justify-content: center; flex-shrink: 0;
    }
    .pillar h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .pillar p { font-size: .875rem; color: var(--text-mid); line-height: 1.6; }

    /* ─── About ──────────────────────────────────────────────────── */
    .about__grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center;
    }
    .about__content h2 { color: var(--navy); margin-bottom: 20px; }
    .about__content .lead { max-width: 100%; }
    .about__team { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
    .team-card {
      display: flex; align-items: center; gap: 16px;
      padding: 18px; background: var(--white);
      border: 1px solid var(--border); border-radius: 12px;
    }
    .team-avatar {
      width: 54px; height: 54px; border-radius: 12px;
      background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; font-weight: 700; color: var(--white);
      font-family: 'Playfair Display', serif; flex-shrink: 0;
    }
    .team-card strong { display: block; font-size: 1rem; color: var(--navy); margin-bottom: 3px; }
    .team-card span { font-size: .83rem; color: var(--text-mid); line-height: 1.4; }
    .about__visual {
      background: var(--warm-bg); border-radius: 20px; padding: 48px 40px;
      border: 1px solid var(--border);
    }
    .mission-statement {
      font-family: 'Playfair Display', serif; font-size: 1.4rem;
      color: var(--navy); line-height: 1.5; font-style: italic;
      margin-bottom: 32px; position: relative; padding-left: 24px;
    }
    .mission-statement::before {
      content: '"'; position: absolute; left: -4px; top: -10px;
      font-size: 4rem; color: var(--teal); opacity: .3;
      font-family: Georgia, serif; line-height: 1;
    }
    .values-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .values-list li {
      display: flex; align-items: center; gap: 12px;
      font-size: .95rem; color: var(--text-dark); font-weight: 500;
    }
    .values-list li span {
      width: 32px; height: 32px; background: var(--teal-pale);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 1rem;
    }

    /* ─── Demo Form ──────────────────────────────────────────────── */
    .demo { background: var(--navy); }
    .demo__inner {
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 72px; align-items: start;
    }
    .demo__copy h2 { color: var(--white); margin-bottom: 16px; }
    .demo__benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
    .demo__benefits li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: .95rem; color: rgba(255,255,255,.8);
    }
    .demo__benefits li::before {
      content: '✓'; width: 22px; height: 22px;
      background: var(--teal); color: var(--white);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: .7rem; font-weight: 700; flex-shrink: 0;
      line-height: 22px; text-align: center;
    }
    .demo__form {
      background: var(--white); border-radius: 20px; padding: 40px;
      box-shadow: var(--shadow-lg);
    }
    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; color: var(--navy);
      margin-bottom: 24px; font-weight: 700;
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group.full { grid-column: 1 / -1; }
    .form-group label {
      font-size: .85rem; font-weight: 600; color: var(--text-dark);
      letter-spacing: .02em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 11px 14px; border: 1.5px solid var(--border);
      border-radius: 8px; font-size: .95rem; color: var(--text-dark);
      font-family: 'Inter', sans-serif;
      transition: border-color .2s, box-shadow .2s;
      background: #FAFAFA;
      -webkit-appearance: none; appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none; border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(42,143,128,.12);
      background: var(--white);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%; background: var(--teal); color: var(--white);
      border: none; border-radius: 8px; padding: 14px;
      font-size: 1rem; font-weight: 700; cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: background .2s, transform .2s, box-shadow .2s;
      margin-top: 8px;
      box-shadow: 0 4px 16px rgba(42,143,128,.35);
    }
    .form-submit:hover {
      background: #238A7B; transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(42,143,128,.45);
    }
    .form-note {
      font-size: .78rem; color: var(--text-light);
      text-align: center; margin-top: 12px;
    }
    .form-success {
      display: none; text-align: center; padding: 32px 16px;
    }
    .form-success .check {
      width: 64px; height: 64px; background: var(--teal-pale);
      border-radius: 50%; display: flex; align-items: center;
      justify-content: center; margin: 0 auto 16px;
      font-size: 1.8rem;
    }
    .form-success h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.4rem; }
    .form-success p { color: var(--text-mid); font-size: .95rem; }

    /* ─── Contact Bar ────────────────────────────────────────────── */
    .contact-bar {
      background: var(--teal-pale);
      border-top: 1px solid rgba(42,143,128,.2);
      padding: 40px 0;
    }
    .contact-bar__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px; flex-wrap: wrap;
    }
    .contact-bar__text h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 4px; }
    .contact-bar__text p { color: var(--text-mid); font-size: .9rem; }
    .contact-bar__items {
      display: flex; gap: 32px; flex-wrap: wrap;
    }
    .contact-item {
      display: flex; align-items: center; gap: 10px;
      color: var(--text-dark); font-size: .9rem; font-weight: 500;
    }
    .contact-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

    /* ─── Footer ─────────────────────────────────────────────────── */
    footer {
      background: var(--navy-dark);
      padding: 60px 0 32px; color: rgba(255,255,255,.7);
    }
    .footer__grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer__brand p {
      font-size: .9rem; line-height: 1.7;
      margin-top: 16px; max-width: 280px;
    }
    .footer__logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem; font-weight: 700; color: var(--white);
    }
    .footer__logo-icon {
      width: 34px; height: 34px; background: var(--teal);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
    }
    .footer__col h4 {
      font-size: .85rem; font-weight: 700; color: var(--white);
      letter-spacing: .08em; text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer__links a {
      font-size: .9rem; transition: color .2s;
    }
    .footer__links a:hover { color: var(--teal-light); }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 28px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
      font-size: .82rem;
    }
    .footer__bottom a:hover { color: var(--teal-light); }

    /* ─── Animations ─────────────────────────────────────────────── */
    /* Progressive enhancement: only hide when JS is active */
    .js .fade-up {
      opacity: 0; transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .js .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ─── Hero Photo ─────────────────────────────────────────────── */
    .hero__visual { position: relative; }
    .hero__photo-wrap {
      position: relative; border-radius: 20px; overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,.45);
    }
    .hero__photo {
      width: 100%; height: 490px; object-fit: cover;
      display: block; object-position: center top;
    }
    .hero__stats-overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 20px 20px 24px;
      background: linear-gradient(to top, rgba(26,58,92,.95) 0%, rgba(26,58,92,.6) 60%, transparent 100%);
    }
    .hero__stats-row { display: flex; gap: 10px; }
    .hero__stat-pill {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 10px; padding: 10px 14px;
      text-align: center; flex: 1;
      backdrop-filter: blur(4px);
    }
    .hero__stat-pill-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 700;
      color: var(--teal-light); display: block;
      line-height: 1; margin-bottom: 4px;
    }
    .hero__stat-pill-label {
      font-size: .68rem; color: rgba(255,255,255,.75);
      display: block; line-height: 1.3;
    }

    /* ─── Approach Section ────────────────────────────────────────── */
    .approach__grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center;
    }
    .approach__img {
      width: 100%; border-radius: 16px;
      box-shadow: var(--shadow-lg);
    }
    .approach__content h2 { color: var(--navy); margin-bottom: 20px; }
    .approach__phases { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
    .approach__phase {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 16px; background: var(--white);
      border: 1px solid var(--border); border-radius: 12px;
      transition: box-shadow .2s;
    }
    .approach__phase:hover { box-shadow: var(--shadow-sm); }
    .approach__phase-num {
      width: 34px; height: 34px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem; font-weight: 800; color: var(--white);
      flex-shrink: 0;
    }
    .approach__phase-num--1 { background: #3B82F6; }
    .approach__phase-num--2 { background: var(--teal); }
    .approach__phase-num--3 { background: #8B5CF6; }
    .approach__phase h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
    .approach__phase p { font-size: .83rem; color: var(--text-mid); line-height: 1.55; }

    /* ─── App Feature ─────────────────────────────────────────────── */
    .app-feature {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center;
      margin-top: 80px; padding-top: 72px;
      border-top: 1px solid var(--border);
    }
    .app-feature__img {
      width: 100%; border-radius: 20px;
      box-shadow: var(--shadow-lg);
      max-height: 540px; object-fit: cover; object-position: top;
    }
    .app-feature__content h2 { color: var(--navy); margin-bottom: 20px; }
    .app-feature__list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
    .app-feature__list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: .95rem; color: var(--text-mid); line-height: 1.6;
    }
    .app-feature__list li span {
      width: 28px; height: 28px; border-radius: 7px;
      background: var(--teal-pale); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0; font-size: .9rem;
    }

    /* ─── Responsive ─────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .solutions-grid { grid-template-columns: repeat(2, 1fr); }
      .footer__grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .section { padding: 64px 0; }
      .hero { padding-top: 120px; padding-bottom: 48px; }
      .hero__bg {
        background-position: 65% center;
        animation: kenburns-mobile 18s ease-in-out infinite alternate;
        inset: -3%;
      }
      .hero__overlay {
        background: linear-gradient(
          180deg,
          rgba(10,22,52,0.68) 0%,
          rgba(10,22,52,0.52) 50%,
          rgba(10,22,52,0.38) 100%
        );
      }
      .hero__stats-bar { gap: 10px; margin-top: 40px; padding-top: 28px; }
      .hero__stat-pill { padding: 12px 16px; min-width: 100px; }
      .hero__stat-pill-num { font-size: 1.4rem; }
      .approach__grid { grid-template-columns: 1fr; }
      .app-feature { grid-template-columns: 1fr; }
      .nav__links, .nav__cta { display: none; }
      .hamburger { display: flex; }
      .solutions-grid { grid-template-columns: 1fr; }
      .whyus__grid { grid-template-columns: 1fr; }
      .about__grid {
        grid-template-columns: 1fr;
        margin-top: 40px !important;
        padding-bottom: 40px !important;
      }
      .demo__inner { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .trust-bar__inner { flex-direction: column; gap: 0; }
      .trust-bar__item + .trust-bar__item { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
      .footer__grid { grid-template-columns: 1fr; }
      .contact-bar__inner { flex-direction: column; align-items: flex-start; }
      .footer__bottom { flex-direction: column; align-items: flex-start; }
    }

    /* ─── Additional CSS Variables ───────────────────────────────── */
    :root {
      --teal-dark:  #1E7A6E;
      --gray-50:    #F9FAFB;
      --gray-200:   #E5E7EB;
      --gray-300:   #D1D5DB;
      --gray-500:   #6B7280;
      --gray-600:   #4B5563;
      --gray-700:   #374151;
    }

    /* ─── Nav: Active Link & Logo Image ──────────────────────────── */
    .nav__links a.active {
      color: var(--teal);
      background: var(--teal-pale);
      font-weight: 600;
    }
    .nav__logo-img {
      width: 70px; height: 70px;
      object-fit: contain; flex-shrink: 0;
    }

    /* ─── Phone Number in Nav ─────────────────────────────────────── */
    .nav__phone {
      display: flex; align-items: center; gap: 5px;
      color: var(--text-mid); font-size: 0.82rem; font-weight: 500;
      text-decoration: none; white-space: nowrap;
      transition: color 0.2s;
      margin-right: 10px;
      padding-right: 16px;
      border-right: 1px solid rgba(0,0,0,0.12);
    }
    .nav__phone svg { opacity: 0.65; flex-shrink: 0; }
    .nav__phone:hover { color: var(--teal); }

    /* ─── Customer Login Button ───────────────────────────────────── */
    .btn-login {
      background: var(--teal);
      border: 1.5px solid var(--teal);
      color: var(--white);
    }
    .btn-login:hover {
      background: var(--teal-light);
      border-color: var(--teal-light);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* ─── Page Hero (inner pages) ─────────────────────────────────── */
    .page-hero {
      padding-top: 140px;
      padding-bottom: 64px;
      background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 55%, #1E5068 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 60% 40%, rgba(42,143,128,.2) 0%, transparent 60%);
    }
    .page-hero__inner {
      position: relative; z-index: 1;
      max-width: 720px; margin: 0 auto;
    }
    .page-hero h1 { color: var(--white); margin-bottom: 16px; }
    .page-hero h1 em { color: var(--teal-light); font-style: normal; }
    .page-hero .lead { color: rgba(255,255,255,.8); margin: 0 auto; }

    /* ─── Responsive additions ────────────────────────────────────── */
    @media (max-width: 768px) {
      .page-hero { padding-top: 110px; padding-bottom: 48px; }
    }

    /* ─── Mobile fixes: inline-grid layouts ──────────────────────── */
    @media (max-width: 768px) {

      /* Why Us — stats strip: 4-col → 2-col */
      .stats-strip__inner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0 !important;
      }
      .stats-strip__inner > div {
        padding: 20px 12px;
        border-bottom: 1px solid var(--border);
      }
      .stats-strip__inner > div:nth-child(odd) {
        border-right: 1px solid var(--border);
      }

      /* About — 3-col expertise → 1-col */
      .expertise-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
      }

      /* Design & Build — phase cards: 80px+content → stacked */
      .phase-card {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 24px !important;
      }
      .phase-card > div:first-child {
        width: 60px !important;
        height: 60px !important;
        border-radius: 14px !important;
      }
      .phase-card > div:first-child span {
        font-size: 1.5rem !important;
      }

      /* Design & Build — phase meta 2-col → 1-col */
      .phase-meta {
        grid-template-columns: 1fr !important;
      }

      /* Contact — side-by-side → stacked */
      .contact__grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
      }
      .contact-form-card {
        padding: 28px !important;
      }

      /* Solutions — feature sections 1fr 1fr → stacked */
      .feature-section {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
      }

      /* General mobile typography */
      .page-hero h1 { font-size: 2rem; }
      .page-hero .lead { font-size: 1rem; }

      /* CTA strip buttons full-width on mobile */
      section[style*="background:var(--navy)"] .btn {
        width: 100%;
        max-width: 320px;
      }
    }

    /* Tablet: 769px–1024px tweaks */
    @media (min-width: 769px) and (max-width: 1024px) {
      .stats-strip__inner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
      }
      .expertise-grid {
        grid-template-columns: 1fr !important;
      }
      .contact__grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
      }
      .feature-section {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
      }
    }

    /* About page — mobile fixes */
    @media (max-width: 768px) {
      /* Expertise circles: 1 column on mobile */
      .expertise-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
      }
      /* Reduce padding between Our Story and Our Background */
      .solutions-hero-section .about__grid + div {
        padding-top: 32px !important;
        padding-bottom: 48px !important;
      }
      /* About visual card: reduce padding on mobile */
      .about__visual { padding: 28px 20px !important; }
      .mission-statement { font-size: 1.1rem !important; }
    }

    /* Solutions hero section — mobile */
    @media (max-width: 768px) {
      /* Why It Matters: solid navy on mobile to hide bad image crop */
      .solutions-why-matters-mobile-wrap {
        background: var(--navy);
        margin: 0 -24px;
        padding: 40px 24px !important;
      }
      /* Solutions bg: reposition on mobile to show the resident */
      .solutions-hero-section .solutions-hero-bg {
        background-position: center bottom !important;
      }
      .solutions-page-header { padding-top: 110px; }
      .solutions-hero-overlay {
        background: linear-gradient(
          180deg,
          rgba(10,22,52,0.72) 0%,
          rgba(10,22,52,0.55) 100%
        );
      }
    }

    /* ─── Mobile button fixes ─────────────────────────────────────
       btn-primary is navy on desktop (fine on white bg) but invisible
       on dark navy sections on mobile. Switch to teal so it pops on
       both dark and light backgrounds.
       btn-outline is white-bordered/transparent — on light sections
       it disappears. Give it a solid white fill with navy text.
       Desktop (>768px) is completely unaffected.
    ──────────────────────────────────────────────────────────────── */
    @media (max-width: 768px) {
      .btn-primary {
        background: var(--teal);
        color: var(--white);
        border-color: var(--teal);
        box-shadow: 0 4px 16px rgba(42,143,128,.4);
      }
      .btn-primary:hover {
        background: var(--teal-light);
        border-color: var(--teal-light);
        box-shadow: 0 6px 20px rgba(42,143,128,.5);
      }
      .btn-outline {
        background: rgba(255,255,255,0.15);
        color: var(--white);
        border-color: rgba(255,255,255,0.85);
      }
      .btn-outline:hover {
        background: rgba(255,255,255,0.25);
        border-color: var(--white);
      }
      .btn-outline-navy {
        background: var(--white);
        color: var(--navy);
        border-color: var(--navy);
        box-shadow: 0 2px 8px rgba(26,58,92,.15);
      }
      .btn-outline-navy:hover {
        background: var(--navy);
        color: var(--white);
      }
      /* Comfortable tap target on mobile */
      .btn {
        padding: 14px 24px;
        font-size: 1rem;
        min-height: 48px;
      }

      /* Hamburger menu buttons — match desktop nav appearance */
      .mobile-menu .btn-primary {
        background: var(--navy);
        color: var(--white);
        border-color: var(--navy);
        box-shadow: 0 4px 16px rgba(26,58,92,.35);
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        margin-top: 8px;
      }
      .mobile-menu .btn-primary:hover {
        background: var(--navy-dark);
        border-color: var(--navy-dark);
        box-shadow: 0 8px 24px rgba(26,58,92,.45);
      }
      .mobile-menu .btn-login {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        margin-top: 8px;
      }
    }
