/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #0a1628;
    --navy-light: #111d35;
    --navy-mid: #162544;
    --white: #ffffff;
    --offwhite: #f5f6fa;
    --gold: #c8a24e;
    --gold-light: #dbbe6a;
    --gold-glow: rgba(200, 162, 78, 0.25);
    --slate: #7b8ba3;
    --text: #c8d0de;
    --text-dark: #1a2236;
    --border-glass: rgba(255,255,255,0.08);
    --glass-bg: rgba(255,255,255,0.04);
    --glass-bg-light: rgba(255,255,255,0.06);
    --shadow: 0 8px 32px rgba(0,0,0,0.2);
    --radius: 16px;
    --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== GLASSMORPHISM UTILITIES ===== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
}

.glass-strong {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    padding: 8px 0;
}

.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 12px 24px;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 100px;
    transition: all 0.4s ease;
}

.nav.scrolled .nav-inner {
    background: rgba(10, 22, 40, 0.85);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

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

.nav-logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--gold), #a8862e);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px; color: var(--navy);
    font-family: 'Playfair Display', serif;
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 17px;
}

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

.nav-links a {
    color: rgba(255,255,255,0.65); text-decoration: none;
    font-size: 13px; font-weight: 500; padding: 8px 16px;
    border-radius: 100px; transition: all 0.3s;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

/* Active nav link */
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-cta-btn {
    background: linear-gradient(135deg, var(--gold), #b8922e) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    transition: all 0.3s !important;
    box-shadow: 0 0 20px var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.nav-cta-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 0 30px rgba(200,162,78,0.4) !important;
}

.nav-toggle {
    display: none; background: none; border: none;
    color: var(--white); cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute; inset: 0; z-index: 0;
}

.hero-video-wrap video,
.hero-video-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.65) 50%, var(--navy) 100%),
        linear-gradient(90deg, rgba(10,22,40,0.7) 0%, transparent 60%);
}

.hero-content {
    position: relative; z-index: 2;
    padding: 140px 0 100px;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 10px;
    border-radius: 100px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold);
    background: rgba(200,162,78,0.08);
    border: 1px solid rgba(200,162,78,0.15);
    margin-bottom: 28px;
}

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

@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 var(--gold-glow); }
    50% { box-shadow: 0 0 0 8px transparent; }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 800; color: var(--white);
    line-height: 1.1; margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255,255,255,0.6);
    line-height: 1.8; margin-bottom: 40px;
    max-width: 520px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 30px; border-radius: 12px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer; border: none; position: relative; overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b8922e);
    color: var(--navy);
    box-shadow: 0 4px 24px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(200,162,78,0.45);
}

.btn-gold:active { transform: translateY(0) scale(0.98); }

.btn-glass {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* Hero stats */
.hero-stats {
    display: flex; gap: 12px; flex-wrap: wrap;
}

.hero-stat {
    padding: 16px 24px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s;
}

.hero-stat:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(200,162,78,0.2);
    transform: translateY(-2px);
}

.hero-stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 700; color: var(--gold);
    line-height: 1.2;
}

.hero-stat-lab {
    font-size: 11px; color: rgba(255,255,255,0.4);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ===== SECTION SHARED ===== */
section { padding: 120px 0; position: relative; }

.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
}

.section-label::before {
    content: ''; width: 20px; height: 1px; background: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700; color: var(--white);
    line-height: 1.15; margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 16px; color: var(--slate);
    max-width: 520px; line-height: 1.8;
}

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 48px 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.trust-items {
    display: flex; justify-content: center; align-items: center;
    gap: 48px; flex-wrap: wrap;
}

.trust-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.trust-icon {
    font-size: 20px; opacity: 0.6;
}

/* ===== USP SECTION ===== */
.usp-section { background: var(--navy); }

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

.usp-card {
    position: relative; overflow: hidden;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.usp-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200,162,78,0.06), transparent 60%);
    opacity: 0; transition: opacity 0.4s;
}

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

.usp-card:hover {
    border-color: rgba(200,162,78,0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.usp-card-img {
    width: 100%; height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.usp-card:hover .usp-card-img { opacity: 1; }

.usp-icon-badge {
    position: absolute; top: 16px; right: 16px;
    width: 40px; height: 40px;
    background: rgba(10,22,40,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; z-index: 2;
}

.usp-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px; font-weight: 700;
    color: var(--white); margin-bottom: 8px;
}

.usp-card p { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ===== IMAGE BREAK ===== */
.img-break {
    position: relative; overflow: hidden;
    max-width: 1000px; margin: 0 auto;
    height: 360px;
    border-radius: var(--radius-lg);
    padding: 0 24px;
}

.img-break img {
    object-position: center 40%;
}

.img-break > img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.img-break-overlay {
    position: absolute; inset: 0; margin: 0 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, transparent 30%, transparent 70%, rgba(10,22,40,0.3) 100%);
}

/* ===== PRICING ===== */
.pricing-section { background: var(--navy-light); }

.pricing-tabs {
    display: flex; gap: 4px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px; padding: 4px;
    max-width: 360px; margin: 0 auto 48px;
    border: 1px solid rgba(255,255,255,0.05);
}

.pricing-tab-btn {
    flex: 1; padding: 12px 20px;
    border: none; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    cursor: pointer; color: var(--slate);
    background: transparent;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.pricing-tab-btn.active {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-table-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: var(--glass-bg);
}

.pricing-table { width: 100%; border-collapse: collapse; }

.pricing-table thead th {
    background: rgba(200,162,78,0.08);
    color: var(--gold);
    padding: 16px 24px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-align: left;
    border-bottom: 1px solid rgba(200,162,78,0.1);
}

.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
}

.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.pricing-table td { padding: 20px 24px; font-size: 14px; }
.pricing-table td:first-child { font-weight: 600; color: var(--white); }

.price-val {
    font-weight: 800; font-size: 18px; color: var(--gold);
}
.price-from { font-size: 11px; font-weight: 400; color: var(--slate); margin-right: 4px; }

/* Addons */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.addon-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 24px; border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    transition: all 0.3s;
}

.addon-card:hover {
    border-color: rgba(200,162,78,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.addon-price-tag {
    flex-shrink: 0; padding: 6px 14px;
    background: rgba(200,162,78,0.1);
    border: 1px solid rgba(200,162,78,0.2);
    border-radius: 8px;
    font-weight: 700; font-size: 15px; color: var(--gold);
    white-space: nowrap;
}

.addon-name { font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 4px; }
.addon-desc { font-size: 13px; color: var(--slate); line-height: 1.6; }

.pricing-note {
    text-align: center; margin-top: 32px;
    font-size: 12px; color: var(--slate);
}

/* ===== FOUNDER SPECIAL ===== */
.founder-section {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(200,162,78,0.08), rgba(200,162,78,0.02));
    border-top: 1px solid rgba(200,162,78,0.1);
    border-bottom: 1px solid rgba(200,162,78,0.1);
}

.founder-glow {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,162,78,0.1), transparent 70%);
    pointer-events: none;
}

.founder-inner {
    position: relative; z-index: 2;
    text-align: center; max-width: 620px; margin: 0 auto;
}

.founder-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 16px; border-radius: 100px;
    font-size: 12px; font-weight: 700; color: var(--gold);
    background: rgba(200,162,78,0.1);
    border: 1px solid rgba(200,162,78,0.2);
    margin-bottom: 28px;
    letter-spacing: 0.06em; text-transform: uppercase;
}

.founder-inner h2 { color: var(--white); margin-bottom: 20px; }
.founder-inner h2 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.founder-desc { font-size: 17px; color: var(--slate); line-height: 1.8; margin-bottom: 36px; }

.founder-checks {
    display: flex; justify-content: center; gap: 32px;
    margin-bottom: 36px; flex-wrap: wrap;
}

.founder-check {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: rgba(255,255,255,0.7);
}

.founder-check-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(200,162,78,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--gold);
}

/* ===== SYNC SECTION ===== */
.sync-section { background: var(--navy); }

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

.sync-img-wrap {
    position: relative;
}

.sync-img {
    width: 100%; border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sync-float-card {
    position: absolute; bottom: -20px; right: -20px;
    padding: 16px 24px;
    background: rgba(10,22,40,0.8);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.sync-float-status {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--white);
}

.sync-float-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px rgba(52,211,153,0.4);
    animation: pulse 2s ease infinite;
}

.sync-float-sub {
    font-size: 11px; color: var(--slate); margin-top: 4px;
}

.sync-content h2 { margin-bottom: 20px; }

.sync-content > p {
    font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 32px;
}

.sync-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.sync-features li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: rgba(255,255,255,0.7);
}

.sync-feat-icon {
    flex-shrink: 0; width: 28px; height: 28px;
    background: rgba(200,162,78,0.08);
    border: 1px solid rgba(200,162,78,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--gold); margin-top: 1px;
}

.sync-platforms {
    display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap;
}

.sync-platform {
    padding: 8px 16px; border-radius: 8px;
    font-size: 12px; font-weight: 600; color: var(--white);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s;
}

.sync-platform:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(200,162,78,0.2);
}

/* ===== CONTACT ===== */
.contact-section { background: var(--navy-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px; align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 40px; }

.contact-item {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(200,162,78,0.06);
    border: 1px solid rgba(200,162,78,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.contact-item-label { font-size: 11px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--white); }

.contact-form-card {
    padding: 40px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em; text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    font-size: 14px; font-family: 'Inter', sans-serif;
    color: var(--white);
    transition: all 0.3s;
    outline: none;
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(200,162,78,0.4);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(200,162,78,0.08);
}

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

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 18px; font-size: 15px; }

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

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-brand p { font-size: 13px; color: var(--slate); margin-top: 16px; max-width: 300px; line-height: 1.7; }

.footer h4 {
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

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

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

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px; font-size: 12px; color: rgba(255,255,255,0.25);
}

.footer-bottom a { color: var(--gold); text-decoration: none; }

.footer-social {
    display: flex; gap: 12px; margin-top: 20px;
}
.footer-social a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--slate);
    transition: all 0.3s;
}
.footer-social a:hover {
    color: var(--gold);
    border-color: rgba(200,162,78,0.2);
    background: rgba(200,162,78,0.06);
}

/* ===== SMOOTH SCROLL INDICATOR ===== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 1001; width: 0%;
    transition: width 0.1s linear;
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    padding: 12px 16px;
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(200,162,78,0.15);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ===== PREMIUM ANIMATIONS ===== */

/* Button shimmer effect on hover */
.btn-gold::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}
.btn-gold:hover::after {
    animation: shimmer 0.6s ease forwards;
}
@keyframes shimmer {
    to { left: 120%; }
}

/* Smooth counter animation for hero stats */
.hero-stat {
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-stat:hover {
    transform: translateY(-4px);
}

/* Card tilt on hover (subtle 3D) */
.service-card {
    transform-style: preserve-3d;
    perspective: 800px;
}

/* Gold line accent animation */
@keyframes lineGrow {
    from { width: 0; }
    to { width: 20px; }
}
.reveal.visible .section-label::before {
    animation: lineGrow 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

/* Smooth underline on nav links */
.nav-links a::after {
    content: ''; display: block; width: 0; height: 1.5px;
    background: var(--gold); margin-top: 2px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta-btn::after { display: none; }

/* Pricing row hover slide */
.pricing-table tbody tr {
    transition: background 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-table tbody tr:hover {
    background: rgba(200,162,78,0.04);
    transform: translateX(4px);
}

/* Addon card border glow */
.addon-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.addon-card:hover {
    border-color: rgba(200,162,78,0.3);
    box-shadow: 0 0 20px rgba(200,162,78,0.06), 0 8px 24px rgba(0,0,0,0.15);
}

/* FAQ accordion smooth rotate */
.faq-q svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Footer social icon pulse */
.footer-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200,162,78,0.15);
}

/* Image parallax on scroll */
.img-break img {
    transition: transform 8s linear;
}
.img-break:hover img {
    transform: scale(1.03);
}

/* Sync floating card bounce */
@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.sync-float-card {
    animation: floatBounce 4s ease-in-out infinite;
}

/* Glass card border shimmer */
@keyframes borderShimmer {
    0% { border-color: rgba(255,255,255,0.08); }
    50% { border-color: rgba(200,162,78,0.15); }
    100% { border-color: rgba(255,255,255,0.08); }
}
.glass:hover {
    animation: borderShimmer 2s ease infinite;
}

/* Smooth page transitions */
body {
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Trust bar icons subtle bounce on scroll reveal */
.trust-item svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.trust-item:hover svg {
    transform: scale(1.15);
}

/* Platform badges hover */
.sync-platform {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sync-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
    padding: 140px 0 80px;
    background: var(--navy-light);
    position: relative;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700; color: var(--white);
    line-height: 1.2; margin-bottom: 12px;
}
.page-hero p {
    font-size: 16px; color: var(--slate);
    max-width: 560px; line-height: 1.8;
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    background: var(--glass-bg);
}
.faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px;
    cursor: pointer; color: var(--white);
    font-weight: 600; font-size: 15px;
    background: none; border: none; width: 100%;
    text-align: left; font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q svg { transition: transform 0.3s; flex-shrink: 0; color: var(--gold); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    font-size: 14px; color: var(--slate); line-height: 1.7;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ===== SERVICE LINK CARDS (homepage) ===== */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.service-card {
    position: relative; overflow: hidden;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    padding: 32px 28px;
    text-decoration: none; color: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200,162,78,0.06), transparent 60%);
    opacity: 0; transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
    border-color: rgba(200,162,78,0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.service-card-icon {
    width: 48px; height: 48px;
    background: rgba(200,162,78,0.08);
    border: 1px solid rgba(200,162,78,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); margin-bottom: 20px;
}
.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px; font-weight: 700;
    color: var(--white); margin-bottom: 8px;
}
.service-card p { font-size: 14px; color: var(--slate); line-height: 1.7; margin-bottom: 16px; }
.service-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--gold);
}
.service-card-link svg { transition: transform 0.3s; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ===== CLICK TO CALL ===== */
.click-to-call {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--white); text-decoration: none;
    font-weight: 600;
}

/* ===== TRUST SIGNALS (contact page) ===== */
.trust-signals {
    display: flex; flex-direction: column; gap: 16px;
    margin-top: 32px;
}
.trust-signal {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: rgba(255,255,255,0.7);
}
.trust-signal-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    background: rgba(200,162,78,0.08);
    border: 1px solid rgba(200,162,78,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}

/* ===== FOTO-PROTOKOLL SECTION ===== */
.foto-section { background: var(--navy-light); }
.foto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.foto-content h2 { margin-bottom: 20px; }
.foto-content > p {
    font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 32px;
}
.foto-img {
    width: 100%; border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ===== CTA SECTION (inline) ===== */
.cta-inline {
    text-align: center;
    padding: 48px 0 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: calc(100% + 12px); left: 16px; right: 16px;
        background: rgba(10,22,40,0.97);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        padding: 12px;
        gap: 4px;
        box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    }
    .nav-links.open li {
        list-style: none;
    }
    .nav-links.open a {
        display: block;
        padding: 16px 20px;
        border-radius: 12px;
        font-size: 15px;
    }
    .nav-links.open a:hover,
    .nav-links.open a.active {
        background: rgba(255,255,255,0.06);
    }
    .nav-links.open .nav-cta-btn {
        margin-top: 8px;
        text-align: center;
        justify-content: center;
        display: flex;
    }
    .nav-toggle { display: block; }
    .usp-grid { grid-template-columns: 1fr; }
    .sync-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .foto-grid { grid-template-columns: 1fr; gap: 48px; }
    .sticky-cta { display: block; }
    body { padding-bottom: 72px; }
}

@media (max-width: 600px) {
    section { padding: 60px 0; }
    .hero { min-height: auto; }
    .hero-content { padding: 110px 0 48px; }
    .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero-stat { padding: 12px 8px; min-width: 0; }
    .hero-stat-val { font-size: 18px; }
    .hero-stat-lab { font-size: 9px; letter-spacing: 0.04em; word-break: break-word; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .contact-form-card { padding: 24px; }
    .founder-checks { flex-direction: column; align-items: center; }
    .img-break { height: 250px; }
    .trust-bar { display: none; }
    .trust-items { gap: 16px; flex-direction: column; align-items: flex-start; padding: 0 8px; }
    .trust-item { font-size: 13px; gap: 10px; }
    .service-cards { grid-template-columns: 1fr; }

    /* Pricing: table -> cards on mobile */
    .pricing-table-wrap { border: none; background: none; border-radius: 0; }
    .pricing-table,
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table th,
    .pricing-table td { display: block; width: 100%; }
    .pricing-table thead { display: none; }
    .pricing-table tbody tr {
        background: var(--glass-bg);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius);
        padding: 20px;
        margin-bottom: 12px;
        display: flex; flex-direction: column; gap: 8px;
    }
    .pricing-table td { padding: 0; font-size: 14px; }
    .pricing-table td:first-child {
        font-size: 16px; font-weight: 700; color: var(--white);
    }
    .pricing-table td:nth-child(2) { font-size: 12px; color: var(--slate); }
    .pricing-table td:nth-child(3) { margin-top: 4px; }
    .pricing-table td:last-child {
        font-size: 13px; color: var(--slate);
        padding-top: 8px; margin-top: 4px;
        border-top: 1px solid rgba(255,255,255,0.04);
    }
}
