:root {
    --primary: #a22b43;
    --primary-light: #c33854;
    --primary-dark: #822234;
    --secondary: #f4b400;
    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-white: #ffffff;
    --bg-light: #fdf5f6;
    --accent-soft: rgba(162, 43, 67, 0.05);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 15px 45px rgba(162, 43, 67, 0.12);
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
}

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

.section {
    padding: 80px 0;
}

/* Header & Nav */
header {
    background: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 580px;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #fff;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
    border-radius: var(--border-radius-lg);
}

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

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

/* Trust Bar */
.trust-bar {
    background: var(--bg-light);
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

/* Region Grid Styling */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.region-card {
    display: block;
    padding: 24px 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: center;
}

.region-card img {
    width: 60px;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 0 auto 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.region-card .region-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary) !important;
    background: var(--bg-light);
}

/* FAQ Layout */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.faq-q {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.faq-q svg {
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.faq-item.active .faq-q {
    background-color: #f8fbff;
    color: var(--primary);
}

.faq-item.active .faq-q svg {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary);
}

.faq-a {
    padding: 0 30px 24px;
    display: none;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item.active .faq-a {
    display: block;
}

/* CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #0a192f;
    color: #a0aec0;
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: block;
    text-decoration: none;
}

footer h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 12px;
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
}

.legal-text {
    max-width: 900px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: #fff;
    margin: 40px auto;
    padding: 40px;
    border-radius: var(--border-radius-md);
    width: 100%;
    max-width: 800px;
    position: relative;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
}

.modal-content h2 {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.close-modal {
    position: absolute;
    right: 24px;
    top: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .hero-grid, .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        margin: 30px auto;
        max-width: 300px;
    }

    .hero-image-mobile img {
        width: 100%;
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
        border-radius: var(--border-radius-lg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-badge, .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group {
        justify-content: center;
    }

    .footer-grid {
        gap: 40px;
    }
}
