/* RADICAL STRUCTURAL REDESIGN - MODERN SAAS CSS */
:root {
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    
    --color-gold: #d4af37;
    --color-gold-hover: #b8860b;
    --color-brand: #2563eb;
    
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 15px 30px rgba(212, 175, 55, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.03em; }
a { text-decoration: none; color: inherit; }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-container { max-width: 1300px; margin: 0 auto; padding: 20px 30px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; letter-spacing: 1px; color: var(--text-primary); }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a { font-weight: 600; color: var(--text-secondary); font-size: 1rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--color-gold); }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 32px; border-radius: 12px; font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); border: none; text-align: center;
}
.btn-gold { background: var(--gold-gradient); color: #fff; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4); }
.btn-dark { background: var(--text-primary); color: #fff; box-shadow: var(--shadow-md); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); background: #000; }
.btn-outline { background: #fff; border: 2px solid #e2e8f0; color: var(--text-primary); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold); transform: translateY(-3px); }

/* ASYMMETRIC HERO */
.hero-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 120px auto 100px;
    padding: 40px 30px;
    gap: 60px;
    min-height: 80vh;
}
.hero-content {
    flex: 1;
    max-width: 650px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--color-gold);
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}
.hero-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 30px; color: var(--text-primary); }
.hero-title .highlight { position: relative; display: inline-block; z-index: 1; }
.hero-title .highlight::after {
    content: ''; position: absolute; bottom: 8px; left: 0; right: 0; height: 16px;
    background: rgba(212, 175, 55, 0.3); z-index: -1; transform: rotate(-1deg);
}
.hero-desc { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 20px; }

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero-visual::before {
    content: ''; position: absolute; top: 10%; right: 10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}
.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: -30px 40px 80px rgba(0,0,0,0.15);
    border-radius: 20px;
    border: 10px solid #fff;
    background: #fff;
}
.mockup-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.mockup-wrapper img { width: 100%; display: block; border-radius: 12px; }

/* ZIG-ZAG STORY BLOCKS (REPLACES GRID) */
.story-section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.story-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}
.story-block.reverse { flex-direction: row-reverse; }

.story-content { flex: 1; }
.story-icon {
    width: 70px; height: 70px; background: #fff; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--color-gold); box-shadow: var(--shadow-md); margin-bottom: 30px;
}
.story-content h3 { font-size: 2.8rem; margin-bottom: 24px; }
.story-content p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 30px; line-height: 1.7; }
.story-features { list-style: none; }
.story-features li { font-size: 1.1rem; color: var(--text-primary); margin-bottom: 16px; display: flex; align-items: center; gap: 16px; font-weight: 500;}
.story-features li i { color: var(--color-gold); font-size: 1.2rem; }

.story-image {
    flex: 1;
    position: relative;
}
.story-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}
.story-image::after {
    content: ''; position: absolute; inset: -20px;
    border: 2px dashed rgba(212,175,55,0.3);
    border-radius: 32px; z-index: -1;
}

/* IMMERSIVE KOKPIT SECTION (FULL-WIDTH, DARK) */
.kokpit-immersive {
    background: var(--bg-dark);
    color: #fff;
    padding: 140px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.kokpit-immersive::before {
    content: ''; position: absolute; top: -50%; left: -20%;
    width: 140%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.15) 0%, transparent 60%);
    z-index: 0; pointer-events: none;
}
.kokpit-header { position: relative; z-index: 1; max-width: 800px; margin: 0 auto 60px; }
.kokpit-header h2 { font-size: 4rem; margin-bottom: 20px; }
.kokpit-header p { font-size: 1.3rem; color: var(--text-light); }
.kokpit-features-bar {
    display: flex; justify-content: center; gap: 40px; margin-bottom: 80px; position: relative; z-index: 1; flex-wrap: wrap;
}
.kokpit-feature { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; font-weight: 600; }
.kokpit-feature i { color: var(--color-gold); font-size: 1.4rem; }

.kokpit-giant-image {
    position: relative; z-index: 1;
    max-width: 1400px; margin: 0 auto;
    border-radius: 24px;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    transform: translateY(40px);
    transition: transform 1s ease;
}
.kokpit-giant-image.is-visible { transform: translateY(0); }
.kokpit-giant-image img { width: 100%; border-radius: 16px; display: block; }

/* PRICING BENTO BOX */
.pricing-section { padding: 140px 20px; max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing-title { font-size: 3.5rem; margin-bottom: 80px; }
.pricing-bento {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.bento-card {
    background: #fff;
    border-radius: 32px;
    padding: 60px 40px;
    flex: 1;
    max-width: 450px;
    text-align: left;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}
.bento-card.highlight {
    background: var(--dark-gradient);
    color: #fff;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border: none;
    position: relative;
    z-index: 2;
}
.bento-badge {
    display: inline-block; padding: 6px 16px; background: rgba(212,175,55,0.2); color: var(--color-gold);
    border-radius: 20px; font-weight: 700; font-size: 0.85rem; margin-bottom: 20px;
}
.bento-price { font-size: 4rem; font-family: var(--font-heading); font-weight: 800; margin-bottom: 10px; display: flex; align-items: baseline; gap: 8px;}
.bento-price span { font-size: 1.8rem; color: var(--text-secondary); }
.bento-card.highlight .bento-price span { color: var(--text-light); }
.bento-features { list-style: none; margin: 40px 0; }
.bento-features li { margin-bottom: 20px; display: flex; align-items: center; gap: 16px; font-size: 1.1rem; }
.bento-features li i { color: var(--color-gold); font-size: 1.2rem; }

/* MODAL & FOOTER (Kept structurally similar but restyled) */
.modal-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(10px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; animation: fadeIn 0.3s forwards; }
.modal-box { background: #fff; border-radius: 32px; width: 100%; max-width: 500px; padding: 50px; position: relative; transform: translateY(20px); animation: slideUp 0.4s forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 24px; right: 24px; background: #f1f5f9; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: all 0.2s; }
.modal-close:hover { background: #e2e8f0; transform: rotate(90deg); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); }
.form-control { width: 100%; padding: 16px; background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 12px; font-size: 1.05rem; transition: all 0.3s; font-family: inherit; outline: none; }
.form-control:focus { border-color: var(--color-gold); background: #fff; }
select.form-control { appearance: none; background-image: url('data:image/svg+xml;utf8,<svg fill="%23475569" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); background-repeat: no-repeat; background-position: right 16px center; }

.footer { padding: 80px 20px; text-align: center; background: #fff; border-top: 1px solid #e2e8f0; }

.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .hero-split { flex-direction: column; text-align: center; margin-top: 100px; }
    .hero-actions { justify-content: center; }
    .story-block, .story-block.reverse { flex-direction: column; text-align: center; gap: 40px; }
    .story-features li { justify-content: center; }
    .pricing-bento { flex-direction: column; }
    .bento-card.highlight { transform: none; }
}
