/* ============================================================
   GateCore Secure Access - Public Site
   Final Combined Design - Stars + Big Hero + Stats + Preview
   ============================================================ */

* {
    box-sizing: border-box;
}

:root {
    --bg-base: #050811;
    --bg-soft: #0a0d14;
    --bg-soft-2: #0f1420;
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    --text-bright: #cbd5e1;
    --brand: #7c3aed;
    --brand-light: #a78bfa;
    --brand-lighter: #c4b5fd;
    --brand-dark: #6d28d9;
    --success: #4ade80;
    --danger: #ef4444;
    --border-soft: rgba(255, 255, 255, 0.06);
    --border-mid: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.12);
    --brand-soft-bg: rgba(124, 58, 237, 0.08);
    --brand-soft-border: rgba(124, 58, 237, 0.25);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-base);
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--brand-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--brand-lighter);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================================
   STAR ANIMATIONS
   ============================================================ */

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

@keyframes twinkle-bright {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes shoot {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(400px, 250px); opacity: 0; }
}

@keyframes shoot-2 {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(-350px, 200px); opacity: 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

/* Global yildiz arkaplani - tum sayfaya yayilir */
.stars-global {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.star-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.star.bright {
    animation: twinkle-bright 2.5s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 4px white,
                -60px -40px 0 -1px rgba(255, 255, 255, 0.5),
                -120px -80px 0 -1.5px rgba(255, 255, 255, 0.2);
    animation: shoot 8s linear infinite;
}

.shooting-star.reverse {
    animation: shoot-2 10s linear infinite;
    box-shadow: 0 0 4px white,
                60px -40px 0 -1px rgba(255, 255, 255, 0.5),
                120px -80px 0 -1.5px rgba(255, 255, 255, 0.2);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
    background: rgba(5, 8, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.nav-brand:hover {
    color: white;
}

.nav-brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-brand-text {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.nav-brand-tag {
    font-size: 12px;
    color: var(--text-dim);
    margin-left: 4px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: white;
}

.nav-cta-outline {
    color: var(--brand-light);
    padding: 6px 14px;
    border: 1px solid var(--brand-dark);
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-cta-outline:hover {
    background: rgba(124, 58, 237, 0.1);
    color: var(--brand-lighter);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    padding: 100px 32px 70px;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-soft-bg);
    padding: 6px 14px;
    border-radius: 16px;
    margin-bottom: 28px;
    border: 1px solid var(--brand-soft-border);
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--brand-lighter);
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-light);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.hero-title {
    color: white;
    font-size: 64px;
    font-weight: 800;
    margin: 0 0 18px;
    line-height: 1;
    letter-spacing: -2px;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--brand-lighter), var(--brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 auto 32px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--brand);
    color: white;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--brand-dark);
    color: white;
    transform: translateY(-1px);
}

.btn-primary.glow {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.btn-primary.glow:hover {
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
}

.btn-primary.full {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: white;
    padding: 12px 24px;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-badges {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 12px;
}

.hero-badge-check {
    color: var(--success);
    font-size: 14px;
    font-weight: 700;
}

/* ============================================================
   STATS
   ============================================================ */

.stats-section {
    padding: 0 0 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 36px 0;
    border-top: 1px solid var(--border-mid);
    border-bottom: 1px solid var(--border-mid);
}

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

.stat-item + .stat-item {
    border-left: 1px solid var(--border-mid);
}

.stat-number {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -1px;
}

.stat-label {
    color: var(--text-dim);
    font-size: 11px;
    margin: 6px 0 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================================
   AUTHENTICATOR PREVIEW
   ============================================================ */

.preview-section {
    padding: 30px 0 70px;
    background: rgba(124, 58, 237, 0.02);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.preview-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 222, 128, 0.08);
    color: var(--success);
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    letter-spacing: 1px;
    font-weight: 600;
}

.preview-eyebrow-dot {
    width: 5px;
    height: 5px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
}

.preview-title {
    color: white;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.preview-sub {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.preview-feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.preview-feature-icon {
    width: 20px;
    height: 20px;
    background: rgba(124, 58, 237, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--brand-light);
    font-size: 11px;
    font-weight: 700;
}

.preview-feature p {
    color: var(--text-bright);
    font-size: 13px;
    margin: 0;
}

.preview-feature p strong {
    color: white;
    font-weight: 600;
}

.preview-link {
    display: inline-block;
    color: var(--brand-light);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.preview-link:hover {
    color: var(--brand-lighter);
}

.preview-card-wrapper {
    position: relative;
}

.preview-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.02));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 14px;
    padding: 24px;
    position: relative;
}

.preview-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.preview-card-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-card-title {
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.preview-card-subtitle {
    color: var(--text-dim);
    font-size: 10px;
    margin: 0;
}

.preview-card-status {
    color: var(--success);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.preview-card-code {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    margin-bottom: 12px;
}

.preview-card-code-label {
    color: var(--text-dim);
    font-size: 10px;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.preview-card-code-number {
    color: white;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 8px;
    margin: 0;
}

.preview-card-code-expiry {
    color: var(--danger);
    font-size: 11px;
    margin: 8px 0 0;
}

.preview-card-meta {
    background: rgba(124, 58, 237, 0.15);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 11px;
    color: var(--brand-lighter);
    line-height: 1.7;
}

.preview-card-meta strong {
    color: white;
    font-weight: 600;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */

.features-section {
    padding: 70px 0;
    background: rgba(255, 255, 255, 0.015);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--brand-light);
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    color: white;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -1px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 auto;
    max-width: 580px;
    line-height: 1.7;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 22px;
    transition: all 0.2s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 18px;
}

.feature-card h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-section {
    padding: 70px 0;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-mid);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 20px;
}

.pricing-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.pricing-row.highlight {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(124, 58, 237, 0.02));
    border: 1.5px solid rgba(124, 58, 237, 0.4);
}

.pricing-row.highlight:hover {
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
}

.pricing-row-info {
    flex: 1;
    min-width: 0;
}

.pricing-row-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 8px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.pricing-row.highlight .pricing-row-tag {
    background: rgba(124, 58, 237, 0.2);
    color: var(--brand-lighter);
}

.pricing-row-name {
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 4px;
}

.pricing-row-desc {
    color: var(--text-muted);
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

.pricing-row-price {
    text-align: right;
    flex-shrink: 0;
}

.pricing-row-price-main {
    color: white;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.pricing-row-price-unit {
    color: var(--text-dim);
    font-size: 12px;
    font-weight: 400;
}

.pricing-row-price-addon {
    color: var(--text-dim);
    font-size: 11px;
    margin-top: 4px;
}

.pricing-row.highlight .pricing-row-price-addon {
    color: var(--brand-light);
}

.pricing-vat-note {
    color: var(--text-dim);
    font-size: 11px;
    text-align: center;
    margin: 24px 0 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
    padding: 80px 32px;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05));
}

.final-cta-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    color: white;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: -1px;
}

.final-cta-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 0 28px;
    line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-soft);
    padding: 24px 0;
    flex-shrink: 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 12px;
}

.footer-copy strong {
    color: var(--text-muted);
}

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

.footer-link {
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

/* ============================================================
   AUTH PAGES (Personal / Business / Enterprise)
   - Stil C: Sol form, sag showcase preview
   ============================================================ */

.auth-section {
    position: relative;
    padding: 50px 32px 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
    min-height: calc(100vh - 140px);
}

.auth-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.06), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.auth-grid {
    width: 100%;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 2;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(15, 20, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-mid);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.auth-card-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-soft-bg);
    padding: 5px 12px;
    border-radius: 14px;
    margin-bottom: 14px;
    border: 1px solid var(--brand-soft-border);
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--brand-lighter);
}

.auth-card h1 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: -0.5px;
}

.auth-sub {
    color: var(--text-muted);
    font-size: 12px;
    margin: 0 0 22px;
    line-height: 1.6;
}

.auth-form {
    margin: 0;
}

/* Showcase preview side (sag taraf) */
.auth-showcase {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 8px;
}

.auth-showcase-title {
    color: white;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.auth-showcase-title-gradient {
    background: linear-gradient(135deg, var(--brand-lighter), var(--brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-showcase-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.02));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 14px;
    padding: 22px;
}

.auth-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.auth-showcase-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-showcase-brand img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
}

.auth-showcase-brand-name {
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.auth-showcase-brand-sub {
    color: var(--text-dim);
    font-size: 10px;
    margin: 0;
}

.auth-showcase-status {
    color: var(--success);
    font-size: 10px;
    font-weight: 600;
}

.auth-showcase-code {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    margin-bottom: 10px;
}

.auth-showcase-code-label {
    color: var(--text-dim);
    font-size: 10px;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.auth-showcase-code-number {
    color: white;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 8px;
    margin: 0;
}

.auth-showcase-code-expiry {
    color: var(--danger);
    font-size: 10px;
    margin: 8px 0 0;
}

.auth-showcase-meta {
    background: rgba(124, 58, 237, 0.15);
    border-radius: 6px;
    padding: 9px 11px;
    font-size: 11px;
    color: var(--brand-lighter);
}

.auth-showcase-meta strong {
    color: white;
    font-weight: 600;
}

.auth-showcase-footnote {
    color: var(--text-dim);
    font-size: 12px;
    margin: 0;
    text-align: center;
}

/* Form elements */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: var(--text-bright);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #07090e;
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    padding: 10px 12px;
    color: white;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-helper {
    color: var(--text-dim);
    font-size: 11px;
    margin-top: 6px;
}

/* Plan choice cards (Personal page) */
.plan-choice {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.plan-choice-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid var(--border-mid);
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
}

.plan-choice-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(124, 58, 237, 0.3);
}

.plan-choice-card input[type="radio"] {
    display: none;
}

.plan-choice-card:has(input[type="radio"]:checked) {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--brand);
}

.plan-choice-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.plan-choice-info {
    flex: 1;
    min-width: 0;
}

.plan-choice-title {
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 2px;
}

.plan-choice-desc {
    color: var(--text-dim);
    font-size: 11px;
    margin: 0;
    line-height: 1.4;
}

.plan-choice-price {
    color: white;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.plan-choice-price-unit {
    color: var(--text-dim);
    font-size: 11px;
    font-weight: 400;
}

/* Addon toggle (Business page Firewall) */
.addon-toggle {
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid var(--border-mid);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.addon-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
}

.addon-toggle:has(input[type="checkbox"]:checked) {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--brand);
}

.addon-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--brand);
    flex-shrink: 0;
}

.addon-info {
    flex: 1;
    min-width: 0;
}

.addon-title {
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 2px;
}

.addon-desc {
    color: var(--text-dim);
    font-size: 11px;
    margin: 0;
    line-height: 1.4;
}

.addon-price {
    color: var(--brand-light);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Order summary (Business page) */
.order-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-mid);
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 20px;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 12px;
}

.order-summary-row:last-child {
    border-top: 1px solid var(--border-mid);
    padding-top: 10px;
    margin-top: 4px;
    color: white;
    font-weight: 600;
}

.order-summary-row .value {
    color: white;
}

.order-summary-row:last-child .value {
    color: white;
    font-weight: 700;
}

/* Toast (success / error) */
.toast {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.toast-success {
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.toast-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.toast-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.toast-success .toast-icon {
    background: rgba(74, 222, 128, 0.2);
    color: var(--success);
}

.toast-error .toast-icon {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.toast-title {
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.toast-text {
    color: var(--text-bright);
    font-size: 12px;
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .hero {
        padding: 70px 20px 50px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item + .stat-item {
        border-left: none;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--border-mid);
    }

    .preview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .preview-title {
        font-size: 28px;
    }

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

    .auth-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .auth-showcase {
        order: -1;
    }

    .auth-showcase-title {
        font-size: 22px;
    }

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pricing-row-price {
        text-align: left;
    }

    .section-title {
        font-size: 28px;
    }

    .final-cta-content h2 {
        font-size: 28px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-brand-tag {
        display: none;
    }

    .nav-links {
        gap: 12px;
    }
}
