:root {
    --bg-dark: #020202;
    --bg-panel: rgba(20, 20, 20, 0.6);
    --neon-cyan: #00f0ff;
    --neon-gold: #ffd700;
    --neon-green: #00ff88;
    --text-white: #ffffff;
    --text-gray: #888888;
    
    --font-heading: 'Oswald', sans-serif;
    --font-tech: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

/* Loader */
#loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader-content { text-align: center; }
.loader-text {
    font-family: var(--font-tech);
    color: var(--neon-cyan);
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: blink 0.5s infinite alternate;
}
.loader-bar { width: 200px; height: 2px; background: #333; overflow: hidden; }
.loader-progress { width: 0%; height: 100%; background: var(--neon-cyan); animation: load 2s ease-out forwards; }
@keyframes load { to { width: 100%; } }
@keyframes blink { from { opacity: 0.5; } to { opacity: 1; } }

/* Navigation */
nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.logo-img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-white); }
.nav-cta {
    color: #000 !important;
    background: var(--neon-green);
    padding: 0.6rem 1.25rem;
    font-family: var(--font-tech);
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-cta:hover { box-shadow: 0 0 20px rgba(0, 255, 136, 0.4); transform: translateY(-2px); }

/* Hero */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4));
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5vw;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    font-family: var(--font-tech);
    color: var(--neon-gold);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--neon-gold);
    border-radius: 2px;
    animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.5); }
}
h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.hero-sub {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-sub strong { color: var(--text-white); }
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--neon-cyan);
    color: #000;
    font-family: var(--font-tech);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}
.btn-large { padding: 1.25rem 3rem; font-size: 1.1rem; }

.hero-stats {
    position: absolute;
    bottom: 5vh;
    left: 5vw;
    display: flex;
    gap: 4rem;
    z-index: 2;
}
.stat-item { display: flex; flex-direction: column; }
.stat-val { font-family: var(--font-heading); font-size: 2.5rem; color: var(--text-white); }
.stat-label { font-family: var(--font-tech); font-size: 0.75rem; color: var(--neon-cyan); letter-spacing: 1px; }

/* Container & Sections */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.section-title.center { text-align: center; }
.section-desc { color: var(--text-gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto 3rem; }
.section-desc.center { text-align: center; }
.section-label {
    font-family: var(--font-tech);
    color: var(--neon-cyan);
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Proof Section */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.proof-card {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.4s;
}
.proof-card:hover { border-color: var(--neon-cyan); transform: translateY(-5px); }
.proof-card.featured {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), transparent);
    border-color: var(--neon-gold);
    display: flex;
    align-items: center;
    gap: 2rem;
}
.proof-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.proof-card.featured .proof-icon { font-size: 4rem; margin-bottom: 0; }
.proof-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}
.proof-card p { color: var(--text-gray); font-size: 0.95rem; }

/* Specialist Section */
#specialist { background: #050505; }
.split-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.holo-card { position: relative; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; overflow: hidden; }
.holo-card img { width: 100%; display: block; }
.holo-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(0, 240, 255, 0.1), transparent);
    pointer-events: none;
}

.credentials-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.credential-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--neon-gold);
    border-radius: 4px;
    transition: all 0.3s;
}
.credential-item:hover { border-left-color: var(--neon-cyan); transform: translateX(8px); }
.credential-icon { font-size: 1.5rem; }
.credential-item strong { font-family: var(--font-tech); color: var(--text-white); display: block; margin-bottom: 0.25rem; }
.credential-item p { color: var(--text-gray); font-size: 0.9rem; margin: 0; }

.rate-box {
    margin-top: 2rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
    border: 1px solid var(--neon-green);
    border-radius: 4px;
    text-align: center;
}
.rate-title { font-family: var(--font-heading); color: var(--neon-green); display: block; font-size: 1.1rem; }
.rate-desc { font-size: 0.85rem; color: var(--text-gray); display: block; margin-top: 0.25rem; }

/* Tech Cards */
#tech { background: var(--bg-dark); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.tech-card {
    position: relative;
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    height: 450px;
    transition: all 0.4s;
}
.tech-card:hover { transform: translateY(-10px); border-color: var(--neon-cyan); }
.tech-card.featured { border-color: var(--neon-cyan); }
.card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.3; }
.card-bg img { width: 100%; height: 100%; object-fit: cover; }
.card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, #000 0%, transparent 70%);
}
.card-icon {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}
.tech-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.75rem; }
.tech-card p { color: var(--text-gray); font-size: 0.95rem; }
.card-meta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-tech);
    font-size: 0.85rem;
    color: var(--neon-cyan);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* Marquee & Gallery */
.marquee {
    background: var(--neon-cyan);
    color: #000;
    padding: 0.75rem 0;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
    overflow: hidden;
}
.marquee-content { display: inline-block; padding-left: 100%; }
.gallery-container { display: grid; grid-template-columns: repeat(3, 1fr); height: 50vh; }
.gallery-slide { position: relative; overflow: hidden; cursor: crosshair; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-slide:hover img { transform: scale(1.1); }
.caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Value Stack */
#value { background: #050505; }
.value-table { max-width: 800px; margin: 0 auto; }
.value-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}
.value-row:hover { background: rgba(255, 255, 255, 0.02); padding-left: 1.75rem; }
.value-price { font-family: var(--font-tech); color: var(--neon-gold); }
.value-total {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem;
    margin-top: 1rem;
    background: var(--bg-panel);
    border-radius: 4px;
}
.value-total span:first-child { font-family: var(--font-heading); font-size: 1.1rem; }
.strikethrough {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #ff6b6b;
}
.value-you-pay {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    margin-top: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent);
    border: 2px solid var(--neon-green);
    border-radius: 4px;
    text-align: center;
}
.value-you-pay span:first-child { font-family: var(--font-heading); color: var(--neon-green); font-size: 1.1rem; }
.value-you-pay span:last-child { font-size: 1.1rem; color: var(--text-white); }

/* Pricing Cards */
#offers { background: var(--bg-dark); padding: 6rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.price-card {
    position: relative;
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s;
}
.price-card:hover { border-color: var(--neon-cyan); transform: translateY(-5px); }
.price-card.featured { border-color: var(--neon-cyan); background: rgba(0, 240, 255, 0.03); }
.price-card.recommended { border-color: var(--neon-gold); background: rgba(255, 215, 0, 0.03); }

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-cyan);
    color: #000;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 2px;
    letter-spacing: 1px;
}
.price-badge.gold { background: var(--neon-gold); }

.price-header { text-align: center; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 1.25rem; }
.price-header h3 { font-family: var(--font-heading); font-size: 1.5rem; }
.price-header p { font-family: var(--font-tech); color: var(--text-gray); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; }

.price-body ul { list-style: none; margin-bottom: 1.5rem; }
.price-body li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.check { color: var(--neon-gold); font-weight: bold; }
.check.gold { color: var(--neon-gold); }

.price-tag { margin-bottom: 1rem; }
.standard-rate {
    font-family: var(--font-tech);
    font-size: 1rem;
    color: var(--text-gray);
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 0.75rem;
}
.price-flex { display: flex; gap: 1rem; justify-content: space-between; }
.price-option { text-align: center; flex: 1; }
.promo-rate { font-family: var(--font-heading); font-size: 1.5rem; color: var(--neon-cyan); display: block; }
.promo-rate.best { color: var(--neon-green); }
.period { font-family: var(--font-tech); font-size: 0.7rem; color: var(--text-gray); display: block; }

.tech-rate {
    padding: 0.75rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 4px;
    text-align: center;
}
.tech-rate-title { font-family: var(--font-tech); font-size: 0.75rem; color: var(--neon-green); display: block; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.tech-rate-flex { display: flex; justify-content: space-around; font-size: 0.8rem; color: var(--text-gray); }

.partnership-box {
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    border: 1px solid var(--neon-gold);
    border-radius: 4px;
    text-align: center;
}
.partnership-price { font-family: var(--font-heading); font-size: 2rem; color: var(--neon-gold); display: block; }
.partnership-period { font-family: var(--font-tech); font-size: 0.8rem; color: var(--text-gray); display: block; margin: 0.25rem 0; }
.partnership-bonus { font-size: 0.8rem; color: var(--neon-green); display: block; }

/* Guarantee */
#guarantee { background: #050505; }
.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    border: 1px solid var(--neon-gold);
    border-radius: 4px;
}
.guarantee-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
.guarantee-box h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--neon-gold); margin-bottom: 1.5rem; }
.guarantee-box p { color: var(--text-gray); margin-bottom: 1rem; line-height: 1.8; }
.guarantee-box strong { color: var(--text-white); }

/* POC CTA */
#poc { background: var(--bg-dark); padding: 6rem 0; }
.poc-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.poc-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.poc-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.poc-box .highlight { color: var(--neon-green); }
.poc-box p { color: var(--text-gray); margin-bottom: 1.5rem; line-height: 1.8; position: relative; z-index: 1; }
.poc-box strong { color: var(--text-white); }
.poc-box .btn-primary { position: relative; z-index: 1; background: var(--neon-green); margin-bottom: 1.5rem; }
.poc-box .btn-primary:hover { box-shadow: 0 0 40px rgba(0, 255, 136, 0.5); }
.poc-note { font-size: 0.85rem; color: var(--text-gray); opacity: 0.7; position: relative; z-index: 1; }

/* Footer */
footer { padding: 4rem 0; border-top: 1px solid rgba(255, 255, 255, 0.08); background: #050505; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.footer-logo { height: 32px; margin-bottom: 0.5rem; }
.footer-brand p { color: var(--text-gray); font-size: 0.9rem; }
.footer-legal { text-align: center; font-size: 0.8rem; color: #444; }

/* Opportunity Section */
#opportunity { padding: 6rem 0; background: #050505; }
.opportunity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.opportunity-card {
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.opportunity-card.negative {
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.08), transparent);
    border-color: rgba(255, 100, 100, 0.3);
}
.opportunity-card.positive {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), transparent);
    border-color: var(--neon-green);
}
.opportunity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.opportunity-card.negative h3 { color: #ff6b6b; }
.opportunity-card.positive h3 { color: var(--neon-green); }
.opportunity-card ul { list-style: none; }
.opportunity-card li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}
.opportunity-card li:last-child { border-bottom: none; }
.opportunity-card.positive li { color: #ccc; }

/* Urgency Section */
#urgency { padding: 5rem 0; background: var(--bg-dark); }
.urgency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.urgency-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
}
.urgency-icon { font-size: 2.5rem; flex-shrink: 0; }
.urgency-card p { color: var(--text-gray); font-size: 1rem; line-height: 1.7; margin: 0; }
.urgency-card strong { color: var(--text-white); }

/* Calendar Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}
.modal-close:hover { color: var(--text-white); }
.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
}
.modal-desc { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 1.5rem; }

.calendar { margin-bottom: 1.5rem; }
.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}
.calendar-header span {
    text-align: center;
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--text-gray);
    padding: 0.5rem 0;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.2s;
}
.calendar-day:hover:not(.disabled):not(.empty) {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
}
.calendar-day.selected {
    background: var(--neon-cyan);
    color: #000;
    font-weight: 700;
}
.calendar-day.disabled {
    color: #333;
    cursor: not-allowed;
    background: transparent;
}
.calendar-day.empty { background: transparent; border: none; cursor: default; }

.booking-form { margin-top: 1.5rem; }
.selected-date {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.selected-date strong { color: var(--neon-green); }
.form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.form-input::placeholder { color: #555; }
.form-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.05);
}
.btn-confirm {
    width: 100%;
    margin-top: 0.5rem;
    background: var(--neon-green);
}
.btn-confirm:hover { box-shadow: 0 0 30px rgba(0, 255, 136, 0.4); }

/* Responsive */
@media (max-width: 1024px) {
    .proof-grid { grid-template-columns: 1fr 1fr; }
    .proof-card.featured { grid-column: span 2; }
    .split-layout { grid-template-columns: 1fr; }
    .cards-grid, .pricing-grid, .gallery-container, .opportunity-grid, .urgency-grid { grid-template-columns: 1fr; }
    .gallery-container { height: auto; }
    .gallery-slide { height: 250px; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero-stats { display: none; }
    h1 { font-size: 3rem; }
    .proof-grid { grid-template-columns: 1fr; }
    .proof-card.featured { grid-column: span 1; flex-direction: column; text-align: center; }
    .price-flex { flex-direction: column; gap: 0.5rem; }
}
