/* ═══════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════ */
*, *::before, *::after { cursor: none !important; }

.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: #FF6800;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 34px; height: 34px;
    border: 1.5px solid rgba(255, 104, 0, 0.55);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.28s ease, height 0.28s ease,
                background-color 0.28s ease, border-color 0.28s ease;
}

.cursor-ring.hovering {
    width: 58px; height: 58px;
    background-color: rgba(255, 104, 0, 0.07);
    border-color: #FF6800;
}

/* ═══════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════ */
.scroll-progress-bar {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #FF6800 0%, #ffaa44 100%);
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 9999;
    box-shadow: 0 0 14px rgba(255, 104, 0, 0.7);
}

/* ═══════════════════════════════════════════════
   STICKY NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
    transition: background 0.35s ease, border-color 0.35s ease,
                box-shadow 0.35s ease, border-radius 0.35s ease,
                top 0.35s ease, width 0.35s ease, padding 0.35s ease;
}

.navbar.is-sticky {
    position: fixed !important;
    top: 16px !important;
    width: calc(100% - 80px) !important;
    max-width: 1360px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(10, 10, 10, 0.75) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    padding: 0 32px !important;
    z-index: 1000 !important;
}

/* ═══════════════════════════════════════════════
   HERO LINE REVEAL
   ═══════════════════════════════════════════════ */
.reveal-line {
    display: block;
    overflow: hidden;
    line-height: 1.1;
}

.reveal-line-inner {
    display: block;
}

/* ═══════════════════════════════════════════════
   SHIMMER GRADIENT ON HIGHLIGHT TEXT
   ═══════════════════════════════════════════════ */
.headline .highlight {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-align: inherit;
    background: linear-gradient(
        90deg,
        #FF6800 0%, #ffaa44 25%,
        #FF4400 50%, #ff8800 75%, #FF6800 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-sweep 2.8s linear infinite;
}

@keyframes shimmer-sweep {
    from { background-position: 0% center; }
    to   { background-position: 250% center; }
}

/* ═══════════════════════════════════════════════
   CTA BUTTON GLOW RING
   ═══════════════════════════════════════════════ */
.cta-btn {
    position: relative;
    overflow: visible;
}

.cta-btn::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50px;
    border: 2px solid rgba(255, 104, 0, 0.35);
    animation: cta-pulse 2.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cta-pulse {
    0%, 100% { opacity: 0;   transform: scale(1);    }
    50%       { opacity: 1;   transform: scale(1.06); }
}

/* ═══════════════════════════════════════════════
   FLOATING KEYFRAMES
   ═══════════════════════════════════════════════ */
@keyframes float-bob {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-18px); }
}

@keyframes float-tilt {
    0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
    50%       { transform: translateY(-14px) rotate(1.5deg); }
}

/* ═══════════════════════════════════════════════
   HERO SECTION RADIAL GLOW
   ═══════════════════════════════════════════════ */
.hero-section {
    background: radial-gradient(
        ellipse 80% 50% at 50% 0%,
        rgba(255, 104, 0, 0.09) 0%,
        transparent 60%
    ), #000;
}

/* ═══════════════════════════════════════════════
   3D CARD TILT
   ═══════════════════════════════════════════════ */
.universal-card,
.testimonial-card {
    transform-style: preserve-3d;
}

.universal-card {
    transition: box-shadow 0.4s ease;
}

.universal-card:hover {
    box-shadow: 0 28px 56px rgba(0,0,0,0.5),
                0 0 0 1px rgba(255, 104, 0, 0.18) !important;
}

.testimonial-card {
    transition: box-shadow 0.4s ease;
}

.testimonial-card:hover {
    box-shadow: 0 24px 48px rgba(0,0,0,0.5) !important;
}

/* ═══════════════════════════════════════════════
   SPOTLIGHT LAYER (offer + pre-footer)
   ═══════════════════════════════════════════════ */
.spotlight-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    background: radial-gradient(
        700px circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 104, 0, 0.13) 0%,
        transparent 60%
    );
}

.has-spotlight:hover .spotlight-layer { opacity: 1; }

/* ═══════════════════════════════════════════════
   FEATURE PANELS HORIZONTAL TRACK
   ═══════════════════════════════════════════════ */

/* Height is set by JS: section height + horizontal scroll distance */
.features-scroll-wrapper {
    position: relative;
    width: 100%;
}

/* CSS sticky replaces GSAP pin — works in any flex/grid layout */
.detailed-features {
     top: -150px;
    position: sticky;
    overflow: hidden;
    z-index: 1;
}

.feature-panels-track {
    display: flex;
    will-change: transform;
}

.detailed-features .feature-panel {
    display: flex !important;      /* Override show/hide; track handles it */
    flex-shrink: 0;
    width: 100%;                   /* Set by JS to container width */
    height: 664px;
}

/* ═══════════════════════════════════════════════
   SMART CHARGING SECTION AMBIENT PULSE
   ═══════════════════════════════════════════════ */
.smart-charging-section {
    position: relative;
}

.smart-charging-section::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 48px;
    background: radial-gradient(
        circle at 70% 60%,
        rgba(255, 104, 0, 0.06) 0%,
        transparent 65%
    );
    pointer-events: none;
    animation: ambient-pulse 5s ease-in-out infinite;
}

@keyframes ambient-pulse {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1;   }
}

/* ═══════════════════════════════════════════════
   WILL-CHANGE for animated elements
   ═══════════════════════════════════════════════ */
.feature-main-image,
.universal-card,
.works-img,
.moment-img,
.testimonial-card,
.pre-footer-banner,
.offer-charger-img,
.faq-charger-img {
    will-change: transform, opacity;
}

:root {
    --bg-color: #000000;
    --text-primary: #FFFFFF;
    --text-secondary: #D1D5DB;
    --brand-orange: #FF6B00;
    --card-border: #4A2500;
    --card-bg-gradient: linear-gradient(180deg, rgba(255, 107, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    --font-family: 'Inter', sans-serif;
}

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

html, body {
    overflow-x: clip;
    width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Navbar Section */
.navbar {
    width: 1440px;
    max-width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    background-color: transparent;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 24px;
    width: auto;
}

/* Specific styling for the Navbar's CTA button based on Figma */
.navbar .nav-btn {
    width: 139px !important;
    height: 42px !important;
    border-radius: 100px !important;
    padding-top: 12px;
    padding-right: 20px;
    padding-bottom: 12px;
    padding-left: 20px;
    gap: 10px;
    opacity: 1;
    background: #FF6800 !important;
    color: #FFFFFF !important;
    border: none;
    font-weight: 700;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar .nav-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.hero-section {
    width: 1440px;
    height: 944px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-container {
    width: 713px;
    height: 468px;
    position: absolute;
    top: 130px;
    left: 364px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
    z-index: 2;
}

.headline {
    font-family: 'Clash Display', sans-serif;
    font-size: 68px;
    line-height: 74px;
    font-weight: 500;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 24px;
}

.highlight {
    color: var(--brand-orange);
    font-family: 'Clash Display', sans-serif;
    font-size: 68px;
    line-height: 74px;
    font-weight: 500;
    letter-spacing: 0%;
    text-align: center;
}

.subheadline {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    line-height: 32px;
    color: #FFFFFFCC;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0%;
    margin-bottom: 48px;
    width: 100%;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.cta-btn {
    background-color: var(--brand-orange);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    font-family: inherit;
}

.cta-btn:hover {
    transform: translateY(-2px);
    background-color: #e66000;
}

.warranty {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.offer-card {
    width: 291px;
    height: 115px;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 15px 20px 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--card-bg-gradient);
    backdrop-filter: blur(10px);
}

.price-block {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mrp-box,
.best-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.label {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 500;
}

.mrp-value {
    font-size: 16px;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 600;
}

.vertical-divider {
    width: 1px;
    height: 40px;
    background-color: #333;
}

.best-price-value {
    font-size: 20px;
    color: var(--brand-orange);
    font-weight: 700;
}

.card-separator {
    width: 1px;
    height: 60px;
    background-color: #333;
}

.gift-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gift-img-placeholder img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.gift-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
}

.gift-badge {
    background-color: var(--brand-orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

.gift-name {
    font-size: 14px;
    color: #F3F4F6;
    line-height: 1.3;
    font-weight: 500;
}

.gift-value {
    font-size: 12px;
    color: var(--brand-orange);
    font-weight: 600;
}

.bottom-graphic {
    width: 170px;
    height: 100px;
    margin-top: 50px;
    z-index: 10;
    position: relative;
    cursor: pointer;
}

/* ── Play hint ── */
.video-play-hint {
    position: absolute;
    inset: 0;
    border-radius: 44px;
    background: rgba(0, 0, 0, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-graphic:hover .video-play-hint {
    opacity: 1;
}

.video-play-hint svg {
    width: 30px;
    height: 30px;
    color: #fff;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6));
}

/* Pulse ring around the video thumbnail (always visible) */
.video-pulse-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 104, 0, 0.55);
    pointer-events: none;
    animation: vid-ring-pulse 2.4s ease-in-out infinite;
}

@keyframes vid-ring-pulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%       { opacity: 0.15; transform: scale(1.06); }
}

/* ── Lightbox overlay ── */
.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: clip-path;
}

.video-lightbox video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease;
    z-index: 1;
}

.video-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
}

.device-video {
    width: 170px;
    height: 100px;
    border-radius: 44px;
    object-fit: cover;
}

/* Promo Banner */
.promo-banner {
    width: 1440px;
    height: 62px;
    position: absolute;
    top: 882px;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 80px;
    padding-right: 80px;
    background: linear-gradient(90deg, #FF6B00 0%, #a63f00 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    color: #FFFFFF;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: #FFFFFFE5;
}

.promo-text strong {
    font-weight: 800;
}

.timer-pill {
    width: 226px;
    height: 34px;
    background: #00000066;
    border-radius: 10px;
    padding-top: 4px;
    padding-right: 10px;
    padding-bottom: 4px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFFE5;
    font-weight: 200;
}

.timer-value {
    font-weight: 600;
}

.timer-label {
    font-weight: 200;
    font-size: 16px;
    color: #FFFFFFE5;
}

/* Feature Section 1 */
.feature-section {
    width: 1440px;
    max-width: 100%;
    height: 944px;
    background: #000000;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    margin: 0 auto;
}

.feature-text-content {
    text-align: center;
    margin-bottom: 60px;
    z-index: 2;
}

.feature-headline {
    font-family: 'Clash Display', sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.feature-subheadline {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #FFFFFFCC;
}

.feature-image-container {
    width: 100%;
    flex-grow: 1;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.feature-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Image already has the fade baked in */
}

.feature-image-text {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.feature-image-text h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
}

/* Smart Charging Section */
.smart-charging-section {
    width: 1240px;
    height: 620px;
    max-width: calc(100% - 40px);
    margin: 58px auto 60px;
    border-radius: 48px;
    border: 1px solid rgba(221, 221, 221, 0.2);
    background-image: url('assets/images/smartflick(9).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 295px 630px 153px 70px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.badge-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: block;
}

.smart-charging-headline {
    font-family: 'Clash Display', sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    color: #FFFFFF;
}

/* Detailed Features Section */
.detailed-features {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.features-header {
    height: 346px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
    text-align: center;
}

.features-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.features-header p {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
}

.features-tabs {
    display: flex;
    align-items: center;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 6px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 40px;
    border-radius: 32px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.tab-btn.active {
    background: #333333;
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

.feature-panel {
    width: 100%;
    height: 664px;
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-panel.active {
    display: flex;
}

.panel-bg-img {
    position: absolute;
    z-index: 1;
    object-fit: contain;
}

.panel-1 .panel-bg-img {
    width: 866px;
    height: 664px;
    top: 0;
    left: -80px;
}

.panel-1-rect {
    position: absolute;
    width: 300px;
    height: 1181.74px;
    top: -220px;
    left: 220px;
    transform: rotate(36.84deg);
    background-color: #F89361;
    z-index: 0;
}

.panel-2 .panel-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.panel-3 .panel-bg-img {
    width: 909.4px;
    height: 492px;
    top: 147px;
    left: -180px;
}

.panel-3-rect {
    position: absolute;
    width: 300px;
    height: 1181.74px;
    top: -220px;
    left: 220px;
    transform: rotate(36.84deg);
    background-color: #F89361;
    z-index: 0;
}

.panel-4 .panel-bg-img {
    width: 1089px;
    height: 611px;
    top: -13px;
    left: 560px;
}

.panel-4-rect {
    position: absolute;
    width: 300px;
    height: 1181.74px;
    top: -220px;
    left: 960px;
    transform: rotate(-36.84deg);
    background-color: #F89361;
    z-index: 0;
}

.panel-text-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    z-index: 2;
    color: #FFFFFF;
}

.panel-text-content.right-align {
    right: 80px;
}

.panel-text-content.left-align {
    left: 80px;
}

.panel-text-content.dark-text {
    color: #111111;
}

.panel-text-content h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}

.panel-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.panel-features {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.panel-features.multi-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.divider {
    opacity: 0.5;
}

.panel-btn {
    background: #FFFFFF;
    color: #000000;
    border: none;
    border-radius: 24px;
    padding: 10px 24px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    transition: transform 0.2s;
}

.panel-btn:hover {
    transform: translateY(-2px);
}

/* Universal Section */
.universal-section {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000000;
    color: #FFFFFF;
}

.universal-header {
    text-align: center;
    margin-bottom: 64px;
}

.universal-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
}

.universal-header p {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.universal-banner {
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    background: linear-gradient(180deg, #303130 0%, #5B5B5A 100%);
}

.banner-text {
    position: absolute;
    top: 80px;
    left: 120px;
    z-index: 2;
}

.banner-text h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.banner-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.universal-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.universal-cards-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: 1240px;
}

.universal-card {
    background: #1E1E1E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    width: 280px;
    height: 380px;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.card-text h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.card-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.universal-card img {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 85%;
    max-height: 200px;
    object-fit: contain;
}

.panel-1 {
    background: #EB6F39;
}

.panel-2 {
    background: #1A1A1A;
    /* Placeholder for dark background */
}

.panel-3 {
    background: #EB6F39;
}

.panel-4 {
    background: #E5E5E5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .headline {
        font-size: 40px;
    }

    .offer-card {
        flex-direction: column;
        gap: 20px;
    }

    .card-separator {
        width: 100%;
        height: 1px;
    }

    .cta-container {
        flex-direction: column;
    }

    .hero-section {
        height: auto;
        padding: 80px 20px;
    }
}

/* Navbar Styles */
.navbar {
    width: 1440px;
    max-width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
}

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

.nav-btn {
    background-color: var(--brand-orange);
    color: #FFFFFF;
    border: none;
    border-radius: 40px;
    padding: 12px 24px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    background-color: #e66000;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
}

/* Moment Section */
.moment-section-wrapper {
    width: 100%;
    background-color: #0F0F0F;
    display: flex;
    justify-content: center;
    padding-top: 100px; /* Provides space above the rounded corners */
}

.moment-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background: linear-gradient(180deg, #000000 0%, #0F0F0F 100%);
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.moment-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 1240px;
}

.moment-text-block {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 653px;
}

.moment-heading {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 58px;
    line-height: 100%;
    color: #FFFFFF;
}

.moment-subheading {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.8);
}

.moment-image-block {
    display: flex;
    gap: 34px;
    width: 100%;
}

.moment-img {
    width: 603px;
    height: 603px;
    border-radius: 34px;
    object-fit: cover;
}

/* How Snapo Works Section */
.how-it-works-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.works-heading {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 58px;
    line-height: 100%;
    color: #FFFFFF;
    text-align: center;
}

.works-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 1240px;
}

.works-step {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 400px;
}

.works-img {
    width: 400px;
    height: 360px;
    border-radius: 24px;
    object-fit: cover;
    background-color: #1A1A1A;
}

.works-step-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.8);
}

.works-step-text strong {
    font-weight: 700;
    color: #FFFFFF;
}

/* Protection Section */
.protection-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0F0F0F 0%, #000000 100%);
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.protection-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    width: 706px;
    text-align: center;
}

.protection-heading {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 58px;
    line-height: 100%;
    color: #FFFFFF;
}

.protection-subheading {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.8);
}

.protection-image-wrapper {
    width: 1440px;
    height: 515px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.protection-image {
    width: 1440px;
    height: 560px; /* Slightly taller to allow cropping */
    object-fit: cover;
    margin-top: -45px; /* Pushes the image up to hide the top red text */
}

.protection-bottom-text {
    width: 100%;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #FFFFFF;
}

/* Testimonial Section */
.testimonial-section {
    width: 100%;
    background-color: #0F0F0F;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    overflow: hidden;
}

.testimonial-heading {
    width: 1240px;
    text-align: center;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 57px;
    line-height: 100%;
    color: #FFFFFF;
}

.testimonial-container {
    width: 1240px;
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
    width: 459px;
    height: 585px;
    flex-shrink: 0;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.06);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card.video-card {
    padding: 0;
    position: relative;
    border: none;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 28px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 145.45px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(36.36px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.testimonial-content-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.user-avatar-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.user-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #FFFFFF;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
}

.testimonial-author span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-controls {
    display: flex;
    gap: 16px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn svg, .nav-btn svg path {
    width: 24px;
    height: 24px;
    stroke: #000000;
    fill: none;
}

.nav-btn.inactive {
    background-color: #333333;
   
}

.nav-btn.inactive svg, .nav-btn.inactive svg path {
    stroke: #FFFFFF !important;
}

.nav-btn.active {
    background-color: #FFFFFF;
}

.nav-btn.active svg, .nav-btn.active svg path {
    stroke: #000000 !important;
}

/* Offer Section */
.offer-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 100px;
    display: flex;
    justify-content: center;
}

.offer-container {
    width: 1240px;
    height: 609px;
    border-radius: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-image: url('assets/images/smartflick(19).png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.offer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 583px;
    position: absolute;
    top: 47px;
    left: 64px;
    z-index: 2;
}

.offer-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
}

.offer-content h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 68px;
    line-height: 80px;
    color: #FFFFFF;
}

.offer-description {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.offer-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.buy-at {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #9CA3AF;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.current-price {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #FFFFFF;
    line-height: 1;
}

.mrp {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.offer-gift-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #FF6800;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
    width: fit-content;
}

.offer-gift-pill span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
}

.offer-gift-pill strong {
    font-weight: 700;
}

.offer-btn {
    background: #FF6800;
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: fit-content;
    transition: transform 0.2s;
}

.offer-btn:hover {
    transform: translateY(-2px);
    background: #e65c00;
}

.offer-charger-img {
    position: absolute;
    width: 700px;
    height: 350px;
    top: 140px;
    left: 400px;
    z-index: 1;
}

/* FAQ entrance animation (IntersectionObserver toggles faq-pre-animate class) */
.faq-section.faq-pre-animate .faq-heading {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.faq-section.faq-pre-animate .faq-charger-img {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}

.faq-section.faq-pre-animate .faq-right .faq-item:nth-child(1) {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease 0s, transform 0.7s ease 0s;
}
.faq-section.faq-pre-animate .faq-right .faq-item:nth-child(2) {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease 0.13s, transform 0.7s ease 0.13s;
}
.faq-section.faq-pre-animate .faq-right .faq-item:nth-child(3) {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease 0.26s, transform 0.7s ease 0.26s;
}
.faq-section.faq-pre-animate .faq-right .faq-item:nth-child(4) {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease 0.39s, transform 0.7s ease 0.39s;
}

/* FAQ Section */
.faq-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px;
    background-color: #000000;
}

.faq-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.faq-heading {
    width: 510px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 58px;
    line-height: 1;
    color: #FFFFFF;
}

.faq-image-wrapper {
    position: relative;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-glow {
    position: absolute;
    width: 369px;
    height: 358px;
    background-color: rgba(255, 102, 0, 0.425); /* #FF6800 18% */
    filter: blur(240px);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    z-index: 0;
    pointer-events: none;
}

.faq-charger-img {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: 500px;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 634px;
}

.faq-item {
    background-color: #131313;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.faq-question span {
    width: 568px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-answer {
    width: 568px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 12px;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

/* Pre-Footer Banner */
.pre-footer-banner {
    width: 1240px;
    height: 620px;
    border-radius: 54px;
    background-image: url('assets/images/smartflick(20).png');
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 80px auto;
    overflow: hidden;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 583px;
    position: absolute;
    top: 181px;
    left: 71px;
    z-index: 2;
}

.banner-content h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: 0px;
}

.banner-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 500;
}

.banner-pricing {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.6;
}

.banner-btn {
    width: fit-content;
    background-color: #FFFFFF;
    color: #000000;
    padding: 16px 32px;
    border-radius: 40px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.banner-btn:hover {
    transform: translateY(-2px);
    background-color: #f3f4f6;
}

/* =========================================
   FOOTER SECTION (Pixel Perfect)
   ========================================= */
.site-footer {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 80px 100px 34px 100px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    font-family: 'Clash Display', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1240px;
    position: relative;
    z-index: 2;
}

.site-footer p, .site-footer a, .site-footer span, .site-footer li {
    font-family: 'DM Sans', sans-serif;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 1.6;
}

/* Col 1: Brand */
.brand-col {
    width: 298px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: block;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.brand-subtitle {
    color: #9CA3AF !important;
    font-size: 10px !important;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-details p {
    font-size: 10px !important;
    color: #9CA3AF !important;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #222;
    border-radius: 50%;
    color: #FFFFFF;
    transition: background-color 0.2s;
}

.social-icons a:hover {
    background-color: var(--brand-orange);
}

.social-icons img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* Middle Group */
.footer-middle-group {
    display: flex;
    width: 799px;
    gap: 40px;
}

/* Cols 2 & 3: Links */
.links-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    white-space: nowrap;
}

.links-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
}

.links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.links-col a {
    color: #9CA3AF !important;
    font-size: 11px !important;
    font-weight: 500;
    transition: color 0.2s;
}

.links-col a:hover {
    color: #FFFFFF !important;
}

/* Col 4: Trust */
.trust-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 459px;
}

.trust-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.trust-badges {
    display: flex;
    gap: 16px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.badge-item img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.badge-item span {
    font-size: 10px !important;
    color: #FFFFFF !important;
    line-height: 1.2 !important;
    font-weight: 500;
}

.rating-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    color: var(--brand-orange);
    letter-spacing: 2px;
    font-size: 14px;
}

.score-text {
    display: flex;
    align-items: center;
    gap: 6px;
}

.google-icon {
    height: 16px;
    width: auto;
    margin-top: 1px;
}

.score {
    font-weight: 700;
    font-size: 12px !important;
}

.happy-customers {
    font-size: 10px !important;
    color: #9CA3AF !important;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -8px;
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

.social-proof p {
    font-size: 10px !important;
    color: #9CA3AF !important;
    line-height: 1.4 !important;
}

/* Col 5: Image */
.image-col {
    position: relative;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-product-image {
    width: 350px !important;
    height: 600px !important;
    position: absolute;
    top: -200px;
    right: 50;
    z-index: 10;
    object-fit: contain;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1240px;
    max-width: 100%;
    border-top: 1.5px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 10px !important;
    color: #9CA3AF !important;
    font-weight: 500;
}

.footer-bottom .slogan {
    font-weight: 500;
}

@media (max-width: 1024px) {
    .site-footer {
        padding: 40px 20px;
        height: auto;
    }
    .footer-top {
        flex-wrap: wrap;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .image-col {
        width: 100%;
        height: 200px;
    }
    .footer-product-image {
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        object-fit: contain;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    /* Cursor — hide on touch devices */
    .cursor-dot, .cursor-ring { display: none; }
    *, *::before, *::after { cursor: auto !important; }

    /* ── NAVBAR ── */
    .navbar { padding: 0 32px; }
    .navbar.is-sticky { width: calc(100% - 48px) !important; }

    /* ── HERO ── */
    .hero-section { height: auto; min-height: 100svh; }
    .hero-container {
        position: relative;
        top: auto; left: auto;
        width: 100%;
        height: auto;
        padding: 100px 40px 48px;
    }
    .headline { font-size: 52px; line-height: 60px; }
    .subheadline { font-size: 18px; }
    .promo-banner {
        position: relative;
        top: auto; left: auto;
        transform: none;
        width: 100%;
        height: auto;
        min-height: 62px;
        padding: 14px 32px;
    }

    /* ── FEATURE ── */
    .feature-section { height: auto; min-height: 600px; padding-top: 80px; }
    .feature-headline { font-size: 44px; }
    .feature-image-text { right: 40px; }
    .feature-image-text h3 { font-size: 40px; }

    /* ── SMART CHARGING ── */
    .smart-charging-section {
        height: auto; min-height: 400px;
        padding: 180px 40px 80px 50px;
    }
    .smart-charging-headline { font-size: 44px; }

    /* ── DETAILED FEATURES ── */
    .features-header { height: auto; padding: 60px 40px 28px; }
    .features-header h2 { font-size: 40px; }
    .tab-btn { padding: 10px 22px; font-size: 12px; }
    .detailed-features .feature-panel { height: 520px; }
    .panel-text-content { width: 360px; }
    .panel-text-content h2 { font-size: 36px; }
    .panel-text-content.right-align { right: 40px; }
    .panel-text-content.left-align { left: 40px; }

    /* ── UNIVERSAL ── */
    .universal-section { padding: 80px 40px; }
    .universal-header h2 { font-size: 40px; }
    .universal-cards-container { flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 100%; }
    .universal-card { width: 240px; height: 340px; }

    /* ── HOW IT WORKS ── */
    .works-heading { font-size: 48px; }
    .works-container { width: 100%; padding: 0 32px; gap: 16px; justify-content: center; }
    .works-step { width: 300px; }
    .works-img { width: 300px; height: 270px; }

    /* ── PROTECTION ── */
    .protection-heading { font-size: 48px; }
    .protection-text-block { width: 90%; }
    .protection-image-wrapper { width: 100%; }
    .protection-image { width: 100%; height: auto; }

    /* ── MOMENT ── */
    .moment-section { padding: 60px 40px; border-top-left-radius: 60px; border-top-right-radius: 60px; }
    .moment-container { width: 100%; }
    .moment-text-block { width: 100%; }
    .moment-heading { font-size: 44px; }
    .moment-image-block { gap: 20px; }
    .moment-img { width: calc(50% - 10px); height: auto; aspect-ratio: 1 / 1; }

    /* ── TESTIMONIALS ── */
    .testimonial-heading { width: 90%; font-size: 44px; }
    .testimonial-container { width: calc(100% - 64px); }

    /* ── OFFER ── */
    .offer-section { padding: 60px 20px; }
    .offer-container { width: 100%; height: auto; border-radius: 28px; }
    .offer-content { width: 55%; }
    .offer-content h2 { font-size: 48px; line-height: 56px; }
    .offer-charger-img { width: 46%; left: auto; right: -20px; height: auto; top: 50%; transform: translateY(-50%); }

    /* ── FAQ ── */
    .faq-section { padding: 80px 40px; gap: 40px; }
    .faq-heading { font-size: 44px; width: auto; }
    .faq-right { width: 100%; max-width: 560px; }
    .faq-question span { width: auto; }
    .faq-answer { width: auto; }

    /* ── PRE-FOOTER BANNER ── */
    .pre-footer-banner { width: calc(100% - 40px); border-radius: 36px; }
    .banner-content { width: 65%; }
    .banner-content h2 { font-size: 44px; }

    /* ── FOOTER ── */
    .footer-middle-group { width: auto; flex-wrap: wrap; }
    .trust-col { width: auto; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Cursor — never show on touch */
    .cursor-dot, .cursor-ring { display: none; }
    *, *::before, *::after { cursor: auto !important; }

    /* ──────────────────────────────
       NAVBAR
    ────────────────────────────── */
    .navbar {
        position: fixed !important;
        top: 0 !important; left: 0 !important;
        width: 100% !important;
        padding: 0 20px !important;
        height: 60px !important;
        background: rgba(0, 0, 0, 0.88) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        transform: none !important;
        border-radius: 0 !important;
        z-index: 1000 !important;
    }
    .navbar.is-sticky {
        top: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        padding: 0 20px !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
    }
    .navbar .nav-btn {
        width: auto !important;
        height: 36px !important;
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
    .nav-logo { height: 22px; }

    /* ──────────────────────────────
       HERO
    ────────────────────────────── */
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 0;
        overflow: visible;
    }
    .hero-container {
        position: relative;
        top: auto; left: auto;
        width: 100%;
        height: auto;
        padding: 88px 24px 36px;
        gap: 0;
        align-items: flex-start;
        text-align: left;
    }
    .headline {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 16px;
        text-align: left;
    }
    .subheadline {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 28px;
        text-align: left;
    }
    .subheadline br { display: none; }
    .cta-container {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 24px;
    }
    .cta-btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 15px; }
    .warranty { justify-content: center; }
    .offer-card {
        width: 100%;
        height: auto;
        flex-direction: row;
        gap: 0;
        padding: 12px 14px;
    }
    .price-block { gap: 14px; }
    .mrp-value { font-size: 14px; }
    .best-price-value { font-size: 18px; }
    .card-separator { width: 1px; height: 50px; }
    .gift-img-placeholder img { width: 52px; height: 52px; }
    .gift-name { font-size: 11px; }
    .gift-value { font-size: 11px; }
    .bottom-graphic { align-self: center; margin-top: 28px; }

    /* Promo Banner */
    .promo-banner {
        position: relative;
        top: auto; left: auto;
        transform: none;
        width: 100%;
        height: auto;
        padding: 12px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .promo-text { font-size: 13px; line-height: 1.5; }
    .timer-pill { width: auto; height: auto; padding: 6px 12px; font-size: 14px; }

    /* ──────────────────────────────
       FEATURE (Sleep section)
    ────────────────────────────── */
    .feature-section {
        height: auto;
        min-height: auto;
        padding: 56px 0 0;
    }
    .feature-text-content { padding: 0 24px; margin-bottom: 28px; }
    .feature-headline { font-size: 30px; line-height: 1.25; margin-bottom: 14px; }
    .feature-subheadline { font-size: 14px; line-height: 1.7; }
    .feature-subheadline br { display: none; }
    .feature-image-container { min-height: 280px; }
    .feature-image-text {
        right: 20px; left: auto;
        top: auto; bottom: 20px;
        transform: none;
    }
    .feature-image-text h3 { font-size: 26px; }

    /* ──────────────────────────────
       SMART CHARGING
    ────────────────────────────── */
    .smart-charging-section {
        height: auto;
        min-height: 280px;
        padding: 48px 24px 40px;
        border-radius: 20px;
        margin: 28px 16px;
        max-width: calc(100% - 32px);
        background-position: center right;
    }
    .badge-text { font-size: 14px; margin-bottom: 8px; }
    .smart-charging-headline { font-size: 30px; line-height: 1.2; }

    /* ──────────────────────────────
       DETAILED FEATURES (horizontal scroll)
    ────────────────────────────── */
    .features-header {
        height: auto;
        padding: 44px 24px 20px;
    }
    .features-header h2 { font-size: 28px; line-height: 1.25; margin-bottom: 12px; }
    .features-header p { font-size: 14px; margin-bottom: 20px; }

    /* Tabs: wrap to two rows, smaller */
    .features-tabs {
        flex-wrap: wrap;
        gap: 8px;
        background: transparent;
        border: none;
        padding: 0;
        justify-content: flex-start;
    }
    .tab-btn {
        padding: 8px 14px;
        font-size: 11px;
        background: #1a1a1a;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 20px;
        flex-shrink: 0;
    }
    .tab-btn.active { background: #333; }

    /* Panels */
    .detailed-features .feature-panel { height: auto !important; }

    /* Panel images — scale to fill panel on mobile */
    .panel-1 .panel-bg-img,
    .panel-3 .panel-bg-img,
    .panel-4 .panel-bg-img {
        width: 100%; height: 100%;
        left: 0; top: 0;
        object-fit: cover;
    }

    /* Panel text — move to bottom overlay */
    .panel-text-content {
        width: calc(100% - 40px);
        top: auto; bottom: 24px;
        transform: none;
    }
    .panel-text-content.right-align { right: 20px; left: 20px; }
    .panel-text-content.left-align  { left: 20px; right: 20px; }
    .panel-text-content h2 { font-size: 24px; line-height: 1.2; margin-bottom: 10px; }
    .panel-desc { font-size: 13px; margin-bottom: 12px; }
    .panel-features { font-size: 11px; margin-bottom: 16px; }
    .panel-btn { padding: 8px 18px; font-size: 13px; }

    /* ──────────────────────────────
       UNIVERSAL
    ────────────────────────────── */
    .universal-section { padding: 56px 24px 0; }
    .universal-header { margin-bottom: 36px; }
    .universal-header h2 { font-size: 28px; line-height: 1.25; }
    .universal-header p { font-size: 14px; }
    .universal-banner { margin-bottom: 32px; }
    .banner-text { top: 28px; left: 20px; }
    .banner-text h3 { font-size: 32px; }
    .banner-text p { font-size: 14px; }
    .universal-cards-container {
        flex-wrap: wrap;
        gap: 12px;
        max-width: 100%;
        justify-content: center;
    }
    .universal-card {
        width: calc(50% - 6px);
        height: 260px;
        padding: 18px 14px;
        border-radius: 18px;
    }
    .card-text h4 { font-size: 15px; }
    .card-text p { font-size: 12px; }

    /* ──────────────────────────────
       HOW IT WORKS
    ────────────────────────────── */
    .how-it-works-section { padding: 56px 24px; gap: 40px; }
    .works-heading { font-size: 30px; }
    .works-container {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 28px;
        padding: 0;
    }
    .works-step { width: 100%; max-width: 380px; gap: 14px; }
    .works-img { width: 100%; height: auto; aspect-ratio: 16 / 10; }
    .works-step-text { font-size: 15px; }

    /* ──────────────────────────────
       PROTECTION
    ────────────────────────────── */
    .protection-section { padding: 56px 24px 0; gap: 36px; }
    .protection-text-block { width: 100%; }
    .protection-heading { font-size: 30px; }
    .protection-subheading { font-size: 14px; line-height: 1.6; }
    .protection-subheading br { display: none; }
    .protection-image-wrapper { width: 100%; height: auto; }
    .protection-image { width: 100%; height: auto; margin-top: 0; }
    .protection-bottom-text { font-size: 16px; }

    /* ──────────────────────────────
       MOMENT
    ────────────────────────────── */
    .moment-section-wrapper { padding-top: 40px; }
    .moment-section {
        padding: 44px 24px 56px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }
    .moment-container { width: 100%; gap: 36px; }
    .moment-text-block { width: 100%; }
    .moment-heading { font-size: 30px; }
    .moment-subheading { font-size: 14px; }
    .moment-image-block {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }
    .moment-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 18px;
    }

    /* ──────────────────────────────
       TESTIMONIALS
    ────────────────────────────── */
    .testimonial-section { padding: 56px 0; gap: 36px; }
    .testimonial-heading {
        width: 100%;
        padding: 0 24px;
        font-size: 28px;
        text-align: left;
    }
    .testimonial-container {
        width: calc(100vw - 48px);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .testimonial-container::-webkit-scrollbar { display: none; }
    .testimonial-card {
        width: calc(100vw - 48px);
        min-width: calc(100vw - 48px);
        height: auto;
        min-height: 360px;
        padding: 28px;
        scroll-snap-align: start;
    }
    .testimonial-text { font-size: 17px; line-height: 26px; }
    .testimonial-controls { display: none; }  /* use native scroll on mobile */

    /* ──────────────────────────────
       OFFER
    ────────────────────────────── */
    .offer-section { padding: 40px 16px; }
    .offer-container {
        width: 100%;
        height: auto;
        border-radius: 22px;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }
    .offer-content {
        position: relative;
        top: auto; left: auto;
        width: 100%;
        padding: 32px 24px 24px;
        gap: 14px;
    }
    .offer-content h2 { font-size: 38px; line-height: 46px; }
    .offer-description { font-size: 14px; line-height: 22px; }
    .current-price { font-size: 30px; }
    .offer-gift-pill { flex-wrap: wrap; }
    .offer-gift-pill span { font-size: 13px; }
    .offer-btn { width: 100%; justify-content: center; }
    .offer-charger-img {
        position: relative;
        top: auto; left: auto;
        width: 80%;
        height: auto;
        display: block;
        margin: -20px auto 0;
    }

    /* ──────────────────────────────
       FAQ
    ────────────────────────────── */
    .faq-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 56px 24px;
        gap: 40px;
    }
    .faq-left { gap: 28px; }
    .faq-heading { width: 100%; font-size: 30px; }
    .faq-charger-img { max-width: 200px; }
    .faq-glow { width: 200px; height: 200px; }
    .faq-right { width: 100%; }
    .faq-question span { width: auto; font-size: 15px; }
    .faq-answer { width: auto; font-size: 13px; }

    /* ──────────────────────────────
       PRE-FOOTER BANNER
    ────────────────────────────── */
    .pre-footer-banner {
        width: calc(100% - 32px);
        height: auto;
        min-height: auto;
        border-radius: 24px;
        margin: 32px 16px;
        background-position: center;
    }
    .banner-content {
        position: relative;
        top: auto; left: auto;
        width: 100%;
        padding: 40px 24px;
        gap: 18px;
    }
    .banner-content h2 { font-size: 32px; line-height: 1.2; }
    .banner-subtitle { font-size: 15px; }
    .banner-pricing { font-size: 13px; }
    .banner-btn { width: 100%; justify-content: center; }

    /* ──────────────────────────────
       FOOTER
    ────────────────────────────── */
    .site-footer { padding: 44px 24px 28px; }
    .footer-top {
        flex-direction: column;
        gap: 32px;
        max-width: 100%;
        width: 100%;
    }
    .brand-col { width: 100%; }
    .footer-middle-group { width: 100%; flex-wrap: wrap; gap: 28px; }
    .trust-col { width: 100%; }
    .trust-top-row { flex-wrap: wrap; gap: 20px; }
    .links-col { min-width: 140px; flex: 1; }
    .image-col { width: 100%; height: 180px; overflow: hidden; }
    .footer-product-image {
        position: relative !important;
        width: auto !important;
        height: 100% !important;
        top: 0 !important; right: 0 !important;
        display: block;
        margin: 0 auto;
    }
    .footer-bottom {
        width: 100%;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE PATCH — fixes missed in the first pass
   ═══════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────
   TABLET patches  (≤ 1024px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

    /* Smart charging: was 1240px, no max-width → horizontal overflow */
    .smart-charging-section {
        width: auto;
        max-width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }

    /* Moment container: 1240px → fluid */
    .moment-container { max-width: 100%; }

    /* Works: 3×300px + gaps = 932px → wraps on narrower tablets */
    .works-container { flex-wrap: wrap; }
    .works-step { flex: 1; min-width: 240px; max-width: 320px; }
    .works-img { width: 100%; height: auto; aspect-ratio: 16 / 10; }

    /* FAQ: side-by-side overflows on 1024px screen */
    .faq-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
    }
    .faq-heading { width: 100%; }
    .faq-right { width: 100%; max-width: 100%; }
    .faq-question span { width: auto; }
    .faq-answer { width: auto; }

    /* Pre-footer banner: content is absolutely positioned inside */
    /* already handled via width: calc(100%-40px) — ensure content fits */
    .banner-content { width: 60%; min-width: 320px; }
}


/* ────────────────────────────────────────────────────────────
   MOBILE patches  (≤ 768px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* ── CRITICAL: testimonial section blocks child horizontal scroll ── */
    .testimonial-section { overflow: visible; }

    /* ── Hero section: hero-section itself had overflow:hidden originally ── */
    /* already set in previous block; reinforce here */
    .hero-section { overflow: visible; }

    /* ── Navbar: original has left:50%+translateX which breaks on mobile ── */
    .navbar { left: 0 !important; transform: none !important; }

    /* ── Feature header: justify-content:flex-end with height:auto is a no-op ──
       Reset it so content flows from top */
    .features-header { justify-content: flex-start; }

    /* ── Works: already stacked; make img fill width ── */
    .works-img { width: 100%; }

    /* ── Moment image block: ensure it stacks ── */
    .moment-image-block { flex-direction: column; }

    /* ── Offer container: ensure flex-direction column overrides inline flex ── */
    .offer-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    /* ── Offer charger: override the absolute position from original ── */
    .offer-charger-img {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 85% !important;
        height: auto !important;
        display: block;
        margin: 0 auto;
        padding-bottom: 24px;
    }

    /* ── Pre-footer banner: override absolute-positioned banner-content ── */
    .banner-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        padding: 40px 24px;
    }

    /* ── Pre-footer banner height: let content drive it ── */
    .pre-footer-banner {
        height: auto !important;
        min-height: 320px;
    }

    /* ── Smart charging: also needs explicit width override on mobile ── */
    .smart-charging-section {
        width: auto !important;
        max-width: calc(100% - 32px) !important;
    }

    /* ── Universal card images: scale inside smaller cards ── */
    .card-image { max-width: 100%; }

    /* ── Testimonial heading: was 1240px, already set width:100% but reinforce ── */
    .testimonial-heading { max-width: 100%; }

    /* ── Testimonial container: allow native horizontal scroll ── */
    .testimonial-container { max-width: 100%; overflow-x: auto; }

    /* ── FAQ right column: faq-question span and faq-answer have px widths ── */
    .faq-question span { width: auto !important; }
    .faq-answer { width: auto !important; }

    /* ── Protection image wrapper: remove fixed height ── */
    .protection-image-wrapper { height: auto !important; }
    .protection-image { width: 100% !important; height: auto !important; margin-top: 0 !important; }

    /* ── Moment container: max-width on mobile ── */
    .moment-container { max-width: 100%; }
    .moment-text-block { width: 100% !important; }

    /* ── Offer section padding override ── */
    .offer-section { padding: 40px 16px !important; }

    /* ── Panel text: ensure it doesn't overflow panel width ── */
    .panel-text-content { max-width: calc(100% - 40px); }

    /* ── Ensure works-step fills full width ── */
    .works-step { max-width: 100% !important; }

    /* ── Footer middle group: already stacked, reinforce ── */
    .footer-middle-group { width: 100% !important; }
}


/* ───────────────────────────────────────────────────────────────
   NAVBAR is-sticky fix — mobile only
   Base CSS uses left:50%+transform with !important, which beats
   our mobile .navbar rule once is-sticky class is added via JS.
   We must override at the .navbar.is-sticky level inside the
   same media query.
   ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .navbar,
    .navbar.is-sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        padding: 0 20px !important;
        height: 60px !important;
        z-index: 1000 !important;
    }
}

@media (max-width: 1024px) {
    /* Tablet: keep pill style but constrain width */
    .navbar.is-sticky {
        max-width: calc(100% - 48px) !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   FINAL TARGETED FIX  — Logo, Promo Banner, Sticky Navbar
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Logo: was accidentally set to 22px in earlier mobile block ── */
    .nav-logo {
        height: 36px !important;
        width: auto !important;
    }

    /* ── Promo banner: force out of absolute positioning ──
       Base CSS: position:absolute; top:882px; left:50%; transform:translateX(-50%); width:1440px
       Without !important these weren't overriding in all cases. */
    .promo-banner {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        min-height: 56px;
        padding: 12px 20px !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px;
        flex-wrap: wrap;
        box-sizing: border-box;
    }

    /* Promo text: reduce size so it fits in one bar */
    .promo-text {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    /* Timer pill: auto width on mobile */
    .timer-pill {
        width: auto !important;
        height: 30px !important;
        font-size: 13px !important;
        padding: 4px 10px !important;
        flex-shrink: 0;
    }

    /* ── Sticky navbar: ensure left:50%+transform from base is fully cancelled ── */
    .navbar.is-sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        padding: 0 20px !important;
        height: 60px !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE TEXT READABILITY OVERLAYS
   Semi-transparent tints so text is legible over background images
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Feature section (While you sleep) ──
       Gradient scrim over the lifestyle photo so text is readable */
    /* .feature-image-container::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            160deg,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.50) 45%,
            rgba(0, 0, 0, 0.78) 100%
        );
        z-index: 1;
        pointer-events: none;
    } */

    /* Text sits above the scrim */
    .feature-image-text { z-index: 2; }

    /* ── Feature panels (horizontal scroll) ──
       Bottom-to-top dark scrim on panels 1, 2, 3 */
    /* .feature-panel::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 65%;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.50) 45%,
            transparent 100%
        );
    } */

    /* Panel 4 has a light (#E5E5E5) background — use a warm light scrim instead */
    .panel-4::after {
        background: linear-gradient(
            to top,
            rgba(229, 229, 229, 0.92) 0%,
            rgba(229, 229, 229, 0.55) 45%,
            transparent 100%
        );
    }

    /* Frosted-glass tint directly behind text boxes (panels 1-3) */
    .panel-text-content:not(.dark-text) {
        background: rgba(0, 0, 0, 0.40);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 16px;
        padding: 18px 20px 20px;
        z-index: 2;
    }

    /* Panel 4 dark text — use a light tinted pill */
    .panel-text-content.dark-text {
        background: rgba(255, 255, 255, 0.55);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 16px;
        padding: 18px 20px 20px;
    }
}



/* ═══════════════════════════════════════════════════════════════
   UNIVERSAL CARDS — image/text overlap fix on mobile
   Card is 260px tall, text fills ~18–80px from top.
   Image (position:absolute, bottom:24px) with max-height:200px
   would start at 260-24-200=36px → overlaps text.
   Reducing max-height to 120px → starts at 260-16-120=124px,
   well below the text block.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .universal-card {
        height: 280px !important;
        padding: 20px 16px !important;
    }

    .universal-card img {
        max-height: 130px !important;
        max-width: 78% !important;
        bottom: 16px !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   OVERLAY REFINEMENT — feature image & smart charging
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Override the previous full-image diagonal gradient.
       Only darken the bottom 55% where the text actually lives.
       Top of image (sleeping man + charger) stays fully visible. */
    .feature-image-container::after {
        inset: unset !important;
        top: unset !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 58% !important;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.52) 45%,
            transparent 100%
        ) !important;
    }

    /* Smart charging card: left-to-right tint so text on the left
       is legible over the product image in the background */
    .smart-charging-section {
        position: relative !important;
    }
    .smart-charging-section::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(
            105deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.15) 70%,
            transparent 100%
        );
        z-index: 0;
        pointer-events: none;
    }
    .smart-charging-content {
        position: relative;
        z-index: 1;
    }
}


/* ═══════════════════════════════════════════════════════════════
   SMART CHARGING — stronger overlay so all text is clearly readable
   Previous gradient faded too quickly; "Charging" + "Disconnector"
   text extends to centre where product sits. Keep dark across 65%
   of the card width so every word is legible.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .smart-charging-section::before {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.88) 30%,
            rgba(0, 0, 0, 0.72) 55%,
            rgba(0, 0, 0, 0.30) 80%,
            rgba(0, 0, 0, 0.05) 100%
        ) !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   SMART CHARGING — reduce headline font sizes for mobile & tablet
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .badge-text { font-size: 13px !important; margin-bottom: 6px !important; }
    .smart-charging-headline { font-size: 28px !important; line-height: 1.25 !important; }
    .smart-charging-headline .highlight { font-size: 38px !important; line-height: 1.15 !important; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .badge-text { font-size: 16px; margin-bottom: 8px; }
    .smart-charging-headline { font-size: 38px; line-height: 1.2; }
    .smart-charging-headline .highlight { font-size: 50px; line-height: 1.15; }
}


/* ═══════════════════════════════════════════════════════════════
   SMART CHARGING — full-width on mobile & near-full on tablet
   Previous patch used width:auto which shrinks to content in flex.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .smart-charging-section {
        width: calc(100% - 24px) !important;
        max-width: calc(100% - 24px) !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .smart-charging-section {
        width: calc(100% - 48px) !important;
        max-width: calc(100% - 48px) !important;
        margin-left: 24px !important;
        margin-right: 24px !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   FEATURE TABS — center-align on mobile
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .features-tabs {
        justify-content: center !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   PRE-FOOTER BANNER — dark overlay so text is readable on mobile
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .pre-footer-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.72) 50%,
            rgba(0, 0, 0, 0.45) 100%
        );
        z-index: 0;
        pointer-events: none;
    }
    .banner-content {
        position: relative !important;
        z-index: 1 !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   FAQ — center charger image on mobile & make it slightly bigger
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .faq-left {
        width: 100% !important;
        align-items: center !important;
    }
    .faq-heading {
        text-align: left !important;
        width: 100% !important;
    }
    .faq-image-wrapper {
        width: 100% !important;
        justify-content: center !important;
    }
    .faq-charger-img {
        max-width: 260px !important;
    }
    .faq-glow {
        width: 260px !important;
        height: 260px !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   OFFER SECTION — charger image below button, clearly visible
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .offer-container {
        overflow: visible !important;
    }
    .offer-content {
        padding-bottom: 20px !important;
    }
    .offer-charger-img {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 90% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 0 !important;
        padding-bottom: 0 !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE PANEL RECTANGLES ("COLUMNS")
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .panel-1-rect, .panel-3-rect {
        width: 150px !important;
        height: 950px !important;
        top: -120px !important;
        left: 50% !important;
    }

    .panel-4-rect {
        width: 150px !important;
        height: 1000px !important;
        top: -140px !important;
        left: auto !important;
        right: 30% !important;
    }
}
/* ─── New FAQ Section Styles ─── */
.sf-faq-hero {
  padding: 72px 24px 48px;
  text-align: center;
  border-bottom: 1px solid #2A2A2A;
}
.sf-faq-hero-tag {
  display: inline-block;
  background: #FF5C00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.sf-faq-hero h1 {
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.sf-faq-hero h1 span { color: #FF5C00; }
.sf-faq-hero p {
  font-size: 16px;
  color: #888888;
  max-width: 500px;
  margin: 0 auto;
}
.sf-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.sf-faq-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 16px;
}
.sf-faq-cat:first-of-type { margin-top: 0; }
.sf-faq-cat-icon {
  width: 36px; height: 36px;
  background: #FF5C00;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: #ffffff;
}
.sf-faq-cat h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #FF5C00;
}
.sf-faq-item {
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #141414;
  overflow: hidden;
  transition: border-color 0.22s;
}
.sf-faq-item:hover { border-color: #3a3a3a; }
.sf-faq-item.open  { border-color: #FF5C00; }

.sf-faq-q-btn {
  width: 100%;
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s;
}
.sf-faq-item.open .sf-faq-q-btn { color: #FF5C00; }

.sf-faq-ico {
  width: 28px; height: 28px;
  border: 1.5px solid #2A2A2A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: #888888;
  transition: background 0.2s, border-color 0.2s, transform 0.3s, color 0.2s;
}
.sf-faq-item.open .sf-faq-ico {
  background: #FF5C00;
  border-color: #FF5C00;
  color: #fff;
  transform: rotate(45deg);
}

.sf-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.sf-faq-item.open .sf-faq-panel { max-height: 700px; }

.sf-faq-ans {
  border-top: 1px solid #2A2A2A;
  padding: 16px 22px 22px;
  font-size: 14.5px;
  color: #BBBBBB;
  line-height: 1.75;
}
.sf-faq-ans strong { color: #FFFFFF; }
.sf-faq-ans .sf-faq-hl {
  display: inline-block;
  background: rgba(255,92,0,0.13);
  color: #FF5C00;
  font-size: 13px;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 4px;
}
.sf-faq-ans ul {
  margin: 10px 0 6px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sf-faq-ans ul li::marker { color: #FF5C00; }

.sf-faq-cta-box {
  margin-top: 60px;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  padding: 42px 32px;
  text-align: center;
  background: linear-gradient(135deg,#181818,#111111);
}
.sf-faq-cta-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.sf-faq-cta-box p  { color: #888888; font-size: 14px; margin-bottom: 26px; }
.sf-faq-btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sf-faq-btn-fill {
  background: #FF5C00;
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.sf-faq-btn-fill:hover { opacity: 0.85; }
.sf-faq-btn-out {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid #2A2A2A;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s;
}
.sf-faq-btn-out:hover { border-color: #666; }

/* Mobile/Desktop Visibility Utilities */
@media (max-width: 600px) {
    .sf-hide-on-mobile { display: none !important; }
}
@media (min-width: 601px) {
    .sf-show-on-mobile { display: none !important; }
}
