/* ==========================================================================
   ConfirmOK Public CSS — Shared styles for all public-facing pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */
:root {
    --navy-950: #0a1628;
    --navy-900: #0f2044;
    --navy-800: #172e5a;
    --navy-700: #1e3d73;
    --navy-600: #2a5298;
    --navy-100: #dce4f2;
    --navy-50: #eef2f9;
    --slate-700: #3a4459;
    --slate-500: #5e6a80;
    --slate-400: #8892a6;
    --slate-300: #b0b8c9;
    --slate-200: #d1d7e3;
    --slate-100: #e8ecf2;
    --slate-50: #f4f6f9;
    --amber-600: #c6861a;
    --amber-500: #d4972a;
    --amber-100: #fef3dc;
    --white: #ffffff;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

/* --------------------------------------------------------------------------
   Body
   -------------------------------------------------------------------------- */
body {
    font-family: var(--font-body);
    color: var(--navy-950);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.nav {
    background: var(--navy-950);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 96px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--slate-300);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--white);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: var(--white);
    color: var(--navy-950);
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-login {
    padding: 9px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: var(--white) !important;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}

.nav-login:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.35);
}

.nav-cta:hover {
    background: var(--slate-100);
}

/* --------------------------------------------------------------------------
   Mobile Menu
   -------------------------------------------------------------------------- */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--navy-950);
    z-index: 999;
    transition: right 0.3s ease;
    padding: 24px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 24px;
}

.mobile-menu-logo {
    margin-bottom: 32px;
}

.mobile-menu-logo img {
    height: 32px;
    width: auto;
}

.mobile-menu-nav {
    list-style: none;
    margin-bottom: 32px;
}

.mobile-menu-nav li {
    margin-bottom: 4px;
}

.mobile-menu-nav a {
    display: block;
    padding: 12px 0;
    color: var(--slate-300);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
}

.mobile-menu-nav a:hover {
    color: var(--white);
}

.mobile-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
    background: var(--navy-950);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 82, 152, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--slate-50));
    pointer-events: none;
}

.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--amber-500);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--amber-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 18px;
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-agency {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-agency:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.hero-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--slate-300);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-tertiary:hover {
    color: var(--white);
}

.hero-tertiary::after {
    content: "\2192";
    color: var(--amber-500);
    font-weight: 600;
    margin-left: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Call Card */
.call-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
    position: relative;
}

.call-card-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #2d6a4f;
    background: #d8f3dc;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.call-card-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2d6a4f;
}

.call-card-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy-950);
    margin-bottom: 4px;
}

.call-card-program {
    font-size: 14px;
    color: var(--slate-400);
    margin-bottom: 24px;
}

.call-card-transcript {
    background: var(--slate-50);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.call-line {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.call-line:last-child {
    margin-bottom: 0;
}

.call-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    min-width: 56px;
    padding-top: 2px;
}

.call-text {
    font-size: 14px;
    color: var(--navy-950);
    line-height: 1.5;
}

.call-card-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.call-card-result-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2d6a4f;
}

.call-card-result-status svg {
    width: 18px;
    height: 18px;
    fill: #2d6a4f;
}

.call-card-result-time {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--slate-400);
}

/* Floating Badge */
.hero-float-badge {
    position: absolute;
    bottom: -20px;
    left: -24px;
    background: var(--navy-950);
    color: var(--white);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    animation: floatUpEntrance 0.6s ease 0.8s both;
}

.badge-number {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 500;
    color: var(--amber-500);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: var(--white);
    color: var(--navy-950);
}

.btn-primary:hover {
    background: var(--slate-100);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-300);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    color: var(--white);
}

.btn-dark {
    background: var(--navy-950);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-900);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--navy-700);
    border: 1px solid var(--slate-200);
}

.btn-outline:hover {
    background: var(--navy-50);
    border-color: var(--navy-100);
}

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
    max-width: 1120px;
    margin: -32px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.trust-bar-inner {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trust-stat {
    text-align: center;
}

.trust-stat-value {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 500;
    color: var(--navy-950);
    line-height: 1;
    margin-bottom: 4px;
}

.trust-stat-label {
    font-size: 13px;
    color: var(--slate-400);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-200);
}

/* --------------------------------------------------------------------------
   Section Utilities
   -------------------------------------------------------------------------- */
.section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-alt-white {
    background: var(--white);
}

.section-alt-dark {
    background: var(--navy-950);
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--amber-600);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px);
    color: var(--navy-950);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--slate-500);
    max-width: 540px;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   How It Works
   -------------------------------------------------------------------------- */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.how-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 32px 28px;
    transition: transform 0.2s;
}

.how-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--navy-800);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.how-card:hover::before {
    opacity: 1;
}

.how-number {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--amber-600);
    margin-bottom: 16px;
}

.how-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy-950);
    margin-bottom: 8px;
}

.how-text {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.6;
}

.how-proof {
    font-size: 13px;
    font-style: italic;
    color: var(--amber-600);
    margin-top: 12px;
    line-height: 1.5;
}

.how-objection {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 40px;
    max-width: 640px;
}

.how-objection-heading {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--navy-950);
    margin-bottom: 8px;
}

.how-objection-text {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.6;
}

.how-cta-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* --------------------------------------------------------------------------
   Problem / Solution
   -------------------------------------------------------------------------- */
.problem-section {
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 48px;
}

.problem-col-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid;
}

.problem-col-title.without {
    color: var(--slate-400);
    border-color: var(--slate-200);
}

.problem-col-title.with {
    color: var(--navy-700);
    border-color: var(--navy-700);
}

.problem-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    font-size: 18px;
    color: var(--slate-700);
    line-height: 1.55;
}

.problem-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-item.negative svg {
    fill: var(--slate-300);
}

.problem-item.positive svg {
    fill: var(--navy-700);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 28px;
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--navy-100);
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--navy-700);
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-950);
}

.testimonial-role {
    font-size: 13px;
    color: var(--slate-400);
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 48px auto 0;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
}

.pricing-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--amber-600);
    margin-bottom: 12px;
}

.pricing-headline {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--navy-950);
    margin-bottom: 8px;
}

.pricing-sub {
    font-size: 15px;
    color: var(--slate-500);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--slate-700);
    border-bottom: 1px solid var(--slate-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    fill: var(--navy-700);
    flex-shrink: 0;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --------------------------------------------------------------------------
   Community Banner
   -------------------------------------------------------------------------- */
.community-banner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.community-banner-inner {
    background: var(--navy-950);
    border-radius: 12px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.community-banner-inner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 82, 152, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.community-banner-text {
    position: relative;
    z-index: 1;
}

.community-banner-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--amber-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.community-banner-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    color: var(--white);
    margin-bottom: 6px;
}

.community-banner-sub {
    font-size: 15px;
    color: var(--slate-400);
}

.community-banner-link {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.contact-form-container {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 36px 32px;
    max-width: 560px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-950);
    margin-bottom: 6px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy-950);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--navy-600);
}

.form-input::placeholder {
    color: var(--slate-300);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--slate-400);
    margin-top: 14px;
}

.form-success {
    text-align: center;
    padding: 20px;
    color: #2d6a4f;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Partners / Trust Logos
   -------------------------------------------------------------------------- */
.partners-section {
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    padding: 64px 0;
}

.partners-section .section {
    padding: 0 24px;
    text-align: center;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.partners-logos img {
    height: 56px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.partners-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Featured In */
.featured-in-section {
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
}

.featured-in-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.featured-in-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
}

.featured-in-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.featured-in-logo img {
    height: 36px;
    width: auto;
}

/* Logo Carousel */
.logo-carousel {
    overflow: hidden;
    margin-top: 32px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-carousel-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: logoScroll 30s linear infinite;
}

.logo-carousel-track img {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.logo-carousel:hover .logo-carousel-track {
    animation-play-state: paused;
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    transition: background 0.2s;
}

.faq-header:hover {
    background: rgba(255,255,255,0.04);
}

.faq-header svg {
    width: 20px;
    height: 20px;
    fill: var(--slate-400);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.faq-header.active svg {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--slate-400);
    line-height: 1.7;
}

.faq-content.active {
    display: block;
}

/* --------------------------------------------------------------------------
   Blog Home Cards (homepage latest posts)
   -------------------------------------------------------------------------- */
.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.blog-home-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
}

.blog-home-card:hover {
    transform: translateY(-2px);
}

.blog-home-card-image {
    height: 180px;
    background: var(--navy-50);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-home-card-image i {
    font-size: 2rem;
    color: var(--slate-300);
}

.blog-home-card-body {
    padding: 20px;
}

.blog-home-card-meta {
    font-size: 13px;
    color: var(--slate-400);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-home-card-body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--navy-950);
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-home-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-home-card-body h3 a:hover {
    color: var(--navy-600);
}

.blog-home-card-excerpt {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}

.blog-home-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--slate-100);
    font-size: 13px;
}

.blog-home-card-author {
    color: var(--slate-400);
}

/* --------------------------------------------------------------------------
   Page Header (privacy, tos, blog, etc.)
   -------------------------------------------------------------------------- */
.page-header {
    background: var(--navy-950);
    padding: 60px 0 48px;
    text-align: center;
}

.page-header .section-eyebrow {
    color: var(--amber-500);
}

.page-header .section-title {
    color: var(--white);
}

.page-header .section-sub {
    color: var(--slate-400);
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Legal Content (privacy / tos)
   -------------------------------------------------------------------------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--navy-950);
    margin-bottom: 8px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy-950);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: var(--slate-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 16px;
    color: var(--slate-700);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--navy-600);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--navy-800);
}

.legal-content .last-updated {
    font-size: 14px;
    color: var(--slate-400);
    margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   Blog Index
   -------------------------------------------------------------------------- */
.blog-header {
    background: var(--navy-950);
    padding: 80px 0 60px;
    text-align: center;
}

.blog-header h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 16px;
}

.blog-header p {
    font-size: 17px;
    color: var(--slate-400);
    max-width: 560px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1120px;
    margin: 48px auto;
    padding: 0 24px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.blog-card-image {
    height: 200px;
    background: var(--navy-50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.blog-card-image i {
    font-size: 2.5rem;
    color: var(--slate-300);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--slate-400);
    margin-bottom: 12px;
}

.blog-card-meta i {
    margin-right: 4px;
}

.blog-card-tag {
    background: var(--navy-950);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy-950);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card-body h3 a:hover {
    color: var(--navy-600);
}

.blog-card-excerpt {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--slate-100);
}

.blog-card-author {
    font-size: 13px;
    color: var(--slate-400);
}

.blog-card-author i {
    margin-right: 6px;
}

.blog-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-700);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more:hover {
    color: var(--navy-950);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 24px 80px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--slate-200);
    color: var(--slate-500);
    transition: all 0.2s;
}

.blog-pagination a:hover {
    background: var(--navy-50);
    border-color: var(--navy-100);
    color: var(--navy-700);
}

.blog-pagination .active {
    background: var(--navy-950);
    color: var(--white);
    border-color: var(--navy-950);
}

/* --------------------------------------------------------------------------
   Blog Post Content (show page)
   -------------------------------------------------------------------------- */
.post-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
    font-family: var(--font-display);
    color: var(--navy-950);
    margin-top: 32px;
    margin-bottom: 12px;
}

.post-content h1 {
    font-size: 32px;
}

.post-content h2 {
    font-size: 26px;
}

.post-content h3 {
    font-size: 22px;
}

.post-content p {
    font-size: 17px;
    color: var(--slate-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.post-content a {
    color: var(--navy-600);
    text-decoration: underline;
}

.post-content a:hover {
    color: var(--navy-800);
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.post-content blockquote {
    border-left: 3px solid var(--navy-700);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--navy-50);
    border-radius: 0 8px 8px 0;
}

.post-content blockquote p {
    color: var(--navy-800);
    font-style: italic;
    margin-bottom: 0;
}

.post-content ul,
.post-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.post-content li {
    font-size: 17px;
    color: var(--slate-700);
    line-height: 1.8;
    margin-bottom: 8px;
}

.post-content pre {
    background: var(--navy-950);
    color: var(--slate-100);
    padding: 20px 24px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.6;
}

.post-content code {
    font-family: var(--font-mono);
    font-size: 14px;
    background: var(--slate-100);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--navy-800);
}

.post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.post-content th,
.post-content td {
    padding: 12px 16px;
    border: 1px solid var(--slate-200);
    text-align: left;
    font-size: 15px;
}

.post-content th {
    background: var(--navy-50);
    font-weight: 600;
    color: var(--navy-950);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 0;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 13px;
    color: var(--slate-500);
    width: 100%;
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatUpEntrance {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

/* --------------------------------------------------------------------------
   Press Page
   -------------------------------------------------------------------------- */
.press-hero {
    background: var(--navy-950);
    padding: 80px 0 60px;
    text-align: center;
}

.press-hero .section-eyebrow {
    color: var(--amber-500);
}

.press-hero .section-title {
    color: var(--white);
}

.press-hero .section-sub {
    color: var(--slate-400);
    margin: 0 auto;
}

.press-hero-metric {
    font-size: 14px;
    color: var(--slate-500);
    margin-top: 16px;
    font-family: var(--font-mono);
}

/* Press story cards */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.press-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.press-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.press-card-logo {
    height: 48px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.press-card-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.press-card-outlet {
    font-size: 13px;
    color: var(--slate-400);
    margin-bottom: 12px;
}

.press-card-headline {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--navy-950);
    line-height: 1.35;
    margin-bottom: 12px;
    flex-grow: 1;
}

.press-card-date {
    font-size: 13px;
    color: var(--slate-400);
    margin-bottom: 16px;
}

.press-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-700);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.press-card-link:hover {
    color: var(--navy-950);
}

.press-card-link svg {
    width: 14px;
    height: 14px;
}

/* Press text placeholder (for missing logos) */
.press-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--navy-700);
    font-weight: 600;
    height: 48px;
    display: flex;
    align-items: center;
}

/* Pull quote sections */
.press-quote {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}

.press-quote-mark {
    width: 36px;
    height: 36px;
    fill: var(--navy-100);
    margin: 0 auto 16px;
    display: block;
}

.press-quote-text {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy-950);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
}

.press-quote-attribution {
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 12px;
}

.press-quote-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-700);
    text-decoration: none;
}

.press-quote-link:hover {
    color: var(--navy-950);
}

/* National resources strip */
.press-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.press-resource-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}

.press-resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.press-resource-card-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.press-resource-card-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.press-resource-card-name {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--navy-950);
    margin-bottom: 6px;
}

.press-resource-card-desc {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.5;
}

/* Regional coverage (smaller cards) */
.press-regional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.press-regional-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.press-regional-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.press-regional-state {
    font-size: 12px;
    font-weight: 600;
    color: var(--amber-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.press-regional-headline {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--navy-950);
    line-height: 1.35;
    margin-bottom: 8px;
}

.press-regional-headline a {
    color: inherit;
    text-decoration: none;
}

.press-regional-headline a:hover {
    color: var(--navy-600);
}

.press-regional-outlet {
    font-size: 15px;
    color: var(--slate-400);
}

/* Partner wall */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.partner-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.partner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.partner-card-logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.partner-card-logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.partner-card-name {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--navy-950);
    margin-bottom: 6px;
}

.partner-card-state {
    font-size: 15px;
    color: var(--slate-400);
    margin-bottom: 14px;
}

.partner-card-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-700);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.partner-card-link:hover {
    color: var(--navy-950);
}

/* Press inquiry band */
.press-inquiry {
    background: var(--navy-950);
    padding: 64px 0;
    text-align: center;
}

.press-inquiry-heading {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 16px;
}

.press-inquiry-body {
    font-size: 16px;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 24px;
}

.press-inquiry-emails {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.press-inquiry-email {
    color: var(--amber-500);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.press-inquiry-email:hover {
    color: var(--amber-100);
}

/* --------------------------------------------------------------------------
   Responsive — 900px
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .hamburger-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta-group {
        align-items: center;
    }

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

    .how-cta-strip {
        flex-direction: column;
    }

    .how-cta-strip .btn {
        justify-content: center;
    }

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

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

    .trust-bar-inner {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .trust-divider {
        display: none;
    }

    .trust-stat {
        min-width: 120px;
    }

    .blog-home-grid {
        grid-template-columns: 1fr;
    }

    .community-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 28px;
    }

    .partners-logos img {
        height: 44px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }

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

    .press-resources-grid {
        grid-template-columns: 1fr;
    }

    .press-regional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Responsive — 600px
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-buttons .btn-primary,
    .hero-cta-buttons .btn-agency {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-cta-group {
        align-items: stretch;
    }

    .hero-tertiary {
        align-self: center;
    }

    .btn {
        justify-content: center;
    }

    .nav-links .nav-link {
        display: none;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .blog-pagination a,
    .blog-pagination span {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .contact-form-container {
        padding: 24px 20px;
    }

    .press-regional-grid {
        grid-template-columns: 1fr;
    }

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

    .press-inquiry-emails {
        flex-direction: column;
        align-items: center;
    }
}
