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

:root {
    --ivory: #F6F3EE;
    --ivory-warm: #F0EDE6;
    --noir: #0B0B0B;
    --champagne: #D6C3A3;
    --champagne-dark: #C4AD8A;
    --taupe: #B8AFA6;
    --taupe-light: #D4CEC7;
    --cream: #FDFCFA;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--ivory);
    color: var(--noir);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--champagne); color: var(--noir); border: none;
    padding: 16px 44px; border-radius: 50px;
    font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: var(--champagne-dark); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 0;
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary .arrow { position: relative; z-index: 1; transition: transform 0.3s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: var(--noir); border: 1.5px solid var(--noir);
    padding: 15px 40px; border-radius: 50px;
    font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 400;
    letter-spacing: 2.5px; text-transform: uppercase;
    cursor: pointer; text-decoration: none; transition: all 0.35s ease;
}
.btn-secondary:hover { background: var(--noir); color: var(--ivory); }

.btn-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 400;
    letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none;
    color: var(--noir); padding-bottom: 2px;
    border-bottom: 1px solid var(--champagne); transition: all 0.35s ease;
}
.btn-link:hover { color: var(--champagne-dark); border-color: var(--champagne-dark); }
.btn-link .link-arrow { transition: transform 0.3s ease; font-size: 14px; }
.btn-link:hover .link-arrow { transform: translateX(4px); }

/* ─── Announcement ─── */
.announcement {
    background: var(--noir); color: var(--ivory); text-align: center;
    padding: 11px 20px; font-size: 12px; letter-spacing: 2.8px;
    text-transform: uppercase; font-weight: 400;
}
.announcement span { color: var(--champagne); }

/* ─── Header ─── */
.header {
    padding: 22px 0; border-bottom: 1px solid var(--taupe-light);
    background: var(--white); position: sticky; top: 0; z-index: 100;
    transition: box-shadow 0.3s ease;
}
.logo img
 {
    height: 60px;
}
.header.scrolled { box-shadow: 0 2px 30px rgba(11,11,11,0.04); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
    font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase; color: var(--noir); text-decoration: none;
}
.logo em { font-style: italic; font-weight: 400; color: #8A837C; }

nav { display: flex; align-items: center; gap: 38px; }
nav a {
    font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
    text-decoration: none; color: var(--noir); font-weight: 400;
    position: relative; padding-bottom: 2px;
}
nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--champagne); transition: width 0.35s ease;
}
nav a:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 16px; }
.header-icons { display: flex; align-items: center; gap: 22px; }
.header-icons a { color: var(--noir); text-decoration: none; }

.mobile-menu-btn {
    display: none; background: none; border: none; cursor: pointer;
    color: var(--noir); padding: 4px; z-index: 201;
}

/* ─── Mobile Nav Overlay ─── */
.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(11,11,11,0.4);
    z-index: 199; opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav {
    position: fixed; top: 0; right: 0; width: 300px; height: 100%;
    background: var(--ivory); z-index: 200;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(11,11,11,0.08);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 24px; border-bottom: 1px solid var(--taupe-light);
}
.mobile-nav-close {
    background: none; border: none; cursor: pointer; color: var(--noir); padding: 4px;
}

.mobile-nav-links {
    flex: 1; display: flex; flex-direction: column; padding: 32px 24px; gap: 0;
}
.mobile-nav-links a {
    font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; color: var(--noir); font-weight: 400;
    padding: 18px 0; border-bottom: 1px solid var(--taupe-light);
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a:hover { color: var(--champagne-dark); padding-left: 8px; }

.mobile-nav-footer {
    padding: 24px; border-top: 1px solid var(--taupe-light);
}
.mobile-nav-socials {
    display: flex; gap: 20px; justify-content: center;
}
.mobile-nav-socials a {
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    text-decoration: none; color: var(--taupe); transition: color 0.3s ease;
}
.mobile-nav-socials a:hover { color: var(--noir); }

/* ─── Hero ─── */
.hero {
    min-height: 92vh; display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 80px; padding: 60px 0;
}
.hero-content { padding-right: 20px; }

.hero-eyebrow {
    font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
    color: #7A746E; margin-bottom: 28px; font-weight: 500;
    display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
    content: ''; width: 40px; height: 1px; background: var(--champagne); flex-shrink: 0;
}

.hero h1 {
    font-family: 'Playfair Display', serif; font-size: clamp(38px, 5vw, 68px);
    font-weight: 400; line-height: 1.12; margin-bottom: 30px; letter-spacing: -0.5px;
}
.hero h1 em { font-style: italic; color: #8A837C; }

.hero-desc {
    font-size: 16px; line-height: 1.8; color: #3D3832;
    max-width: 440px; margin-bottom: 44px; font-weight: 300;
}

.hero-ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

.hero-image-wrapper { position: relative; }

.hero-image {
    position: relative; height: 680px;
    border-radius: 300px 300px 20px 20px; overflow: hidden; background: var(--taupe-light);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-float-badge {
    position: absolute; bottom: 50px; left: -30px; background: var(--cream);
    padding: 22px 28px; border-radius: 16px;
    box-shadow: 0 16px 50px rgba(11,11,11,0.08);
    display: flex; align-items: center; gap: 14px; z-index: 2;
}
.badge-stars { color: var(--champagne); font-size: 14px; letter-spacing: 2px; }
.badge-text { font-size: 12px; color: #4A4540; }
.badge-text strong { display: block; color: var(--noir); font-size: 14px; font-weight: 500; }

/* ─── Marquee ─── */
.marquee-section {
    border-top: 1px solid var(--taupe-light); border-bottom: 1px solid var(--taupe-light);
    padding: 20px 0; overflow: hidden; background: var(--cream);
}
.marquee-track { display: flex; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 40px; padding: 0 40px; white-space: nowrap; }
.marquee-item span {
    font-family: 'Playfair Display', serif; font-size: 15px;
    font-style: italic; color: #6B6560; letter-spacing: 1px;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--champagne); flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── Section Headers ─── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
    font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
    color: #7A746E; margin-bottom: 18px; font-weight: 500;
}
.section-title {
    font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 400; line-height: 1.2;
}
.section-title em { font-style: italic; color: #8A837C; }
.section-divider { width: 60px; height: 1px; background: var(--champagne); margin: 22px auto 0; }

/* ─── Bundles ─── */
.bundles-section { padding: 110px 0; }
.bundles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.bundle-card {
    background: var(--cream); border-radius: 20px; overflow: hidden;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent; position: relative;
}
.bundle-card:hover {
    transform: translateY(-6px); box-shadow: 0 24px 60px rgba(11,11,11,0.07);
    border-color: var(--taupe-light);
}
.bundle-card.featured { border-color: var(--champagne); }

.bundle-badge {
    position: absolute; top: 18px; left: 18px; background: var(--champagne);
    color: var(--noir); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 50px; font-weight: 500; z-index: 2;
}

.bundle-image {
    height: 340px;
    background: linear-gradient(160deg, var(--ivory-warm) 0%, var(--taupe-light) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.bundle-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bundle-card:hover .bundle-image img { transform: scale(1.05); }

.bundle-info { padding: 30px 28px 34px; text-align: center; }
.bundle-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 500; margin-bottom: 6px; }
.bundle-desc { font-size: 14px; color: #5A5550; margin-bottom: 8px; font-weight: 400; }
.bundle-specs { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #7A746E; margin-bottom: 18px; font-weight: 500; }
.bundle-detail {
    font-size: 14px; line-height: 1.75; color: #4A4540; font-weight: 300;
    margin-bottom: 20px;
}

/* ─── Mobile Slider ─── */
.mobile-slider { display: none; }

.slider-track {
    display: flex; gap: 16px; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding: 10px 0 30px;
}
.slider-track::-webkit-scrollbar { display: none; }

.slider-track .bundle-card,
.slider-track .testimonial-card {
    scroll-snap-align: center; flex-shrink: 0;
}

.slider-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 8px; }
.slider-dots { display: flex; justify-content: center; gap: 10px; }
.slider-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--taupe-light);
    border: none; cursor: pointer; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); padding: 0;
}
.slider-dot.active { background: var(--champagne); width: 28px; border-radius: 4px; }
.slider-counter {
    font-family: 'Playfair Display', serif; font-size: 14px; color: var(--taupe);
    letter-spacing: 1px; min-width: 50px; text-align: center;
}
.slider-counter .current { color: var(--noir); font-weight: 500; }

/* ─── Why Section ─── */
.why-section {
    background: var(--cream); padding: 110px 0;
    border-top: 1px solid var(--taupe-light); border-bottom: 1px solid var(--taupe-light);
}
.why-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-left { position: relative; }
.why-left-image {
    width: 100%; height: 560px; border-radius: 20px; overflow: hidden;
}
.why-left-image img {
    width: 100%; height: 100%; object-fit: cover;
}
.why-left-quote {
    position: absolute; bottom: -30px; right: -30px; background: var(--noir);
    color: var(--ivory); padding: 30px 34px; border-radius: 16px;
    max-width: 300px; box-shadow: 0 20px 50px rgba(11,11,11,0.12); z-index: 2;
}
.why-left-quote p {
    font-family: 'Cormorant Garamond', serif; font-size: 18px;
    font-style: italic; line-height: 1.6; margin-bottom: 12px;
}
.why-left-quote cite {
    font-style: normal; font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--champagne); font-weight: 400;
}
.why-right { display: flex; flex-direction: column; gap: 0; }
.why-item {
    display: grid; grid-template-columns: auto 1fr; gap: 24px;
    padding: 32px 0; border-bottom: 1px solid var(--taupe-light);
    position: relative;
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-number {
    font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 400;
    color: var(--taupe-light); line-height: 1; min-width: 52px;
}
.why-content { display: flex; flex-direction: column; justify-content: center; }
.why-title {
    font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500;
    margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
}
.why-title-icon { font-size: 14px; color: var(--champagne); }
.why-desc { font-size: 14px; line-height: 1.75; color: #4A4540; font-weight: 300; }

/* ─── Testimonials ─── */
.testimonials-section { padding: 110px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.testimonial-card {
    background: var(--cream); border-radius: 20px; padding: 38px 32px;
    border: 1px solid var(--taupe-light); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
}
.testimonial-card:hover {
    box-shadow: 0 16px 50px rgba(11,11,11,0.07);
    transform: translateY(-4px); border-color: var(--champagne);
}
.testimonial-quote-icon {
    font-family: 'Playfair Display', serif; font-size: 64px; line-height: 1;
    color: var(--taupe-light); position: absolute; top: 24px; right: 28px;
    opacity: 0.5; transition: all 0.35s ease;
}
.testimonial-card:hover .testimonial-quote-icon { color: var(--champagne); opacity: 0.7; }
.testimonial-stars { color: var(--champagne); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-text {
    font-family: 'Cormorant Garamond', serif; font-size: 19px; line-height: 1.7;
    font-style: italic; font-weight: 400; color: #2D2926; margin-bottom: 20px;
    position: relative; z-index: 1;
}
.testimonial-product {
    display: inline-block; font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase;
    color: #7A746E; background: var(--ivory); padding: 5px 14px; border-radius: 50px;
    margin-bottom: 22px; font-weight: 400;
}
.testimonial-footer { display: flex; align-items: center; justify-content: space-between; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--champagne), var(--taupe));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 17px;
    color: white; font-weight: 500; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 500; letter-spacing: 0.5px; }
.testimonial-verified {
    font-size: 11px; color: #7A746E; letter-spacing: 1px; font-weight: 400;
    display: flex; align-items: center; gap: 4px;
}
.testimonial-verified::before {
    content: ''; display: inline-block; width: 12px; height: 12px; border-radius: 50%;
    background: var(--champagne); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%230B0B0B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 7px; background-repeat: no-repeat; background-position: center;
    flex-shrink: 0;
}
.testimonial-date { font-size: 12px; color: var(--taupe); font-weight: 300; }

/* ─── CTA ─── */
.cta-section {
    padding: 100px 0; background: var(--noir); color: var(--ivory);
    text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(214,195,163,0.08) 0%, transparent 70%);
}
.cta-section .section-title { color: var(--ivory); position: relative; }
.cta-section .section-eyebrow { color: var(--champagne); position: relative; font-weight: 500; }
.cta-desc {
    font-size: 16px; color: #D4CEC7; max-width: 500px; margin: 24px auto 40px;
    font-weight: 300; line-height: 1.75; position: relative;
}
.cta-form { position: relative; max-width: 560px; margin: 0 auto; }
.cta-input-group {
    display: flex; gap: 0; border-radius: 50px; overflow: hidden;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(214,195,163,0.2);
}
.cta-input {
    flex: 1; background: transparent; border: none; outline: none;
    padding: 16px 28px; color: var(--ivory); font-family: 'Jost', sans-serif;
    font-size: 14px; font-weight: 300; letter-spacing: 0.5px;
}
.cta-input::placeholder { color: #9A948E; }
.cta-submit-btn { border-radius: 50px; flex-shrink: 0; padding: 16px 32px; font-size: 12px; position: relative; }
.cta-privacy {
    font-size: 12px; color: rgba(212,206,199,0.7); margin-top: 16px;
    font-weight: 300; letter-spacing: 0.3px;
}

/* ─── Footer ─── */
.footer { background: var(--cream); border-top: 1px solid var(--taupe-light); padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand .logo { font-size: 24px; margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 14px; color: #4A4540; line-height: 1.75; font-weight: 300; max-width: 280px; }
.footer-col h4 { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 22px; font-weight: 500; }
.footer-col a { display: block; font-size: 14px; color: #5A5550; text-decoration: none; margin-bottom: 12px; font-weight: 300; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--noir); }
.footer-bottom { border-top: 1px solid var(--taupe-light); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: #7A746E; letter-spacing: 1px; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: #5A5550; text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s ease; }
.footer-socials a:hover { color: var(--noir); }

/* ─── Animations ─── */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════ TABLET ═══════════════════ */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .hero { grid-template-columns: 1fr; min-height: auto; gap: 40px; padding: 50px 0 70px; }
    .hero-content { text-align: center; padding-right: 0; order: 1; }
    .hero-eyebrow { justify-content: center; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-ctas { justify-content: center; }
    .hero-image-wrapper { order: 0; max-width: 400px; margin: 0 auto; width: 100%; }
    .hero-image { height: 440px; border-radius: 200px 200px 16px 16px; }
    .hero-float-badge { bottom: 30px; left: 50%; transform: translateX(-50%); }
    .bundles-grid { grid-template-columns: repeat(2, 1fr); }
    .why-layout { grid-template-columns: 1fr 1fr; gap: 50px; }
    .why-left-image { height: 440px; }
    .why-left-quote { right: -20px; bottom: -20px; max-width: 260px; padding: 24px 28px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════ MOBILE ═══════════════════ */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .announcement { font-size: 9.5px; letter-spacing: 1.8px; padding: 10px 16px; }
    nav { display: none; }
    .mobile-menu-btn { display: block; }
    .header { padding: 16px 0; }
    .logo { font-size: 22px; letter-spacing: 3px; }

    /* Hero Mobile */
    .hero { grid-template-columns: 1fr; min-height: auto; gap: 32px; padding: 32px 0 50px; }
    .hero-content { text-align: center; padding: 0; order: 1; }
    .hero-eyebrow { justify-content: center; font-size: 10px; letter-spacing: 3px; margin-bottom: 20px; }
    .hero h1 { font-size: 32px; margin-bottom: 20px; line-height: 1.18; }
    .hero h1 br { display: none; }
    .hero-desc { font-size: 14.5px; margin: 0 auto 32px; max-width: 340px; }
    .hero-ctas { flex-direction: column; align-items: center; gap: 14px; }
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; max-width: 280px; padding: 15px 36px; }

    .hero-image-wrapper { order: 0; max-width: 280px; margin: 0 auto; width: 100%; }
    .hero-image { height: 340px; border-radius: 150px 150px 16px 16px; }
    .hero-float-badge {
        bottom: -16px; left: 50%; transform: translateX(-50%);
        padding: 14px 20px; border-radius: 12px; gap: 10px; white-space: nowrap;
    }
    .badge-stars { font-size: 12px; }
    .badge-text { font-size: 12px; }
    .badge-text strong { font-size: 12px; }

    /* Sections */
    .bundles-section { padding: 70px 0; }
    .why-section { padding: 70px 0; }
    .testimonials-section { padding: 70px 0; }
    .cta-section { padding: 70px 0; }
    .section-header { margin-bottom: 36px; }

    /* Bundles → Center Slider */
    .bundles-grid.desktop-grid { display: none; }
    .mobile-slider.bundles-slider { display: block; }
    .bundles-slider .slider-track { padding: 10px 28px 30px; gap: 14px; }
    .bundles-slider .bundle-card {
        width: 280px; min-width: 280px;
        transform: scale(0.9); opacity: 0.5;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }
    .bundles-slider .bundle-card.center-active { transform: scale(1); opacity: 1; }
    .bundles-slider .bundle-image { height: 260px; }
    .bundles-slider .bundle-info { padding: 22px 20px 28px; }
    .bundles-slider .bundle-name { font-size: 19px; }
    .bundles-slider .bundle-detail { font-size: 12.5px; margin-bottom: 16px; }

    /* Testimonials → Slider */
    .testimonials-grid.desktop-grid { display: none; }
    .mobile-slider.testimonials-slider { display: block; }
    .testimonials-slider .slider-track { padding: 20px 28px 36px; gap: 16px; }
    .testimonials-slider .testimonial-card {
        width: 310px; min-width: 310px;
        transform: scale(0.88); opacity: 0.4; filter: blur(1px);
        transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
                    opacity 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
                    filter 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
                    border-color 0.5s ease, box-shadow 0.5s ease;
        border-color: transparent;
    }
    .testimonials-slider .testimonial-card.center-active {
        transform: scale(1); opacity: 1; filter: blur(0);
        border-color: var(--champagne);
        box-shadow: 0 16px 50px rgba(11,11,11,0.1);
    }
    .testimonials-slider .testimonial-card .testimonial-quote-icon {
        opacity: 0; transition: opacity 0.5s ease;
    }
    .testimonials-slider .testimonial-card.center-active .testimonial-quote-icon {
        opacity: 0.6;
    }
    .testimonials-slider .testimonial-text { font-size: 17px; }
    .testimonials-slider .testimonial-product { font-size: 10px; padding: 4px 12px; }
    .testimonials-slider .testimonial-date { display: none; }

    /* Why */
    .why-layout { grid-template-columns: 1fr; gap: 50px; }
    .why-left-image { height: 360px; border-radius: 16px; }
    .why-left-quote {
        position: relative; bottom: auto; right: auto;
        margin: -40px 20px 0; border-radius: 14px; padding: 24px 26px;
    }
    .why-left-quote p { font-size: 16px; }
    .why-item { gap: 18px; padding: 24px 0; }
    .why-number { font-size: 34px; min-width: 42px; }
    .why-title { font-size: 18px; }
    .why-desc { font-size: 13px; }

    /* CTA */
    .cta-desc { font-size: 14px; }
    .cta-input-group { flex-direction: column; border-radius: 16px; }
    .cta-input { padding: 16px 24px; text-align: center; }
    .cta-submit-btn { border-radius: 0 0 16px 16px; width: 100%; padding: 16px; }
    .cta-privacy { font-size: 12px; }

    /* Footer */
    .footer { padding: 50px 0 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 40px; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ═══════════════════ SMALL PHONES ═══════════════════ */
@media (max-width: 380px) {
    .hero h1 { font-size: 28px; }
    .hero-image-wrapper { max-width: 240px; }
    .hero-image { height: 280px; border-radius: 130px 130px 14px 14px; }
    .bundles-slider .bundle-card { width: 250px; min-width: 250px; }
    .testimonials-slider .testimonial-card { width: 275px; min-width: 275px; }
    .testimonials-slider .testimonial-text { font-size: 16px; }
}
