/* =========================================================
   jobffc.com - VIP Mail Forwarding Portal Stylesheet
   Modern, Clean, High-Contrast Obsidian & Tech Cyan Theme
   ========================================================= */

:root {
    --bg-main: #0B0F19;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.75);
    --bg-card-hover: rgba(30, 41, 59, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(56, 189, 248, 0.35);

    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --accent-cyan: #06B6D4;
    --accent-glow: rgba(6, 182, 212, 0.15);

    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dim: #64748B;

    --color-emerald: #10B981;
    --color-amber: #F59E0B;
    --color-purple: #8B5CF6;
    --color-rose: #F43F5E;

    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.25);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.text-center { text-align: center; }
.text-cyan { color: var(--accent-cyan); }
.text-blue { color: #60A5FA; }
.text-emerald { color: var(--color-emerald); }
.w-100 { width: 100%; }

.text-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #38BDF8 50%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Top Announcement Banner */
.top-banner {
    background: linear-gradient(90deg, #1E1B4B 0%, #0F172A 50%, #172554 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 0.55rem 0;
    font-size: 0.85rem;
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.badge-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--color-emerald);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.banner-link {
    color: #38BDF8;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

.banner-link:hover {
    color: #fff;
    transform: translateX(2px);
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(11, 15, 25, 0.85);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.logo-text {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.logo-dot {
    color: var(--accent-cyan);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.35rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #2563EB 0%, #0284C7 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #0369A1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.8);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(51, 65, 85, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    width: 450px;
    height: 450px;
    background: rgba(37, 99, 235, 0.18);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(6, 182, 212, 0.12);
    top: 30%;
    left: 70%;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    color: #93C5FD;
    margin-bottom: 1.75rem;
}

.hero-title {
    font-size: 3.25rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 1.4rem;
}

.hero-subtitle {
    font-size: 1.18rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 2.25rem;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.stats-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(17, 24, 39, 0.65);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-soft);
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-top: 0.2rem;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-color);
}

/* Sections Common */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.sub-heading {
    display: inline-block;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: 0.9rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Simulator Card */
.simulator-card {
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    max-width: 920px;
    margin: 0 auto;
}

.card-header-bar {
    background: #0D1322;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.card-title-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.status-live {
    font-size: 0.75rem;
    color: var(--color-emerald);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.simulator-body {
    padding: 2.25rem;
}

.routing-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 2rem;
}

.routing-node {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.node-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #E2E8F0;
}

.input-addon-group {
    display: flex;
    align-items: center;
    background: #0B0F19;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.input-addon-group:focus-within {
    border-color: #38BDF8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.custom-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.65rem 0.85rem;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 500;
}

.input-suffix {
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 0.9rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.helper-text {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

.routing-arrow-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.flow-line {
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #06B6D4);
    position: relative;
    border-radius: var(--radius-full);
}

.pulse-packet {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    top: -3.5px;
    left: 0;
    box-shadow: 0 0 10px #38BDF8;
    animation: flowPacket 2s infinite ease-in-out;
}

@keyframes flowPacket {
    0% { left: 0%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 90%; opacity: 0; }
}

.shield-tag {
    font-size: 0.7rem;
    background: rgba(16, 185, 129, 0.12);
    color: var(--color-emerald);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    white-space: nowrap;
}

.sim-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sim-log-box {
    background: #080C14;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.84rem;
    max-height: 140px;
    overflow-y: auto;
}

.log-row {
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.log-row.info { color: #94A3B8; }
.log-row.success { color: #34D399; }
.log-row.warn { color: #FBBF24; }

.log-time {
    color: #64748B;
    margin-right: 0.4rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.highlighted-card {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: var(--shadow-glow);
}

.badge-corner {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

.feature-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.feature-icon-box.cyan { background: rgba(6, 182, 212, 0.12); color: var(--accent-cyan); }
.feature-icon-box.blue { background: rgba(37, 99, 235, 0.12); color: #60A5FA; }
.feature-icon-box.emerald { background: rgba(16, 185, 129, 0.12); color: var(--color-emerald); }
.feature-icon-box.purple { background: rgba(139, 92, 246, 0.12); color: var(--color-purple); }
.feature-icon-box.amber { background: rgba(245, 158, 11, 0.12); color: var(--color-amber); }
.feature-icon-box.rose { background: rgba(244, 63, 94, 0.12); color: var(--color-rose); }

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.feature-list li {
    font-size: 0.85rem;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--color-emerald);
    font-size: 0.75rem;
}

/* How It Works Steps */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.step-card {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.3);
}

.step-number {
    font-size: 2.75rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    color: #38BDF8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.step-card code {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    color: #38BDF8;
    font-size: 0.85rem;
}

.step-connector {
    color: var(--text-dim);
    font-size: 1.3rem;
}

/* Mock Dashboard Preview */
.mock-dashboard {
    background: #0F172A;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 240px 1fr;
    overflow: hidden;
}

.dash-sidebar {
    background: #0B0F19;
    border-right: 1px solid var(--border-color);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.dash-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.25rem;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.user-name {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
}

.user-plan-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-emerald);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: var(--radius-full);
}

.dash-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.dash-nav li {
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: var(--transition);
}

.dash-nav li.active, .dash-nav li:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
}

.dash-sidebar-footer {
    padding-top: 1rem;
}

.dash-main {
    padding: 1.75rem;
}

.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dash-heading {
    font-size: 1.35rem;
    font-weight: 700;
}

.dash-sub {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.dash-sub code {
    color: var(--accent-cyan);
}

.dash-stats-row {
    display: flex;
    gap: 1rem;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.9rem;
    text-align: right;
}

.m-val {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #38BDF8;
}

.m-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.alias-table-container {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: rgba(11, 15, 25, 0.4);
}

.alias-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.88rem;
}

.alias-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.85rem 1rem;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.alias-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.alias-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dest-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 0.82rem;
    color: #CBD5E1;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

.status-pill.active {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-emerald);
}

.status-pill.inactive {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #334155;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(16px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.3);
}

.pricing-card.highlighted {
    border-color: #2563EB;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.25) 0%, rgba(17, 24, 39, 0.9) 100%);
    box-shadow: 0 10px 35px rgba(37, 99, 235, 0.25);
}

.popular-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 1.75rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}

.amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex: 1;
}

.plan-features li {
    font-size: 0.9rem;
    color: #E2E8F0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.plan-features li i {
    color: var(--color-emerald);
    font-size: 0.8rem;
}

.plan-features li.disabled {
    color: var(--text-dim);
}

.plan-features li.disabled i {
    color: var(--text-dim);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(56, 189, 248, 0.3);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #38BDF8;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 3rem 0 5rem;
}

.cta-card {
    background: linear-gradient(135deg, #1E1B4B 0%, #0F172A 50%, #1E3A8A 100%);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    color: #CBD5E1;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #080C14;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 0.85rem;
    margin-bottom: 1.25rem;
    max-width: 320px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--color-emerald);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--color-emerald);
    border-radius: 50%;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.15rem;
    color: var(--text-main);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #38BDF8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: #38BDF8;
}

/* ================= AUTH MODAL ================= */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.auth-modal {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 460px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.modal-backdrop.active .auth-modal {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(11, 15, 25, 0.8);
    padding: 4px;
    border-radius: var(--radius-md);
    margin-bottom: 1.75rem;
    border: 1px solid var(--border-color);
}

.auth-tab {
    background: transparent;
    border: none;
    padding: 0.6rem 0;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: inherit;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.auth-tab.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.auth-heading-group {
    margin-bottom: 1.5rem;
}

.auth-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.auth-subtitle {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.auth-form-pane.hidden {
    display: none;
}

.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 0.45rem;
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.forgot-link {
    font-size: 0.78rem;
    color: #38BDF8;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.form-input {
    width: 100%;
    background: #0B0F19;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.7rem 0.85rem;
    color: #fff;
    font-size: 0.92rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: #38BDF8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.eye-toggle {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    padding: 4px;
}

.eye-toggle:hover {
    color: var(--text-muted);
}

.alias-availability {
    font-size: 0.75rem;
    color: var(--color-emerald);
    font-weight: 600;
    margin-top: 0.35rem;
}

.form-check-row {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.custom-checkbox {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
}

.custom-checkbox a {
    color: #38BDF8;
    text-decoration: none;
}

.btn-auth {
    padding: 0.8rem;
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
}

.auth-footer-text {
    text-align: center;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.auth-footer-text a {
    color: #38BDF8;
    font-weight: 600;
    text-decoration: none;
}

.auth-footer-text a:hover {
    text-decoration: underline;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #1E293B;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    color: #fff;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInToast 0.3s ease forwards;
}

.toast.success { border-left-color: var(--color-emerald); }
.toast.warn { border-left-color: var(--color-amber); }
.toast.danger { border-left-color: var(--color-rose); background: #2A1215; }

@keyframes slideInToast {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    .routing-flow { grid-template-columns: 1fr; gap: 1rem; }
    .routing-arrow-box { transform: rotate(90deg); margin: 1rem 0; }
    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); margin: 0.5rem 0; }
    .mock-dashboard { grid-template-columns: 1fr; }
    .dash-sidebar { border-right: none; border-bottom: 1px solid var(--border-color); }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #0B0F19;
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }
    .nav-menu.show { display: flex; }
    .mobile-toggle { display: block; }
    .hero-title { font-size: 2.1rem; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn { width: 100%; }
    .stats-strip { flex-direction: column; gap: 1.25rem; }
    .stat-divider { display: none; }
    .footer-container { grid-template-columns: 1fr; }
}
