/* 
    ÉtelKép - Professional Stylesheet
    Design: 100M$ Tech Startup Aesthetic
*/

:root {
    --primary: #FF6B35;
    --primary-hover: #E85A2A;
    --secondary: #0F172A;
    --accent: #38BDF8;
    --bg-dark: #020617;
    --bg-card: rgba(30, 41, 59, 0.5);
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html.lenis {
    height: auto;
}

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

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* --- Mesh Gradients --- */
.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(at 0% 0%, rgba(255, 107, 53, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(56, 189, 248, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 107, 53, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(56, 189, 248, 0.05) 0px, transparent 50%);
    filter: blur(100px);
}

/* --- Refined Typography --- */
h1 {
    font-size: 5rem;
    letter-spacing: -0.04em;
    line-height: 1;
}

h2 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* --- Buttons --- */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

/* --- Cards --- */
.card, .pricing-card, .gallery-item, .contact-wrapper {
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* --- Hero Visual --- */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.hero-image-wrapper:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-main-image {
    transform: scale(1.05);
}

.image-overlay-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 107, 53, 0.9);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- Floating Elements --- */
.floating-element {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

/* --- Custom Cursor (Optional but cool) --- */
.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}


h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

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

/* --- Background Elements --- */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}

.grid-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-dark) 80%);
}

.hero-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
}

/* --- Scroll Progress --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1001;
    width: 0%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
}

.navbar.scrolled {
    top: 10px;
    background: rgba(2, 6, 23, 0.8);
    width: 95%;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 100%;
}

.navbar .btn-primary {
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.logo {
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.full-width {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero h1 {
    font-size: 5rem;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* --- Countdown --- */
.countdown-container {
    margin-bottom: 2rem;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    gap: 1rem;
}

.time-unit {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 0.75rem;
    border-radius: 12px;
    min-width: 70px;
    text-align: center;
}

.time-unit span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.time-unit label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* --- Live Stats --- */
.live-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    position: relative;
}

.live-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.stat-badge i {
    color: var(--primary);
}

/* --- Trust Badges --- */
.trust-badges {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-item i {
    color: #10B981;
}

/* --- Before/After Slider --- */
.hero-visual {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.before-after-slider .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.background-img {
    background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=800&q=60');
}

.foreground-img {
    background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=800&q=90&sat=1.5&bright=1.1');
    width: 50%;
    border-right: 2px solid var(--white);
}

.slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    transition: all .2s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: ew-resize;
}

.slider-button {
    pointer-events: none;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 11;
}

.slider-button::before, .slider-button::after {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid #333;
    border-width: 0 2px 2px 0;
    vertical-align: middle;
}

.slider-button::before {
    transform: rotate(135deg);
}

.slider-button::after {
    transform: rotate(-45deg);
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 4px 12px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.7rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-label.before { left: 20px; }
.slider-label.after { right: 20px; }

/* --- Sections General --- */
section {
    padding: 10rem 0;
    position: relative;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* --- Problem Section --- */
.problem-section {
    background: var(--bg-dark);
}

/* --- Research Section --- */
.research-section {
    background: rgba(15, 23, 42, 0.2);
}

/* --- Calculator --- */
.calculator-section {
    background: var(--bg-dark);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: rgba(30, 41, 59, 0.3);
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    overflow: hidden;
    margin: 0 auto;
}

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

.input-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.input-group label span {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--bg-card);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.calculator-results {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid var(--glass-border);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.result-item span {
    color: var(--text-muted);
}

.result-item strong {
    font-size: 1.25rem;
}

.result-item.highlight {
    border-bottom: none;
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 0.5rem 0;
}

.result-item.highlight strong {
    color: var(--primary);
    font-size: 1.75rem;
}

.payback {
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.calculator-results .btn {
    margin-top: auto;
    width: 100%;
    display: block;
}

/* --- Grid 3 --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.research-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.02) 100%);
    padding-top: 0;
}

.research-highlight {
    margin-top: 4rem;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    border-left: 4px solid var(--primary);
    padding: 2.5rem;
    border-radius: 0 24px 24px 0;
}

.research-content h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.research-content h3 i {
    color: var(--primary);
}

.research-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
}

.research-content strong {
    color: var(--primary);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
}

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

/* --- Process Section --- */
.process-section {
    background: var(--bg-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

/* --- Gallery Section --- */
.gallery-section {
    background: rgba(15, 23, 42, 0.2);
}

/* --- Social Proof & Comparison --- */
.social-proof {
    background: rgba(15, 23, 42, 0.2);
}

.comparison-section {
    background: var(--bg-dark);
}

/* --- Pricing Section --- */
.pricing-section {
    background: var(--bg-dark);
}

/* --- FAQ Section --- */
.faq-section {
    background: rgba(15, 23, 42, 0.2);
}

/* --- Contact Section --- */
.contact-section {
    background: var(--bg-dark);
}

.process-step {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 32px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background: var(--primary);
}

.process-icon i {
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
}

.process-step:hover .process-icon i {
    color: white;
}

.process-content {
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* --- Teaser Section --- */
.teaser-section {
    padding: 10rem 0;
    background: rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.teaser-content h2 {
    margin-bottom: 1.5rem;
}

.teaser-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.teaser-content .badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.teaser-list {
    list-style: none;
    margin-top: 2rem;
}

.teaser-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.teaser-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.ba-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/10;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    background: #0f172a;
    width: 100%;
}

.ba-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.img-after {
    z-index: 0;
}

.ba-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--primary);
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    transform: translateX(-50%);
}

.ba-divider::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.ba-label {
    position: absolute;
    bottom: 1.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

.ba-label.before { left: 1.5rem; }
.ba-label.after { right: 1.5rem; }

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.cta-wrapper {
    text-align: center;
}

/* --- About Section --- */
.about-section {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.5) 100%);
    padding: 10rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.about-content h2 {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.bio-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.about-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.about-stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Gallery Masonry --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto 2rem;
    }

    .experience-badge {
        right: 0;
        bottom: 0;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .about-stats {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.gallery-item {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 30px 60px -12px rgba(255, 107, 53, 0.2);
}

/* --- Gallery Slider --- */
.gallery-ba {
    aspect-ratio: 4/3;
    border-radius: 24px 24px 0 0;
    border: none;
}

.gallery-ba .ba-label {
    bottom: 1rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
}

.gallery-ba .ba-label.before { left: 1rem; }
.gallery-ba .ba-label.after { right: 1rem; }

.gallery-ba .ba-divider::after {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.gallery-label {
    padding: 1rem 1rem 0.25rem;
    font-size: 1rem;
}

.gallery-meta {
    padding: 0 1rem 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

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

.testimonial {
    background: var(--glass);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    font-style: italic;
}

.testimonial p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* --- Comparison Table --- */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 3rem;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    font-size: 1.2rem;
}

.comparison-table .highlight {
    background: rgba(255, 107, 53, 0.05);
    color: var(--primary);
    font-weight: 700;
}

.benefits-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.benefits-list i {
    color: #10B981;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(255, 107, 53, 0.05) 100%);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.15);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--accent));
    z-index: -1;
    border-radius: 26px;
    opacity: 0.3;
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--white);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #10B981;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-muted);
}

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

.faq-item {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(30, 41, 59, 0.5);
    border-color: var(--primary);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 2rem;
    color: var(--text-muted);
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.faq-answer-inner {
    padding-bottom: 2rem;
}

.faq-item.active {
    background: rgba(30, 41, 59, 0.6);
    border-color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

/* --- Section Footer & CTA Wrapper --- */
.section-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    border-radius: 32px;
    border: 1px solid var(--glass-border);
}

.section-footer p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-wrapper {
    text-align: center;
    margin-top: 6rem;
    padding-bottom: 2rem;
}

/* --- Contact Form --- */
.contact-wrapper {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
}

.urgency-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.sample-form {
    margin-top: 3rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.upload-area {
    border: 2px dashed var(--glass-border);
    padding: 3rem;
    text-align: center;
    border-radius: 12px;
    transition: var(--transition);
}

.upload-area:hover {
    border-color: var(--primary);
    background: var(--glass);
}

.upload-area i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.preview-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.success-message {
    text-align: center;
    padding: 4rem 0;
}

.success-message i {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 1.5rem;
}

.hidden {
    display: none;
}

/* --- Sticky CTA --- */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    padding: 1rem;
    z-index: 999;
    transform: translateY(100%);
    transition: var(--transition);
    display: none;
}

.sticky-cta-bar.show {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-text strong {
    display: block;
    font-size: 1rem;
}

.sticky-cta-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Footer --- */
.footer {
    padding: 8rem 0 4rem;
    border-top: 1px solid var(--glass-border);
    background: #01040d;
}

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

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col p {
    color: var(--text-muted);
    margin: 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
}

/* --- Blog Styles --- */
.blog-hero {
    padding: 12rem 0 6rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.blog-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-category {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #fff;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

/* --- Post Styles --- */
.post-header {
    padding: 12rem 0 4rem;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.post-category {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
}

.post-featured-image {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0 auto 4rem;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    max-width: 800px;
    margin: 0 auto 8rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.post-content h2, .post-content h3 {
    color: #fff;
    margin: 3rem 0 1.5rem;
    font-family: 'Playfair Display', serif;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 2rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 0 24px 24px 0;
    font-style: italic;
    font-size: 1.4rem;
    margin: 3rem 0;
    color: #fff;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .hero .container { gap: 2rem; }
    
    .calculator-grid {
        padding: 3rem;
        gap: 3rem;
    }
}

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

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 7rem 0 3.5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 { font-size: 2.5rem; }

    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .section-header {
        margin-bottom: 3.25rem;
    }

    .section-header p {
        font-size: 1.05rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .navbar {
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
        transform: none;
        border-radius: 24px;
        padding: 0.75rem 1rem;
    }

    .navbar.scrolled {
        width: auto;
        padding: 0.75rem 1rem;
    }
    
    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero .subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .hero-visual {
        margin-top: 3rem;
    }
    
    .countdown { 
        justify-content: center; 
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .live-stats { 
        justify-content: center; 
        flex-wrap: wrap;
    }
    
    .trust-badges { 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 1.25rem;
        padding-top: 1.25rem;
    }
    
    .grid-3, .steps, .pricing-grid, .stats-grid, .testimonials, .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .card i {
        margin-bottom: 1rem;
    }

    .process-steps {
        gap: 1.75rem;
        margin-bottom: 3rem;
    }

    .process-step {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .step-number {
        font-size: 3rem;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        gap: 1.5rem;
        border-radius: 24px;
    }

    .teaser-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .input-group {
        margin-bottom: 1.5rem;
    }

    .input-group label {
        font-size: 0.95rem;
        line-height: 1.35;
        margin-bottom: 0.75rem;
    }

    .input-group label span {
        font-size: 1.05rem;
    }

    .calculator-results {
        padding: 1.25rem;
        text-align: center;
        gap: 1.1rem;
    }

    .result-item {
        padding-bottom: 0.75rem;
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
    }

    .result-item strong {
        font-size: 1.1rem;
    }

    .result-item.highlight strong {
        font-size: 1.4rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-col h4 {
        margin-bottom: 1rem;
    }

    .footer-col {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-grid {
        margin-bottom: 2.5rem;
    }

    .footer-col p {
        margin: 1rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-footer {
        margin-top: 2.5rem;
        padding: 2.5rem 1.25rem;
        border-radius: 24px;
    }

    .section-footer p {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .cta-wrapper {
        margin-top: 3rem;
        padding-bottom: 1rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-answer-inner {
        padding-bottom: 1.25rem;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .blog-card h3 {
        font-size: 1.25rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(2, 6, 23, 0.98);
        padding: 2rem;
        flex-direction: column;
        border-bottom: 1px solid var(--glass-border);
        border-radius: 0 0 24px 24px;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        display: flex;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured::after {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .table-responsive {
        overflow-x: auto;
    }

    .comparison-table {
        display: block;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody {
        display: block;
    }

    .comparison-table tr {
        display: block;
        margin-bottom: 1rem;
        background: rgba(30, 41, 59, 0.25);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        overflow: hidden;
    }

    .comparison-table td {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
        padding: 0.9rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        flex-wrap: wrap;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .comparison-table td::before {
        content: attr(data-label);
        color: var(--text-muted);
        font-weight: 600;
        flex: 0 0 auto;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .comparison-table td.row-title {
        justify-content: center;
        background: rgba(255, 255, 255, 0.04);
        font-weight: 800;
        color: var(--white);
        letter-spacing: 0.02em;
    }

    .comparison-table td.row-title::before {
        content: none;
    }

    .benefits-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .benefits-list li {
        justify-content: center;
        text-align: center;
    }

    .sticky-cta-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        text-align: center;
    }

    .upload-area {
        padding: 1.25rem;
    }

    .checkbox-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-col ul li {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }

    .teaser-section,
    .about-section {
        padding: 4rem 0;
    }

    .blog-hero {
        padding: 9rem 0 4rem;
    }

    .research-highlight {
        margin-top: 2.5rem;
        padding: 1.5rem;
        border-radius: 0 20px 20px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
    
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        margin: 5px 0;
        transition: var(--transition);
    }
    
    .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(7px, -7px); }

    .contact-wrapper {
        padding: 1.5rem;
    }
    
    .preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ba-label {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        bottom: 1rem;
    }

    .ba-label.before { left: 1rem; }
    .ba-label.after { right: 1rem; }

    .ba-divider::after {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .custom-cursor {
        display: none;
    }

    .post-featured-image {
        height: 240px;
        border-radius: 24px;
        margin-bottom: 2.5rem;
    }

    .post-content {
        font-size: 1.05rem;
        margin-bottom: 5rem;
    }

    .post-content blockquote {
        font-size: 1.15rem;
        padding: 1.25rem;
    }
}

/* Cookie Banner - Floating Card Style */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 95%;
    max-width: 1200px;
    z-index: 9999;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none; /* Allow clicks through when hidden */
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.cookie-card {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2; /* Move close button to the end on mobile if needed */
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cookie-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.cookie-description a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.cookie-description a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

.cookie-description a:hover::after {
    width: 100%;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .cookie-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .cookie-header {
        width: 100%;
        justify-content: space-between;
    }
    
    .cookie-close {
        order: 0;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-actions .btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 1rem;
        width: calc(100% - 2rem);
    }
    
    .cookie-card {
        padding: 1.5rem;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}
