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

  :root {
    --navy:    #0D1F3C;
    --navy-mid:#1A3560;
    --navy-lt: #243E6E;
    --orange:    #E8620A;
    --orange-lt: #F07830;
    --orange-bg: #FEF3EC;
    --steel:   #4A6FA5;
    --steel-lt:#EDF2FA;
    --white:   #FFFFFF;
    --off-white:#F7F8FA;
    --text:    #1A1A2E;
    --muted:   #5A6272;
    --border:  #D8DDE8;
    --radius:  6px;
    --radius-lg: 12px;
  }

  html { scroll-behavior: smooth; }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
  }

  /* ── TYPOGRAPHY ── */
  h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.01em;
    line-height: 1.15;
  }
  h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
  h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 600; }
  h3 { font-size: 1.35rem; font-weight: 600; }
  h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }

  p { max-width: 62ch; }
  .centered p { margin-left: auto; margin-right: auto; }

  em { font-style: normal; color: var(--orange); }

  a { color: inherit; text-decoration: none; }

  /* ── LAYOUT HELPERS ── */
  .container {
    width: min(1160px, 92vw);
    margin: 0 auto;
  }

  section { padding: 96px 0; }

  .section-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
  }

  .centered { text-align: center; }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary { background: var(--orange); color: var(--navy); border-color: var(--orange); }
  .btn-primary:hover { background: var(--orange-lt); border-color: var(--orange-lt); }
  .btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
  .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
  .btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
  .btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
  .btn-signin {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.3);
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .btn-signin:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
  }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    border-bottom: 2px solid var(--orange);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
  }
  .logo span { color: var(--orange); }

  .logo-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    mix-blend-mode: screen;
    align-self: center;
  }

  .logo-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    line-height: 1;
  }

  .hero-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
    display: block;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
  }
  .nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-lt) 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 79px,
        rgba(255,255,255,0.025) 80px
      ),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 79px,
        rgba(255,255,255,0.025) 80px
      );
  }

  .hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,98,10,0.15);
    border: 1px solid rgba(232,98,10,0.4);
    color: var(--orange-lt);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
  }

  .hero h1 { color: var(--white); margin-bottom: 20px; }
  .hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 36px; }

  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

  /* Hero graphic — abstract shield / badge concept */
  .hero-gif-frame {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  .hero-gif-bar {
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
  }

  .compliance-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(4px);
  }

  .compliance-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
  }

  .stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .stat-box {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
  }
  .stat-box .num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-lt);
    display: block;
    line-height: 1;
  }
  .stat-box .lbl {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    display: block;
  }

  .progress-rows { display: flex; flex-direction: column; gap: 12px; }

  .progress-item { display: flex; flex-direction: column; gap: 6px; }
  .progress-header { display: flex; justify-content: space-between; align-items: center; }
  .progress-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
  .progress-pct {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
  }
  .progress-track {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-lt) 100%);
  }

  /* ── PROBLEM SECTION ── */
  .problem { background: var(--off-white); }

  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
  }

  .problem-content {
    display: flex;
    flex-direction: column;
  }

  .problem-content > p { color: var(--muted); margin-bottom: 24px; }

  .pain-list { display: flex; flex-direction: column; gap: 12px; list-style: none; }

  .pain-item {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
  }

  .pain-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }

  .pain-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: #FEF0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .pain-icon svg { width: 20px; height: 20px; stroke: #C0392B; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .pain-text strong { display: block; font-size: 0.95rem; margin-bottom: 0; }
  .pain-text span { font-size: 0.88rem; color: var(--muted); }

  /* Solution cards on the right */
  .solution-cards { display: flex; flex-direction: column; gap: 16px; }

  .sol-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: 20px 22px;
    transition: box-shadow 0.2s;
  }
  .sol-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

  .sol-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--navy);
  }
  .sol-card p { font-size: 0.9rem; color: var(--muted); max-width: none; margin-top: 4px; }
  .sol-card-header { display: flex; gap: 12px; align-items: center; margin-bottom: 6px; }
  .sol-card-header h3 { margin-bottom: 0; }

  .sol-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: #EAF8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .sol-icon svg { width: 20px; height: 20px; stroke: #1A6638; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* ── FEATURES / HOW IT WORKS ── */
  .features { background: var(--white); }

  .features-header { margin-bottom: 64px; }
  .features-header h2 { margin-bottom: 16px; }
  .features-header p { color: var(--muted); font-size: 1.05rem; }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .feat-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(13,31,60,0.1);
  }

  .feat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    flex-shrink: 0;
  }

  .feat-card-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
  }

  .feat-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); line-height: 1.2; }
  .feat-card p { font-size: 0.9rem; color: var(--muted); max-width: none; }

  /* ── VISIBILITY / STATS SECTION ── */
  .visibility {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .visibility::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        90deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px
      ),
      repeating-linear-gradient(
        0deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px
      );
  }
  .visibility .container { position: relative; }

  .visibility-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .visibility h2 { color: var(--white); margin-bottom: 20px; }
  .visibility > .container > .visibility-inner > div > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
  }
  .stat-card .big-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange-lt);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
  }
  .stat-card .big-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
  }

  /* Roles diagram */
  .roles-diagram {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .role-row {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .role-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--orange);
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .role-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
  }

  /* ── OFFICERS SECTION ── */
  .officers { background: var(--steel-lt); }

  .officers-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .officers h2 { margin-bottom: 20px; }
  .officers > .container > .officers-inner > div > p { color: var(--muted); margin-bottom: 32px; }

  .check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
  }
  .check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--navy);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10l4 4L15 7' stroke='%23B8860B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  /* Officer dashboard mockup */


  /* ── WORKFLOW SECTION ── */
  .workflow { background: var(--white); }

  .workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-top: 56px;
  }

  .workflow-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: var(--border);
    z-index: 0;
  }

  .workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
  }
  .step-circle svg {
    width: 26px;
    height: 26px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .workflow-step h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
  .workflow-step p { font-size: 0.88rem; color: var(--muted); max-width: 240px; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--off-white); }

  .testimonials h2 { margin-bottom: 48px; }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .quote-mark {
    font-family: 'Source Serif 4', serif;
    font-size: 3rem;
    color: var(--orange);
    line-height: 0.6;
    display: block;
  }

  .testimonial-card blockquote {
    font-family: 'Source Serif 4', serif;
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    flex: 1;
  }

  .testimonial-attribution { display: flex; gap: 14px; align-items: center; }

  .avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--orange);
  }

  .attr-name { font-weight: 500; font-size: 0.9rem; }
  .attr-title { font-size: 0.8rem; color: var(--muted); }

  /* ── SECTION PHOTOS ── */
  .section-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 8px 40px rgba(13,31,60,0.14);
  }
  .section-photo img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    object-position: top left;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
  }
  .officers-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    line-height: 0;
    box-shadow: 0 4px 24px rgba(13,31,60,0.1);
  }
  .officers-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top left;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
  }
  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
  }

  /* ── CTA NEWSLETTER ── */
  .cta-email {
    background: var(--navy);
    padding: 72px 0;
  }

  .cta-email-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .cta-email h2 { color: var(--white); margin-bottom: 12px; }
  .cta-email p { color: rgba(255,255,255,0.65); }

  .email-form {
    display: flex;
    gap: 12px;
  }

  .email-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .email-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
  .email-form input[type="email"]:focus { border-color: var(--orange); }

  /* ── FINAL CTA ── */
  .final-cta {
    background: var(--orange-bg);
    border-top: 3px solid var(--orange);
    text-align: center;
    padding: 80px 0;
  }

  .final-cta h2 { margin-bottom: 16px; color: var(--navy); }
  .final-cta p { color: var(--muted); margin: 0 auto 36px; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand .logo { font-size: 1.4rem; }
  .footer-brand p { font-size: 0.88rem; margin-top: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 28ch; }

  .footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }

  .footer-subscribe { display: flex; gap: 8px; margin-top: 16px; }
  .footer-subscribe input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.07);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    outline: none;
  }
  .footer-subscribe input::placeholder { color: rgba(255,255,255,0.3); }
  .footer-subscribe button {
    padding: 10px 16px;
    background: var(--orange);
    border: none;
    border-radius: var(--radius);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.2s;
  }
  .footer-subscribe button:hover { background: var(--orange-lt); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-social { display: flex; gap: 14px; align-items: center; }
  .footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
  }
  .footer-social a:hover { color: var(--white); }
  .footer-social svg { width: 16px; height: 16px; }

  .footer-legal { display: flex; gap: 20px; }
  .footer-legal a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
  .footer-legal a:hover { color: var(--white); }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    section { padding: 64px 0; }

    .hero-inner,
    .problem-grid,
    .visibility-inner,
    .officers-inner,
    .cta-email-inner,
    .footer-grid { grid-template-columns: 1fr; gap: 48px; }

    .features-grid,
    .testimonials-grid,
    .workflow-steps { grid-template-columns: 1fr; }

    .workflow-steps::before { display: none; }

    .hamburger { display: flex; }

    .nav-links {
      display: none;
      position: absolute;
      top: 68px;
      left: 0;
      right: 0;
      background: var(--navy);
      flex-direction: column;
      padding: 16px;
      border-top: 1px solid rgba(255,255,255,0.1);
      gap: 4px;
    }
    .nav-links.open { display: flex; }

    nav { position: relative; }

    .stats-grid { grid-template-columns: 1fr 1fr; }

    .hero-graphic { display: none; }

    .email-form { flex-direction: column; }

    .screenshot-grid { grid-template-columns: 1fr !important; }
  }
