:root {
    /* Brand Colors - Extracted from VitaGLP */
    --primary: #ED9700; /* Vibrant Gold/Orange */
    --primary-light: #FFB333;
    --primary-dark: #C67E00;
    --secondary: #4E6191; /* Blue-Gray */
    --accent-peach: #FCDEDE; /* Light Pink/Peach */
    --footer-bg: #2F180F; /* Dark Brown specified by user */
    
    --text-dark: #111827;
    --text-body: #4B5563;
    --text-light: #9CA3AF;
    --bg-white: #ffffff;
    --bg-soft: #F9FAFB;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --border-radius-lg: 16px;
    --border-radius-md: 10px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

.mobile-only { display: none; }
.desktop-only { display: block; }

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--bg-white);
    background-image: url('https://vitaglp.com/images/background-pattern.svg');
    background-size: 800px;
    background-repeat: repeat;
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

.section {
    padding: 100px 0;
}

/* Premium Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid 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(--text-dark);
    text-decoration: none;
    letter-spacing: -1.5px;
}

.logo span {
    color: var(--primary);
}

/* Hero Section Refined */
.hero {
    background: radial-gradient(circle at top right, #FFF9F0 0%, #FFFFFF 60%);
    padding: 80px 0 120px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border: 1px solid rgba(237, 151, 0, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

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

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, #FFB333 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 48px;
    max-width: 600px;
}

/* Region Section Refined */
#regions {
    background: #FDFCFB;
    position: relative;
    z-index: 1;
}

.region-title-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.region-title-wrap h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.region-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    background: white;
    border: 1px solid #F3F4F6;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
}

.region-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.region-card img {
    width: 80px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.region-card .region-name {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* FAQ Refined */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: white;
    border: 1px solid #F3F4F6;
    border-radius: var(--border-radius-md);
    transition: 0.3s;
}

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

.faq-q svg {
    transition: transform 0.4s;
    color: var(--primary);
}

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

.faq-item.active .faq-q svg {
    transform: rotate(180deg);
}

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

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

/* Footer Premium */
footer {
    background: var(--footer-bg);
    color: #E5E7EB;
    padding: 80px 0 40px;
}

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

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

.footer-logo span {
    color: var(--primary);
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

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

.footer-legal {
    max-width: 1000px;
    margin: 32px auto 0;
    line-height: 1.8;
    color: #9CA3AF;
}

/* Button Refined */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: var(--primary);
    color: white;
    border-radius: var(--border-radius-md);
    font-weight: 800;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 20px rgba(237, 151, 0, 0.2);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(237, 151, 0, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .container { padding: 0 20px; }
    
    .hero { padding: 40px 0 80px; }
    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 32px; 
    }
    
    /* Reordering Hero for Mobile: Title -> Image -> CTA -> Trust Points */
    .hero-content { display: flex; flex-direction: column; }
    .hero-content h1 { order: 1; }
    .hero-content p { order: 2; }
    .hero-content .mobile-only { order: 3; margin: 0 auto 24px !important; }
    .hero-content .cta-group { order: 4; margin-top: 24px; }
    .hero-content .trust-points { 
        order: 5; 
        margin-top: 24px !important; 
        justify-content: center; 
        flex-wrap: wrap;
        gap: 20px !important;
    }
    
    .hero h1 { font-size: 2.5rem; margin-bottom: 16px; }
    .hero p { font-size: 1.1rem; margin-bottom: 32px; }

    .mobile-only { display: block !important; }
    .desktop-only { display: none !important; }
    
    /* Regions: 2 per line on mobile */
    .region-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .region-card {
        padding: 24px 16px;
    }
    .region-card img {
        width: 60px;
        margin-bottom: 16px;
    }
    .region-card .region-name {
        font-size: 1rem;
    }
    
    .footer-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
}

/* Modals for Policies */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    pointer-events: auto;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    margin: 50px auto;
    padding: 60px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow-y: auto;
    color: var(--text-dark);
    text-align: left;
}

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