/* ═══════════════════════════════════════════
   FEYORA LANDING PAGE — Design System
   ═══════════════════════════════════════════ */

:root {
    /* — Colors — */
    --color-bg: #fafafa;
    --color-surface: #ffffff;
    --color-dark: #0a0a0f;
    --color-text: #1a1a2e;
    --color-text-muted: #6b7280;
    --color-border: #e5e7eb;

    --color-primary: #667eea;
    --color-primary-end: #764ba2;
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-end) 100%);

    --color-accent: #f472b6;
    --color-accent-alt: #a855f7;

    /* — Typography — */
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* — Spacing — */
    --section-px: clamp(1rem, 5vw, 6rem);
    --section-py: clamp(3rem, 8vw, 7rem);

    /* — Radius — */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* — Shadow — */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(102, 126, 234, 0.18);

    /* — Transition — */
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ═══════════════════════════════════════════
   RESET & GLOBALS
   ═══════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}


/* ═══════════════════════════════════════════
   PAGE LOADER
   ═══════════════════════════════════════════ */

.loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    transition: opacity .4s ease;
}

.loader-overlay.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-text {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: #fff;
}

.loader-text span {
    display: inline-block;
    opacity: 0;
    animation: loaderLetterIn .4s ease-out forwards;
    animation-delay: calc(var(--i) * .1s);
}

@keyframes loaderLetterIn {
    to {
        opacity: 1;
    }
}


/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-surface);
    border-bottom: 1px solid #e0e0e0;
    transition: box-shadow .3s var(--ease);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--section-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    gap: 1.5rem;
}

/* ── Left: Hamburger + Search ── */
.nav-left {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.nav-hamburger {
    width: 36px;
    height: 36px;
    display: none;          /* hidden on desktop */
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: background .2s;
}

.nav-hamburger:hover {
    background: #f3f4f6;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity .2s;
}

.nav-logo:hover .nav-logo-img {
    opacity: .8;
}

/* Logo (kept for branding in drawer / footer) */
.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -.02em;
}

.logo-tm {
    font-size: .7rem;
    color: var(--color-text-muted);
    vertical-align: super;
    margin-left: 1px;
}

/* Search Bar — pill shape */
.search-bar {
    position: relative;
    width: 100%;
}

.nav-left .search-bar {
    width: 280px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: .85rem;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: .55rem 1rem .55rem 2.5rem;
    font-family: var(--font);
    font-size: .85rem;
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, .12);
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* ── Center: Nav Links ── */
.nav-center {
    display: none;        /* hidden on mobile */
    align-items: center;
    justify-content: center;
    flex: 1;
}

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

.nav-link-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    font-size: .88rem;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--color-text);
    background: #f5f5f5;
}

.nav-chevron {
    font-size: .55rem;
    color: #9ca3af;
    transition: transform .2s;
}

.nav-link:hover .nav-chevron {
    color: #6b7280;
}

/* ── Right: For Business + Icons ── */
.nav-right {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.nav-btn-business {
    display: inline-flex;
    align-items: center;
    padding: .42rem 1.25rem;
    font-family: var(--font);
    font-size: .82rem;
    font-weight: 600;
    color: #d94f3e;
    border: 1.5px solid #d94f3e;
    border-radius: 999px;
    background: transparent;
    white-space: nowrap;
    transition: background .2s, color .2s, box-shadow .2s;
    text-decoration: none;
}

.nav-btn-business:hover {
    background: #d94f3e;
    color: #fff;
    box-shadow: 0 4px 14px rgba(217, 79, 62, .2);
}

.nav-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #374151;
    border-radius: 50%;
    transition: color .2s, background .2s;
}

.nav-icon:hover {
    color: var(--color-primary);
    background: #f3f4f6;
}

/* Divider (legacy support) */
.nav-divider {
    width: 1px;
    height: 22px;
    background: var(--color-border);
    margin: 0 .15rem;
}

/* ── Mobile Search below nav ── */
.mobile-search-wrap {
    display: none;
    padding: 0 var(--section-px) .65rem;
}

/* ── Responsive ── */
@media (min-width: 900px) {
    .nav-center {
        display: flex;
    }

    .nav-left .search-bar {
        width: 280px;
    }
}

@media (min-width: 1100px) {
    .nav-left .search-bar {
        width: 320px;
    }
}

@media (max-width: 899px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-left .search-bar {
        display: none;          /* hidden on mobile, shown in mobile-search-wrap */
    }

    .mobile-search-wrap {
        display: block;
    }

    .nav-btn-business {
        display: none;          /* hide on small screens */
    }

    .nav-container {
        height: 52px;
    }
}


/* ═══════════════════════════════════════════
   CATEGORY BAR
   ═══════════════════════════════════════════ */

.category-bar {
    position: relative;
    /* sits right below the navbar */
    z-index: 10;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    padding: .6rem 0;
    overflow: hidden;
    margin: auto;
    width: 100%;
}


.category-bar-track {
    display: flex;
    gap: .25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--section-px);
    flex: 1;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-bar-track::-webkit-scrollbar {
    display: none;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
    padding: .5rem .9rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background .2s var(--ease);
}

.cat-item:hover {
    background: #f3f4f6;
}

.cat-img-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #f3f4f6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}

.cat-item:hover .cat-img-wrap {
    box-shadow: 0 4px 16px rgba(102, 126, 234, .15);
    transform: translateY(-2px);
}

.cat-img-wrap img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.cat-label {
    font-size: .72rem;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.cat-label i {
    font-size: .5rem;
    color: #9ca3af;
}

/* Scroll arrow button */
.cat-bar-arrow {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, transparent, var(--color-surface) 40%);
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: opacity .2s;
}

.cat-bar-arrow i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: var(--color-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    transition: box-shadow .2s, background .2s;
}

.cat-bar-arrow:hover i {
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
    background: #f9fafb;
}

.cat-bar-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Make the bar container relative for the arrow positioning */



/* ═══════════════════════════════════════════
   MOBILE DRAWER
   ═══════════════════════════════════════════ */

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background .35s var(--ease);
}

.drawer-overlay.active {
    background: rgba(0, 0, 0, .45);
    pointer-events: all;
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(360px, 85vw);
    height: 100%;
    z-index: 1200;
    background: var(--color-surface);
    transform: translateX(-100%);
    transition: transform .35s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
}

.drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #6b7280;
    border-radius: 50%;
    transition: background .2s, color .2s;
}

.drawer-close:hover {
    background: #f3f4f6;
    color: var(--color-text);
}

.drawer-links {
    padding: .5rem 1.5rem;
    flex: 1;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--color-text);
    border-bottom: 1px solid #f3f4f6;
    transition: color .2s;
}

.drawer-link:last-child {
    border-bottom: none;
}

.drawer-link i {
    font-size: .7rem;
    color: #9ca3af;
}

.drawer-link:hover {
    color: var(--color-primary);
}

.drawer-divider {
    height: 1px;
    background: var(--color-border);
    margin: .5rem 0;
}

.drawer-footer {
    padding: 1.5rem;
}

.drawer-socials {
    display: flex;
    gap: .75rem;
}

.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: transform .2s, opacity .2s;
}

.social-circle:hover {
    transform: scale(1.1);
}

.social-circle.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-circle.facebook {
    background: #1877f2;
}

.social-circle.whatsapp {
    background: #25d366;
}


/* ═══════════════════════════════════════════
   SECTION TAG (reusable)
   ═══════════════════════════════════════════ */

.section-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--color-primary);
    margin-bottom: .5rem;
}


/* ═══════════════════════════════════════════
   HERO / CATEGORY CARDS
   ═══════════════════════════════════════════ */

.hero-section {
    padding: clamp(1rem, 2vw, 1.5rem) var(--section-px) var(--section-py);
    background: var(--color-bg);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Premium Hero & Category Section */
.premium-hero-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.premium-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--color-primary);
    font-style: italic;
    font-family: serif;
    font-size: 1.1em;
}

.premium-subtitle {
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.premium-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 850px) {
    .premium-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4.5rem;
    }
}

.premium-category-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.04);
    transition: all 0.6s var(--ease);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.premium-category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 90px rgba(102, 126, 234, 0.12);
}

.premium-card-image {
    height: 380px;
    overflow: hidden;
    position: relative;
    background: #eee;
}

.premium-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

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

.premium-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4) 100%);
    opacity: 0.4;
    transition: opacity 0.6s;
}

.premium-category-card:hover .premium-card-overlay {
    opacity: 0.7;
}

.premium-card-content {
    position: relative;
    margin: -80px 2rem 2.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    transition: all 0.6s var(--ease);
    z-index: 10;
}

.premium-category-card:hover .premium-card-content {
    background: #fff;
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.2);
}

.premium-card-badge {
    position: absolute;
    top: -24px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: transform 0.6s var(--ease);
}

.premium-category-card:hover .premium-card-badge {
    transform: scale(1.1) rotate(10deg);
}

.premium-card-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}

.premium-card-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.premium-card-cta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.4s var(--ease);
}

.premium-category-card:hover .premium-card-cta {
    gap: 1.4rem;
}

.premium-card-cta i {
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .premium-card-content {
        margin: -50px 1.25rem 2rem;
        padding: 1.75rem;
    }
    .premium-card-image {
        height: 300px;
    }
    .premium-card-title {
        font-size: 1.4rem;
    }
}


/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */

.about-section {
    padding: var(--section-py) var(--section-px);
    background: var(--color-surface);
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero part */
.about-hero {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .about-hero {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
}

.about-hero-text {
    flex: 1;
}

.about-headline {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.about-lead {
    font-size: clamp(.9rem, 1.4vw, 1.05rem);
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.75;
}

.about-lead strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Since badge */
.about-hero-badge {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: var(--radius-xl);
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-hero-badge {
        width: 260px;
        height: 260px;
        margin: 0;
    }
}

.about-hero-badge::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, var(--color-primary), var(--color-accent), var(--color-accent-alt), var(--color-primary));
    animation: badgeRotate 6s linear infinite;
    opacity: .3;
}

@keyframes badgeRotate {
    to {
        transform: rotate(360deg);
    }
}

.about-hero-badge>* {
    position: relative;
    z-index: 1;
}

.badge-since {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    font-style: italic;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-year {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 800;
    font-style: italic;
    color: #fff;
    text-shadow: 2px 2px 0 var(--color-accent), 4px 4px 0 rgba(0, 0, 0, .15);
    line-height: 1;
}

.badge-stars {
    display: flex;
    gap: .4rem;
    margin-top: .5rem;
}

.badge-stars span {
    color: #fbbf24;
    font-size: 1rem;
    animation: starPulse 1.5s ease-in-out infinite;
}

.badge-stars span:nth-child(2) {
    animation-delay: .2s;
    font-size: .85rem;
}

.badge-stars span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes starPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.85);
    }
}

/* Premium Showcase */
.premium-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-card);
    margin-bottom: 4rem;
}

@media (min-width: 900px) {
    .premium-showcase {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

.showcase-panel {
    position: relative;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Panel 1: Media */
.showcase-media {
    padding: 0;
    min-height: 400px;
    background: var(--color-dark);
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.6s var(--ease);
}

.showcase-media:hover .showcase-img {
    transform: scale(1.05);
}

.play-btn-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    color: #fff;
}

.play-btn {
    width: 64px;
    height: 64px;
    background: #fff;
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: playRipple 2.4s infinite;
}

@keyframes playRipple {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.play-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

/* Panel 2: Product */
.showcase-product {
    background: #fdfaf5; /* Premium Cream background */
    align-items: center;
    text-align: center;
    border-right: 1px solid #f0e6da;
    border-left: 1px solid #f0e6da;
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #4b5a45; /* Muted olive premium accent */
    color: #fff;
    padding: 0.45rem 1.2rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 30px;
}

.product-visual {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.product-visual img {
    max-height: 100%;
    filter: drop-shadow(0 15px 45px rgba(0,0,0,0.12));
    transition: transform 0.6s var(--ease);
}

.showcase-product:hover .product-visual img {
    transform: translateY(-12px) scale(1.05);
}

.rating-stars {
    color: #d4a373;
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #4b5a45;
    letter-spacing: -0.01em;
}

.product-info p {
    font-size: 0.85rem;
    color: #8c7e6a;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* Panel 3: Features */
.showcase-features {
    background: #4b5a45; /* Dark premium olive */
    color: #fff;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.feature-item:hover .feature-icon-wrap {
    background: #fff;
    border-color: #fff;
    transform: rotate(15deg);
}

.feature-icon {
    font-size: 1.1rem;
    color: #fff;
    transition: color 0.4s var(--ease);
}

.feature-item:hover .feature-icon {
    color: #4b5a45;
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}

.feature-text p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
}

@media (max-width: 899px) {
    .showcase-product {
        border-left: none;
        border-right: none;
        border-top: 1px solid #f0e6da;
        border-bottom: 1px solid #f0e6da;
    }
    
    .showcase-media {
        min-height: 320px;
    }
}

/* Scroll tagline */
.tagline-block {
    padding: 3rem 0;
    text-align: center;
}

.tagline-text {
    font-size: clamp(1.1rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .04em;
    text-transform: uppercase;
    max-width: 700px;
    margin: 0 auto;
}

.tagline-text span {
    color: #d1d5db;
    transition: color .5s var(--ease);
}

.tagline-text span.revealed {
    color: var(--color-text);
}


/* ═══════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════ */

/* Premium Stats Section */
.premium-stats-section {
    padding: clamp(5rem, 12vw, 9rem) var(--section-px);
    background: #0d0d12;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-outer {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 900px) {
    .stats-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.premium-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: all 0.5s var(--ease);
}

.premium-stat-item:hover .stat-icon {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-10px) scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    border-color: var(--color-primary);
}

.stat-number-wrap {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-plus {
    color: var(--color-primary);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}


/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */

/* Premium CTA Section */
.premium-cta-section {
    position: relative;
    padding: clamp(6rem, 15vw, 12rem) var(--section-px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 650px;
    overflow: hidden;
    background: #000;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-parallax-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.05);
}

.cta-inner-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.cta-glass-card {
    max-width: 680px;
    background: rgba(13, 13, 18, 0.4);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    padding: clamp(3rem, 8vw, 5rem);
    border-radius: calc(var(--radius-xl) * 1.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-align: left;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5);
}

.cta-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.cta-glass-card h2 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.75rem;
    letter-spacing: -0.035em;
}

.cta-glass-card p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 3.5rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
}

.cta-premium-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.premium-cta-btn {
    padding: 1.4rem 2.8rem;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    transition: all 0.5s var(--ease);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-solid {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 20px 45px rgba(102, 126, 234, 0.45);
}

.btn-solid:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.6);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-8px);
}

@media (max-width: 700px) {
    .cta-glass-card {
        padding: 3rem 2rem;
        text-align: center;
    }
    .cta-glass-card p {
        margin-inline: auto;
    }
    .cta-premium-buttons {
        flex-direction: column;
    }
    .premium-cta-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem var(--section-px) 2rem;
}

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

@media (min-width: 700px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
        gap: 2.5rem;
    }
}

.footer-brand p {
    font-size: .88rem;
    color: var(--color-text-muted);
    margin-top: .75rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-col a {
    font-size: .88rem;
    color: var(--color-text-muted);
    transition: color .2s;
}

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

.footer-newsletter p {
    font-size: .85rem;
    color: var(--color-text-muted);
    margin-bottom: .75rem;
    line-height: 1.55;
}

.newsletter-form {
    display: flex;
    gap: .5rem;
}

.newsletter-form input {
    flex: 1;
    padding: .65rem 1rem;
    font-family: var(--font);
    font-size: .85rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color .2s;
}

.newsletter-form input:focus {
    border-color: var(--color-primary);
}

.newsletter-form button {
    padding: .65rem 1.4rem;
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-dark);
    border-radius: var(--radius-sm);
    transition: background .2s;
}

.newsletter-form button:hover {
    background: #1f2937;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-socials {
    display: flex;
    gap: .75rem;
}

.footer-socials a {
    font-size: 1.1rem;
    color: #6b7280;
    transition: color .2s;
}

.footer-socials a:hover {
    color: var(--color-text);
}

.footer-payments {
    display: flex;
    gap: .75rem;
    font-size: 1.5rem;
    color: #9ca3af;
}

.footer-locale {
    font-size: .82rem;
    color: var(--color-text-muted);
}

.locale-sep {
    color: #d1d5db;
    margin: 0 .35rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid #f3f4f6;
}

.footer-copyright p {
    font-size: .78rem;
    color: #9ca3af;
}


/* ═══════════════════════════════════════════
   ANIMATIONS (Intersection Observer driven)
   ═══════════════════════════════════════════ */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}