/* ============================================
   ILORA Home Page Styles
   Swiss Premium Standard - Mobile First
   ============================================ */

/* ─────────────────────────────────────────
   HERO SECTION - Swiss Premium Standard
   Premium Glassmorphism with Accent Details
   ───────────────────────────────────────── */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: calc(var(--header-height-mobile, 64px) + var(--space-4));
    padding-bottom: var(--space-6);
    position: relative;
    overflow: hidden;
}

/* Hero Background Image - Fullscreen Cover */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url('../../assets/images/hero.mobile.9x16.png') no-repeat center center;
    background-size: cover;
    /* Subtle animation on load */
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Gradient Overlay - Premium multi-layer */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.7) 30%,
            rgba(255, 255, 255, 0.2) 55%,
            transparent 70%),
        radial-gradient(circle at 80% 20%,
            rgba(46, 26, 71, 0.03) 0%,
            transparent 50%);
}

/* Decorative Accent Frame */
.hero-accent-frame {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    right: var(--space-4);
    bottom: var(--space-4);
    border: 1px solid rgba(46, 26, 71, 0.06);
    border-radius: var(--radius-2xl);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: frameReveal 1.2s var(--ease-premium) 0.8s forwards;
}

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

/* Tablet+: Center content vertically */
@media (min-width: 640px) {
    .hero {
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero::after {
        background:
            linear-gradient(90deg,
                rgba(255, 255, 255, 0.96) 0%,
                rgba(255, 255, 255, 0.8) 35%,
                rgba(255, 255, 255, 0.3) 55%,
                transparent 70%),
            radial-gradient(circle at 90% 50%,
                rgba(46, 26, 71, 0.04) 0%,
                transparent 40%);
    }

    .hero-accent-frame {
        top: var(--space-6);
        left: var(--space-6);
        right: var(--space-6);
        bottom: var(--space-6);
    }
}

/* Tablet Landscape: Switch to 16:9 image */
@media (min-width: 768px) {
    .hero::before {
        background-image: url('../../assets/images/hero.mobile.16x9.png');
        background-position: center center;
    }
}

/* Desktop: Full landscape with text on left, products on right */
@media (min-width: 1024px) {
    .hero {
        padding-top: 0;
    }

    .hero::before {
        background-image: url('../../assets/images/hero.mobile.16x9.png');
        background-position: right center;
    }

    .hero-accent-frame {
        top: var(--space-8);
        left: var(--space-8);
        right: var(--space-8);
        bottom: var(--space-8);
        border-color: rgba(46, 26, 71, 0.08);
    }
}

/* ─────────────────────────────────────────
   HERO CONTENT - Glassmorphism Card
   ───────────────────────────────────────── */

.hero-content {
    max-width: 560px;
    padding: var(--space-5) var(--space-4);
    position: relative;
    margin: var(--space-2);
    z-index: 1;

    /* Premium Glassmorphism */
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 32px rgba(46, 26, 71, 0.06),
        0 2px 8px rgba(46, 26, 71, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    /* Subtle inner glow */
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.9) 20%,
            rgba(255, 255, 255, 0.9) 80%,
            transparent 100%);
    border-radius: 18px 18px 0 0;
}

@media (min-width: 640px) {
    .hero-content {
        padding: var(--space-8) var(--space-7);
        margin: var(--space-6);
        border-radius: 24px;
        max-width: 520px;
        background: rgba(255, 255, 255, 0.78);
    }

    .hero-content::before {
        border-radius: 24px 24px 0 0;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: var(--space-12) var(--space-10);
        margin-left: var(--space-16);
        max-width: 580px;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow:
            0 20px 60px rgba(46, 26, 71, 0.1),
            0 8px 24px rgba(46, 26, 71, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .hero-content::before {
        border-radius: 28px 28px 0 0;
    }
}

/* ─────────────────────────────────────────
   HERO OVERLINE - With Brand Dot
   ───────────────────────────────────────── */

.hero-overline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    font-family: var(--font-accent);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--color-royal);
}

.hero-overline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-royal);
    box-shadow: 0 0 0 3px rgba(46, 26, 71, 0.15);
    animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(46, 26, 71, 0.15);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(46, 26, 71, 0.08);
    }
}

/* ─────────────────────────────────────────
   HERO TITLE
   ───────────────────────────────────────── */

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 5vw + 0.5rem, 3.5rem);
    font-weight: var(--font-regular);
    margin-bottom: var(--space-3);
    line-height: 1.1;
    letter-spacing: var(--tracking-tight);
    color: var(--color-charcoal);
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
        margin-bottom: var(--space-4);
    }
}

/* ─────────────────────────────────────────
   HERO PROMISE - Italic Tagline
   ───────────────────────────────────────── */

.hero-promise {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-style: italic;
    font-weight: var(--font-regular);
    color: var(--color-royal);
    margin-bottom: var(--space-3);
    opacity: 0.9;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .hero-promise {
        font-size: var(--text-xl);
    }
}

@media (min-width: 1024px) {
    .hero-promise {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-4);
    }
}

/* ─────────────────────────────────────────
   HERO DIVIDER
   ───────────────────────────────────────── */

.hero-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg,
            var(--color-royal) 0%,
            rgba(46, 26, 71, 0.3) 100%);
    margin-bottom: var(--space-4);
    border-radius: var(--radius-full);
}

@media (min-width: 1024px) {
    .hero-divider {
        width: 64px;
        margin-bottom: var(--space-5);
    }
}

/* ─────────────────────────────────────────
   HERO DESCRIPTION
   ───────────────────────────────────────── */

.hero-description {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-5);
    line-height: var(--leading-relaxed);
    max-width: 440px;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: var(--text-base);
    }
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: var(--text-lg);
        margin-bottom: var(--space-6);
    }
}

/* ─────────────────────────────────────────
   HERO ACTIONS
   ───────────────────────────────────────── */

.hero-actions {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

/* Mobile: Full-width stacked buttons */
@media (max-width: 639px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--space-3);
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        min-height: var(--touch-target-comfortable);
    }
}

@media (min-width: 640px) {
    .hero-actions {
        gap: var(--space-4);
    }
}

/* ─────────────────────────────────────────
   HERO STATS
   ───────────────────────────────────────── */

.hero-stats {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(46, 26, 71, 0.08);
    justify-content: space-between;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
    flex: 1;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--color-charcoal);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-family: var(--font-accent);
    font-size: 9px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: var(--font-medium);
}

/* Tablet+: Stats styling */
@media (min-width: 640px) {
    .hero-stats {
        gap: var(--space-8);
        margin-top: var(--space-6);
        padding-top: var(--space-5);
        justify-content: flex-start;
    }

    .hero-stat {
        text-align: left;
        flex: initial;
    }

    .hero-stat-value {
        font-size: var(--text-xl);
    }

    .hero-stat-label {
        font-size: 10px;
        letter-spacing: 0.1em;
    }
}

@media (min-width: 1024px) {
    .hero-stats {
        gap: var(--space-10);
    }

    .hero-stat-value {
        font-size: var(--text-2xl);
    }

    .hero-stat-label {
        font-size: 11px;
    }
}

/* ─────────────────────────────────────────
   PREMIUM SHIMMER EFFECT FOR CTA
   ───────────────────────────────────────── */

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.btn-shimmer {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(110deg,
            var(--color-royal) 0%,
            var(--color-royal) 40%,
            var(--color-royal-light) 50%,
            var(--color-royal) 60%,
            var(--color-royal) 100%);
    background-size: 200% 100%;
}

.btn-shimmer:hover {
    animation: shimmer 1.5s ease-in-out infinite;
    background-color: var(--color-royal);
}

/* ─────────────────────────────────────────
   HERO REVEAL ANIMATION ENHANCEMENTS
   ───────────────────────────────────────── */

/* Ensure hero elements animate on page load */
.hero .reveal-up {
    animation: heroReveal 0.8s var(--ease-premium) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero .reveal-delay-1 {
    animation-delay: 0.15s;
}

.hero .reveal-delay-2 {
    animation-delay: 0.3s;
}

.hero .reveal-delay-3 {
    animation-delay: 0.45s;
}

.hero .reveal-delay-4 {
    animation-delay: 0.6s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero .reveal-up {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .btn-shimmer:hover {
        animation: none;
    }
}

/* ─────────────────────────────────────────
   ABOUT SECTION - "Lice iza brenda"
   Swiss Premium Standard | Asymmetric Layout
   ───────────────────────────────────────── */

.about-section {
    background-color: var(--color-off-white);
    padding: var(--space-16) 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    gap: var(--space-10);
}

/* Image Container */
.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(46, 26, 71, 0.12),
        0 8px 24px rgba(46, 26, 71, 0.08);
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform var(--transition-slow) var(--ease-premium);
}

.about-image-frame:hover img {
    transform: scale(1.02);
}

/* Decorative accent border */
.about-image-accent {
    position: absolute;
    inset: var(--space-3);
    border: 2px solid var(--color-royal);
    border-radius: calc(var(--radius-2xl) - var(--space-2));
    opacity: 0.2;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.about-image-frame:hover .about-image-accent {
    opacity: 0.4;
}

/* Content Side */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-4) 0;
}

.about-content .overline {
    margin-bottom: var(--space-3);
    color: var(--color-royal);
}

.about-content .headline-section {
    margin-bottom: var(--space-6);
}

.about-lead {
    font-family: var(--font-body);
    font-size: var(--text-fluid-lg);
    color: var(--color-charcoal);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
    font-weight: var(--font-medium);
}

.about-text {
    font-family: var(--font-body);
    font-size: var(--text-fluid-base);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

/* Tablet: Better spacing */
@media (min-width: 640px) {
    .about-section {
        padding: var(--space-20) 0;
    }

    .about-grid {
        gap: var(--space-12);
    }

    .about-content {
        padding: var(--space-6) 0;
    }
}

/* Desktop: Two-column asymmetric grid */
@media (min-width: 1024px) {
    .about-section {
        padding: var(--space-24) 0;
    }

    .about-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-16);
        align-items: center;
    }

    .about-image-frame img {
        aspect-ratio: 4 / 5;
        max-height: 640px;
    }

    .about-image-accent {
        inset: var(--space-4);
    }

    .about-content {
        padding: var(--space-8) 0;
    }
}

/* Large Desktop: More breathing room */
@media (min-width: 1280px) {
    .about-grid {
        gap: var(--space-20);
    }
}

/* ─────────────────────────────────────────
   PRODUCTS SHOWCASE SECTION
   Editorial Layout | Swiss Premium Standard
   ───────────────────────────────────────── */

.products-showcase {
    background-color: var(--color-off-white);
    padding: var(--space-16) 0;
    overflow: hidden;
}

/* Section Header */
.products-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-12);
}

.products-header .overline {
    color: var(--color-royal);
    margin-bottom: var(--space-3);
}

.products-header .headline-section {
    margin-bottom: var(--space-4);
}

.products-lead {
    font-family: var(--font-body);
    font-size: var(--text-fluid-base);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* Products Grid - Mobile First */
.products-grid {
    display: grid;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

/* Product Card - Premium Styling */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition:
        transform var(--transition-slow) var(--ease-premium),
        box-shadow var(--transition-slow) var(--ease-premium);
    box-shadow:
        0 4px 20px rgba(46, 26, 71, 0.06),
        0 1px 4px rgba(46, 26, 71, 0.04);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(46, 26, 71, 0.12),
        0 8px 24px rgba(46, 26, 71, 0.08);
}

/* Product Image */
.product-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-ivory) 100%);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower) var(--ease-premium);
    will-change: transform;
}

.product-card:hover .product-card__image img {
    transform: scale(1.06);
}

/* Category Ribbon */
.product-card__ribbon {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: var(--category-color, var(--color-royal));
    color: var(--color-white);
    font-family: var(--font-accent);
    font-size: 10px;
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Product Content */
.product-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--space-6);
}

.product-card__tagline {
    font-family: var(--font-accent);
    font-size: 10px;
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--category-color, var(--color-royal));
    margin-bottom: var(--space-2);
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-fluid-xl);
    font-weight: var(--font-medium);
    color: var(--color-charcoal);
    margin-bottom: var(--space-3);
    line-height: var(--leading-tight);
}

.product-card__benefit {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    flex: 1;
    margin-bottom: var(--space-4);
}

/* Product Footer */
.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border-light);
}

.product-card__price {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
    color: var(--color-charcoal);
    letter-spacing: -0.01em;
}

.product-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--touch-target-min);
    height: var(--touch-target-min);
    border-radius: var(--radius-full);
    background: var(--color-off-white);
    color: var(--color-royal);
    transition:
        background var(--transition-base),
        color var(--transition-base),
        transform var(--transition-base);
}

.product-card__link:hover {
    background: var(--color-royal);
    color: var(--color-white);
    transform: translateX(4px);
}

.product-card__link:focus-visible {
    outline: 2px solid var(--color-royal);
    outline-offset: 2px;
}

/* Section CTA */
.products-cta {
    text-align: center;
    margin-top: var(--space-8);
}

/* ─────────────────────────────────────────
   PRODUCTS SECTION - RESPONSIVE
   ───────────────────────────────────────── */

/* Tablet: 2 column grid */
@media (min-width: 640px) {
    .products-showcase {
        padding: var(--space-20) 0;
    }

    .products-header {
        margin-bottom: var(--space-16);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }

    /* Featured product spans full width on tablet */
    .product-card--featured {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
    }

    .product-card--featured .product-card__image {
        aspect-ratio: 3/4;
    }

    .product-card--featured .product-card__content {
        padding: var(--space-8);
        justify-content: center;
    }

    .product-card--featured .product-card__title {
        font-size: var(--text-fluid-2xl);
    }

    .product-card--featured .product-card__benefit {
        font-size: var(--text-base);
    }
}

/* Desktop: Elegant 3-column balanced grid */
@media (min-width: 1024px) {
    .products-showcase {
        padding: var(--space-24) 0;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Reset featured product to match other cards on desktop */
    .product-card--featured {
        grid-column: auto;
        grid-row: auto;
        display: flex;
        flex-direction: column;
    }

    .product-card--featured .product-card__image {
        aspect-ratio: 4/5;
        flex: initial;
        min-height: auto;
    }

    .product-card--featured .product-card__content {
        padding: var(--space-6);
    }

    .product-card--featured .product-card__title {
        font-size: var(--text-fluid-xl);
    }

    .product-card--featured .product-card__benefit {
        font-size: var(--text-sm);
    }

    .product-card__content {
        padding: var(--space-6);
    }

    .product-card__image {
        aspect-ratio: 4/5;
    }

    /* Subtle differentiation for featured via accent */
    .product-card--featured {
        box-shadow:
            0 8px 32px rgba(46, 26, 71, 0.1),
            0 2px 8px rgba(46, 26, 71, 0.06);
    }
}

/* Large Desktop - More breathing room */
@media (min-width: 1280px) {
    .products-grid {
        gap: var(--space-10);
        max-width: 1320px;
    }

    .product-card__content {
        padding: var(--space-8);
    }

    .product-card__title {
        font-size: var(--text-2xl);
    }
}

/* ─────────────────────────────────────────
   WHY ILORA - Features Grid Section
   Swiss Premium Standard | Premium Benefits
   ───────────────────────────────────────── */

.why-ilora {
    background: var(--color-white);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.why-ilora::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(46, 26, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 77, 64, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.why-ilora__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
    position: relative;
}

.why-ilora__header .overline {
    color: var(--color-royal);
    margin-bottom: var(--space-3);
}

.why-ilora__header .headline-section {
    margin-bottom: var(--space-4);
}

.why-ilora__lead {
    font-family: var(--font-body);
    font-size: var(--text-fluid-base);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* Features Grid */
.why-ilora__grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .why-ilora {
        padding: var(--space-20) 0;
    }

    .why-ilora__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
}

@media (min-width: 1024px) {
    .why-ilora {
        padding: var(--space-24) 0;
    }

    .why-ilora__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-8);
    }
}

/* Feature Card - Premium Styling */
.feature-card {
    position: relative;
    padding: var(--space-8);
    background: var(--color-off-white);
    border-radius: var(--radius-2xl);
    text-align: center;
    transition:
        transform var(--transition-slow) var(--ease-premium),
        box-shadow var(--transition-slow),
        background var(--transition-slow);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: var(--color-white);
    box-shadow:
        0 20px 60px rgba(46, 26, 71, 0.08),
        0 8px 24px rgba(46, 26, 71, 0.04);
    border-color: rgba(46, 26, 71, 0.06);
}

/* Icon Container */
.feature-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(46, 26, 71, 0.08) 0%,
            rgba(46, 26, 71, 0.03) 100%);
    border-radius: var(--radius-xl);
    color: var(--color-royal);
    transition:
        transform var(--transition-slow) var(--ease-premium),
        background var(--transition-slow);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.08);
    background: linear-gradient(135deg,
            rgba(46, 26, 71, 0.12) 0%,
            rgba(46, 26, 71, 0.05) 100%);
}

.feature-card__icon svg {
    width: 32px;
    height: 32px;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--color-charcoal);
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
}

.feature-card__text {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────
   ABOUT SECTION ENHANCEMENTS
   Overline Dot & Divider
   ───────────────────────────────────────── */

.about-overline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.overline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-royal);
    box-shadow: 0 0 0 3px rgba(46, 26, 71, 0.15);
}

.about-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg,
            var(--color-royal) 0%,
            transparent 100%);
    margin-bottom: var(--space-6);
}

/* ─────────────────────────────────────────
   SWISS STANDARD SECTION
   Trust & Credentials with Quote
   ───────────────────────────────────────── */

.swiss-standard {
    background: linear-gradient(180deg,
            var(--color-off-white) 0%,
            var(--color-white) 100%);
    padding: var(--space-20) 0;
    position: relative;
}

.swiss-standard__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Quote Block */
.swiss-quote {
    position: relative;
    padding: var(--space-10) var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-3xl);
    box-shadow:
        0 20px 60px rgba(46, 26, 71, 0.06),
        0 4px 16px rgba(46, 26, 71, 0.03);
    margin-bottom: var(--space-10);
}

/* Decorative Quote Mark */
.swiss-quote::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    left: var(--space-6);
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-royal);
    opacity: 0.1;
}

.swiss-quote__text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-regular);
    font-style: italic;
    color: var(--color-charcoal);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .swiss-quote {
        padding: var(--space-12) var(--space-12);
    }

    .swiss-quote__text {
        font-size: var(--text-2xl);
    }

    .swiss-quote::before {
        font-size: 6rem;
    }
}

.swiss-quote__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.swiss-quote__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 0 0 3px var(--color-white),
        0 0 0 5px rgba(46, 26, 71, 0.1);
}

.swiss-quote__info {
    text-align: left;
}

.swiss-quote__name {
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    font-style: normal;
    color: var(--color-charcoal);
    display: block;
}

.swiss-quote__role {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* Trust Badges */
.swiss-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

.swiss-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--color-white);
    border-radius: var(--radius-full);
    font-family: var(--font-accent);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--color-charcoal);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(46, 26, 71, 0.05);
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);
}

.swiss-badge:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(46, 26, 71, 0.08);
}

.swiss-badge svg {
    width: 16px;
    height: 16px;
    color: var(--color-royal);
}

/* ─────────────────────────────────────────
   NEWSLETTER CTA SECTION
   Premium Glassmorphism Card
   ───────────────────────────────────────── */

.newsletter-cta {
    background: var(--color-royal);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.newsletter-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 77, 64, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-cta__card {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-10) var(--space-8);
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .newsletter-cta__card {
        padding: var(--space-12) var(--space-12);
    }
}

.newsletter-cta__card .overline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-3);
}

.newsletter-cta__title {
    font-family: var(--font-heading);
    font-size: var(--text-fluid-2xl);
    font-weight: var(--font-regular);
    color: var(--color-white);
    margin-bottom: var(--space-4);
    letter-spacing: var(--tracking-tight);
}

.newsletter-cta__text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter Form */
.newsletter-form {
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form__group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

@media (min-width: 480px) {
    .newsletter-form__group {
        flex-direction: row;
        gap: var(--space-2);
    }
}

.newsletter-form__input {
    flex: 1;
    padding: var(--space-4) var(--space-5);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-white);
    transition:
        background var(--transition-base),
        border-color var(--transition-base);
}

.newsletter-form__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form__input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-form__group .btn-primary {
    background: var(--color-white);
    color: var(--color-royal);
    border: none;
    white-space: nowrap;
}

.newsletter-form__group .btn-primary:hover {
    background: var(--color-off-white);
    transform: translateY(-2px);
}

/* Override shimmer for white button */
.newsletter-form__group .btn-shimmer {
    background-image: linear-gradient(110deg,
            var(--color-white) 0%,
            var(--color-white) 40%,
            rgba(255, 255, 255, 0.8) 50%,
            var(--color-white) 60%,
            var(--color-white) 100%);
}

.newsletter-form__disclaimer {
    margin-top: var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
}

/* ─────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
   ───────────────────────────────────────── */

/* ─────────────────────────────────────────
   MOBILE OPTIMIZATION - Horizontal Carousel
   Premium Mobile Experience
   ───────────────────────────────────────── */

/* WHY ILORA - Horizontal Scroll Carousel on Mobile */
@media (max-width: 639px) {
    .why-ilora {
        padding: var(--space-10) 0;
    }

    .why-ilora__header {
        margin-bottom: var(--space-8);
        padding: 0 var(--space-2);
    }

    .why-ilora__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: var(--space-4);
        padding: var(--space-2) var(--space-4);
        margin: 0 calc(-1 * var(--space-4));
    }

    .why-ilora__grid::-webkit-scrollbar {
        display: none;
    }

    .feature-card {
        flex: 0 0 260px;
        scroll-snap-align: center;
        padding: var(--space-6);
    }

    .feature-card__icon {
        width: 56px;
        height: 56px;
        margin-bottom: var(--space-4);
    }

    .feature-card__icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-card__title {
        font-size: var(--text-base);
    }

    .feature-card__text {
        font-size: var(--text-xs);
    }
}

/* ABOUT SECTION - Compact Mobile */
@media (max-width: 639px) {
    .about-section {
        padding: var(--space-10) 0;
    }

    .about-grid {
        gap: var(--space-6);
    }

    .about-content {
        padding: var(--space-2) 0;
    }

    .about-content .headline-section {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-4);
    }

    .about-lead {
        font-size: var(--text-base);
        margin-bottom: var(--space-3);
    }

    .about-text {
        font-size: var(--text-sm);
        margin-bottom: var(--space-5);
    }

    .about-divider {
        width: 48px;
        margin-bottom: var(--space-4);
    }
}

/* PRODUCTS SHOWCASE - Horizontal Scroll on Mobile */
@media (max-width: 639px) {
    .products-showcase {
        padding: var(--space-10) 0;
    }

    .products-header {
        margin-bottom: var(--space-8);
        padding: 0 var(--space-2);
    }

    .products-header .headline-section {
        font-size: var(--text-2xl);
    }

    .products-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: var(--space-4);
        padding: var(--space-2) var(--space-4);
        margin: 0 calc(-1 * var(--space-4));
        margin-bottom: var(--space-6);
    }

    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
    }

    .product-card--featured {
        flex: 0 0 280px;
    }

    .product-card__image {
        aspect-ratio: 4/5;
    }

    .product-card__content {
        padding: var(--space-5);
    }

    .product-card__title {
        font-size: var(--text-lg);
    }

    .product-card__benefit {
        font-size: var(--text-xs);
        margin-bottom: var(--space-3);
    }

    .products-cta {
        margin-top: var(--space-4);
    }
}

/* SWISS STANDARD - Compact Mobile */
@media (max-width: 639px) {
    .swiss-standard {
        padding: var(--space-10) 0;
    }

    .swiss-quote {
        padding: var(--space-6) var(--space-5);
        margin-bottom: var(--space-6);
        border-radius: var(--radius-2xl);
    }

    .swiss-quote::before {
        font-size: 3.5rem;
        top: var(--space-2);
        left: var(--space-4);
    }

    .swiss-quote__text {
        font-size: var(--text-base);
        margin-bottom: var(--space-4);
    }

    .swiss-quote__avatar {
        width: 44px;
        height: 44px;
    }

    .swiss-quote__name {
        font-size: var(--text-xs);
    }

    .swiss-quote__role {
        font-size: 10px;
    }

    /* Trust Badges - Horizontal Scroll */
    .swiss-badges {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: var(--space-3);
        padding: var(--space-1) var(--space-2);
        margin: 0 calc(-1 * var(--space-4));
    }

    .swiss-badges::-webkit-scrollbar {
        display: none;
    }

    .swiss-badge {
        flex: 0 0 auto;
        scroll-snap-align: start;
        white-space: nowrap;
        padding: var(--space-2) var(--space-4);
    }
}

/* NEWSLETTER CTA - Compact Mobile */
@media (max-width: 639px) {
    .newsletter-cta {
        padding: var(--space-10) 0;
    }

    .newsletter-cta__card {
        padding: var(--space-6) var(--space-5);
        border-radius: var(--radius-2xl);
    }

    .newsletter-cta__title {
        font-size: var(--text-xl);
    }

    .newsletter-cta__text {
        font-size: var(--text-sm);
        margin-bottom: var(--space-5);
    }

    .newsletter-form__input {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }

    .newsletter-form__group .btn-primary {
        padding: var(--space-3) var(--space-5);
        font-size: var(--text-sm);
    }
}

/* HERO SECTION - Premium Mobile */
@media (max-width: 639px) {
    .hero {
        min-height: auto;
        min-height: 100svh;
    }

    .hero-accent-frame {
        display: none;
    }

    .hero-content {
        padding: var(--space-5) var(--space-4);
        margin: var(--space-2);
        border-radius: 16px;
    }

    .hero-overline {
        margin-bottom: var(--space-2);
    }

    .hero-overline-dot {
        width: 6px;
        height: 6px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        margin-bottom: var(--space-2);
    }

    .hero-promise {
        font-size: var(--text-base);
        margin-bottom: var(--space-2);
    }

    .hero-divider {
        width: 40px;
        margin-bottom: var(--space-3);
    }

    .hero-description {
        font-size: var(--text-sm);
        margin-bottom: var(--space-4);
    }

    .hero-stats {
        margin-top: var(--space-4);
        padding-top: var(--space-3);
        gap: var(--space-2);
    }

    .hero-stat-value {
        font-size: var(--text-base);
    }

    .hero-stat-label {
        font-size: 8px;
    }
}

/* Ultra-small screens (< 375px) */
@media (max-width: 374px) {
    .feature-card {
        flex: 0 0 220px;
        padding: var(--space-5);
    }

    .product-card {
        flex: 0 0 240px;
    }

    .swiss-quote {
        padding: var(--space-5) var(--space-4);
    }

    .swiss-quote__text {
        font-size: var(--text-sm);
    }

    .newsletter-cta__card {
        padding: var(--space-5) var(--space-4);
    }
}

/* ─────────────────────────────────────────
   SECTION SEPARATORS - Premium Swiss Style
   ───────────────────────────────────────── */

/* Add a subtle gradient line between sections */
/* Add a subtle gradient line between sections */
.section+.section {
    position: relative;
}

.section+.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(46, 26, 71, 0.12) 20%,
            rgba(46, 26, 71, 0.12) 80%,
            transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Specific adjustments */
.newsletter-cta::before {
    display: none;
    /* Newsletter has its own background styling */
}

/* Mobile Adjustment - Slightly stronger for visibility */
@media (max-width: 639px) {
    .section+.section::before {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(46, 26, 71, 0.15) 15%,
                rgba(46, 26, 71, 0.15) 85%,
                transparent 100%);
    }
}