:root {
    --primary-dark: #28303D;
    --deep-navy: #1A2332;
    --primary-gold: #DAAF7A;
    --deep-amber: #B8935F;
    --light-amber: #F4D4A6;
    --white: #FFFFFF;
    --dark-bg: #0F172A;
    --card-dark: #1E293B;
    --soft-gray: #94A3B8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.font-outfit {
    font-family: 'Outfit', sans-serif;
}

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

/* Mobile Hidden Helper - only hide on mobile */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(218, 175, 122, 0.15), rgba(184, 147, 95, 0.1));
    border: 1px solid rgba(218, 175, 122, 0.4);
    cursor: pointer;
    padding: 0;
    margin-right: 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(218, 175, 122, 0.25), rgba(184, 147, 95, 0.15));
    border-color: var(--primary-gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(218, 175, 122, 0.2);
}

.mobile-menu-toggle:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(218, 175, 122, 0.15);
}

.hamburger-line {
    width: 22px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--light-amber));
    margin: 2.5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* New Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(180deg, var(--card-dark) 0%, rgba(30, 41, 59, 0.98) 100%);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(218, 175, 122, 0.2);
}

.mobile-nav-drawer.open {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(218, 175, 122, 0.15);
    background: linear-gradient(90deg, rgba(218, 175, 122, 0.08), transparent);
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.mobile-nav-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Outfit', sans-serif;
}

.mobile-nav-close {
    background: rgba(218, 175, 122, 0.1);
    border: 1px solid rgba(218, 175, 122, 0.3);
    color: var(--primary-gold);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-nav-close:hover {
    background: rgba(218, 175, 122, 0.2);
    border-color: var(--primary-gold);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(218, 175, 122, 0.25);
}

.mobile-nav-close .material-symbols-outlined {
    font-size: 20px;
}

.mobile-nav-menu {
    padding: 20px;
}

.mobile-nav-section {
    margin-bottom: 32px;
}

.mobile-nav-section:last-child {
    margin-bottom: 0;
}

.mobile-nav-section-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-gold);
    margin-bottom: 16px;
    padding: 0 4px;
    opacity: 0.8;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 175, 122, 0.1), transparent);
    transition: left 0.6s ease;
}

.mobile-nav-item:hover {
    background: linear-gradient(135deg, rgba(218, 175, 122, 0.15), rgba(184, 147, 95, 0.1));
    border-color: rgba(218, 175, 122, 0.3);
    color: var(--primary-gold);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(218, 175, 122, 0.2);
}

.mobile-nav-item:hover::before {
    left: 100%;
}

.mobile-nav-item .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.mobile-nav-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-social-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.mobile-nav-social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 175, 122, 0.1), transparent);
    transition: left 0.6s ease;
}

.mobile-nav-social-item:hover {
    background: linear-gradient(135deg, rgba(218, 175, 122, 0.15), rgba(184, 147, 95, 0.1));
    border-color: rgba(218, 175, 122, 0.3);
    color: var(--primary-gold);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(218, 175, 122, 0.2);
}

.mobile-nav-social-item:hover::before {
    left: 100%;
}

.mobile-nav-social-item i {
    font-size: 18px;
    color: var(--primary-gold);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Navbar */
nav.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(15, 23, 42, 0.95) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.top-nav.scrolled {
    padding: 20px 0;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-brand img {
    width: 45px;
    height: 45px;
}

.logo-brand span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Outfit', sans-serif;
}

.nav-links {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--soft-gray);
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a.active {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.gold-text {
    color: var(--primary-gold);
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(218, 175, 122, 0.1);
    border: 1px solid rgba(218, 175, 122, 0.2);
    border-radius: 100px;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(to bottom right, #FFFFFF 50%, var(--primary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--soft-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 800px;
    flex-wrap: wrap;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
    min-width: 150px;
    box-sizing: border-box;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--deep-navy);
}

.btn-primary:hover {
    background-color: var(--light-amber);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(218, 175, 122, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-download img {
    width: 24px;
    height: 24px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image .main-logo {
    width: 90%;
    max-width: 450px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item h3 {
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--soft-gray);
    font-size: 16px;
}

/* Features */
.features-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--soft-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-dark);
    padding: 40px 30px;
    border-radius: 24px;
    min-width: 0;
    /* Prevents flex items from overflowing */
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(218, 175, 122, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--soft-gray);
    padding-left: 0;
    position: relative;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list .material-symbols-outlined {
    color: var(--primary-gold);
    font-size: 18px;
    margin: 2px 8px 0 0;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Match the statistics section styling */
.feature-card .feature-list li {
    margin-bottom: 12px;
    padding-left: 0;
}

.feature-card .feature-list li:last-child {
    margin-bottom: 0;
}

.icon-box {
    width: 64px;
    height: 64px;
    background: rgba(218, 175, 122, 0.1);
    margin: 0 auto 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary-gold);
}

.feature-card h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    color: var(--white);
    text-align: center;
}

.feature-card p {
    color: var(--soft-gray);
}

.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--soft-gray);
}

.feature-list .material-symbols-outlined {
    font-size: 20px;
}

.icon-success {
    color: #4CAF50;
}

.icon-warning {
    color: #FF9800;
}

.icon-error {
    color: #F44336;
}

.economy-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.economy-table th {
    text-align: left;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-gold);
}

.economy-table td {
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--soft-gray);
}

.economy-table tr:hover td {
    background: rgba(218, 175, 122, 0.05);
}

.economy-table .status-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.economy-table .value-cell {
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.value-plus {
    color: #4CAF50;
}

.value-minus {
    color: #F44336;
}

.feature-note {
    margin-top: 16px;
    padding: 12px;
    background: rgba(218, 175, 122, 0.1);
    border-left: 3px solid var(--primary-gold);
    font-size: 14px;
    color: var(--soft-gray);
    border-radius: 0 8px 8px 0;
}

/* Analytics Preview */
.analytics-preview {
    margin-top: 20px;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 60px;
    margin-bottom: 20px;
    padding: 0 8px;
}

.chart-bar {
    width: 12px;
    background: linear-gradient(to top, var(--primary-gold), var(--light-amber));
    border-radius: 6px 6px 0 0;
    transition: var(--transition);
    cursor: pointer;
}

.chart-bar:hover {
    transform: scaleY(1.1);
    transform-origin: bottom;
}

.chart-bar.bar-1 {
    height: 80%;
}

.chart-bar.bar-2 {
    height: 60%;
}

.chart-bar.bar-3 {
    height: 90%;
}

.chart-bar.bar-4 {
    height: 70%;
}

.chart-bar.bar-5 {
    height: 85%;
}

.chart-bar.bar-6 {
    height: 95%;
}

.chart-bar.bar-7 {
    height: 75%;
}

/* Language Grid */
.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.lang-item:hover {
    background: rgba(218, 175, 122, 0.1);
    border-color: rgba(218, 175, 122, 0.2);
}

.flag-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.flag-img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.lang-item span:last-child {
    font-size: 13px;
    color: var(--soft-gray);
}

/* CTA Section */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--deep-amber) 100%);
    padding: 100px 60px;
    border-radius: 32px;
    text-align: center;
    margin-bottom: 120px;
    color: var(--deep-navy);
}

.cta-banner h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-banner .btn-primary {
    background-color: var(--deep-navy);
    color: var(--primary-gold);
}

.cta-banner .btn-primary:hover {
    background-color: #000;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--card-dark);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(218, 175, 122, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--white);
}

.contact-card p {
    color: var(--soft-gray);
    margin-bottom: 24px;
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-link:hover {
    color: var(--light-amber);
    transform: translateY(-2px);
}

.contact-social {
    text-align: center;
    padding: 40px;
    background: rgba(218, 175, 122, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(218, 175, 122, 0.1);
    max-width: 100%;
    margin: 80px auto 0;
    /* Add top margin to separate from contact cards */
}

.contact-social h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    min-width: 150px;
    width: 150px;
}

.social-link:hover {
    background: rgba(218, 175, 122, 0.1);
    border-color: rgba(218, 175, 122, 0.3);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.social-link .material-symbols-outlined {
    font-size: 20px;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--soft-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.social-links-footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    width: 200px;
    height: auto;
    font-size: 15px;
    box-sizing: border-box;
}

.follow-us {
    color: var(--soft-gray);
    font-size: 16px;
    font-weight: 500;
    margin: 30px 0 10px 0;
    text-align: center;
    width: 100%;
}

.social-links-hero {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 800px;
    flex-wrap: wrap;
}

.social-links-hero .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    min-width: 150px;
    font-size: 15px;
    box-sizing: border-box;
    text-align: center;
}

.social-links-hero .social-link:hover {
    background: var(--primary-gold);
    color: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-links-hero .social-icon {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links-footer .social-link .social-icon {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    line-height: 1;
}

/* Social media specific styling */
.social-x {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.social-x:hover {
    background-color: #000000;
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-instagram {
    background: rgba(220, 39, 67, 0.1);
    /* Instagram red tint */
    border-color: rgba(220, 39, 67, 0.2);
}

.social-instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.2);
}

.social-tiktok {
    background: rgba(254, 44, 85, 0.1);
    /* TikTok red tint */
    border-color: rgba(254, 44, 85, 0.2);
}

.social-tiktok:hover {
    background: linear-gradient(45deg, #25F4EE 0%, #FE2C55 100%);
    /* TikTok gradient */
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(254, 44, 85, 0.2);
}

.copyright {
    color: var(--soft-gray);
    font-size: 14px;
    opacity: 0.6;
}

/* Legal Content - Enhanced */
.legal-content {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--primary-gold);
    font-family: 'Outfit', sans-serif;
}

.legal-content h2 {
    font-size: 28px;
    margin: 48px 0 24px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.legal-content h3 {
    font-size: 20px;
    margin: 32px 0 16px;
    color: var(--light-amber);
    font-family: 'Outfit', sans-serif;
}

.legal-content p {
    color: var(--soft-gray);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 16px;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
    color: var(--soft-gray);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 40px 24px;
        margin: 30px 20px;
    }

    .legal-content h1 {
        font-size: 32px;
    }
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 40px;
    transition: var(--transition);
}

.back-link:hover {
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        margin: 0 auto 40px;
    }

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

    .hero-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .logo-brand {
        display: none !important;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-banner {
        padding: 60px 24px;
    }

    .cta-banner h2 {
        font-size: 32px;
    }
}