/* ═══════════════════════════════════════════════════════
   VHF MASTER LANDING PAGE
   Design System V3 — Navy + Gold
   Captain Mohamed | Master Mariner
   ═══════════════════════════════════════════════════════ */

:root {
    /* Colors - V3 Locked Palette */
    --navy-900: #0a1628;
    --navy-800: #0f1e35;
    --navy-700: #15294a;
    --navy-600: #1c3560;
    --navy-500: #234277;
    
    --gold-500: #d4a857;
    --gold-400: #ddb670;
    --gold-300: #e5c489;
    --gold-600: #b8923f;
    --gold-700: #8c6e2f;
    
    --white: #ffffff;
    --gray-100: #f5f5f7;
    --gray-200: #e0e0e5;
    --gray-300: #c5c5cd;
    --gray-400: #8e8e9a;
    --gray-500: #5e5e6a;
    
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', 'Cairo', serif;
    --font-body: 'Cairo', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--navy-900);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
    position: relative;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ═══════════════════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════════════════ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   BACKGROUND DECORATIONS
   ═══════════════════════════════════════════════════════ */

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 168, 87, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 87, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.bg-radar {
    position: fixed;
    top: 50%;
    left: -300px;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 30%, rgba(212, 168, 87, 0.02) 70%, transparent 100%);
    pointer-events: none;
    z-index: 0;
    animation: radarRotate 60s linear infinite;
}

@keyframes radarRotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.bg-noise {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3CfeColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.66 0 0 0 0 0.34 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 87, 0.15);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
}

.logo-mark {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-500);
    letter-spacing: 0.05em;
}

.logo-text {
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    font-style: italic;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--gold-400);
    padding: 8px 16px;
    border: 1px solid rgba(212, 168, 87, 0.3);
    border-radius: 100px;
    background: rgba(212, 168, 87, 0.05);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--whatsapp);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */

.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 87, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(212, 168, 87, 0.1);
    border: 1px solid rgba(212, 168, 87, 0.3);
    border-radius: 100px;
    font-size: 14px;
    color: var(--gold-400);
    font-weight: 600;
    margin-bottom: 28px;
}

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

@keyframes pulse-gold {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    margin-bottom: 28px;
    line-height: 1.1;
}

.hero-title-ar {
    display: block;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-title-en {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 500;
    color: var(--gold-500);
    letter-spacing: -0.01em;
    line-height: 1;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray-200);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--gold-400);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 87, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-300);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 168, 87, 0.3);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-200);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    color: var(--navy-900);
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(212, 168, 87, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 168, 87, 0.45);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 87, 0.4);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(212, 168, 87, 0.1);
    border-color: var(--gold-500);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    border-radius: 14px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    margin-bottom: 16px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

/* ═══════════════════════════════════════════════════════
   HERO VISUAL - DEVICE FRAME
   ═══════════════════════════════════════════════════════ */

.hero-visual {
    position: relative;
}

.device-frame {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    border: 2px solid rgba(212, 168, 87, 0.3);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 168, 87, 0.2);
}

.device-frame::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(135deg, var(--gold-500), transparent, var(--gold-500));
    border-radius: 32px;
    z-index: -1;
    opacity: 0.5;
}

.device-screen {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screen-radar {
    width: 240px;
    height: 240px;
    position: relative;
    margin-bottom: 24px;
}

.radar-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(212, 168, 87, 0.3);
    border-radius: 50%;
}

.radar-circle.r1 { width: 100%; height: 100%; }
.radar-circle.r2 { width: 70%; height: 70%; }
.radar-circle.r3 { width: 40%; height: 40%; }

.radar-sweep {
    position: absolute;
    top: 50%; left: 50%;
    width: 50%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-500));
    transform-origin: left center;
    animation: sweep 4s linear infinite;
    box-shadow: 0 0 20px var(--gold-500);
}

@keyframes sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold-500);
    animation: blink 2s infinite;
}

.radar-dot.d1 { top: 30%; left: 60%; animation-delay: 0s; }
.radar-dot.d2 { top: 65%; left: 35%; animation-delay: 0.7s; }
.radar-dot.d3 { top: 45%; left: 75%; animation-delay: 1.4s; }

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.screen-info {
    text-align: center;
    font-family: var(--font-mono);
}

.info-channel {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.info-label {
    font-size: 11px;
    color: var(--gray-300);
    letter-spacing: 0.15em;
    margin-top: 4px;
    margin-bottom: 16px;
}

.info-stats {
    display: flex;
    gap: 20px;
    font-size: 11px;
    color: var(--gold-400);
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 168, 87, 0.1);
    border: 1px solid rgba(212, 168, 87, 0.3);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-200);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════════════════ */

.problem {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(15, 30, 53, 0.5) 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.problem-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 87, 0.15);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    background: rgba(212, 168, 87, 0.05);
    border-color: rgba(212, 168, 87, 0.4);
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.problem-card p {
    color: var(--gray-300);
    font-size: 15px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════ */

.features {
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    background: linear-gradient(135deg, rgba(212, 168, 87, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 168, 87, 0.15);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 168, 87, 0.15) 0%, transparent 70%);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 87, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    width: 200px;
    height: 200px;
}

.feature-number {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--gold-500);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-300);
    line-height: 1.7;
    font-size: 15px;
}

/* ═══════════════════════════════════════════════════════
   INSIDE SECTION
   ═══════════════════════════════════════════════════════ */

.inside {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(15, 30, 53, 0.5) 100%);
}

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

.inside-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 87, 0.15);
    border-radius: 14px;
    transition: var(--transition);
    align-items: center;
}

.inside-card:hover {
    background: rgba(212, 168, 87, 0.08);
    border-color: var(--gold-500);
    transform: translateX(-4px);
}

.inside-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
    flex-shrink: 0;
}

.inside-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 600;
}

.inside-content p {
    color: var(--gray-300);
    font-size: 14px;
    margin-bottom: 8px;
}

.inside-count {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(212, 168, 87, 0.15);
    color: var(--gold-400);
    font-family: var(--font-mono);
    font-size: 11px;
    border-radius: 100px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */

.how {
    padding: var(--section-padding);
}

.how-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.how-step {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    padding: 40px 28px;
    background: linear-gradient(180deg, rgba(212, 168, 87, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 168, 87, 0.25);
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.how-step:hover {
    transform: translateY(-8px);
    border-color: var(--gold-500);
}

.how-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gold-500);
    color: var(--navy-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 16px;
}

.how-step-icon {
    font-size: 56px;
    margin-bottom: 20px;
    margin-top: 12px;
}

.how-step h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.how-step p {
    color: var(--gray-300);
    line-height: 1.7;
    font-size: 15px;
}

.how-arrow {
    color: var(--gold-500);
    font-size: 32px;
    align-self: center;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════ */

.pricing {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(15, 30, 53, 0.7) 100%);
}

.pricing-card {
    max-width: 540px;
    margin: 0 auto;
    padding: 48px 40px;
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
    border: 2px solid var(--gold-500);
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow:
        0 30px 80px rgba(212, 168, 87, 0.2),
        inset 0 1px 0 rgba(212, 168, 87, 0.3);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--gold-500), transparent 30%, transparent 70%, var(--gold-500));
    border-radius: 24px;
    z-index: -1;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-weight: 800;
    font-size: 13px;
    border-radius: 100px;
    box-shadow: 0 8px 20px rgba(212, 168, 87, 0.4);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}

.pricing-header p {
    color: var(--gray-300);
    margin-bottom: 32px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.price-old {
    font-size: 28px;
    color: var(--gray-400);
    text-decoration: line-through;
    text-decoration-color: var(--gold-500);
    text-decoration-thickness: 2px;
}

.price-new {
    font-family: var(--font-display);
    font-size: 88px;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.price-currency {
    font-family: var(--font-mono);
    font-size: 20px;
    color: var(--gold-400);
    font-weight: 600;
}

.pricing-save {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp);
    font-weight: 700;
    font-size: 14px;
    border-radius: 100px;
    margin-bottom: 32px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.pricing-features {
    text-align: right;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--gray-100);
    font-size: 15px;
    border-bottom: 1px solid rgba(212, 168, 87, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-trust {
    color: var(--gray-300);
    font-size: 13px;
}

/* ═══════════════════════════════════════════════════════
   ABOUT CAPTAIN
   ═══════════════════════════════════════════════════════ */

.about {
    padding: var(--section-padding);
}

.about-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(212, 168, 87, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 168, 87, 0.2);
    border-radius: 24px;
}

.about-avatar {
    position: relative;
}

.avatar-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-700) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(212, 168, 87, 0.3);
    box-shadow: 0 20px 60px rgba(212, 168, 87, 0.3);
}

.avatar-initial {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1;
}

.avatar-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: var(--navy-800);
    border: 3px solid var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--white);
    margin: 12px 0 4px;
    font-weight: 700;
}

.about-title {
    color: var(--gold-500);
    font-weight: 700;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.05em;
}

.about-bio {
    color: var(--gray-200);
    margin-bottom: 16px;
    line-height: 1.9;
    font-size: 16px;
}

.about-creds {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cred {
    display: flex;
    flex-direction: column;
}

.cred strong {
    color: var(--gold-500);
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 700;
}

.cred span {
    color: var(--gray-300);
    font-size: 13px;
    font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */

.faq {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(15, 30, 53, 0.5) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 87, 0.15);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 168, 87, 0.4);
}

.faq-item[open] {
    background: rgba(212, 168, 87, 0.05);
    border-color: var(--gold-500);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
    font-size: 16px;
    list-style: none;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 168, 87, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    flex-shrink: 0;
    margin-right: 16px;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--gold-500);
    color: var(--navy-900);
}

.faq-item p {
    padding: 0 24px 24px;
    color: var(--gray-200);
    line-height: 1.8;
    font-size: 15px;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */

.final-cta {
    padding: var(--section-padding);
}

.cta-card {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
    border: 2px solid var(--gold-500);
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 168, 87, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 168, 87, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cta-card p {
    font-size: 18px;
    color: var(--gray-200);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-card .btn-primary {
    position: relative;
    z-index: 2;
}

.cta-note {
    margin-top: 24px !important;
    font-size: 14px !important;
    color: var(--gold-400) !important;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.footer {
    padding: 60px 0 30px;
    background: var(--navy-900);
    border-top: 1px solid rgba(212, 168, 87, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(212, 168, 87, 0.1);
}

.footer-brand p {
    color: var(--gray-300);
    margin-top: 12px;
    font-size: 14px;
}

.footer-contact h4,
.footer-info h4 {
    color: var(--gold-500);
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
}

.footer-link {
    display: block;
    color: var(--gray-200);
    margin-bottom: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--gold-400);
}

.footer-info p {
    color: var(--gray-300);
    font-size: 13px;
    margin-bottom: 4px;
}

.footer-bottom {
    text-align: center;
    color: var(--gray-400);
    font-size: 13px;
}

/* ═══════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════════════ */

.float-whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
    animation: bounce 2s ease-in-out infinite;
}

.float-whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 968px) {
    .hero-grid,
    .about-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-card {
        padding: 40px 24px;
        text-align: center;
    }
    
    .about-avatar {
        margin: 0 auto;
    }
    
    .about-creds {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .how-arrow {
        transform: rotate(-90deg);
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-divider {
        height: 30px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .nav-container {
        padding: 14px 20px;
    }
    
    .nav-status {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .logo-mark {
        font-size: 20px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta a {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        padding: 18px;
        flex-direction: column;
        gap: 18px;
    }
    
    .stat-divider {
        width: 60%;
        height: 1px;
    }
    
    .pricing-card {
        padding: 40px 24px;
    }
    
    .price-new {
        font-size: 64px;
    }
    
    .cta-card {
        padding: 50px 24px;
    }
    
    .about-card {
        padding: 32px 20px;
    }
    
    .avatar-circle {
        width: 150px;
        height: 150px;
    }
    
    .avatar-initial {
        font-size: 56px;
    }
    
    .about-content h2 {
        font-size: 36px;
    }
    
    .float-whatsapp {
        width: 54px;
        height: 54px;
        bottom: 18px;
        left: 18px;
    }
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS - SCROLL REVEAL
   ═══════════════════════════════════════════════════════ */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}
