:root {
    --primary: #E30514;
    --primary-dark: #B80410;
    --primary-light: #FF3B4A;
    --accent: #6366F1;
    --accent-warning: #F59E0B;
    --bg-dark: #070709;
    --surface: #121216;
    --surface-card: rgba(255, 255, 255, 0.025);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.22);
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --glass: rgba(18, 18, 22, 0.75);
    --glass-border: rgba(255, 255, 255, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: radial-gradient(circle at 10% 20%, rgba(227, 5, 20, 0.05) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
}
h1, h2, h3, h4, .logo, .brand-font { font-family: 'Outfit', sans-serif; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(7, 7, 9, 0.85); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}
nav { display: flex; justify-content: space-between; align-items: center; height: 84px; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-img { height: 44px; width: auto; border-radius: 12px; box-shadow: 0 4px 12px rgba(227, 5, 20, 0.3); }
.logo-text-img { height: 32px; width: auto; object-fit: contain; }
.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 500; font-size: 15px; transition: all 0.3s ease; }
.nav-links a:hover { color: var(--text-main); text-shadow: 0 0 12px rgba(255, 255, 255, 0.3); }
.nav-actions { display: flex; align-items: center; gap: 16px; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 12px 26px; border-radius: 100px;
    text-decoration: none; font-weight: 700; font-size: 15px; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer; box-shadow: 0 8px 24px rgba(227, 5, 20, 0.25); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(227, 5, 20, 0.4); background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.btn-secondary { color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 15px; padding: 12px 24px; border-radius: 100px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); transition: all 0.3s ease; }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--border-hover); }
.btn-outline { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); color: var(--text-main); padding: 14px 28px; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--text-muted); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── Hero Section (Full Screen Width Background Banner - No Side Cropping!) ── */
.hero {
    padding: 220px 0 160px;
    position: relative;
    background-color: var(--bg-dark);
    background-image: linear-gradient(135deg, rgba(7, 7, 9, 0.35) 0%, rgba(7, 7, 9, 0.65) 100%), url('assets/Home.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 30%, rgba(227, 5, 20, 0.15) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.hero .container { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(34, 197, 94, 0.15); color: #4ADE80; border-radius: 100px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 28px; border: 1px solid rgba(34, 197, 94, 0.35); box-shadow: 0 4px 16px rgba(34, 197, 94, 0.15); backdrop-filter: blur(12px); }
.badge i { width: 16px; height: 16px; }
.hero h1 { font-size: 64px; font-weight: 900; line-height: 1.12; margin-bottom: 24px; letter-spacing: -1.5px; text-shadow: 0 10px 30px rgba(0,0,0,0.9), 0 2px 4px rgba(0,0,0,0.8); }
.hero h1 span { color: #22C55E; background: linear-gradient(to right, #22C55E, #4ADE80); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 10px 30px rgba(0,0,0,0.9); }
.hero p { font-size: 18px; color: #E2E8F0; margin-bottom: 40px; max-width: 540px; line-height: 1.7; text-shadow: 0 4px 16px rgba(0,0,0,0.9), 0 2px 4px rgba(0,0,0,0.8); font-weight: 500; }
.cta-group { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 48px; }
.app-download-group { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.app-btn { display: inline-block; transition: all 0.3s ease; cursor: pointer; border-radius: 12px; overflow: hidden; background: rgba(18, 18, 22, 0.6); padding: 2px; border: 1px solid var(--border); backdrop-filter: blur(8px); box-shadow: 0 8px 16px rgba(0,0,0,0.4); }
.app-btn img { height: 48px; width: auto; display: block; border-radius: 10px; }
.app-btn:hover { transform: translateY(-4px) scale(1.03); border-color: var(--primary); box-shadow: 0 12px 24px rgba(227, 5, 20, 0.25); }

.hero-banner-mobile { display: none; }

.hero-cards-showcase { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; }
.floating-card { position: absolute; background: rgba(18, 18, 22, 0.85); backdrop-filter: blur(24px); border: 1px solid var(--glass-border); padding: 24px 28px; border-radius: 24px; display: flex; align-items: center; gap: 18px; box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(227, 5, 20, 0.15); z-index: 2; transition: all 0.4s ease; }
.floating-card:hover { border-color: rgba(227, 5, 20, 0.4); transform: translateY(-4px) scale(1.02); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(227, 5, 20, 0.25); }
.stat-card { top: 130px; left: 10px; animation: float 6s ease-in-out infinite; }
.mode-card { bottom: -20px; right: 10px; animation: float 6s ease-in-out infinite 3s; border-color: rgba(99, 102, 241, 0.3); }
.mode-card:hover { border-color: rgba(99, 102, 241, 0.5); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(99, 102, 241, 0.25); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.icon-bg { width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(227, 5, 20, 0.3); }
.mode-card .icon-bg { background: linear-gradient(135deg, var(--accent), #4F46E5); box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3); }
.icon-bg i { width: 26px; height: 26px; }
.stat-label { display: block; font-size: 14px; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
.stat-value { font-size: 26px; font-weight: 900; color: var(--text-main); letter-spacing: -0.5px; }
.mode-card .stat-value { color: #818CF8; }

.modes-section { padding: 120px 0; background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 60%); position: relative; border-top: 1px solid var(--border); }
.section-header { text-align: center; margin-bottom: 70px; position: relative; }
.section-header h2 { font-size: 44px; font-weight: 900; margin-bottom: 18px; letter-spacing: -1px; }
.section-header h2 span { color: var(--accent); background: linear-gradient(to right, #818CF8, #6366F1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-header p { color: var(--text-muted); font.size: 18px; max-width: 640px; margin: 0 auto; }
.modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.mode-item { background: var(--surface-card); border: 1px solid var(--border); padding: 48px; border-radius: 32px; position: relative; overflow: hidden; transition: all 0.4s ease; backdrop-filter: blur(12px); }
.mode-item:hover { border-color: rgba(99, 102, 241, 0.4); transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 102, 241, 0.15); }
.mode-item.explorer:hover { border-color: rgba(227, 5, 20, 0.4); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(227, 5, 20, 0.15); }
.mode-icon { width: 64px; height: 64px; background: rgba(99, 102, 241, 0.1); color: #818CF8; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; border: 1px solid rgba(99, 102, 241, 0.2); }
.mode-item.explorer .mode-icon { background: rgba(227, 5, 20, 0.1); color: var(--primary-light); border-color: rgba(227, 5, 20, 0.2); }
.mode-icon i { width: 32px; height: 32px; }
.mode-item h3 { font-size: 28px; font-weight: 800; margin-bottom: 16px; color: var(--text-main); }
.mode-item p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.mode-feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.mode-feature-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-main); font-weight: 500; }
.mode-feature-list li i { color: #818CF8; width: 18px; height: 18px; }
.mode-item.explorer .mode-feature-list li i { color: var(--primary-light); }

.features { padding: 120px 0; border-top: 1px solid var(--border); position: relative; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.feature-card { background: var(--surface-card); border: 1px solid var(--border); padding: 40px; border-radius: 28px; transition: all 0.4s ease; backdrop-filter: blur(12px); }
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.05); }
.feature-icon { width: 56px; height: 56px; background: rgba(255, 255, 255, 0.05); color: var(--primary-light); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; border: 1px solid var(--border); }
.feature-icon i { width: 28px; height: 28px; }
.feature-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 14px; }
.feature-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

.how-it-works { padding: 120px 0; border-top: 1px solid var(--border); background: radial-gradient(circle at 20% 80%, rgba(227, 5, 20, 0.03) 0%, transparent 50%); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.step-card { background: var(--surface-card); border: 1px solid var(--border); padding: 48px 40px; border-radius: 32px; position: relative; backdrop-filter: blur(12px); transition: all 0.4s ease; }
.step-card:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(227, 5, 20, 0.15); }
.step-number { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 900; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; box-shadow: 0 8px 16px rgba(227, 5, 20, 0.25); }
.step-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 16px; }
.step-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

.contact-section { padding: 120px 0; border-top: 1px solid var(--border); position: relative; }
.contact-box { background: var(--surface-card); border: 1px solid var(--border); padding: 60px; border-radius: 36px; backdrop-filter: blur(16px); max-width: 800px; margin: 0 auto; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.contact-form { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.form-control { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); padding: 16px 20px; border-radius: 16px; color: var(--text-main); font-size: 15px; font-family: 'Inter', sans-serif; transition: all 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--primary); background: rgba(255, 255, 255, 0.05); box-shadow: 0 0 20px rgba(227, 5, 20, 0.15); }
textarea.form-control { min-height: 150px; resize: vertical; }

.legal-section { padding: 120px 0; border-top: 1px solid var(--border); background: rgba(7, 7, 9, 0.4); }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.legal-card { background: var(--surface-card); border: 1px solid var(--border); padding: 40px; border-radius: 28px; backdrop-filter: blur(12px); }
.legal-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; color: var(--primary-light); }
.legal-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.legal-card p:last-child { margin-bottom: 0; }

.final-cta { padding: 120px 0; border-top: 1px solid var(--border); }
.cta-card { background: linear-gradient(135deg, rgba(227, 5, 20, 0.2), rgba(184, 4, 16, 0.1)); border: 1px solid rgba(227, 5, 20, 0.3); padding: 80px 60px; border-radius: 40px; text-align: center; box-shadow: 0 30px 60px rgba(227, 5, 20, 0.15), inset 0 0 40px rgba(227, 5, 20, 0.1); backdrop-filter: blur(20px); }
.cta-card h2 { font-size: 48px; font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; }
.cta-card p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

footer { padding: 80px 0 40px; border-top: 1px solid var(--border); background: #050507; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: var(--text-muted); margin-top: 16px; max-width: 320px; font-size: 15px; }
.link-group h4 { margin-bottom: 24px; font-size: 15px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-main); font-weight: 800; }
.link-group ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.link-group ul a { text-decoration: none; color: var(--text-muted); font-size: 15px; transition: all 0.3s ease; }
.link-group ul a:hover { color: var(--primary-light); }
.footer-bottom { text-align: center; padding-top: 40px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 14px; }
.custom-toast { position: fixed; bottom: 40px; right: 40px; background: rgba(18, 18, 22, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--primary); padding: 20px 28px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(227, 5, 20, 0.25); display: flex; align-items: center; gap: 16px; z-index: 9999; transform: translateY(150%); opacity: 0; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.custom-toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { width: 40px; height: 40px; background: rgba(227, 5, 20, 0.15); color: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(227, 5, 20, 0.3); }
.toast-content { display: flex; flex-direction: column; }
.toast-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 16px; color: var(--text-main); }
.toast-message { font-size: 14px; color: var(--text-muted); margin-top: 2px; }

.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: var(--text-muted); margin-top: 16px; max-width: 320px; font-size: 15px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.link-group h4 { margin-bottom: 24px; font-size: 15px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-main); font-weight: 800; }
.link-group ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.link-group ul a { text-decoration: none; color: var(--text-muted); font-size: 15px; transition: all 0.3s ease; }
.link-group ul a:hover { color: var(--primary-light); }
.footer-bottom { text-align: center; padding-top: 40px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 14px; }

.footer-disclaimer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
    text-align: center;
    line-height: 1.6;
}
.footer-disclaimer strong {
    color: var(--primary-light);
}

/* Responsive Media Queries */

/* Tablet and Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .hero {
        padding: 160px 0 80px;
        background-image: radial-gradient(circle at 50% 20%, rgba(227, 5, 20, 0.1) 0%, transparent 60%);
    }
    .hero::before { display: none; }
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content { grid-row: 1; }
    .hero-image { grid-row: 2; }
    .hero-banner-mobile {
        display: block;
        width: 100%;
        max-width: 600px;
        height: auto;
        margin: 20px auto 30px;
        border-radius: 20px;
        border: 1px solid var(--border);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(227, 5, 20, 0.1);
    }
    .hero h1 { font-size: 52px; }
    .hero p { margin: 0 auto 36px; }
    .cta-group, .app-download-group { justify-content: center; }
    .hero-cards-showcase { height: auto; flex-direction: column; gap: 20px; margin-top: 40px; }
    .floating-card { position: relative; top: auto; bottom: auto; left: auto; right: auto; width: 100%; max-width: 400px; justify-content: center; margin: 0 auto; }
    .modes-grid, .steps-grid, .legal-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand p { margin: 16px auto 0; }
    .footer-links { justify-content: center; }
    .custom-toast { bottom: 20px; right: 20px; left: 20px; justify-content: center; }
}

/* Medium Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    nav { height: 74px; }
    .logo-img { height: 38px; }
    .logo-text-img { height: 26px; }
    .nav-actions .btn-secondary { display: none; /* Hide community and login in top header on mobile */ }
    .nav-actions .btn-primary { padding: 10px 20px; font-size: 14px; }
    
    .hero {
        padding: 130px 0 60px;
    }
    .hero-banner-mobile {
        max-width: 480px;
        margin: 15px auto 25px;
    }
    .hero h1 { font-size: 40px; letter-spacing: -1px; }
    .hero p { font-size: 16px; line-height: 1.6; }
    
    .mode-item { padding: 32px; border-radius: 24px; }
    .feature-card { padding: 30px; border-radius: 20px; }
    .step-card { padding: 36px 30px; border-radius: 24px; }
    .legal-card { padding: 30px; border-radius: 20px; }
    .contact-box { padding: 40px 30px; border-radius: 28px; }
    .cta-card { padding: 60px 40px; border-radius: 30px; }
    .cta-card h2 { font-size: 36px; }
    
    .footer-links { gap: 30px; }
}

/* Small Mobile Portrait - iPhone 17 Pro Max / Android (max-width: 480px) */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    nav { height: 68px; padding: 0 16px; }
    .logo { gap: 8px; }
    .logo-img { height: 32px; }
    .logo-text-img { height: 22px; } /* keeps logo text small and elegant */
    
    /* Screen is extra small, hide logo text to give button space */
    @media (max-width: 380px) {
        .logo-text-img { display: none; }
    }
    
    .nav-actions { gap: 8px; }
    .nav-actions .btn-primary { padding: 8px 16px; font-size: 13px; }
    .nav-actions .btn-primary i { width: 14px; height: 14px; }
    
    .badge { font-size: 11px; padding: 4px 12px; margin-bottom: 20px; }
    
    .hero h1 { font-size: 30px; line-height: 1.25; letter-spacing: -0.5px; }
    .hero p { font-size: 14px; line-height: 1.5; margin-bottom: 28px; color: #CBD5E1; }
    
    .cta-group { flex-direction: column; width: 100%; gap: 14px; }
    .cta-group .btn-lg { width: 100%; justify-content: center; padding: 14px 20px; font-size: 15px; }
    
    .app-download-group { justify-content: center; width: 100%; gap: 12px; }
    .app-btn img { height: 42px; }
    
    .hero-banner-mobile {
        max-width: 100%;
        margin: 10px auto 20px;
        border-radius: 12px;
    }
    
    .floating-card { padding: 14px 18px; border-radius: 16px; gap: 12px; max-width: 100%; }
    .icon-bg { width: 42px; height: 42px; border-radius: 12px; }
    .icon-bg i { width: 20px; height: 20px; }
    .stat-label { font-size: 12px; }
    .stat-value { font-size: 18px; }
    
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 28px; line-height: 1.2; }
    .section-header p { font-size: 15px; }
    
    .modes-section { padding: 80px 0; }
    .mode-item { padding: 24px 20px; border-radius: 20px; }
    .mode-item h3 { font-size: 22px; }
    .mode-item p { font-size: 14px; margin-bottom: 20px; }
    .mode-feature-list { gap: 10px; }
    .mode-feature-list li { font-size: 14px; gap: 8px; }
    
    .features { padding: 80px 0; }
    .feature-card { padding: 24px 20px; border-radius: 16px; }
    .feature-card h3 { font-size: 18px; margin-bottom: 10px; }
    .feature-card p { font-size: 14px; }
    .feature-icon { width: 48px; height: 48px; border-radius: 14px; margin-bottom: 20px; }
    .feature-icon i { width: 22px; height: 22px; }
    
    .how-it-works { padding: 80px 0; }
    .step-card { padding: 28px 20px; border-radius: 20px; }
    .step-card h3 { font-size: 20px; margin-bottom: 10px; }
    .step-card p { font-size: 14px; }
    .step-number { width: 38px; height: 38px; border-radius: 12px; font-size: 16px; margin-bottom: 20px; }
    
    .contact-section { padding: 80px 0; }
    .contact-box { padding: 30px 20px; border-radius: 20px; }
    .contact-form { gap: 16px; margin-top: 24px; }
    .form-control { padding: 12px 16px; font-size: 14px; border-radius: 12px; }
    
    .legal-section { padding: 80px 0; }
    .legal-card { padding: 24px 20px; border-radius: 16px; }
    .legal-card h3 { font-size: 18px; gap: 10px; }
    .legal-card p { font-size: 14px; }
    
    .final-cta { padding: 80px 0; }
    .cta-card { padding: 40px 20px; border-radius: 24px; }
    .cta-card h2 { font-size: 26px; line-height: 1.3; }
    .cta-card p { font-size: 15px; margin-bottom: 28px; }
    
    footer { padding: 60px 0 30px; }
    .footer-top { gap: 30px; }
    .footer-links { grid-template-columns: 1fr; gap: 30px; }
    .link-group h4 { margin-bottom: 16px; }
    .footer-bottom { padding-top: 30px; font-size: 13px; }
}
