/* ============================================
   JK Landing Page - Styles
   ============================================ */

:root {
    --bg-primary: #0a0014;
    --bg-secondary: #14001f;
    --bg-tertiary: #1a0826;
    --bg-card: rgba(40, 18, 60, 0.55);
    --bg-card-solid: #2a0f3d;
    --accent-pink: #ff2d8e;
    --accent-pink-bright: #ff3e9d;
    --accent-pink-dark: #d91e7a;
    --accent-purple: #8b3eff;
    --accent-blue: #5e3ad8;
    --text-primary: #ffffff;
    --text-secondary: #c9b3df;
    --text-muted: #8b7aa3;
    --border-color: rgba(255, 62, 157, 0.18);
    --gradient-pink: linear-gradient(135deg, #ff2d8e 0%, #ff5fb3 100%);
    --gradient-pink-purple: linear-gradient(135deg, #ff2d8e 0%, #8b3eff 100%);
    --gradient-bg: linear-gradient(180deg, #0a0014 0%, #1a0826 100%);

    --container-w: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-glow: 0 0 40px rgba(255, 45, 142, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-pink);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 45, 142, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 45, 142, 0.55);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    padding: 9px 22px;
    font-size: 14px;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-dark {
    background: linear-gradient(180deg, rgba(40, 22, 60, 0.85), rgba(20, 8, 36, 0.85));
    color: #fff;
    border: 1px solid rgba(255, 62, 157, 0.35);
    backdrop-filter: blur(10px);
    padding: 11px 26px;
    font-size: 13px;
    letter-spacing: 1.2px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.btn-dark:hover {
    border-color: rgba(255, 62, 157, 0.6);
    box-shadow: 0 8px 24px rgba(255, 45, 142, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* ============================================
   Header
   ============================================ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    gap: 2px;
}

.logo-img {
    width: 70px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(255, 45, 142, 0.35));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.logo:hover .logo-img {
    transform: translateY(-1px);
    filter: drop-shadow(0 6px 18px rgba(255, 45, 142, 0.55));
}

.logo-img-large {
    width: 90px;
}

.logo-sub {
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    text-align: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, transparent 0%, rgba(10, 0, 20, 0.55) 75%, var(--bg-primary) 100%),
        url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 1;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    pointer-events: none;
}

.hero-glow-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #ff2d8e 0%, transparent 60%);
    top: -120px;
    right: -120px;
}

.hero-glow-2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, #5e3ad8 0%, transparent 60%);
    bottom: -80px;
    left: -100px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 8px 14px;
    background: linear-gradient(180deg, rgba(40, 22, 60, 0.8), rgba(20, 8, 36, 0.8));
    border: 1px solid rgba(255, 62, 157, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
    margin-bottom: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-badge-star {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.hero-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(36px, 6.2vw, 78px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    white-space: nowrap;
    background: linear-gradient(180deg, #ffffff 0%, #d4c5e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(255, 45, 142, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        white-space: normal;
        font-size: clamp(38px, 11vw, 56px);
    }
}

.hero-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
    color: #e8d9f5;
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.5;
}

.hero-cta {
    margin-top: 4px;
}

/* Feature strip */
.feature-strip {
    position: relative;
    z-index: 2;
    margin-top: auto;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(10, 0, 20, 0.6) 0%, rgba(10, 0, 20, 0.85) 100%);
    border-top: 1px solid rgba(255, 62, 157, 0.25);
    backdrop-filter: blur(8px);
    padding: 16px 0;
}

.feature-strip::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 62, 157, 0.6), rgba(139, 62, 255, 0.6), transparent);
}

.feature-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    justify-content: center;
    position: relative;
    padding: 4px 12px;
}

.feature-item + .feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 22px;
    background: linear-gradient(180deg, transparent, rgba(139, 62, 255, 0.5), transparent);
}

.feature-star {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(255, 62, 157, 0.5));
}

.feature-text {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ============================================
   Why / Promotions / Testimonials - unified background
   ============================================ */
.why-section,
.promotions-section,
.testimonials-section {
    position: relative;
}

.why-section {
    background: radial-gradient(87.97% 87.97% at 50% 50%, #102854 0%, #281941 46.16%, #44082A 100%);
}

/* Merge promotions + testimonials into one continuous background */
.promo-test-wrap {
    background: radial-gradient(87.97% 87.97% at 50% 50%, #102854 0%, #281941 46.16%, #44082A 100%);
    position: relative;
}

.promo-test-wrap .promotions-section,
.promo-test-wrap .testimonials-section {
    background: transparent;
}

.why-section,
/* .promotions-section, */
.testimonials-section {
    padding: 90px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.section-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
}

.section-title .accent {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.accent-only {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: 'Archivo', sans-serif;
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(180deg, rgba(40, 18, 60, 0.45) 0%, rgba(26, 8, 38, 0.55) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.feature-card {
    background: transparent;
    border: none;
    padding: 30px 28px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s ease,
                background 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.feature-card:nth-child(odd) {
    background:
        linear-gradient(0deg, rgba(239, 239, 239, 0.25), rgba(239, 239, 239, 0.25)),
        linear-gradient(0deg, rgba(239, 239, 239, 0), rgba(239, 239, 239, 0));
}

.feature-card:nth-child(even) {
    background:
        linear-gradient(0deg, rgba(239, 239, 239, 0), rgba(239, 239, 239, 0)),
        linear-gradient(180deg, rgba(239, 239, 239, 0.09) 0%, rgba(202, 39, 132, 0.09) 100%);
}

/* Radial glow that follows the hover */
.feature-card .feature-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(255, 62, 157, 0.22), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

/* Diagonal shimmer sweep on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(255, 95, 179, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
    pointer-events: none;
}

/* Keep the dividers but lift content above the new layers */
.feature-card > *:not(.feature-glow) {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 18px 40px rgba(255, 45, 142, 0.18),
                inset 0 0 0 1px rgba(255, 95, 179, 0.18);
    z-index: 3;
}

.feature-card:hover::before {
    left: 130%;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-card:hover .feature-card-icon {
    transform: translateY(-3px) rotate(-6deg) scale(1.08);
    filter: drop-shadow(0 10px 22px rgba(255, 62, 157, 0.55));
}

.feature-card:hover .feature-card-title {
    color: #ffd1e7;
    letter-spacing: 0.4px;
}

.feature-card:hover .feature-card-text {
    color: #d6c4ea;
}

.feature-card-icon {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.4s ease;
}

.feature-card-title,
.feature-card-text {
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.feature-card:active {
    transform: translateY(-1px) scale(1.005);
    transition: transform 0.12s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 12%;
    right: 0;
    height: 76%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12%;
    width: 76%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.feature-card:nth-child(3n+1)::after,
.feature-card:nth-child(3n+2)::after,
.feature-card:nth-child(3n+3)::after {
    display: block;
}

.feature-card:nth-child(3n)::after {
    display: none;
}

.feature-card:nth-last-child(-n+3)::before {
    display: none;
}


.feature-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 6px 14px rgba(255, 62, 157, 0.35));
}

.feature-card-icon img,
.feature-card-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.feature-card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.feature-card-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Promotions Section
   ============================================ */

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.promo-card {
    background: linear-gradient(180deg, rgba(35, 14, 55, 0.6) 0%, rgba(20, 8, 36, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 62, 157, 0.35);
    box-shadow: 0 16px 40px rgba(255, 45, 142, 0.2);
}

.promo-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background: #0f0420;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.06);
}

.promo-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding: 16px 18px;
    letter-spacing: 0.3px;
    background: linear-gradient(180deg, rgba(25, 10, 42, 0.4) 0%, rgba(15, 4, 32, 0.6) 100%);
}

@media (max-width: 640px) {
    .promo-title {
        font-size: 16px;
        padding: 14px 16px;
    }
}

.promotions-cta {
    text-align: center;
    margin-top: 8px;
    padding: 20px 0;
}

/* View All button - gradient with pulse glow */
.btn-view-all {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 44px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 35%),
        linear-gradient(90deg, #6b1a5e 0%, #5a1a7a 35%, #3b3a8e 75%, #3553a8 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 0 0 0 rgba(255, 45, 142, 0.6),
        0 0 28px rgba(255, 45, 142, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    animation: pulseGlow 2.2s ease-in-out infinite;
    isolation: isolate;
}

.btn-view-all-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Shimmer sweep on hover */
.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: 1;
    pointer-events: none;
}

/* Underglow */
.btn-view-all::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 45, 142, 0.5), rgba(94, 88, 216, 0.5));
    filter: blur(14px);
    opacity: 0.55;
    z-index: -1;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.btn-view-all:hover {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.12) saturate(1.15);
    box-shadow:
        0 0 0 4px rgba(255, 45, 142, 0.18),
        0 12px 36px rgba(255, 45, 142, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

.btn-view-all:hover::before {
    left: 130%;
}

.btn-view-all:hover::after {
    opacity: 0.9;
    filter: blur(18px);
}

.btn-view-all:active {
    transform: translateY(0) scale(0.99);
    transition: transform 0.1s ease;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(255, 45, 142, 0.55),
            0 0 28px rgba(255, 45, 142, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    }
    50% {
        box-shadow:
            0 0 0 10px rgba(255, 45, 142, 0),
            0 0 42px rgba(255, 45, 142, 0.65),
            inset 0 1px 0 rgba(255, 255, 255, 0.22),
            inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn-view-all {
        animation: none;
    }
}

/* ============================================
   Testimonials Section (edge-to-edge carousel)
   ============================================ */
.testimonials-section {
    overflow: hidden;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 16px 0 28px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 22px;
    width: max-content;
    padding: 0 22px;
    animation: testimonialScroll 38s linear infinite;
    will-change: transform;
}

.testimonials-carousel:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Card */
.testimonial-card {
    position: relative;
    flex: 0 0 360px;
    background-image:
        linear-gradient(136.71deg, rgba(67, 67, 67, 0.86) -24.05%, rgba(0, 0, 0, 0) 115.5%),
        url('assets/images/card-texture.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-color: #2a2a3a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55);
}

/* Decorative quote */
.testimonial-quote {
    position: absolute;
    top: 10px;
    left: 22px;
    font-family: 'Archivo', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    opacity: 0.95;
    pointer-events: none;
    user-select: none;
}

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-top: 36px;
}

.testimonial-stars .star {
    font-size: 20px;
    color: #5a5a6e;
    line-height: 1;
}

.testimonial-stars .star.filled {
    color: #ffa726;
}

/* Text */
.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #ffffff;
    font-weight: 500;
    flex: 1;
    margin: 4px 0 8px;
}

/* User block */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    background: #1a1a2e;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    line-height: 1.2;
}

.testimonial-info span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #a8a9c0;
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-track {
        animation: none;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #000000;
    padding: 56px 0 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Floating decorative elements */
.footer-decor {
    position: absolute;
    pointer-events: none;
    user-select: none;
    opacity: 0.55;
    z-index: 0;
}

.footer-decor-trophy {
    width: 70px;
    height: auto;
    top: 18px;
    left: 12%;
    transform: rotate(-18deg);
    opacity: 0.35;
    animation: footerFloat 7s ease-in-out infinite;
}

.footer-decor-coin-1 {
    width: 50px;
    height: auto;
    top: 22px;
    right: 14%;
    transform: rotate(15deg);
    animation: footerFloat 6s ease-in-out infinite 0.5s;
}

.footer-decor-coin-2 {
    width: 42px;
    height: auto;
    bottom: 30px;
    left: 8%;
    transform: rotate(-25deg);
    animation: footerFloat 8s ease-in-out infinite 1s;
}

@keyframes footerFloat {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50%      { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}

.footer-decor-trophy { --rot: -18deg; }
.footer-decor-coin-1 { --rot: 15deg; }
.footer-decor-coin-2 { --rot: -25deg; }

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-pink-bright);
}

.footer-link-icon svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
    flex-shrink: 0;
}

.footer-link-icon:hover svg {
    color: var(--accent-pink-bright);
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #c9b3df;
    max-width: 720px;
    line-height: 1.55;
    margin: 6px 0 14px;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #a8a9c0;
    line-height: 1.6;
}

/* ============================================
   Responsive: Tablet
   ============================================ */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card::after {
        display: block;
    }
    .feature-card:nth-child(2n)::after {
        display: none;
    }
    .feature-card:nth-child(3n)::after {
        display: block;
    }
    .feature-card:nth-child(2n+1)::after {
        display: block;
    }
    .feature-card:nth-last-child(-n+3)::before {
        display: block;
    }
    .feature-card:nth-last-child(-n+2)::before {
        display: none;
    }
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-card {
        flex: 0 0 320px;
        padding: 24px 22px 20px;
    }
    .testimonial-quote {
        font-size: 64px;
    }
    .feature-strip-inner {
        gap: 10px;
    }
    .feature-text {
        font-size: 10px;
    }
}

/* ============================================
   Responsive: Mobile
   ============================================ */
@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }

    .header {
        padding: 14px 0;
    }

    .logo-img {
        width: 42px;
    }

    .btn-ghost,
    .btn-dark {
        padding: 9px 18px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .btn-view-all {
        padding: 12px 32px;
        font-size: 13px;
        letter-spacing: 1.2px;
        border-radius: 8px;
    }

    .hero-cta {
        margin-top: 2px;
    }

    .hero {
        padding-top: 80px;
    }

    /* Use dedicated portrait-oriented hero background on mobile */
    .hero-lines {
        background-image:
            linear-gradient(180deg, transparent 0%, rgba(10, 0, 20, 0.55) 80%, var(--bg-primary) 100%),
            url('assets/images/hero-bg-mobile.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .hero-inner {
        padding: 12px 24px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px 6px 12px;
        margin-bottom: 16px;
    }

    .hero-badge-star {
        width: 12px;
        height: 12px;
    }

    .br-desktop {
        display: none;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .feature-strip {
        padding: 8px 0;
    }

    .feature-strip-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .feature-item {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        position: relative;
    }

    /* Reorder items for mobile: TL=3, TR=2, BL=4, BR=1 */
    .feature-item:nth-child(1) { order: 4; }
    .feature-item:nth-child(2) { order: 2; }
    .feature-item:nth-child(3) { order: 1; }
    .feature-item:nth-child(4) { order: 3; }

    /* Disable the default sibling divider used on desktop */
    .feature-item + .feature-item::before {
        display: none;
    }

    /* Vertical divider on visual TL (#3) and BL (#4) right edges */
    .feature-item:nth-child(3)::after,
    .feature-item:nth-child(4)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 18%;
        bottom: 18%;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
        display: block;
    }

    /* Horizontal divider under visual TL (#3) and TR (#2) */
    .feature-item:nth-child(2)::before,
    .feature-item:nth-child(3)::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
        display: block;
    }

    .feature-star {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .feature-text {
        font-size: 11px;
        white-space: normal;
        line-height: 1.25;
        letter-spacing: 0.6px;
    }

    .why-section,
    /* .promotions-section, */
    .testimonials-section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    /* Title: force line break around the accent on mobile (applies to all section titles) */
    .section-title .accent {
        display: block;
        margin-top: 4px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 16px;
    }
    .feature-card {
        padding: 22px 18px;
    }
    .feature-card-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 14px;
    }
    .feature-card-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    .feature-card-text {
        font-size: 12px;
        line-height: 1.5;
    }
    /* Snake/zigzag the middle row so row 2 is visually reversed */
    .feature-card:nth-child(3) { order: 2; }
    .feature-card:nth-child(4) { order: 1; }

    /* Swap backgrounds of Fresh Drops Daily (1) and Easy To Enjoy (2) on mobile */
    .feature-card:nth-child(1) {
        background:
            linear-gradient(0deg, rgba(239, 239, 239, 0), rgba(239, 239, 239, 0)),
            linear-gradient(180deg, rgba(239, 239, 239, 0.09) 0%, rgba(202, 39, 132, 0.09) 100%);
    }
    .feature-card:nth-child(2) {
        background:
            linear-gradient(0deg, rgba(239, 239, 239, 0.25), rgba(239, 239, 239, 0.25)),
            linear-gradient(0deg, rgba(239, 239, 239, 0), rgba(239, 239, 239, 0));
    }

    /* Reset any previous mobile divider rules */
    .feature-card::after,
    .feature-card::before {
        display: block;
    }
    /* Vertical divider only on left-column cards (visual order) */
    .feature-card:nth-child(even)::after {
        display: none;
    }
    .feature-card:nth-child(odd)::after {
        display: block;
    }
    /* Compensate after the row-2 swap: card 4 now sits in left column, card 3 in right column */
    .feature-card:nth-child(3)::after { display: none; }
    .feature-card:nth-child(4)::after { display: block; }
    /* Horizontal divider under every row except the last */
    .feature-card:nth-last-child(-n+2)::before {
        display: none;
    }

    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }

    .promo-card {
        border-radius: 12px;
    }

    .promo-title {
        font-size: 14px;
        font-weight: 700;
        padding: 14px 14px;
        letter-spacing: 0.4px;
        line-height: 1.25;
    }

    .testimonials-heading {
        margin-bottom: 24px;
    }
    .testimonial-card {
        flex: 0 0 280px;
        padding: 22px 20px 18px;
        gap: 12px;
    }
    .testimonial-quote {
        font-size: 54px;
        top: 6px;
        left: 18px;
    }
    .testimonial-stars {
        margin-top: 28px;
    }
    .testimonial-text {
        font-size: 14px;
    }
    .testimonials-track {
        gap: 16px;
        animation-duration: 30s;
    }

    .footer {
        padding: 40px 0 24px;
    }

    .logo-img-large {
        width: 76px;
    }

    .footer {
        padding: 44px 0 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 14px;
        font-size: 14px;
    }

    .footer-tagline {
        font-size: 12.5px;
        max-width: 320px;
        margin: 8px 0 18px;
    }

    .footer-copy {
        font-size: 12px;
    }

    .footer-decor-trophy {
        width: 50px;
        top: auto;
        bottom: 30%;
        right: 4%;
        left: auto;
        opacity: 0.25;
    }

    .footer-decor-coin-1 {
        width: 36px;
        top: 30%;
        right: auto;
        left: 4%;
        opacity: 0.4;
    }

    .footer-decor-coin-2 {
        width: 32px;
        bottom: 12%;
        left: 78%;
        opacity: 0.4;
    }
}


/* ============================================
   Reveal animation + Ripple
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    * {
        animation: none !important;
        transition: none !important;
    }
}
