:root {
      --navy: #0F2439;
      --navy-mid: #1a2f4a;
      --navy-light: #243b5c;
      --accent: #3B82F6;
      --accent-light: #60A5FA;
      --accent-glow: rgba(59,130,246,0.15);
      --green: #10B981;
      --green-light: #34D399;
      --gold: #F59E0B;
      --red: #EF4444;
      --white: #ffffff;
      --light: #f0f4f8;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-300: #cbd5e1;
      --text: #1e293b;
      --text-light: #64748b;
      --text-lighter: #94a3b8;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); line-height: 1.6; }

    /* NAV */
    nav {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(15,36,57,0.97); backdrop-filter: blur(12px);
      padding: 0 2rem; display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid rgba(59,130,246,0.15);
    }
    .nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; padding: 0.9rem 0; }
    .nav-brand .logo-icon {
      width: 38px; height: 38px; border-radius: 8px;
      background: linear-gradient(135deg, var(--accent), #2563EB);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; font-weight: 900; color: var(--white);
    }
    .nav-brand .brand-text { color: var(--white); font-size: 1.15rem; font-weight: 700; letter-spacing: -0.3px; }
    .nav-brand .brand-text em { color: var(--accent-light); font-style: normal; }
    .nav-links { display: flex; gap: 0.25rem; align-items: center; }
    .nav-links a {
      color: rgba(255,255,255,0.75); text-decoration: none; padding: 0.5rem 1rem;
      border-radius: 6px; font-size: 0.9rem; transition: all 0.2s;
    }
    .nav-links a:hover { background: rgba(59,130,246,0.1); color: var(--accent-light); }
    .nav-cta {
      background: var(--accent) !important; color: var(--white) !important;
      font-weight: 600 !important; padding: 0.5rem 1.25rem !important;
      border-radius: 6px !important;
    }
    .nav-cta:hover { background: var(--accent-light) !important; }

    /* HERO */
    .hero {
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
      color: var(--white); padding: 7rem 2rem 6rem; text-align: center;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; top: -40%; right: -20%;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: ''; position: absolute; bottom: -30%; left: -10%;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-block; background: rgba(59,130,246,0.12);
      border: 1px solid rgba(59,130,246,0.3); color: var(--accent-light);
      padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.82rem;
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800;
      line-height: 1.12; margin-bottom: 1.5rem; letter-spacing: -0.5px;
    }
    .hero h1 span { color: var(--accent-light); }
    .hero h1 .green { color: var(--green-light); }
    .hero p {
      font-size: 1.2rem; color: rgba(255,255,255,0.8);
      max-width: 680px; margin: 0 auto 2.5rem; line-height: 1.7;
    }
    .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--accent); color: var(--white);
      padding: 0.95rem 2.4rem; border-radius: 8px;
      font-weight: 700; font-size: 1rem; text-decoration: none;
      transition: all 0.25s; border: none; cursor: pointer;
      display: inline-flex; align-items: center; gap: 0.5rem;
    }
    .btn-primary:hover { background: #2563EB; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59,130,246,0.35); }
    .btn-outline {
      background: transparent; color: var(--white);
      padding: 0.95rem 2.4rem; border-radius: 8px;
      font-weight: 600; font-size: 1rem; text-decoration: none;
      border: 2px solid rgba(255,255,255,0.3); transition: all 0.25s;
    }
    .btn-outline:hover { border-color: var(--accent-light); color: var(--accent-light); }

    /* PROBLEM SECTION */
    .problem-section { background: var(--white); padding: 5rem 2rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
    }
    h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.3px; }
    .section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 600px; line-height: 1.7; }

    .problem-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
      align-items: center; margin-top: 3rem;
    }
    .problem-left h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 1rem; }
    .problem-left p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
    .stat-callout {
      background: linear-gradient(135deg, #FEF3C7, #FDE68A);
      border-left: 4px solid var(--gold);
      padding: 1.25rem 1.5rem; border-radius: 0 10px 10px 0; margin: 1.5rem 0;
    }
    .stat-callout .big-num { font-size: 2.5rem; font-weight: 800; color: var(--navy); }
    .stat-callout p { color: var(--text); font-size: 0.95rem; margin: 0; }

    .problem-right {
      background: var(--navy); border-radius: 16px; padding: 2.5rem;
      color: var(--white);
    }
    .problem-right h4 { font-size: 1rem; color: var(--accent-light); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
    .comparison-row {
      display: flex; gap: 1rem; margin-bottom: 1.25rem;
      padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .comparison-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .comp-bad { flex: 1; }
    .comp-good { flex: 1; }
    .comp-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.4rem; }
    .comp-label.red { color: var(--red); }
    .comp-label.green { color: var(--green-light); }
    .comp-text { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.5; }

    /* TRUST / SOCIAL PROOF */
    .trust-section {
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
      padding: 5rem 2rem; color: var(--white);
    }
    .trust-header { text-align: center; margin-bottom: 3.5rem; }
    .trust-header h2 { color: var(--white); max-width: 700px; margin: 0 auto 1rem; }
    .trust-stats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
      margin-bottom: 4rem;
    }
    .trust-stat {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(59,130,246,0.2);
      border-radius: 14px; padding: 2.25rem 1.75rem; text-align: center;
      transition: all 0.25s;
    }
    .trust-stat:hover { border-color: rgba(59,130,246,0.5); background: rgba(59,130,246,0.07); }
    .trust-num {
      font-size: 3.2rem; font-weight: 900; color: var(--accent-light);
      letter-spacing: -1px; line-height: 1; margin-bottom: 1rem;
    }
    .trust-desc {
      font-size: 0.92rem; color: rgba(255,255,255,0.8);
      line-height: 1.65; margin-bottom: 0.85rem;
    }
    .trust-source {
      font-size: 0.75rem; color: rgba(255,255,255,0.4);
      font-style: italic; letter-spacing: 0.2px;
    }
    .founder-block {
      display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem;
      align-items: start; background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
      padding: 2.75rem 3rem;
    }
    .founder-badge {
      display: inline-block; background: rgba(16,185,129,0.12);
      border: 1px solid rgba(16,185,129,0.3); color: var(--green-light);
      padding: 0.4rem 1.1rem; border-radius: 50px; font-size: 0.78rem;
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.25rem;
    }
    .founder-left p {
      color: rgba(255,255,255,0.75); font-size: 0.95rem;
      line-height: 1.8; margin-bottom: 1rem;
    }
    .founder-certs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
    .cert-badge {
      background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.3);
      color: var(--accent-light); padding: 0.3rem 0.9rem;
      border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
    }
    .founder-right {
      background: rgba(0,0,0,0.2); border-radius: 12px; padding: 2rem 2.25rem;
      border-left: 3px solid var(--accent);
    }
    .founder-quote {
      font-size: 1.05rem; color: rgba(255,255,255,0.88);
      line-height: 1.8; font-style: italic; margin-bottom: 1.5rem;
    }
    .founder-attribution {
      font-size: 0.88rem; color: var(--accent-light);
      font-weight: 600; line-height: 1.6;
    }
    @media (max-width: 900px) {
      .trust-stats { grid-template-columns: 1fr; }
      .founder-block { grid-template-columns: 1fr; padding: 2rem 1.75rem; }
    }

    /* SAMPLE SCAN REPORT */
.sample-section { background: var(--gray-50); padding: 5rem 2rem; }
.sample-header { text-align: center; margin-bottom: 3rem; }
.sample-wrapper { max-width: 860px; margin: 0 auto; background: var(--white); border-radius: 18px; border: 1px solid var(--gray-200); box-shadow: 0 4px 32px rgba(15,36,57,0.08); overflow: hidden; }
.sample-label-bar { background: rgba(59,130,246,0.06); border-bottom: 1px solid rgba(59,130,246,0.15); padding: 0.65rem 2rem; font-size: 0.8rem; font-weight: 700; color: var(--accent); letter-spacing: 0.4px; display: flex; align-items: center; gap: 0.5rem; }
.sample-score-header { display: flex; align-items: flex-start; gap: 1.5rem; padding: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--gray-100); }
.sample-score-circle { width: 80px; height: 80px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; border: 4px solid var(--green); background: rgba(16,185,129,0.08); }
.sample-score-num { font-size: 1.7rem; font-weight: 900; color: var(--green); line-height: 1; }
.sample-score-lbl { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--green); opacity: 0.8; }
.sample-score-info h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.sample-rec { display: inline-flex; align-items: center; padding: 0.3rem 0.9rem; border-radius: 50px; font-size: 0.82rem; font-weight: 700; }
.rec-green { background: rgba(16,185,129,0.1); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }
.sample-badge { padding: 0.22rem 0.75rem; border-radius: 50px; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.3px; }
.badge-green { background: rgba(16,185,129,0.1); color: var(--green); border: 1px solid rgba(16,185,129,0.25); }
.badge-blue { background: rgba(59,130,246,0.1); color: var(--accent); border: 1px solid rgba(59,130,246,0.25); }
.sample-result-section { padding: 1.25rem 2rem 0; }
.sample-result-section h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 0.7rem; }
.sample-narrative-box { background: var(--gray-50); border-radius: 10px; padding: 1.1rem 1.25rem; border: 1px solid var(--gray-200); }
.sample-narrative-box p { font-size: 0.9rem; color: var(--text); line-height: 1.75; }
.sample-skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.skill-tag { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.85rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.tag-match { background: rgba(16,185,129,0.08); color: #059669; border: 1px solid rgba(16,185,129,0.25); }
.tag-partial { background: rgba(245,158,11,0.08); color: #d97706; border: 1px solid rgba(245,158,11,0.25); position: relative; cursor: pointer; }
.tag-gap { background: rgba(239,68,68,0.08); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }
.tag-src { font-weight: 400; opacity: 0.7; font-size: 0.73rem; }
.severity-badge { display: inline-block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.5px; padding: 2px 7px; border-radius: 20px; text-transform: uppercase; vertical-align: middle; margin-left: 0.35rem; }
.severity-critical { background: rgba(239,68,68,0.12); color: #DC2626; }
.severity-important { background: rgba(245,158,11,0.12); color: #D97706; }
.severity-nice { background: rgba(148,163,184,0.15); color: #64748b; }
.tag-suggestion { display: none; position: fixed; background: #0f172a; color: #e2e8f0; border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.78rem; line-height: 1.55; width: 290px; z-index: 9999; font-weight: 400; box-shadow: 0 4px 20px rgba(0,0,0,0.35); pointer-events: none; }
.tag-suggestion-label { display: block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #93c5fd; margin-bottom: 0.35rem; }
/* tooltip show/hide handled by JS to allow viewport-aware positioning */
.sample-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }
.sample-strengths-list, .sample-gaps-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.sample-strengths-list li { font-size: 0.87rem; color: var(--text); line-height: 1.6; padding-left: 1.4rem; position: relative; }
.sample-strengths-list li::before { content: ""; position: absolute; left: 0; top: 0.45rem; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.sample-gaps-list li { font-size: 0.87rem; color: var(--text); line-height: 1.6; padding-left: 1.4rem; position: relative; }
.sample-gaps-list li::before { content: ""; position: absolute; left: 0; top: 0.45rem; width: 8px; height: 8px; border-radius: 50%; background: #F59E0B; }
.sample-cta-row { display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem 2rem 2rem; margin-top: 1.25rem; border-top: 1px solid var(--gray-100); }
.sample-cta-btn { background: linear-gradient(135deg, var(--accent), #2563EB); color: var(--white); padding: 0.7rem 1.75rem; border-radius: 8px; font-size: 0.92rem; font-weight: 700; text-decoration: none; transition: opacity 0.2s; white-space: nowrap; }
.sample-cta-btn:hover { opacity: 0.88; }
.sample-cta-note { font-size: 0.83rem; color: var(--text-light); }
@media (max-width: 700px) {
  .sample-score-header { flex-direction: column; }
  .sample-two-col { grid-template-columns: 1fr; }
  .sample-result-section { padding: 1rem 1.25rem 0; }
  .sample-cta-row { flex-direction: column; align-items: flex-start; }
}

/* COMPARISON LAYOUT */
.comparison-header { text-align: center; margin-bottom: 2.5rem; }
.comparison-layout {
  display: grid; grid-template-columns: 1fr 44px 1fr;
  gap: 0; align-items: start; margin-bottom: 2rem;
}
.ats-card-wrapper, .truescan-card-wrapper { display: flex; flex-direction: column; }
.ats-system-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #c0392b; margin-bottom: 0.5rem; padding-left: 0.25rem;
}
.truescan-system-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem; padding-left: 0.25rem;
}
.ats-card {
  background: #fff; border: 1.5px solid #e8d0d0; border-radius: 12px;
  overflow: hidden; box-shadow: 0 2px 12px rgba(192,57,43,0.07);
}
.ats-header-bar {
  background: #c0392b; padding: 0.85rem 1.25rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.ats-header-bar span { font-size: 0.8rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; }
.ats-rejected-banner {
  background: #fdf0ef; border-bottom: 1px solid #f5c6c6;
  padding: 0.9rem 1.25rem; display: flex; align-items: flex-start; gap: 0.75rem;
}
.ats-rejected-label { font-size: 1rem; font-weight: 800; color: #c0392b; white-space: nowrap; }
.ats-rejected-reason { font-size: 0.8rem; color: #7b3030; line-height: 1.45; margin-top: 0.15rem; }
.ats-score-row {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 0.9rem 1.25rem; border-bottom: 1px solid #f0e8e8;
}
.ats-score-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: #fdf0ef; border: 2px solid #e8aaaa;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ats-score-num { font-size: 1.15rem; font-weight: 800; color: #c0392b; line-height: 1; }
.ats-score-lbl { font-size: 0.55rem; font-weight: 600; color: #a06060; text-transform: uppercase; }
.ats-candidate-info { flex: 1; }
.ats-candidate-name { font-size: 0.95rem; font-weight: 700; color: #2c2c2c; }
.ats-candidate-sub { font-size: 0.75rem; color: #888; margin-top: 0.15rem; }
.ats-no-action {
  display: inline-block; background: #f5e0e0; color: #c0392b;
  font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem;
  border-radius: 4px; margin-top: 0.35rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.ats-keyword-section { padding: 0.9rem 1.25rem; border-bottom: 1px solid #f0e8e8; }
.ats-keyword-header {
  font-size: 0.72rem; font-weight: 700; color: #888; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.6rem;
}
.ats-keyword-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.3rem 0; border-bottom: 1px solid #f8f0f0; font-size: 0.82rem;
}
.ats-keyword-row:last-child { border-bottom: none; }
.ats-kw-name { color: #3c3c3c; }
.ats-kw-status {
  font-size: 0.72rem; font-weight: 700; padding: 0.15rem 0.5rem;
  border-radius: 3px; text-transform: uppercase; letter-spacing: 0.04em;
}
.kw-miss { background: #fdf0ef; color: #c0392b; }
.ats-what-it-missed { padding: 0.9rem 1.25rem; }
.ats-missed-header {
  font-size: 0.72rem; font-weight: 700; color: #888; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.6rem;
}
.ats-missed-row {
  display: grid; grid-template-columns: 1fr 20px 1fr; align-items: center;
  gap: 0.4rem; padding: 0.3rem 0; border-bottom: 1px solid #f8f0f0; font-size: 0.8rem;
}
.ats-missed-row:last-child { border-bottom: none; }
.ats-missed-military { color: #7b3030; font-style: italic; }
.ats-missed-arrow { color: #ccc; text-align: center; font-size: 0.75rem; }
.ats-missed-civilian { color: #2c6e49; font-weight: 600; }
.ats-footer-note {
  font-size: 0.75rem; color: #a06060; padding: 0.7rem 1.25rem;
  background: #fdf9f9; border-top: 1px solid #f0e8e8; line-height: 1.4;
}
.vs-divider {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; padding-top: 3.5rem;
}
.vs-line { width: 1px; height: 60px; background: var(--gray-200); }
.vs-circle {
  width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: var(--text-light); flex-shrink: 0;
}
.cost-callout {
  background: var(--navy); border-radius: 12px; padding: 2rem 2.5rem; margin-top: 2rem;
}
.cost-callout-header {
  font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem;
}
.cost-breakdown-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.25rem;
}
.cost-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 0.3rem; }
.cost-amount { font-size: 1.6rem; font-weight: 800; color: #ff8a80; line-height: 1; }
.cost-total-row {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1rem;
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
}
.cost-total-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.cost-total-num { font-size: 2rem; font-weight: 800; color: #fff; }
.cost-attribution {
  font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 0.75rem; line-height: 1.5;
}
.cost-cta-row {
  display: flex; align-items: center; gap: 1.5rem; margin-top: 1.5rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap;
}
.cost-cta-text { font-size: 1rem; font-weight: 600; color: #fff; flex: 1; min-width: 200px; }
@media (max-width: 860px) {
  .comparison-layout { grid-template-columns: 1fr; gap: 1rem; }
  .vs-divider { flex-direction: row; padding-top: 0; }
  .vs-line { width: 60px; height: 1px; }
  .cost-breakdown-grid { grid-template-columns: 1fr 1fr; }
}

/* HOW IT WORKS */
    .how-section { background: var(--gray-100); padding: 5rem 2rem; }
    .how-header { text-align: center; margin-bottom: 3.5rem; }
    .how-header .section-subtitle { margin: 0 auto; }
    .how-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    }
    .how-step {
      background: var(--white); border-radius: 12px; padding: 2rem 1.5rem;
      text-align: center; border: 1px solid var(--gray-200);
      transition: all 0.25s; position: relative;
    }
    .how-step:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(15,36,57,0.08); }
    .step-num {
      width: 48px; height: 48px; border-radius: 12px;
      background: linear-gradient(135deg, var(--accent), #2563EB);
      color: var(--white); display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; font-weight: 800; margin: 0 auto 1.25rem;
    }
    .how-step h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.6rem; }
    .how-step p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

    /* FEATURES */
    .features-section { background: var(--white); padding: 5rem 2rem; }
    .features-header { text-align: center; margin-bottom: 3.5rem; }
    .features-header .section-subtitle { margin: 0 auto; }
    .features-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    .feature-card {
      background: var(--gray-100); border-radius: 12px; padding: 2rem;
      border: 1px solid var(--gray-200); transition: all 0.25s;
    }
    .feature-card:hover { border-color: var(--accent); box-shadow: 0 8px 25px rgba(59,130,246,0.08); }
    .feature-icon {
      width: 48px; height: 48px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 1.25rem;
    }
    .feature-icon.blue { background: rgba(59,130,246,0.1); }
    .feature-icon.green { background: rgba(16,185,129,0.1); }
    .feature-icon.gold { background: rgba(245,158,11,0.1); }
    .feature-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.6rem; }
    .feature-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

    /* PRICING */
    .pricing-section {
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
      padding: 5rem 2rem; color: var(--white);
    }
    .pricing-header { text-align: center; margin-bottom: 3.5rem; }
    .pricing-header h2 { color: var(--white); }
    .pricing-header .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto; }
    .pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; max-width: 1380px; margin: 0 auto; }
    .price-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px; padding: 2rem 1.5rem; text-align: center;
      transition: all 0.25s;
    }
    .price-card.featured {
      background: rgba(59,130,246,0.1); border-color: var(--accent);
      transform: scale(1.04); position: relative;
    }
    .price-card.featured::before {
      content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--accent); color: var(--white); padding: 0.25rem 1rem;
      border-radius: 50px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
    }
    .price-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.5rem; }
    .price-card .price { font-size: 2.8rem; font-weight: 800; color: var(--white); margin: 1rem 0 0.25rem; }
    .price-card .price-sub { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 1.5rem; }
    .price-card .price-note { color: var(--accent-light); font-size: 0.85rem; margin-bottom: 1.5rem; }
    .price-features { list-style: none; text-align: left; margin-bottom: 2rem; }
    .price-features li {
      color: rgba(255,255,255,0.8); font-size: 0.9rem;
      padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
      display: flex; gap: 0.6rem; align-items: flex-start;
    }
    .price-features li::before { content: '\2713'; color: var(--green-light); font-weight: 700; flex-shrink: 0; }
    .price-btn {
      display: block; width: 100%; padding: 0.85rem;
      border-radius: 8px; font-weight: 700; font-size: 0.95rem;
      text-decoration: none; text-align: center; transition: all 0.25s;
      cursor: pointer; border: none;
    }
    .price-btn.outline { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: var(--white); }
    .price-btn.outline:hover { border-color: var(--accent-light); color: var(--accent-light); }
    .price-btn.filled { background: var(--accent); color: var(--white); }
    .price-btn.filled:hover { background: #2563EB; }

    /* VETERAN MODE */
    .veteran-section { background: var(--white); padding: 5rem 2rem; }
    .veteran-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .veteran-visual {
      background: linear-gradient(135deg, #064E3B, #065F46);
      border-radius: 16px; padding: 3rem 2rem; color: var(--white); text-align: center;
    }
    .veteran-visual .badge {
      display: inline-block; background: rgba(52,211,153,0.15);
      border: 1px solid rgba(52,211,153,0.3); color: var(--green-light);
      padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem;
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem;
    }
    .veteran-visual h3 { font-size: 1.5rem; margin-bottom: 1rem; }
    .veteran-visual p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }
    .mos-example {
      background: rgba(0,0,0,0.2); border-radius: 10px; padding: 1.5rem;
      margin-top: 1.5rem; text-align: left;
    }
    .mos-example .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
    .mos-example .label.red { color: #FCA5A5; }
    .mos-example .label.green { color: var(--green-light); }
    .mos-example .value { font-size: 0.9rem; color: rgba(255,255,255,0.9); line-height: 1.5; }
    .mos-arrow { text-align: center; color: var(--green-light); font-size: 1.5rem; margin: 0.75rem 0; }
    .veteran-content h2 { margin-bottom: 1rem; }
    .veteran-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
    .vet-features { list-style: none; margin: 1.5rem 0; }
    .vet-features li {
      display: flex; align-items: flex-start; gap: 0.75rem;
      margin-bottom: 0.75rem; color: var(--text); font-size: 0.95rem;
    }
    .vet-features li::before {
      content: '\2713'; background: var(--green); color: var(--white);
      width: 20px; height: 20px; border-radius: 50%; display: flex;
      align-items: center; justify-content: center; font-size: 0.65rem;
      font-weight: 900; flex-shrink: 0; margin-top: 2px;
    }

    /* CTA */
    .cta-section {
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      color: var(--white); text-align: center; padding: 5rem 2rem;
    }
    .cta-section h2 { color: var(--white); margin-bottom: 1rem; }
    .cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 550px; margin: 0 auto 2rem; }

    /* FOOTER */
    footer {
      background: #080f1a; color: rgba(255,255,255,0.8);
      padding: 3rem 2rem 1.5rem;
    }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-brand-text { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.95); }
    .footer-brand-text em { color: var(--accent-light); font-style: normal; }
    .footer-powered { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
    .footer-powered a { color: rgba(255,255,255,0.9); text-decoration: none; }
    .footer-powered a:hover { color: var(--accent-light); }
    .footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
    .footer-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.9rem; }
    .footer-links a:hover { color: var(--accent-light); }

    /* HAMBURGER MENU */
    .hamburger {
      display: none; background: none; border: none; cursor: pointer;
      padding: 0.5rem; color: rgba(255,255,255,0.85); flex-direction: column;
      gap: 5px; align-items: center; justify-content: center;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px; background: currentColor;
      border-radius: 2px; transition: all 0.25s;
    }
    .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* RESPONSIVE */
    @media (max-width: 1200px) and (min-width: 901px) {
      .pricing-grid { grid-template-columns: repeat(3, 1fr); max-width: 960px; }
    }
    @media (max-width: 900px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none; flex-direction: column; gap: 0; width: 100%;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(15,36,57,0.99); border-bottom: 1px solid rgba(59,130,246,0.2);
        padding: 0.5rem 0 1rem;
      }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 0.75rem 2rem; border-radius: 0; font-size: 1rem; }
      .nav-cta { margin: 0.5rem 2rem 0 !important; border-radius: 8px !important; text-align: center; }
      .problem-grid, .veteran-grid { grid-template-columns: 1fr; }
      .how-grid { grid-template-columns: 1fr 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
      .price-card.featured { transform: none; }
    }
    @media (max-width: 600px) {
      .how-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 2rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* CA ADS COMPLIANCE */
    .compliance-section { background: var(--gray-100); padding: 5rem 2rem; border-top: 1px solid var(--gray-200); }
    .compliance-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
      color: var(--green); padding: 0.4rem 1rem; border-radius: 50px;
      font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .compliance-header { text-align: center; margin-bottom: 3.5rem; }
    .compliance-header h2 { color: var(--navy); margin-bottom: 1rem; }
    .compliance-header .section-subtitle { margin: 0 auto; }
    .compliance-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .compliance-what { background: var(--white); border-radius: 16px; padding: 2.5rem; border: 1px solid var(--gray-200); }
    .compliance-what h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 1rem; }
    .compliance-what p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
    .compliance-what a { color: var(--accent); font-weight: 600; text-decoration: none; }
    .compliance-what a:hover { text-decoration: underline; }
    .compliance-reg-box {
      background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.3);
      border-radius: 10px; padding: 1rem 1.25rem; margin-top: 1.25rem;
    }
    .compliance-reg-box .reg-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #D97706; margin-bottom: 0.3rem; }
    .compliance-reg-box p { color: var(--text); font-size: 0.88rem; line-height: 1.6; margin: 0; }
    .compliance-features { display: flex; flex-direction: column; gap: 1rem; }
    .compliance-feature {
      background: var(--white); border-radius: 12px; padding: 1.5rem;
      border: 1px solid var(--gray-200); display: flex; gap: 1rem; align-items: flex-start;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .compliance-feature:hover { border-color: var(--accent); box-shadow: 0 6px 20px rgba(59,130,246,0.07); }
    .compliance-feature-icon {
      width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .compliance-feature-icon.green { background: rgba(16,185,129,0.1); }
    .compliance-feature-icon.blue { background: rgba(59,130,246,0.1); }
    .compliance-feature-icon.gold { background: rgba(245,158,11,0.1); }
    .compliance-feature-icon.red { background: rgba(185,28,28,0.08); }
    .compliance-feature h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 0.3rem; }
    .compliance-feature p { color: var(--text-light); font-size: 0.875rem; line-height: 1.6; margin: 0; }
    .compliance-cta-row {
      text-align: center; margin-top: 3rem; padding-top: 2.5rem;
      border-top: 1px solid var(--gray-200);
    }
    .compliance-cta-row p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }
    @media (max-width: 860px) {
      .compliance-layout { grid-template-columns: 1fr; gap: 2rem; }
    }

.faq-section { background:#fff; padding:5rem 2rem; border-top:1px solid #e2e8f0; }
  .faq-container { max-width:900px; margin:0 auto; }
  .faq-header { text-align:center; margin-bottom:3rem; }
  .faq-header h2 { color:var(--navy); font-size:clamp(1.8rem, 3.5vw, 2.5rem); font-weight:800; margin:0.5rem 0 0.75rem; letter-spacing:-0.5px; }
  .faq-header p { color:#64748b; font-size:1.05rem; max-width:640px; margin:0 auto; }
  .faq-list { display:flex; flex-direction:column; gap:0.75rem; }
  .faq-item { background:#f8fafc; border:1px solid #e2e8f0; border-radius:10px; overflow:hidden; transition:border-color 0.15s, box-shadow 0.15s; }
  .faq-item[open] { border-color:var(--accent); box-shadow:0 4px 18px rgba(59,130,246,0.08); }
  .faq-item summary { list-style:none; cursor:pointer; padding:1.25rem 1.5rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; font-size:1.05rem; font-weight:700; color:var(--navy); }
  .faq-item summary::-webkit-details-marker { display:none; }
  .faq-item summary::after { content:"+"; font-size:1.6rem; font-weight:400; color:var(--accent); line-height:1; flex-shrink:0; transition:transform 0.2s; }
  .faq-item[open] summary::after { content:"\2212"; transform:rotate(0deg); }
  .faq-item summary:hover { color:var(--accent); }
  .faq-answer { padding:0 1.5rem 1.5rem; color:#334155; font-size:0.98rem; line-height:1.7; }
  .faq-footer-note { text-align:center; margin-top:2.5rem; color:#64748b; font-size:0.95rem; }
  .faq-footer-note a { color:var(--accent); font-weight:600; text-decoration:none; }
  .faq-footer-note a:hover { text-decoration:underline; }

/* Extracted inline style attributes */
._ts-001 { background:#0f2439; border-radius:0 0 6px 6px; color:#fff; font-weight:700; height:1px; left:-9999px; overflow:hidden; padding:0.75rem 1.5rem; position:absolute; text-decoration:none; top:auto; width:1px; z-index:9999; }
._ts-002 { color:#34d399; }
._ts-003 { font-size:0.95rem; margin-top:2rem; text-align:center; }
._ts-004 { color:var(--accent); font-weight:600; }
._ts-005 { color:var(--accent-light); }
._ts-006 { color:rgba(255,255,255,0.65); margin:0 auto; }
._ts-007 { color:var(--accent-light); text-decoration:underline; }
._ts-008 { color:var(--text-light); font-size:0.78rem; font-weight:500; vertical-align:middle; }
._ts-009 { display:inline; margin-right:5px; vertical-align:middle; }
._ts-010 { display:flex; flex-wrap:wrap; gap:0.5rem; margin-top:0.75rem; }
._ts-011 { background:#1e293b; border-radius:8px; border:1px solid #334155; color:#e2e8f0; display:flex; flex-wrap:wrap; font-size:0.75rem; font-weight:600; gap:0.75rem; margin-bottom:0.75rem; padding:0.5rem 0.8rem; }
._ts-012 { align-items:center; display:inline-flex; gap:0.3rem; }
._ts-013 { background:#10b981; border-radius:3px; display:inline-block; height:9px; width:9px; }
._ts-014 { background:#f59e0b; border-radius:3px; display:inline-block; height:9px; width:9px; }
._ts-015 { color:#fcd34d; }
._ts-016 { background:#ef4444; border-radius:3px; display:inline-block; height:9px; width:9px; }
._ts-017 { display:flex; flex-direction:column; gap:0.6rem; }
._ts-018 { align-items:flex-start; background:var(--gray-100); border-radius:8px; border:1px solid var(--gray-200); display:flex; gap:0.75rem; padding:0.75rem 1rem; }
._ts-019 { background:rgba(245,158,11,0.12); border-radius:20px; color:#D97706; flex-shrink:0; font-size:0.65rem; font-weight:800; margin-top:2px; padding:2px 8px; text-transform:uppercase; }
._ts-020 { color:var(--text); font-size:0.85rem; font-weight:700; margin-bottom:0.2rem; }
._ts-021 { color:var(--text-light); font-size:0.82rem; line-height:1.6; }
._ts-022 { flex-shrink:0; white-space:nowrap; }
._ts-023 { background:var(--green); border:none; cursor:pointer; }
._ts-024 { font-size:0.95rem; margin-top:1.5rem; }
._ts-025 { color:var(--green-light); font-weight:600; }
._ts-026 { color:#34d399; font-weight:600; }
._ts-027 { align-items:center; background:linear-gradient(135deg,rgba(16,185,129,0.12),rgba(16,185,129,0.06)); border-radius:14px; border:1px solid rgba(16,185,129,0.35); display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; margin:2rem auto 0; max-width:960px; padding:1.5rem 2rem; }
._ts-028 { color:#10b981; font-size:0.75rem; font-weight:800; letter-spacing:1.5px; margin-bottom:0.3rem; }
._ts-029 { color:#fff; font-size:1.1rem; font-weight:700; margin-bottom:0.3rem; }
._ts-030 { display:inline !important; vertical-align:middle; }
._ts-031 { color:rgba(255,255,255,0.6); font-size:0.875rem; max-width:520px; }
._ts-032 { background:linear-gradient(135deg,#059669,#10b981); border-radius:9px; border:none; color:#fff; cursor:pointer; font-size:0.95rem; font-weight:700; padding:0.75rem 1.75rem; white-space:nowrap; }
._ts-033 { align-items:center; background:rgba(52,211,153,0.08); border-radius:14px; border:1px solid rgba(52,211,153,0.3); display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; margin:1.5rem auto 0; max-width:960px; padding:1.25rem 2rem; }
._ts-034 { align-items:center; display:flex; gap:0.75rem; }
._ts-035 { color:#34d399; font-size:0.8rem; font-weight:800; letter-spacing:1px; margin-bottom:0.2rem; text-transform:uppercase; }
._ts-036 { color:rgba(255,255,255,0.75); font-size:0.9rem; }
._ts-037 { background:rgba(52,211,153,0.15); border-radius:8px; border:1px solid rgba(52,211,153,0.4); color:#34d399; font-size:0.875rem; font-weight:700; padding:0.6rem 1.25rem; text-decoration:none; white-space:nowrap; }
._ts-038 { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; }
._ts-039 { font-size:0.82rem; }
._ts-040 { align-items:center; background:rgba(15,36,57,0.7); display:none; height:100%; justify-content:center; left:0; position:fixed; top:0; width:100%; z-index:3000; }
._ts-041 { background:#fff; border-radius:16px; box-shadow:0 20px 60px rgba(0,0,0,0.3); max-height:90vh; max-width:500px; overflow-y:auto; padding:2.5rem; position:relative; width:90%; }
._ts-042 { background:none; border:none; color:#94a3b8; cursor:pointer; font-size:1.4rem; line-height:1; position:absolute; right:1rem; top:1rem; }
._ts-043 { color:#3B82F6; font-size:0.75rem; font-weight:700; letter-spacing:2px; margin-bottom:0.5rem; text-transform:uppercase; }
._ts-044 { color:#0F2439; font-size:1.4rem; margin-bottom:0.4rem; }
._ts-045 { color:#64748b; font-size:0.88rem; line-height:1.6; margin-bottom:1.75rem; }
._ts-046 { background:rgba(16,185,129,0.08); border-radius:10px; border:1px solid rgba(16,185,129,0.3); display:none; margin-bottom:1rem; padding:1.25rem; text-align:center; }
._ts-047 { font-size:1.5rem; margin-bottom:0.5rem; }
._ts-048 { color:#065F46; font-weight:700; margin-bottom:0.25rem; }
._ts-049 { color:#64748b; font-size:0.88rem; }
._ts-050 { display:grid; gap:1rem; grid-template-columns:1fr 1fr; margin-bottom:1rem; }
._ts-051 { color:#0F2439; display:block; font-size:0.82rem; font-weight:600; margin-bottom:0.3rem; }
._ts-052 { border-radius:8px; border:1px solid #e2e8f0; color:#1e293b; font-family:inherit; font-size:0.9rem; padding:0.65rem 0.9rem; width:100%; }
._ts-053 { margin-bottom:1rem; }
._ts-054 { background:#fff; border-radius:8px; border:1px solid #e2e8f0; color:#1e293b; font-family:inherit; font-size:0.9rem; padding:0.65rem 0.9rem; width:100%; }
._ts-055 { margin-bottom:1.5rem; }
._ts-056 { border-radius:8px; border:1px solid #e2e8f0; color:#1e293b; font-family:inherit; font-size:0.9rem; padding:0.75rem 0.9rem; resize:vertical; width:100%; }
._ts-057 { background:#3B82F6; border-radius:8px; border:none; color:#fff; cursor:pointer; font-size:1rem; font-weight:700; padding:0.9rem; transition:all 0.2s; width:100%; }
._ts-058 { background:#0F2439; border-radius:12px; color:#e2e8f0; display:none; line-height:1.8; margin:2rem auto; max-width:800px; padding:2rem 3rem; }
._ts-059 { color:#fff; font-size:1.8rem; margin-bottom:1rem; }
._ts-060 { color:#93c5fd; margin-top:1.5rem; }
._ts-061 { color:#94a3b8; font-size:0.9rem; }
._ts-062 { align-items:center; background:rgba(10,20,40,0.8); display:none; height:100%; justify-content:center; left:0; position:fixed; top:0; width:100%; z-index:5000; }
._ts-063 { background:#fff; border-radius:16px; box-shadow:0 20px 60px rgba(0,0,0,0.4); max-width:420px; padding:2.5rem; position:relative; width:90%; }
._ts-064 { background:none; border:none; color:#94a3b8; cursor:pointer; font-size:1.5rem; line-height:1; position:absolute; right:1rem; top:1rem; }
._ts-065 { background:linear-gradient(135deg,#1d4ed8,#3b82f6); border-radius:20px; color:#fff; display:inline-block; font-size:0.72rem; font-weight:800; letter-spacing:0.6px; margin-bottom:1.1rem; padding:3px 12px; }
._ts-066 { color:#0F2439; font-size:1.3rem; font-weight:800; margin:0 0 0.5rem; }
._ts-067 { color:#64748b; font-size:0.88rem; line-height:1.6; margin:0 0 1.75rem; }
._ts-068 { background:linear-gradient(135deg,#1d4ed8,#3b82f6); border-radius:9px; color:#fff; cursor:pointer; display:block; font-size:0.95rem; font-weight:700; margin-bottom:0.75rem; padding:0.85rem; text-align:center; text-decoration:none; }
._ts-069 { color:#64748b; font-size:0.875rem; text-align:center; }
._ts-070 { color:#3b82f6; font-weight:600; text-decoration:none; }
._ts-071 { display:none; }
._ts-072 { color:#64748b; font-size:0.84rem; margin:0 0 0.3rem; }
._ts-073 { color:#0F2439; font-size:0.95rem; font-weight:700; margin-bottom:1.5rem; word-break:break-all; }
._ts-074 { background:linear-gradient(135deg,#1d4ed8,#3b82f6); border-radius:9px; border:none; color:#fff; cursor:pointer; font-size:0.95rem; font-weight:700; margin-bottom:0.75rem; padding:0.85rem; width:100%; }
._ts-075 { background:rgba(15,36,57,0.97); border-top:1px solid rgba(59,130,246,0.25); bottom:0; display:none; left:0; padding:0.75rem 1rem; position:fixed; right:0; text-align:center; z-index:2000; }
._ts-076 { background:#3B82F6; border-radius:8px; color:#fff; display:inline-block; font-size:1rem; font-weight:700; padding:0.7rem 2.5rem; text-decoration:none; }
