/* ============================================
   FINANS AI - Landing Page Styles v2.0
   Modern, Fast, SEO-Optimized with Effects
   ============================================ */

/* CSS Variables */
:root {
    --gold-primary: #D4A255;
    --gold-dark: #B8883D;
    --gold-light: #E5C388;
    --gold-accent: #E5C388;
    --dark-bg: #0F1419;
    --dark-surface: #1A1F2E;
    --dark-card: #232938;
    --dark-text: #F7FAFC;
    --dark-text-secondary: #CBD5E1;
    --dark-border: #334155;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    background: var(--dark-bg);
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; }

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

/* Utility Classes */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent), var(--gold-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glass Effect */
.glass-effect {
    background: rgba(26, 31, 46, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    contain: strict;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float 15s infinite linear;
    will-change: transform, opacity;
    contain: strict;
}

@keyframes particle-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(15, 20, 25, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    transition: transform var(--transition-base);
}
.nav__logo:hover { transform: scale(1.05); }
.nav__logo-icon { width: 32px; height: 32px; }

.nav__list { display: flex; align-items: center; gap: 2rem; }
.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-text-secondary);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width var(--transition-base);
}
.nav__link:hover { color: var(--gold-primary); }
.nav__link:hover::after { width: 100%; }

.nav__toggle, .nav__close { display: none; color: var(--dark-text); padding: 0.5rem; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

.lang-select {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-text);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23CBD5E1' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 1.75rem;
}

.lang-select:hover {
    border-color: var(--gold-primary);
}

.lang-select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 162, 85, 0.2);
}

.lang-select option {
    background: var(--dark-card);
    color: var(--dark-text);
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-surface);
        padding: 4rem 2rem;
        transition: right var(--transition-base);
        z-index: 1001;
    }
    .nav__menu.show { right: 0; }
    .nav__list { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .nav__toggle { display: block; }
    .nav__close { display: block; position: absolute; top: 1rem; right: 1rem; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.shape--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 162, 85, 0.3), transparent 70%);
    top: -200px;
    right: -200px;
    animation: shape-float 20s ease-in-out infinite;
}
.shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: shape-float 15s ease-in-out infinite reverse;
}
.shape--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%);
    top: 50%;
    left: 30%;
    animation: shape-float 18s ease-in-out infinite;
}

@keyframes shape-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 162, 85, 0.15);
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 1px solid rgba(212, 162, 85, 0.3);
    margin-bottom: 1.5rem;
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--dark-text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000 !important;
}

.btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent), var(--gold-primary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity var(--transition-base);
}
.btn--glow:hover::before { opacity: 0.7; }
.btn--glow:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(212, 162, 85, 0.4); }

.btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--dark-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
}

.btn--shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn--shine:hover::after { left: 100%; }

/* Hero Stats */
.hero__stats { display: flex; gap: 3rem; }
.hero__stat { text-align: left; }
.hero__stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
}
.hero__stat-suffix { font-size: 1.5rem; font-weight: 800; color: var(--gold-primary); }
.hero__stat-label { font-size: 0.875rem; color: var(--dark-text-secondary); display: block; }

/* Hero Phone */
.hero__image { position: relative; display: flex; justify-content: center; }

.floating {
    animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero__phone-frame {
    width: 280px;
    height: 580px;
    background: var(--dark-card);
    border-radius: 40px;
    padding: 12px;
    border: 3px solid var(--dark-border);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
}

.hero__phone-screen, .phone-mockup {
    width: 100%;
    height: 100%;
    background: var(--dark-surface);
    border-radius: 32px;
    overflow: hidden;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}
.phone-notch { width: 80px; height: 24px; background: #000; border-radius: 20px; }
.phone-icons { display: flex; gap: 4px; }
.phone-icons span { width: 16px; height: 10px; background: var(--dark-text); border-radius: 2px; }

.phone-content { padding: 1.5rem; }
.phone-greeting { font-size: 1.125rem; font-weight: 600; margin-bottom: 1.5rem; }
.phone-portfolio {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000;
}
.portfolio-label { font-size: 0.875rem; opacity: 0.8; }
.portfolio-value { font-size: 1.5rem; font-weight: 800; margin: 0.25rem 0; }
.portfolio-change.positive { color: #065f46; }

.phone-rates { display: flex; flex-direction: column; gap: 0.5rem; }
.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--dark-card);
    border-radius: 0.75rem;
}
.rate-name { font-weight: 500; font-size: 0.875rem; }
.rate-value { font-weight: 700; }
.rate-change { font-size: 0.75rem; padding: 2px 6px; border-radius: 0.25rem; }
.rate-change.positive { background: rgba(16, 185, 129, 0.2); color: var(--success); }
.rate-change.negative { background: rgba(239, 68, 68, 0.2); color: var(--error); }

.hero__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 162, 85, 0.4), transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero__rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.ring {
    position: absolute;
    border: 1px solid rgba(212, 162, 85, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ring--1 { width: 350px; height: 350px; animation: ring-pulse 4s ease-out infinite; }
.ring--2 { width: 450px; height: 450px; animation: ring-pulse 4s ease-out infinite 1s; }
.ring--3 { width: 550px; height: 550px; animation: ring-pulse 4s ease-out infinite 2s; }
@keyframes ring-pulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-text-secondary);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}
.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--dark-text-secondary);
    border-radius: 12px;
    position: relative;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}
@keyframes scroll-wheel {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 16px; }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 968px) {
    .hero__container { grid-template-columns: 1fr; text-align: center; }
    .hero__description { max-width: none; margin: 0 auto 2rem; }
    .hero__buttons { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__image { order: -1; margin-bottom: 2rem; }
    .hero__phone-frame { width: 240px; height: 480px; }
    .hero__scroll-indicator { display: none; }
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands {
    padding: 2rem 0;
    border-bottom: 1px solid var(--dark-border);
}
.brands__content { text-align: center; }
.brands__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-text-secondary);
    margin-bottom: 1rem;
}
.brands__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.brand-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text-secondary);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}
.brand-item:hover { opacity: 1; color: var(--gold-primary); }

/* ============================================
   SECTION STYLES
   ============================================ */
.section__header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.section__badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(212, 162, 85, 0.15);
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
}
.section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}
.section__description { font-size: 1.125rem; color: var(--dark-text-secondary); }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features { padding: 5rem 0; }
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 162, 85, 0.5);
    box-shadow: 0 20px 60px rgba(212, 162, 85, 0.15);
}

.feature-card__glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(212, 162, 85, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.feature-card:hover .feature-card__glow { opacity: 1; }

.feature-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    color: var(--info);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-base);
}
.feature-card:hover .feature-card__icon { transform: scale(1.1) rotate(5deg); }
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card__icon--gold { background: rgba(212, 162, 85, 0.15); color: var(--gold-primary); }
.feature-card__icon--green { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.feature-card__icon--purple { background: rgba(139, 92, 246, 0.15); color: #8B5CF6; }
.feature-card__icon--cyan { background: rgba(6, 182, 212, 0.15); color: #06B6D4; }
.feature-card__icon--orange { background: rgba(249, 115, 22, 0.15); color: #F97316; }

.feature-card__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card__description { color: var(--dark-text-secondary); font-size: 1rem; margin-bottom: 1rem; }

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
}
.feature-card:hover .feature-card__link { opacity: 1; transform: translateX(0); }
.feature-card__link svg { width: 16px; height: 16px; }

/* ============================================
   WHY FINANS AI SECTION
   ============================================ */
.why-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}
.why-content { max-width: 1000px; margin: 0 auto; }
.why-content .section__title { text-align: center; margin-bottom: 3rem; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.why-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-base);
}
.why-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 162, 85, 0.3);
    transform: translateY(-4px);
}
.why-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}
.why-item p {
    color: var(--dark-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-item { padding: 1.5rem; }
}

/* ============================================
   AI SECTION
   ============================================ */
.ai-section { padding: 5rem 0; background: var(--dark-surface); }
.ai-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-section__text .section__badge,
.ai-section__text .section__title,
.ai-section__text .section__description { text-align: left; }

.ai-section__features { margin: 2rem 0; }
.ai-section__features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.check-icon svg { width: 14px; height: 14px; color: var(--success); }

/* AI Chat Mockup */
.ai-chat-mockup {
    background: rgba(35, 41, 56, 0.8);
    border-radius: 1.5rem;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}
.ai-chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-surface);
    border-bottom: 1px solid var(--dark-border);
}
.ai-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    position: relative;
}
.pulse-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--gold-primary);
    border-radius: inherit;
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}
.ai-info { display: flex; flex-direction: column; }
.ai-name { font-weight: 600; }
.ai-status { font-size: 0.75rem; color: var(--dark-text-secondary); display: flex; align-items: center; gap: 0.25rem; }
.status-dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; }

.ai-chat-messages { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.ai-message {
    max-width: 85%;
    padding: 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}
.ai-message--user {
    background: rgba(212, 162, 85, 0.2);
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}
.ai-message--ai {
    background: var(--dark-card);
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}
.ai-success { color: var(--success); font-weight: 600; }
.pulse { animation: pulse 1.5s ease-in-out infinite; }

.ai-chat-input {
    display: flex;
    padding: 1rem;
    gap: 0.5rem;
    border-top: 1px solid var(--dark-border);
}
.ai-chat-input input {
    flex: 1;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--dark-text);
    font-size: 0.875rem;
}
.ai-send-btn {
    width: 40px;
    height: 40px;
    background: var(--gold-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.ai-send-btn svg { width: 18px; height: 18px; }

.slide-in-right { animation: slideInRight 0.5s ease forwards; }
.slide-in-left { animation: slideInLeft 0.5s ease forwards; }
@keyframes slideInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

@media (max-width: 968px) {
    .ai-section__content { grid-template-columns: 1fr; text-align: center; }
    .ai-section__text .section__badge, .ai-section__text .section__title, .ai-section__text .section__description { text-align: center; }
    .ai-section__features { display: inline-block; text-align: left; }
    .ai-section__visual { order: -1; }
}

/* ============================================
   SCREENS SECTION
   ============================================ */
.screens { padding: 5rem 0; }
.screens__carousel { overflow-x: auto; padding: 2rem 0; }
.screens__track {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.screen-card {
    text-align: center;
    flex-shrink: 0;
    position: relative;
}
.screen-card--featured { transform: scale(1.1); z-index: 1; }
.screen-card__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    z-index: 2;
}

.phone-frame {
    width: 180px;
    height: 360px;
    background: var(--dark-card);
    border-radius: 24px;
    border: 2px solid var(--dark-border);
    padding: 8px;
    margin: 0 auto 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
}
.phone-frame--large { width: 200px; height: 400px; }

.screen-card__screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.screen-card:hover .phone-frame {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 162, 85, 0.2);
    border-color: var(--gold-primary);
}

.phone-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark-surface);
    border-radius: 18px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
.placeholder-header {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}
.placeholder-header.gold-text { color: var(--gold-primary); }

.placeholder-list { display: flex; flex-direction: column; gap: 0.5rem; }
.placeholder-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--dark-card);
    border-radius: 0.5rem;
    font-size: 0.75rem;
}

.placeholder-chart { flex: 1; display: flex; align-items: center; }
.placeholder-chart svg { width: 100%; }
.chart-line { stroke-dasharray: 300; stroke-dashoffset: 300; animation: draw-line 2s ease forwards; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }

.placeholder-price { text-align: center; margin-top: 1rem; }
.price-value { font-size: 1rem; font-weight: 700; color: var(--gold-primary); display: block; }
.price-change { font-size: 0.75rem; }
.price-change.positive { color: var(--success); }

.placeholder-chat { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.chat-bubble {
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.625rem;
    max-width: 80%;
}
.chat-bubble--user { background: rgba(212, 162, 85, 0.2); align-self: flex-end; }
.chat-bubble--ai { background: var(--dark-card); align-self: flex-start; }

.placeholder-portfolio { text-align: center; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.portfolio-total { font-size: 1.25rem; font-weight: 800; color: var(--gold-primary); }
.portfolio-profit { font-size: 0.875rem; }
.portfolio-profit.positive { color: var(--success); }

.placeholder-alarms { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.alarm-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--dark-card);
    border-radius: 0.5rem;
    font-size: 0.625rem;
}
.alarm-status { width: 8px; height: 8px; background: var(--dark-border); border-radius: 50%; }
.alarm-status.active { background: var(--success); }

.screen-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.screen-card__description { font-size: 0.875rem; color: var(--dark-text-secondary); }

.screens__note {
    text-align: center;
    margin-top: 2rem;
    color: var(--dark-text-secondary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.screens__note code {
    background: var(--dark-card);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: monospace;
}

@media (max-width: 768px) {
    .screens__track { flex-wrap: nowrap; justify-content: flex-start; padding: 0 1rem; }
    .screen-card--featured { transform: none; }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials { padding: 5rem 0; background: var(--dark-bg); }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all var(--transition-base);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.testimonial-card__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
.testimonial-card__stars svg { width: 16px; height: 16px; color: var(--gold-primary); }

.testimonial-card__text {
    font-size: 1rem;
    color: var(--dark-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
}
.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 600; }
.author-role { font-size: 0.875rem; color: var(--dark-text-secondary); }

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download { padding: 5rem 0; }
.download__wrapper {
    border-radius: 2rem;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}
.download__bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 162, 85, 0.1), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.1), transparent 50%);
    pointer-events: none;
}
.download__content { position: relative; text-align: center; max-width: 600px; margin: 0 auto; }
.download__title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.download__description { font-size: 1.125rem; color: var(--dark-text-secondary); margin-bottom: 2rem; }

.download__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 1rem;
    transition: all var(--transition-base);
}
.store-btn:hover {
    transform: translateY(-3px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 40px rgba(212, 162, 85, 0.2);
}
.store-btn svg { width: 28px; height: 28px; }
.store-btn__text { text-align: left; }
.store-btn__text span { display: block; font-size: 0.75rem; color: var(--dark-text-secondary); }
.store-btn__text strong { font-size: 1.125rem; }

.download__features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.download__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--dark-text-secondary);
}
.feature-check {
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-check svg { width: 12px; height: 12px; color: var(--success); }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 4rem 0 2rem; background: var(--dark-bg); border-top: 1px solid var(--dark-border); }
.footer__content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}
.footer__logo-icon { width: 28px; height: 28px; }
.footer__description { color: var(--dark-text-secondary); font-size: 0.875rem; max-width: 300px; margin-bottom: 1.5rem; }

.footer__social { display: flex; gap: 0.75rem; }
.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border-radius: 0.75rem;
    color: var(--dark-text-secondary);
    transition: all var(--transition-fast);
}
.social-link:hover { background: var(--gold-primary); color: #000; transform: translateY(-3px); }
.social-link svg { width: 18px; height: 18px; }

.footer__links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer__column h3 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.footer__column ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__column a {
    font-size: 0.875rem;
    color: var(--dark-text-secondary);
    transition: color var(--transition-fast);
}
.footer__column a:hover { color: var(--gold-primary); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}
.footer__bottom p { font-size: 0.875rem; color: var(--dark-text-secondary); }
.footer__lang { display: flex; gap: 0.375rem; flex-wrap: wrap; justify-content: center; }
.lang-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-text-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 0.375rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    background: transparent;
}
.lang-btn.active, .lang-btn:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

@media (max-width: 768px) {
    .footer__content { grid-template-columns: 1fr; text-align: center; }
    .footer__description { max-width: none; margin: 0 auto 1.5rem; }
    .footer__social { justify-content: center; }
    .footer__links { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .footer__bottom { flex-direction: column; gap: 1rem; }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gold-primary);
    color: #000;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(212, 162, 85, 0.4);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-5px); }
.scroll-top svg { width: 24px; height: 24px; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 1rem;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    z-index: 1000;
    content-visibility: hidden;
    contain-intrinsic-size: 0 60px;
}
.cookie-banner.show { display: flex; content-visibility: visible; }
.cookie-banner p { font-size: 0.875rem; color: var(--dark-text-secondary); }
.cookie-banner a { color: var(--gold-primary); }
.cookie-buttons { display: flex; gap: 0.5rem; }
.cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
}
.cookie-btn--accept { background: var(--gold-primary); color: #000; }
.cookie-btn--decline { background: var(--dark-card); color: var(--dark-text); border: 1px solid var(--dark-border); }

/* ============================================
   AOS ANIMATION STYLES
   ============================================ */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: ease;
}
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ============================================
   PAGE STYLES (for subpages)
   ============================================ */
.page-header {
    padding: 120px 0 60px;
    background: var(--dark-surface);
    text-align: center;
}
.page-header__title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.page-header__description { font-size: 1.125rem; color: var(--dark-text-secondary); max-width: 600px; margin: 0 auto; }

.page-content { padding: 4rem 0; }
.page-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 1rem; color: var(--gold-primary); }
.page-content h3 { font-size: 1.25rem; font-weight: 600; margin: 1.5rem 0 0.75rem; }
.page-content p { color: var(--dark-text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.page-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.page-content li { color: var(--dark-text-secondary); margin-bottom: 0.5rem; list-style: disc; }
.page-content a { color: var(--gold-primary); }

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-surface);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--dark-border);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 0.5rem;
    color: var(--dark-text);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}
.form-group textarea { min-height: 150px; resize: vertical; }

.faq-item {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}
.faq-question:hover { background: var(--dark-card); }
.faq-question span { color: var(--dark-text); }
.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
    color: var(--dark-text-secondary);
    background: var(--dark-card);
}
.faq-answer p { color: var(--dark-text-secondary); }
.faq-answer a { color: var(--gold-primary); }
.faq-item.active .faq-answer { max-height: 500px; padding: 1rem 1.25rem 1.25rem; }
.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
    flex-shrink: 0;
    color: var(--gold-primary);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer ul, .faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.faq-answer li { margin-bottom: 0.5rem; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.breadcrumb a {
    color: var(--dark-text-secondary);
    transition: color var(--transition-fast);
}
.breadcrumb a:hover { color: var(--gold-primary); }
.breadcrumb span { color: var(--dark-text-secondary); }
.breadcrumb span:last-child { color: var(--gold-primary); }

/* ============================================
   PAGE CONTENT WRAPPER
   ============================================ */
.content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Content Navigation Sidebar */
.content-nav {
    position: sticky;
    top: 100px;
    padding: 1.5rem;
    border-radius: 1rem;
}
.content-nav h3 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}
.content-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.content-nav a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--dark-text-secondary);
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
}
.content-nav a:hover {
    background: rgba(212, 162, 85, 0.1);
    color: var(--gold-primary);
}

@media (max-width: 968px) {
    .content-nav {
        position: relative;
        top: 0;
    }
}

/* Content Main */
.content-main { max-width: 100%; }

/* Content Section */
.content-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--dark-border);
}
.content-section:last-child { border-bottom: none; }
.section-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.section-icon svg {
    width: 24px;
    height: 24px;
    color: #000;
}
.content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}
.content-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 1.5rem 0 0.75rem;
}

/* Check List */
.check-list {
    margin: 1rem 0;
    padding: 0;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    list-style: none;
}
.check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}
.check-list li:last-child { border-bottom: none; }

/* Warning List */
.warning-list {
    margin: 1rem 0;
    padding: 0;
}
.warning-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    list-style: none;
    color: var(--dark-text-secondary);
}
.warning-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--error);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Info Box */
.info-box {
    background: rgba(212, 162, 85, 0.1);
    border: 1px solid rgba(212, 162, 85, 0.3);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin: 1.5rem 0;
}
.info-box strong { color: var(--gold-primary); }

/* Warning Box */
.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}
.warning-box svg {
    flex-shrink: 0;
    color: var(--error);
}
.warning-box p { margin: 0; }
.warning-box strong { color: var(--error); }

/* Disclaimer Box */
.disclaimer-box {
    background: linear-gradient(135deg, rgba(212, 162, 85, 0.15), rgba(212, 162, 85, 0.05));
    border: 1px solid rgba(212, 162, 85, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.disclaimer-box h3 {
    color: var(--gold-primary);
    margin: 0 0 0.75rem;
}
.disclaimer-box p { margin: 0; }

/* Security Badges */
.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--dark-card);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}
.badge-item svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* Partners List */
.partners-list {
    margin: 1.5rem 0;
}
.partner {
    padding: 1rem;
    background: var(--dark-card);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
}
.partner strong { color: var(--dark-text); display: block; margin-bottom: 0.25rem; }
.partner span { font-size: 0.875rem; color: var(--dark-text-secondary); }

/* Rights List */
.rights-list {
    margin: 1.5rem 0;
    padding: 0;
}
.rights-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    list-style: none;
}
.right-icon {
    width: 32px;
    height: 32px;
    background: var(--gold-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.right-content strong { display: block; margin-bottom: 0.25rem; color: var(--dark-text); }
.right-content p { margin: 0; font-size: 0.875rem; }

/* Contact Box */
.contact-box {
    background: var(--dark-card);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}
.contact-box p { margin-bottom: 1rem; }
.contact-box .btn { margin: 0.5rem; }

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
.cookie-type {
    padding: 1.25rem;
    background: var(--dark-card);
    border-radius: 0.75rem;
}
.cookie-type h4 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}
.cookie-type p { margin: 0; font-size: 0.875rem; }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}
.service-item {
    padding: 1.25rem;
    background: var(--dark-card);
    border-radius: 0.75rem;
    border: 1px solid var(--dark-border);
}
.service-item h4 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}
.service-item p { margin: 0; font-size: 0.875rem; color: var(--dark-text-secondary); }

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 4rem 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Info */
.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.contact-info > p {
    color: var(--dark-text-secondary);
    margin-bottom: 2rem;
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
}
.contact-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card__icon svg {
    width: 24px;
    height: 24px;
    color: #000;
}
.contact-card__content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.contact-card__content a {
    color: var(--gold-primary);
    font-weight: 500;
}
.contact-card__content p {
    font-size: 0.875rem;
    color: var(--dark-text-secondary);
    margin: 0;
}
.contact-card .badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--success);
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
}

/* Social Links */
.social-links h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.social-icons { display: flex; gap: 0.75rem; }
.social-icon {
    width: 44px;
    height: 44px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper .contact-form {
    padding: 2rem;
    border-radius: 1rem;
}
.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 0.5rem;
    color: var(--dark-text);
    font-size: 1rem;
    cursor: pointer;
}
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select option {
    color: var(--dark-text-secondary);
}
.btn--full { width: 100%; justify-content: center; }

/* FAQ Section */
.faq-section { padding: 4rem 0; background: var(--dark-surface); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-cta {
    text-align: center;
    margin-top: 3rem;
}
.faq-cta p {
    color: var(--dark-text-secondary);
    margin-bottom: 1rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-header--about {
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
}

/* Story Section */
.about-story { padding: 4rem 0; }
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.story-text .section__badge { margin-bottom: 1rem; }
.story-text .section__title { margin-bottom: 1.5rem; }
.story-text p {
    color: var(--dark-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-visual { display: flex; justify-content: center; }
.story-image {
    width: 300px;
    height: 300px;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.story-logo {
    width: 120px;
    height: 120px;
    color: var(--gold-primary);
}
.story-year {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .story-image {
        width: 250px;
        height: 250px;
    }
}

/* Mission & Vision */
.mission-vision { padding: 4rem 0; background: var(--dark-surface); }
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.mv-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}
.mv-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.mv-icon svg { width: 32px; height: 32px; color: #000; }
.mv-icon--gold { background: linear-gradient(135deg, #FFD700, #FFA500); }
.mv-icon--green { background: linear-gradient(135deg, #10B981, #059669); }
.mv-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.mv-card p {
    color: var(--dark-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .mv-grid { grid-template-columns: 1fr; }
}

/* About Stats */
.about-stats { padding: 4rem 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-surface);
    border-radius: 1rem;
    border: 1px solid var(--dark-border);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}
.stat-number span { color: var(--gold-primary); }
.stat-label {
    font-size: 0.875rem;
    color: var(--dark-text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* About Features */
.about-features { padding: 4rem 0; background: var(--dark-surface); }
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 1rem;
    border: 1px solid var(--dark-border);
    transition: all var(--transition-base);
}
.feature-item:hover {
    border-color: rgba(212, 162, 85, 0.3);
    transform: translateY(-2px);
}
.feature-item__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-item__icon svg { width: 24px; height: 24px; color: #000; }
.feature-item__content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.feature-item__content p {
    font-size: 0.875rem;
    color: var(--dark-text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .features-list { grid-template-columns: 1fr; }
}

/* Tech Partners */
.tech-partners { padding: 4rem 0; }
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.partner-item {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
}
.partner-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}
.partner-item p {
    font-size: 0.875rem;
    color: var(--dark-text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* About CTA */
.about-cta { padding: 4rem 0; }
.cta-wrapper {
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
}
.cta-wrapper h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta-wrapper p {
    color: var(--dark-text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
