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

    :root {
      --navy:       #0C447C;
      --dark-navy:  #042C53;
      --gold:       #BA7517;
      --gold-light: #F0C060;
      --off-white:  #F7F5F0;
      --warm-gray:  #E8E5DC;
      --text:       #1A1A18;
      --text-muted: #5F5E5A;
      --max-w:      900px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 400;
      background: var(--off-white);
      color: var(--text);
      font-size: 17px;
      line-height: 1.7;
    }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--dark-navy);
      border-bottom: 3px solid var(--gold);
      padding: 0 2.5rem;
      display: flex; align-items: center; justify-content: space-between;
      height: 100px;
    }
    nav img.nav-logo {
      height: 80px; width: auto;
    }
    nav a.cta-btn {
      background: var(--gold);
      color: white;
      text-decoration: none;
      padding: 14px 28px;
      font-size: 16px; font-weight: 600;
      letter-spacing: 0.5px;
      transition: background 0.2s;
    }
    nav a.cta-btn:hover { background: var(--gold-light); color: var(--dark-navy); }

    /* ── HERO ── */
    .hero {
      background: var(--dark-navy);
      color: white;
      padding: 80px 2rem 90px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.015) 40px,
        rgba(255,255,255,0.015) 41px
      );
    }
    .hero-inner { position: relative; max-width: var(--max-w); margin: 0 auto; }
    .hero h1 {
      font-family: 'Bitter', serif;
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 1.2rem;
    }
    .hero h1 span { color: var(--gold-light); }
    .hero p {
      font-size: 1.15rem; font-weight: 300;
      color: rgba(255,255,255,0.75);
      max-width: 580px; margin: 0 auto 2.2rem;
    }
    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold); color: white;
      padding: 14px 32px; font-size: 1rem; font-weight: 600;
      text-decoration: none; letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--gold-light); color: var(--dark-navy); transform: translateY(-1px); }
    .btn-secondary {
      border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85);
      padding: 14px 32px; font-size: 1rem;
      text-decoration: none; letter-spacing: 0.3px;
      transition: border-color 0.2s, color 0.2s;
      display: inline-block;
    }
    .btn-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); }

    .gold-bar { height: 4px; background: var(--gold); }

    /* ── SECTION WRAPPER ── */
    section { padding: 70px 2rem; }
    section.alt { background: white; }
    .inner { max-width: var(--max-w); margin: 0 auto; }

    .section-label {
      font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); font-weight: 600; margin-bottom: 0.5rem;
    }
    h2 {
      font-family: 'Bitter', serif;
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 700; color: var(--dark-navy);
      margin-bottom: 2rem; line-height: 1.25;
    }

    /* ── PROBLEMS GRID ── */
    .problems-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }
    .problem-card {
      border-top: 3px solid var(--navy);
      padding: 1.4rem 1.2rem;
      background: var(--off-white);
    }
    .problem-card h3 {
      font-family: 'Bitter', serif;
      font-size: 1.1rem; font-weight: 700;
      color: var(--dark-navy); margin-bottom: 0.6rem;
    }
    .problem-card p {
      font-size: 0.92rem; color: var(--text-muted); line-height: 1.6;
    }
    .problem-card .fix {
      margin-top: 0.8rem;
      font-size: 0.88rem; font-weight: 600;
      color: var(--navy);
    }

    /* ── SERVICES ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 1.5rem; margin-top: 0.5rem;
    }
    .service-card {
      background: var(--off-white);
      padding: 1.6rem 1.4rem;
      border-left: 4px solid var(--gold);
    }
    .service-card h3 {
      font-size: 1rem; font-weight: 600;
      color: var(--dark-navy); margin-bottom: 0.8rem;
      text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.9rem;
    }
    .service-card ul {
      list-style: none; padding: 0;
    }
    .service-card ul li {
      font-size: 0.9rem; color: var(--text-muted);
      padding: 3px 0 3px 1rem; position: relative;
      line-height: 1.5;
    }
    .service-card ul li::before {
      content: '–'; position: absolute; left: 0; color: var(--gold);
    }
    .coming-soon {
      display: inline-block; font-size: 10px; letter-spacing: 1px;
      background: var(--navy); color: white;
      padding: 2px 7px; margin-left: 6px; vertical-align: middle;
      text-transform: uppercase;
    }

    /* ── CTA BAND ── */
    .cta-band {
      background: var(--navy);
      color: white; text-align: center;
      padding: 70px 2rem;
    }
    .cta-band h2 { color: white; margin-bottom: 0.8rem; }
    .cta-band p {
      color: rgba(255,255,255,0.7);
      max-width: 500px; margin: 0 auto 2rem;
      font-size: 1.05rem;
    }
    .contact-detail {
      margin-top: 1.4rem;
      font-size: 0.95rem; color: rgba(255,255,255,0.5);
    }
    .contact-detail a { color: var(--gold-light); text-decoration: none; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark-navy);
      color: rgba(255,255,255,0.4);
      text-align: center;
      padding: 24px 2rem;
      font-size: 0.85rem; letter-spacing: 0.3px;
    }
    footer span { color: rgba(255,255,255,0.2); margin: 0 8px; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-inner > * {
      animation: fadeUp 0.6s ease both;
    }
    .hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
    .hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
    .hero-inner > *:nth-child(3) { animation-delay: 0.25s; }

    @media (max-width: 600px) {
      nav .by-line { display: none; }
      .hero { padding: 60px 1.2rem 70px; }
    }