/* ==========================================================================
   Faber Wood OÜ - Nordic Timber Luxury Design System
   ========================================================================== */

:root {
    /* Color Palette - Nordic Wood Luxury */
    --color-bg-dark: #070a13;         /* Midnight Forest Slate */
    --color-bg-card: rgba(255, 255, 255, 0.02);
    --color-bg-card-hover: rgba(255, 255, 255, 0.05);
    
    --color-oak-gold: #e5a93c;         /* Rich Oak Gold */
    --color-oak-light: #fbe6c4;        /* Soft Honey Pine */
    --color-wood-gradient: linear-gradient(135deg, #f3c26d 0%, #b07e2a 50%, #7d5415 100%);
    --color-gold-gradient: linear-gradient(135deg, #e5a93c 0%, #9e7528 100%);
    
    --color-slate-gray: #94a3b8;      /* Timber Dust Slate */
    --color-text-light: #e2e8f0;      /* Birch White Text */
    --color-white: #ffffff;
    --color-pure-black: #000000;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Tokens */
    --container-max-width: 1200px;
    --section-padding: 7rem 2rem;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
    
    /* Shadows & Glassmorphism */
    --shadow-premium: 0 15px 45px -10px rgba(0, 0, 0, 0.5);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
    --glass-blur: blur(12px);
}

/* ==========================================================================
   1. Base & Reset Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-slate-gray);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   2. Typography & Section Header Elements
   ========================================================================== */

.gradient-text {
    background: var(--color-wood-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--color-oak-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold-gradient);
    margin: 1.2rem auto 0;
    border-radius: 2px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-slate-gray);
    font-weight: 300;
}

/* ==========================================================================
   3. Buttons & Interactive Components
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 1.1rem 2.4rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--color-gold-gradient);
    color: var(--color-bg-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(229, 169, 60, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-white);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--color-bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 169, 60, 0.4);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--color-oak-gold);
    border: 1px solid rgba(229, 169, 60, 0.4);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-gold-gradient);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--color-bg-dark);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-outline:hover::before {
    width: 100%;
}

/* ==========================================================================
   4. Header & Navigation (Glassmorphic)
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 10, 19, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    transition: var(--transition-fast);
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(7, 10, 19, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.nav-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-white);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a:not(.btn) {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-light);
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-gold-gradient);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover {
    color: var(--color-oak-gold);
}

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

.nav-cta {
    display: flex;
    align-items: center;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-white);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 10, 19, 0.92) 0%, rgba(7, 10, 19, 0.7) 50%, rgba(7, 10, 19, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

.hero-tagline {
    font-size: 1rem;
    font-family: var(--font-heading);
    color: var(--color-oak-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--color-slate-gray);
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* ==========================================================================
   6. Custom Page Layouts (Grids & Sections)
   ========================================================================== */

section {
    padding: var(--section-padding);
    position: relative;
}

.section-bg-darker {
    background-color: #04060b;
}

/* Two Column Layout (About Highlights, etc) */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.content-block h4 {
    color: var(--color-oak-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.content-block h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: var(--color-slate-gray);
}

.image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(229, 169, 60, 0.2);
    border-radius: 8px;
    pointer-events: none;
    transform: scale(0.96);
    transition: var(--transition-smooth);
}

.image-frame:hover::after {
    transform: scale(0.98);
    border-color: var(--color-oak-gold);
}

.image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-frame:hover img {
    transform: scale(1.04);
}

/* Custom list pattern */
.custom-list {
    list-style: none;
    margin-top: 2rem;
}

.custom-list li {
    padding-left: 2.2rem;
    position: relative;
    margin-bottom: 1.2rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.custom-list li::before {
    content: '✦';
    color: var(--color-oak-gold);
    position: absolute;
    left: 0.5rem;
    font-size: 0.9rem;
    top: 0;
}

/* ==========================================================================
   7. Service Grid & Details Cards
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--color-bg-card);
    border: var(--glass-border);
    border-radius: 8px;
    padding: 3rem;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gold-gradient);
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover {
    background: var(--color-bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(229, 169, 60, 0.2);
    box-shadow: var(--shadow-premium);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-oak-gold);
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.service-card p {
    font-weight: 300;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.read-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-oak-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more i {
    transition: var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   8. Stats & Metric Board
   ========================================================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--color-bg-card);
    border: var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(229, 169, 60, 0.15);
    transform: translateY(-4px);
}

.stat-num {
    font-size: 3.2rem;
    font-weight: 800;
    background: var(--color-wood-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
}

/* ==========================================================================
   9. Process Section
   ========================================================================== */

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
}

.process-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(229, 169, 60, 0.08);
    line-height: 1;
    position: absolute;
    top: -2.5rem;
    left: 0;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-oak-gold);
    position: relative;
    z-index: 2;
}

.process-step p {
    font-size: 0.9rem;
    font-weight: 300;
}

/* ==========================================================================
   10. Accordion component (FAQ page)
   ========================================================================== */

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--color-bg-card);
    border: var(--glass-border);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-fast);
}

.accordion-item:hover {
    border-color: rgba(229, 169, 60, 0.15);
}

.accordion-header {
    padding: 1.8rem 2.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition-fast);
}

.accordion-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.accordion-icon {
    font-size: 1rem;
    color: var(--color-oak-gold);
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.1);
}

.accordion-content {
    padding: 0 2.2rem 2.2rem;
    font-weight: 300;
    color: var(--color-slate-gray);
    font-size: 0.98rem;
}

.accordion-item.active .accordion-body {
    max-height: 500px; /* high enough limit */
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(229, 169, 60, 0.25);
}

/* ==========================================================================
   11. Contact Details & Forms
   ========================================================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--color-bg-card);
    border: var(--glass-border);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-card i {
    font-size: 1.8rem;
    color: var(--color-oak-gold);
    margin-top: 0.2rem;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 300;
}

.contact-form-container {
    background: var(--color-bg-card);
    border: var(--glass-border);
    padding: 4rem;
    border-radius: 8px;
    backdrop-filter: var(--glass-blur);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin-bottom: 0.8rem;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1.1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-oak-gold);
    background: rgba(255, 255, 255, 0.04);
}

.alert-success {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-size: 0.95rem;
}

.alert-danger {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    list-style: none;
}

/* Map mock */
.map-container {
    height: 350px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-top: 4rem;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(7, 10, 19, 0.9), rgba(7, 10, 19, 0.9)), url('../images/service-timber.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 2rem;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--color-oak-gold);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   12. Privacy Page Specific
   ========================================================================== */

.privacy-container {
    max-width: 850px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border: var(--glass-border);
    padding: 5rem;
    border-radius: 8px;
    backdrop-filter: var(--glass-blur);
}

.privacy-container h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--color-oak-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.privacy-container p, .privacy-container ul {
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.privacy-container ul {
    list-style: none;
    padding-left: 1.5rem;
}

.privacy-container ul li {
    position: relative;
    margin-bottom: 0.8rem;
}

.privacy-container ul li::before {
    content: '•';
    color: var(--color-oak-gold);
    position: absolute;
    left: -1.2rem;
    font-weight: bold;
}

/* ==========================================================================
   13. Footer Section (Luxury Dark)
   ========================================================================== */

footer {
    background-color: #020408;
    color: var(--color-slate-gray);
    padding: 6rem 0 3rem;
    border-top: var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-col h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.footer-about p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.footer-brand-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--color-oak-gold);
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--color-oak-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact-item p {
    font-weight: 300;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

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

/* ==========================================================================
   14. Animations & Scroll Reveal Classes
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.reveal-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-hidden.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Zoom effect on Hero background image */
@keyframes slowZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.08); }
}

.zoom-animate {
    animation: slowZoom 20s infinite alternate ease-in-out;
}

/* ==========================================================================
   15. Responsive Styling & Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .image-frame img {
        height: 320px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-form-container {
        padding: 2.5rem 1.5rem;
    }
    
    .privacy-container {
        padding: 2.5rem 1.5rem;
    }
    
    /* Responsive Navigation Menu */
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(7, 10, 19, 0.98);
        backdrop-filter: var(--glass-blur);
        border-left: var(--glass-border);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Hamburger toggles visual states */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-cta {
        display: none; /* Hide top CTA on small screens */
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}
