/* ============================================================
   PressIDCard.in — Public Website CSS
   Light Theme · Red Primary · Professional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --red:          #dc2626;
    --red-hover:    #b91c1c;
    --red-dark:     #b91c1c;
    --red-light:    #e67c77;
    --red-pale:     rgba(220,38,38,0.08);
    --red-shadow:   rgba(220,38,38,0.2);

    --bg:           #ffffff;
    --bg-alt:       #f5f3f3;
    --bg-section:   #fcfcfc;

    --text:         #111827;
    --text-sub:     #4b5563;
    --text-muted:   #6b7280;
    --text-light:   #9fa0a4;

    --border:       #e5e7eb;
    --border-med:   #d1d5db;

    --radius:       10px;
    --radius-lg:    16px;
    --shadow:       0 1px 4px rgba(17,24,39,0.07), 0 4px 20px rgba(17,24,39,0.06);
    --shadow-red:   0 4px 20px rgba(220,38,38,0.18);
    --transition:   all 0.2s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 64px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 12px rgba(17,24,39,0.08); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo-icon {
    width: 34px; height: 34px;
    background: var(--red);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px;
}
.nav-logo-text { font-size: 15px; font-weight: 700; color: var(--text); }
.nav-logo-text span { color: var(--red); }

.nav-links {
    display: flex; align-items: center; gap: 4px;
    flex: 1;
}
.nav-link {
    padding: 6px 14px;
    color: var(--text-sub);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 7px;
    transition: var(--transition);
}
.nav-link:hover { background: var(--bg-alt); color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-nav-login {
    padding: 7px 16px;
    color: var(--text-sub);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 7px;
    transition: var(--transition);
    border: 1px solid var(--border-med);
    background: white;
}
.btn-nav-login:hover { background: var(--bg-alt); color: var(--text); }
.btn-nav-cta {
    padding: 8px 18px;
    background: var(--red);
    color: white;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 7px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--red-hover); color: white; box-shadow: var(--shadow-red); }

.nav-mobile-toggle {
    display: none;
    background: none; border: 1px solid var(--border);
    width: 40px; height: 40px; border-radius: 8px;
    align-items: center; justify-content: center;
    font-size: 22px; color: var(--text); cursor: pointer;
    transition: var(--transition);
}
.nav-mobile-toggle:hover { background: var(--bg-alt); color: var(--red); }

.nav-icon-link {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-sub);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
    background: white;
}
.nav-icon-link:hover {
    background: var(--bg-alt);
    color: var(--red);
    border-color: var(--red-pale);
}
#navRegIcon {
    color: var(--red);
    border-color: rgba(220,38,38,0.2);
}
#navRegIcon:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}


/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
    position: fixed; inset: 0; z-index: 2000;
    background: white;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-content {
    display: flex; flex-direction: column; height: 100%;
    padding: 24px;
}
.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 40px;
}
.mobile-menu-close {
    background: var(--bg-alt); border: none;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--text); cursor: pointer;
}
.mobile-menu-links { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mobile-link {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text);
    font-size: 16px; font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
}
.mobile-link i { color: var(--red); font-size: 18px; opacity: 0.7; }
.mobile-link:hover { background: var(--red-pale); color: var(--red); }

.mobile-menu-footer {
    padding: 24px 0; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 12px;
}
.btn-mobile-login {
    display: block; text-align: center;
    padding: 16px; border-radius: 12px;
    background: var(--bg-alt); color: var(--text);
    text-decoration: none; font-weight: 600; font-size: 15px;
}
.btn-mobile-cta {
    display: block; text-align: center;
    padding: 16px; border-radius: 12px;
    background: var(--red); color: white;
    text-decoration: none; font-weight: 700; font-size: 15px;
    box-shadow: 0 4px 12px rgba(220,38,38,0.2);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 120px 0 80px;
    background-color: #ffffff;
    background-image:
        linear-gradient(rgba(220, 38, 38, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    position: relative;
    overflow: hidden;
}
/* Fade the grid at the bottom so it blends smoothly into the next section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #f5f3f3);
    pointer-events: none;
    z-index: 0;
}
.hero-container { position: relative; z-index: 1; }
/* Subtle top-right glow over the grid */
.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(220,38,38,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220,38,38,0.08);
    color: var(--red);
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
.live-dot {
    width: 7px; height: 7px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-title .highlight {
    color: var(--red);
    position: relative;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary-hero {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red);
    color: white;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(220,38,38,0.25);
}
.btn-primary-hero:hover { background: var(--red-hover); box-shadow: var(--shadow-red); color: white; transform: translateY(-1px); }

.btn-secondary-hero {
    display: inline-flex; align-items: center; gap: 8px;
    background: white;
    color: var(--text);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border-med);
    transition: var(--transition);
}
.btn-secondary-hero:hover { background: var(--bg-alt); border-color: var(--border-med); color: var(--text); }

.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--text-muted); font-weight: 500; }
.trust-badge i { color: var(--red); font-size: 13px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card-stack {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px;
}
.hero-id-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    width: 280px;
    box-shadow: 0 8px 40px rgba(17,24,39,0.12);
    position: relative;
    z-index: 2;
}
.id-card-header {
    background: var(--red);
    margin: -24px -24px 16px;
    padding: 16px 20px;
    border-radius: 13px 13px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.id-card-logo-circle {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 15px;
}
.id-card-channel { color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }
.id-card-body { display: flex; gap: 12px; align-items: flex-start; }
.id-card-photo {
    width: 60px; height: 72px;
    background: var(--bg-alt);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light);
    font-size: 24px;
    border: 1px solid var(--border);
}
.id-card-info div:first-child { font-size: 14px; font-weight: 700; color: var(--text); }
.id-card-info div:nth-child(2) { font-size: 11px; color: var(--red); font-weight: 600; margin-top: 2px; }
.id-card-info div:nth-child(3) { font-size: 11px; color: var(--text-muted); margin-top: 8px; }
.id-card-uid { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.uid-text { font-size: 11px; font-weight: 700; color: var(--text-sub); letter-spacing: 0.5px; }
.uid-qr { width: 28px; height: 28px; background: var(--text); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; }

/* Floating stats */
.float-stat {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    box-shadow: var(--shadow);
    white-space: nowrap;
    z-index: 3;
}
.float-stat .num { font-weight: 800; font-size: 16px; color: var(--text); }
.float-stat .lbl { color: var(--text-muted); }
.float-stat-icon { font-size: 18px; }
.float-1 { top: 10px; right: 10px; }
.float-2 { bottom: 30px; left: 0px; }
.float-3 { top: 110px; left: -20px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--red);
    padding: 16px 0;
}
.stats-bar-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    text-align: center;
}
.stats-bar-grid > .stat-item {
    padding: 14px 10px;
}
.stats-bar-grid > .stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.stat-item .num { font-size: 28px; font-weight: 800; color: white; line-height: 1; }
.stat-item .lbl { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 6px; font-weight: 500; }

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-white { background: white; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(220,38,38,0.08);
    color: var(--red);
    border: 1px solid rgba(220,38,38,0.15);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.section-sub { font-size: 16px; color: var(--text-sub); max-width: 540px; margin: 0 auto; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--red) 0%, rgba(220,38,38,0.3) 100%);
    z-index: 0;
}
.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 56px; height: 56px;
    background: white;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: var(--red);
    margin: 0 auto 16px;
    position: relative;
    box-shadow: 0 2px 12px rgba(220,38,38,0.15);
}
.step-card .step-icon {
    width: 44px; height: 44px;
    background: rgba(220,38,38,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
    color: var(--red);
}
.step-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}
.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.feature-card:hover { border-color: rgba(220,38,38,0.3); box-shadow: 0 4px 20px rgba(17,24,39,0.07); transform: translateY(-2px); }
.feature-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(220,38,38,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--red);
}
.feature-card h3 { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

/* ============================================================
   DOCUMENTS SHOWCASE
   ============================================================ */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 52px;
}
.doc-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
}
.doc-card:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(220,38,38,0.1); }
.doc-icon { font-size: 28px; margin-bottom: 10px; }
.doc-name { font-size: 11.5px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.doc-spec { font-size: 10.5px; color: var(--text-muted); margin-bottom: 8px; }
.doc-verified {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(22,163,74,0.08);
    color: #15803d;
    border: 1px solid rgba(22,163,74,0.2);
    padding: 3px 8px;
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 600;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px 0 48px;
}
.toggle-label { font-size: 14px; font-weight: 500; color: var(--text-sub); }
.toggle-switch {
    position: relative;
    width: 52px; height: 28px;
    cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute; inset: 0;
    background: var(--border-med);
    border-radius: 100px;
    transition: var(--transition);
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px; height: 22px;
    left: 3px; bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--red); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }
.save-badge {
    background: rgba(22,163,74,0.1);
    color: #15803d;
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 100px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card.featured {
    border-color: var(--red);
    box-shadow: 0 4px 24px rgba(220,38,38,0.12);
    transform: scale(1.02);
}
.popular-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}
.plan-name { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-price-amount { font-size: 36px; font-weight: 900; color: var(--text); }
.plan-price-period { font-size: 13px; color: var(--text-muted); }
.plan-price-yearly { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px; color: var(--text-sub);
    padding: 5px 0;
}
.plan-features li i { color: var(--red); font-size: 13px; }
.btn-plan {
    display: block; width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--red);
    color: var(--red);
    background: white;
}
.btn-plan:hover { background: var(--red); color: white; }
.btn-plan.filled { background: var(--red); color: white; }
.btn-plan.filled:hover { background: var(--red-hover); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 52px auto 0; }
.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(220,38,38,0.25); }
.faq-question {
    width: 100%; text-align: left;
    padding: 18px 22px;
    background: transparent;
    border: none;
    font-size: 14.5px; font-weight: 600; color: var(--text);
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    gap: 12px;
    font-family: inherit;
}
.faq-question:hover { color: var(--red); }
.faq-icon { color: var(--red); font-size: 16px; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 22px;
    font-size: 14px; color: var(--text-sub); line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 22px 18px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--red) 0%, #991b1b 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.cta-section h2 { font-size: 36px; font-weight: 800; color: white; margin-bottom: 12px; letter-spacing: -0.5px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.btn-cta-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: white;
    color: var(--red);
    padding: 13px 32px;
    border-radius: 8px;
    font-size: 15px; font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { background: #f5f3f3; transform: translateY(-1px); color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #111827;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 28px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 12px 0 16px; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon { width: 32px; height: 32px; background: var(--red); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; }
.footer-logo-name { font-size: 15px; font-weight: 700; color: white; }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13.5px; transition: var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-badges { display: flex; align-items: center; gap: 12px; }
.footer-badge { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.55); font-size: 12px; }
.footer-badge i { color: var(--red); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .docs-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-title { font-size: 38px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 991px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .btn-nav-login { display: none; }
    #navLoginIcon { display: flex; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 32px; }
    .hero { padding: 100px 0 60px; }
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0 !important;
    }
    .stats-bar-grid > .stat-item {
        border-right: none !important;
        border-bottom: none !important;
        padding: 20px 10px !important;
    }
    .stats-bar-grid > .stat-item:nth-child(5) {
        grid-column: span 2;
    }
    .stats-bar-grid > .stat-item:nth-child(1),
    .stats-bar-grid > .stat-item:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.22) !important;
    }
    .stats-bar-grid > .stat-item:nth-child(1),
    .stats-bar-grid > .stat-item:nth-child(2),
    .stats-bar-grid > .stat-item:nth-child(3),
    .stats-bar-grid > .stat-item:nth-child(4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
    }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .docs-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 26px; }
    .inner-hero h1 { font-size: 28px; }
    .inner-hero p { font-size: 14px; }
}

@media (max-width: 576px) {
    .hero-actions { flex-direction: column; }
    .btn-primary-hero, .btn-secondary-hero { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: left; }
    .footer-brand-text { margin: 12px 0 16px; }
    .footer-logo { justify-content: flex-start; }
    .footer-bottom { justify-content: flex-start; text-align: left; }
    .btn-nav-cta { display: none; }
    #navRegIcon { display: flex; }

}
