/* =========================================================
   👑 THE HORIZON TIMES - ULTIMATE PRO EDITION
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700&display=swap');

:root {
    --bg-main: #030304; 
    --bg-elevated: #0a0a0c;
    --gold: #D4AF37;
    --gold-hover: #F3E5AB;
    --text-pure: #FFFFFF;
    --text-main: #F8F8F8;
    --text-muted: #888888;
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-editorial: 2px; 
}

/* --- 1. BASE SETUP & RESETS --- */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
html.lenis, html.lenis body { height: auto; width: 100%; overflow-x: hidden; } 
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
body { background: var(--bg-main); color: var(--text-main); font-family: var(--font-sans); line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
button { all: unset; cursor: pointer; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: rgba(212, 175, 55, 0.3); color: var(--gold-hover); }

@media (min-width: 1024px) { *, body, a, button, input, textarea { cursor: none !important; } }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 5vw; }

/* 🌟 NEW: READING PROGRESS BAR */
.scroll-progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 10001; width: 0%; transition: width 0.1s ease; box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

/* --- 2. PRELOADER & CURSOR --- */
.preloader { position: fixed; inset: 0; background: var(--bg-main); z-index: 10000; display: flex; align-items: center; justify-content: center; }
.preloader-content { text-align: center; width: 300px; }
.preloader-brand { font-family: var(--font-serif); color: var(--text-pure); letter-spacing: 4px; margin-bottom: 20px; font-size: 0.85rem; text-transform: uppercase; }
.preloader-bar { width: 100%; height: 1px; background: #222; position: relative; overflow: hidden; }
.preloader-progress { position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: var(--gold); }

.custom-cursor { position: fixed; width: 12px; height: 12px; background: #fff; border-radius: 50%; pointer-events: none; z-index: 9999; mix-blend-mode: normal; display: flex; align-items: center; justify-content: center; transform: translate(-50%, -50%); transition: background 0.3s, transform 0.1s; will-change: transform; opacity: 0; }
.cursor-text { font-size: 2px; color: #000; font-weight: 800; opacity: 0; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 1024px) { .custom-cursor { display: none !important; visibility: hidden !important; opacity: 0 !important; } }

/* --- 3. 🌟 VISIBLE & DYNAMIC NAVBAR --- */
.navbar { 
    position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; 
    background: rgba(3, 3, 4, 0.95); 
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border); 
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease; 
    padding: 10px 0; 
}
.navbar.scrolled {
    background: rgba(3, 3, 4, 1); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    padding: 0;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; height: 75px; transition: height 0.4s; }
.navbar.scrolled .nav-container { height: 65px; }

.nav-brand { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; letter-spacing: 3px; color: var(--text-pure); text-transform: uppercase; }
.nav-actions { display: flex; gap: 2rem; align-items: center; }
.nav-link { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #aaa; transition: color 0.3s; }
.nav-link:hover { color: var(--gold); }

@keyframes buttonShine { 0% { left: -100%; } 20%, 100% { left: 200%; } }
.btn-subscribe { background: var(--gold); color: #000; padding: 0.6rem 1.6rem; border-radius: var(--radius-editorial); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s ease; text-align: center; position: relative; overflow: hidden; margin-top: auto; }
.btn-subscribe::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); animation: buttonShine 6s infinite; }
.btn-subscribe:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); }

.dev-toggle { border: 1px solid #333; color: #666; padding: 6px 10px; font-size: 9px; font-weight: 600; text-transform: uppercase; border-radius: var(--radius-editorial); transition: 0.3s; }
.dev-toggle:hover { color: #fff; border-color: #888; background: rgba(255,255,255,0.05); }

/* --- 4. HERO SECTION --- */
.hero-contained { padding-top: 110px; padding-bottom: 2rem; background: var(--bg-main); position: relative; z-index: 10; }
.hero-swiper { width: 100%; height: 60vh; min-height: 400px; max-height: 550px; border-radius: 8px; border: 1px solid var(--glass-border); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); position: relative; }
.hero-swiper .swiper-slide { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }

.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transform: scale(1.1); transition: transform 6s ease-out; }
.hero-swiper .swiper-slide-active .hero-bg-img { transform: scale(1); }

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(3,3,4,0.95) 0%, rgba(3,3,4,0.3) 50%, rgba(3,3,4,0.8) 100%); z-index: 1; }
.hero-pattern { position: absolute; inset: 0; z-index: 2; background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px); background-size: 35px 35px; animation: panPattern 60s linear infinite; pointer-events: none; }
@keyframes panPattern { 0% { background-position: 0 0; } 100% { background-position: 350px 350px; } }

.hero-content { position: relative; z-index: 10; text-align: center; max-width: 800px; padding: 0 2rem; user-select: none; }
.hero-tagline { color: var(--gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 1rem; display: block; }
.hero-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; line-height: 1.1; margin-bottom: 1.2rem; color: var(--text-pure); letter-spacing: -1px; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.hero-desc { color: var(--text-muted); font-size: clamp(0.95rem, 1.2vw, 1.1rem); line-height: 1.6; max-width: 500px; margin: 0 auto; font-weight: 300; }

.hero-pagination { bottom: 1.5rem !important; z-index: 20; }
.hero-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.3); opacity: 1; width: 8px; height: 8px; transition: all 0.4s var(--ease-out-expo); }
.hero-pagination .swiper-pagination-bullet-active { background: var(--gold); width: 24px; border-radius: 4px; box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }

/* 🌟 NEW: "FEATURED IN" TRUST STRIP */
.trust-strip { padding: 2rem 0; border-bottom: 1px solid var(--glass-border); background: var(--bg-elevated); text-align: center; }
.trust-text { display: block; color: #666; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; font-weight: 600; }
.trust-logos { display: flex; justify-content: center; gap: 4rem; align-items: center; flex-wrap: wrap; }
.trust-logos span { font-family: var(--font-serif); font-size: 1.4rem; color: #444; font-style: italic; transition: color 0.3s; cursor: default; }
.trust-logos span:hover { color: #888; }

/* --- 5. ARCHIVE GALLERY --- */
.archive-section { padding: 4rem 0 4rem; background: var(--bg-main); position: relative; z-index: 10; overflow: hidden; }
.showcase-header { margin-bottom: 2rem; display: flex; justify-content: space-between; align-items: flex-end; }
.showcase-header h2 { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 400; color: var(--text-pure); letter-spacing: -1px; }
.scroll-indicator { display: flex; gap: 8px; color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; align-items: center; }

.archive-slider-wrapper { position: relative; width: 100%; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); }
.archive-swiper { width: 100%; padding-top: 1rem !important; padding-bottom: 2rem !important; padding-right: 5vw !important; padding-left: calc(5vw + max(0px, (100vw - 1280px) / 2)) !important; overflow: visible; }
.archive-swiper .swiper-wrapper { transition-timing-function: linear !important; will-change: transform; } 
.archive-swiper .swiper-slide { width: clamp(260px, 22vw, 340px); opacity: 0.4; transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo); transform: scale(0.95); margin-right: 2.5rem; }
.archive-swiper .swiper-slide-active { opacity: 1; transform: scale(1); z-index: 10; }

.mag-card { display: flex; flex-direction: column; text-decoration: none; position: relative; height: 100%; user-select: none; }
.mag-cover-wrapper { width: 100%; aspect-ratio: 8.5 / 11; position: relative; overflow: hidden; border: 1px solid #1a1a1a; border-radius: var(--radius-editorial); transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s ease; background: #0a0a0a; }
.archive-swiper .swiper-slide-active .mag-card:hover .mag-cover-wrapper { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.8); border-color: #333; }
.mag-cover-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease, filter 0.5s ease; will-change: transform, filter; }
.archive-swiper .swiper-slide-active .mag-card:hover .mag-cover-img { transform: scale(1.05); }

.mag-badge { position: absolute; top: 1.2rem; left: 1.2rem; z-index: 20; background: rgba(0,0,0,0.8); color: var(--text-pure); font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 0.4rem 0.8rem; border: 1px solid #333; backdrop-filter: blur(4px); }
.mag-badge.latest { border-color: var(--gold); color: var(--gold); background: rgba(212, 175, 55, 0.1); }
.mag-card.locked .mag-cover-img { filter: blur(6px) brightness(0.55) grayscale(40%); transform: scale(1.06); }
.locked-overlay { position: absolute; inset: 0; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(3, 3, 4, 0.2); border: 1px solid rgba(255,255,255,0.05); transition: background 0.4s ease; }
.lock-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(0,0,0,0.7); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; border: 1px solid rgba(212, 175, 55, 0.3); backdrop-filter: blur(8px); transition: all 0.4s var(--ease-out-expo); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.locked-text { font-size: 0.8rem; font-weight: 700; color: var(--text-pure); text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 2px 4px rgba(0,0,0,0.9); }
.archive-swiper .swiper-slide-active .mag-card.locked:hover .lock-icon { background: var(--gold); color: #000; transform: scale(1.15) translateY(-5px); border-color: var(--gold); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4); }
.archive-swiper .swiper-slide-active .mag-card.locked:hover .mag-cover-img { filter: blur(3px) brightness(0.4) grayscale(60%); }

.mag-info { padding-top: 1.2rem; text-align: center; }
.mag-date { color: var(--gold); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.4rem; display: block; }
.mag-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--text-pure); line-height: 1.3; transition: color 0.3s; }
.archive-swiper .swiper-slide-active .mag-card:hover .mag-title { color: var(--gold-hover); }

/* --- 6. 🌟 REVIEWS SLIDER --- */
.reviews-section { padding: 4rem 0; background: var(--bg-main); border-top: 1px solid var(--glass-border); }
.reviews-header { text-align: center; margin-bottom: 3.5rem; }
.reviews-header h2 { font-family: var(--font-serif); font-size: 2.8rem; color: var(--text-pure); margin-bottom: 0.8rem; letter-spacing: -0.5px; }
.reviews-header p { color: var(--text-muted); font-size: 1.05rem; }

/* FIXED: Added padding-top to prevent clipping */
.reviews-swiper { width: 100%; padding-top: 1rem; padding-bottom: 4rem; overflow: hidden; margin-top: -1rem; }
.review-slide { height: auto !important; } 
.review-card { height: 100%; background: var(--bg-elevated); border: 1px solid #1a1a1a; border-radius: var(--radius-editorial); padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.4s var(--ease-out-expo), border-color 0.4s; }
.review-card:hover { transform: translateY(-6px); border-color: #333; }

.review-text { font-family: var(--font-serif); font-size: 1.15rem; color: var(--text-pure); line-height: 1.6; font-style: italic; margin-bottom: 2.5rem; flex-grow: 1; }
.review-author { display: flex; align-items: center; gap: 1rem; border-top: 1px solid #222; padding-top: 1.5rem; }
.author-avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 1px solid var(--glass-border); flex-shrink: 0; }
.author-info { display: flex; flex-direction: column; justify-content: center; }
.author-info h4 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.author-info span { color: var(--text-muted); font-size: 0.75rem; }

.reviews-pagination { bottom: 0 !important; }
.reviews-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.3); opacity: 1; transition: 0.3s; }
.reviews-pagination .swiper-pagination-bullet-active { background: var(--gold); width: 24px; border-radius: 4px; }

/* --- 7. 🌟 PRICING SLIDER --- */
.pricing-section { padding: 5rem 0 6rem; background: var(--bg-elevated); border-top: 1px solid #111; }
.pricing-header { text-align: center; margin-bottom: 3.5rem; }
.pricing-header h2 { font-family: var(--font-serif); font-size: 2.8rem; color: var(--text-pure); margin-bottom: 0.8rem; letter-spacing: -1px; }
.pricing-header p { color: var(--text-muted); font-size: 1.05rem; }

/* FIXED: Added padding-top to prevent "MOST POPULAR" badge from clipping */
.pricing-swiper { width: 100%; padding-top: 1.5rem; padding-bottom: 4rem; overflow: hidden; margin-top: -1.5rem;}
.pricing-slide { height: auto !important; } 
.pricing-card { height: 100%; background: var(--bg-main); border: 1px solid #222; border-radius: var(--radius-editorial); padding: 3rem 2.5rem; display: flex; flex-direction: column; transition: transform 0.4s var(--ease-out-expo), border-color 0.4s; }
.pricing-card:hover { transform: translateY(-6px); border-color: #444; }

.pricing-card.popular { border-color: var(--gold); position: relative; box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #000; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; letter-spacing: 1px; }

.plan-name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-pure); margin-bottom: 0.8rem; }
.plan-discount { display: flex; align-items: center; gap: 8px; margin-bottom: 0.5rem; }
.original-price { text-decoration: line-through; color: #666; font-size: 1rem; font-weight: 500; font-family: var(--font-sans); }
.discount-badge { background: rgba(212, 175, 55, 0.12); color: var(--gold); padding: 3px 8px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: 1px solid rgba(212, 175, 55, 0.25); }

.plan-price { font-size: 3.2rem; color: var(--text-pure); margin-bottom: 1rem; display: flex; align-items: baseline; gap: 4px; font-weight: 300; line-height: 1; min-height: 50px; font-family: var(--font-sans); }
.plan-price span { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; align-self: flex-end; padding-bottom: 6px;}

.price-loader { display: inline-block; width: 24px; height: 24px; border: 3px solid rgba(255,255,255,0.1); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto; display: block;}
@keyframes spin { to { transform: rotate(360deg); } }

.plan-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.5; }
.plan-features { list-style: none; margin-bottom: 2.5rem; flex-grow: 1; }
.plan-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; font-size: 0.9rem; color: #ccc; }
.plan-features i { width: 16px; color: var(--gold); }
.plan-features li.disabled { color: #555; }
.plan-features li.disabled i { color: #555; }

.btn-outline { border: 1px solid #444; color: var(--text-pure); text-align: center; padding: 0.8rem; border-radius: var(--radius-editorial); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; transition: 0.3s; letter-spacing: 1.5px; position: relative; overflow: hidden; margin-top: auto; }
.btn-outline::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); animation: buttonShine 6s infinite; animation-delay: 3s; }
.btn-outline:hover { background: #111; border-color: #666; }
.full-width { width: 100%; text-align: center; display: block; }

.pricing-pagination { bottom: 0 !important; }
.pricing-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.3); opacity: 1; transition: 0.3s; }
.pricing-pagination .swiper-pagination-bullet-active { background: var(--gold); width: 24px; border-radius: 4px; }

/* --- 8. EDITORIAL FOOTER --- */
.editorial-footer { border-top: 1px solid #1a1a1a; padding: 4rem 0 2rem; background: var(--bg-main); }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 4rem; margin-bottom: 3rem; }
.footer-newsletter h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--text-pure); margin-bottom: 1rem; }
.footer-newsletter p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; max-width: 300px; }
.newsletter-form { display: flex; border-bottom: 1px solid #333; padding-bottom: 0.6rem; transition: border-color 0.3s; }
.newsletter-form:focus-within { border-color: var(--gold); }
.newsletter-form input { background: transparent; border: none; color: var(--text-pure); flex-grow: 1; outline: none; font-size: 0.9rem; font-family: var(--font-sans); -webkit-appearance: none; border-radius: 0; }
.newsletter-form input::placeholder { color: #666; }
.newsletter-form button { color: var(--gold); background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.3s var(--ease-out-expo); padding: 0 10px; }
.newsletter-form button:hover { transform: translateX(6px); }

.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { color: var(--text-pure); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; }
.footer-col a { display: block; color: var(--text-muted); margin-bottom: 0.8rem; font-size: 0.85rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid #111; color: #666; font-size: 0.8rem; }
.footer-brand-small { font-family: var(--font-serif); font-size: 1rem; color: var(--text-pure); letter-spacing: 2px; text-transform: uppercase; }
.footer-socials { display: flex; gap: 1.2rem; }
.footer-socials a { color: #666; transition: color 0.3s; display: flex; align-items: center; justify-content: center; }
.footer-socials a:hover { color: var(--gold); transform: translateY(-2px); }

/* --- 9. 📱 PERFECT MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .navbar { padding: 0; }
    .nav-container { height: 60px; }
    .nav-brand { font-size: 1.1rem; letter-spacing: 2px; }
    .nav-actions .nav-link, .dev-toggle { display: none; }
    .btn-subscribe { padding: 0.5rem 1.2rem; font-size: 0.65rem; }
    
    .hero-contained { padding-top: 80px; padding-bottom: 1rem; }
    .hero-swiper { height: 50vh; min-height: 380px; max-height: 450px; border-radius: 8px; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); margin-bottom: 1rem; }
    
    .trust-logos { gap: 1.5rem; }
    .trust-logos span { font-size: 1rem; }
    
    .archive-section { padding: 2rem 0; }
    .archive-slider-wrapper { -webkit-mask-image: none; mask-image: none; }
    .showcase-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; margin-bottom: 1.5rem; }
    .showcase-header h2 { font-size: 2.2rem; }
    
    .archive-swiper { padding: 1rem 0 2rem 5vw !important; }
    .archive-swiper .swiper-slide { width: 80vw; opacity: 1; margin-right: 1.2rem; transform: scale(1); }
    .archive-swiper .swiper-slide-active .mag-card:hover .mag-cover-wrapper { transform: none; box-shadow: 0 15px 30px rgba(0,0,0,0.6); }
    
    .reviews-section { padding: 2rem 0 3rem; }
    .reviews-header h2 { font-size: 2rem; }
    .review-card { padding: 1.8rem 1.5rem; }

    .pricing-section { padding: 3rem 0; }
    .pricing-header h2 { font-size: 2rem; }
    .pricing-card { padding: 2rem 1.5rem; }

    .footer-top { grid-template-columns: 1fr; gap: 3rem; margin-bottom: 2rem; }
    .footer-newsletter { max-width: 100%; }
    .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1.2rem; text-align: center; padding-top: 1.5rem; }
}