@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050D1F;
    --bg-card: #0D1B3E;
    --bg-footer: #030A18;
    --blue-primary: #0A1F6B;
    --gold: #C9A84C;
    --gold-hover: #D4B85A;
    --blue-accent: #4A9EE8;
    --white: #FFFFFF;
    --text-gray: #8A9BB5;
    --glass-border: rgba(74, 158, 232, 0.15);
    --glass-bg: rgba(13, 27, 62, 0.6);
    --gold-glow: rgba(201, 168, 76, 0.3);
    --blue-glow: rgba(74, 158, 232, 0.2);
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ========== CIRCUIT BACKGROUND ========== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(10, 31, 107, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(74, 158, 232, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Circuit lines decoration */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(74, 158, 232, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(74, 158, 232, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

main, header, footer, section {
    position: relative;
    z-index: 1;
}

/* ========== NAVIGATIE ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: rgba(5, 13, 31, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 158, 232, 0.1);
}

.navbar.scrolled {
    background: rgba(5, 13, 31, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--bg-primary) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 20px var(--gold-glow);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--gold-glow);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== KNOPPEN ========== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 25px var(--gold-glow);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 25px var(--gold-glow);
}

/* ========== BADGES ========== */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-gold {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.badge-blue {
    background: rgba(74, 158, 232, 0.15);
    color: var(--blue-accent);
    border: 1px solid rgba(74, 158, 232, 0.3);
}

/* ========== SECTION STYLING ========== */
.section {
    padding: 100px 0;
}

.section-badge {
    text-align: center;
    margin-bottom: 16px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header .gold {
    color: var(--gold);
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ========== HERO ========== */
.hero {
    padding: 160px 0 80px;
    text-align: center;
}

.hero-badge {
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .gold {
    color: var(--gold);
    position: relative;
}

.hero .subtitle {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .description {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust .badge {
    font-size: 0.85rem;
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: linear-gradient(135deg, var(--blue-primary), #0D2A8A);
    border-top: 1px solid rgba(74, 158, 232, 0.2);
    border-bottom: 1px solid rgba(74, 158, 232, 0.2);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ========== GLASS CARDS ========== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.1);
}

/* ========== WAT WIJ DOEN ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    text-align: center;
    padding: 40px 28px;
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ========== SOCIAL PROOF BANNER ========== */
.social-proof {
    background: linear-gradient(135deg, var(--blue-primary), #0D2A8A);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

.social-proof-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.social-proof h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 16px 0 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.proof-stat {
    text-align: center;
}

.proof-stat .number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.proof-stat .label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.floating-notification {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 24px;
    animation: float 3s ease-in-out infinite;
}

.floating-notification .pulse {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.floating-notification .notif-icon {
    font-size: 1.5rem;
}

.floating-notification .notif-text {
    text-align: left;
}

.floating-notification .notif-text strong {
    display: block;
    font-size: 0.9rem;
}

.floating-notification .notif-text span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* ========== VOOR ONDERNEMERS ========== */
.entrepreneurs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.entrepreneurs-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.entrepreneurs-text .gold-subtitle {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.entrepreneurs-text .description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check-item .check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.entrepreneurs-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.visual-card .big-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.visual-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.visual-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ========== VOOR WIE ========== */
.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.sector-badge {
    padding: 12px 28px;
    border: 1px solid rgba(74, 158, 232, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    background: rgba(74, 158, 232, 0.08);
    transition: all 0.3s ease;
    cursor: default;
}

.sector-badge:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--gold-glow);
}

/* ========== DIENSTEN PAGINA ========== */
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.dienst-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.dienst-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.1);
}

.dienst-card .dienst-badge {
    margin-bottom: 16px;
}

.dienst-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.dienst-card .dienst-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dienst-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.dienst-features span {
    background: rgba(74, 158, 232, 0.1);
    border: 1px solid rgba(74, 158, 232, 0.2);
    color: var(--blue-accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.dienst-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 158, 232, 0.15);
    flex-wrap: wrap;
    gap: 16px;
}

.dienst-price .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}

.dienst-price .price-sub {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 400;
}

.dienst-price .btn-gold {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.diensten-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.diensten-cta p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.diensten-cta .gold {
    color: var(--gold);
    font-weight: 600;
}

/* ========== OVER ONS PAGINA ========== */
.about-hero {
    padding: 160px 0 60px;
    text-align: center;
}

.about-content {
    padding: 0 0 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text .gold {
    color: var(--gold);
    font-weight: 600;
}

.about-values {
    display: grid;
    gap: 20px;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
}

.value-card .value-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-mission {
    text-align: center;
    padding: 60px 0 80px;
}

.about-mission .glass-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
}

.about-mission h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-mission p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ========== CONTACT PAGINA ========== */
.contact-hero {
    padding: 160px 0 60px;
    text-align: center;
}

.contact-content {
    padding: 0 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-cards {
    display: grid;
    gap: 20px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
}

.contact-card .contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 158, 232, 0.1);
    border: 1px solid rgba(74, 158, 232, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--blue-accent);
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-form-wrap {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 36px;
}

.contact-form-wrap h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(5, 13, 31, 0.6);
    border: 1px solid rgba(74, 158, 232, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: var(--bg-primary);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-footer);
    border-top: 1px solid rgba(74, 158, 232, 0.1);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand .brand-name {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-brand .brand-url {
    color: var(--blue-accent);
    font-size: 0.9rem;
}

.footer-brand .brand-tagline {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(74, 158, 232, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 160px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .entrepreneurs {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .diensten-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 13, 31, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(74, 158, 232, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .proof-stats {
        gap: 24px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .entrepreneurs-text h2 {
        font-size: 2rem;
    }

    .social-proof h2 {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}

/* ========== FOOTER SOCIAL LINKS ========== */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.footer-social a {
    color: var(--text-gray);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.footer-social a:hover {
    color: var(--gold);
}
