/* ==========================================================================
   LEELA UNIVERSE Platform Core Design System (Natural Linen & Bamboo Green)
   ========================================================================== */

:root {
    /* Color Tokens */
    --bg-linen-light: #FAF7F2;
    --bg-linen: #F5EFEB;
    --bg-linen-dark: #E8DEC8;
    --color-bamboo: #5B8C5A;
    --color-bamboo-light: #7A9E7E;
    --color-lotus: #E8A0BF;
    --color-lotus-soft: #F4C2D7;
    --color-lotus-deep: #C25983;
    --text-primary: #2A1D15;
    --text-secondary: #5A4A3E;
    --text-muted: #8C7B65;
    
    /* Glassmorphism Design Tokens */
    --glass-bg: rgba(250, 247, 242, 0.85);
    --glass-border: rgba(212, 197, 169, 0.5);
    --glass-shadow: 0 15px 35px rgba(42, 29, 21, 0.08);

    /* Fonts */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;

    /* Spacing & Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(91, 140, 90, 0.25);
    color: var(--text-primary);
}

/* Custom High-End Bamboo-Linen Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(244, 237, 226, 0.4);
    border-radius: 999px;
    margin: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5B8C5A 0%, #355C34 100%);
    border-radius: 999px;
    border: 1.5px solid rgba(255, 253, 248, 0.8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6AA069 0%, #3E6A3C 100%);
    box-shadow: 0 0 10px rgba(91, 140, 90, 0.5);
}

/* Firefox Scrollbar support */
* {
    scrollbar-width: thin;
    scrollbar-color: #5B8C5A rgba(244, 237, 226, 0.4);
}

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

/* Canvas Background for Living Water */
#waterCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.65;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section */
.section {
    padding: 0.5rem 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo-icon {
    width: 2.2rem;
    height: 2.2rem;
    transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo-icon {
    transform: rotate(15deg) scale(1.08);
}

/* Animated Brand Title with Signature Platform Palette & Tight Letter-Spacing */
.nav-title {
    font-family: var(--font-heading);
    font-size: 1.32rem;
    font-weight: 800;
    letter-spacing: 0.4px !important;
    background: linear-gradient(
        120deg, 
        #2A1D15 0%, 
        #5B8C5A 28%, 
        #E8A0BF 55%, 
        #E5C158 80%, 
        #2A1D15 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: leelaTitleShimmer 6s ease-in-out infinite;
    display: inline-block;
}

@keyframes leelaTitleShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Evenly Spaced Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1F150E;
    font-weight: 700;
    font-size: 0.93rem;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.2rem 0;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-bamboo);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-bamboo);
    border-radius: var(--radius-full);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Button Component base styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    position: relative;
    backdrop-filter: blur(12px) saturate(180%);
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.45),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.65s ease;
    pointer-events: none;
}

.btn:hover::after {
    left: 180%;
}

.btn-primary {
    background: linear-gradient(135deg, #487A47 0%, #355C34 100%) !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px rgba(72, 122, 71, 0.35) !important;
    white-space: nowrap !important;
    border: none !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #528B51 0%, #3E6A3C 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 122, 71, 0.5) !important;
    color: #FFFFFF !important;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-neutral);
    white-space: nowrap !important;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: var(--color-bamboo);
}

.btn-lotus {
    background: rgba(255, 253, 248, 0.95) !important;
    color: #2A1D15 !important;
    border: 1.5px solid rgba(72, 122, 71, 0.4) !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    backdrop-filter: blur(8px);
}

.btn-lotus:hover {
    background: #FFFFFF !important;
    border-color: #487A47 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(72, 122, 71, 0.2) !important;
    color: #2A1D15 !important;
}

/* ==========================================================================
   CULT UI & WATERMELON UI DESIGN SYSTEM COMPONENTS
   ========================================================================== */

/* Cult UI Shimmer Eyebrow Badge */
.cult-shimmer-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.38rem 1.1rem;
    background: rgba(255, 253, 248, 0.85);
    border: 1px solid rgba(91, 140, 90, 0.35);
    border-radius: 999px;
    color: var(--color-bamboo);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(91, 140, 90, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.cult-shimmer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%);
    animation: cultShimmer 3.5s infinite linear;
}

@keyframes cultShimmer {
    0% { left: -100%; }
    40% { left: 200%; }
    100% { left: 200%; }
}

/* Cult UI Spotlight Glass Container */
.cult-spotlight-card {
    position: relative;
    background: rgba(255, 253, 248, 0.78);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 197, 169, 0.6);
    border-radius: 24px;
    padding: 1.8rem 2.2rem;
    box-shadow: 0 20px 45px rgba(42, 29, 21, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.cult-spotlight-card:hover {
    border-color: rgba(91, 140, 90, 0.5);
    box-shadow: 0 25px 60px rgba(91, 140, 90, 0.16), inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.audience-card {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.audience-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 22px 50px rgba(45, 90, 61, 0.12) !important;
    border-color: rgba(45, 90, 61, 0.28) !important;
}

/* Shop Showcase Category Cards */
.shop-category-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 8px 24px rgba(42, 29, 21, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.shop-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(45, 90, 61, 0.14);
    border-color: rgba(45, 90, 61, 0.3);
}

.shop-category-card img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease;
}

.shop-category-card:hover img {
    transform: scale(1.03);
}

/* Watermelon UI Floating Pill Badge */
.watermelon-floating-pill {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(212, 197, 169, 0.6);
    border-radius: 16px;
    padding: 0.6rem 1rem;
    box-shadow: 0 16px 36px rgba(42, 29, 21, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    z-index: 12;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.watermelon-floating-pill:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 20px 45px rgba(91, 140, 90, 0.22);
}

/* Cult UI Infinite Ticker Marquee — Organic Bamboo-Linen Glass Strip */
.cult-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(91, 140, 90, 0.1) 0%, rgba(245, 239, 235, 0.85) 50%, rgba(91, 140, 90, 0.1) 100%);
    backdrop-filter: blur(12px);
    padding: 0.65rem 0;
    margin: 1.5rem 0;
    border-top: 1px solid rgba(91, 140, 90, 0.25);
    border-bottom: 1px solid rgba(91, 140, 90, 0.25);
    white-space: nowrap;
    position: relative;
    user-select: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 18px rgba(42, 29, 21, 0.04);
}

.cult-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 1.8rem;
    animation: cultMarquee 38s linear infinite;
}

.cult-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes cultMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cult-marquee-item {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.cult-marquee-dot {
    font-size: 0.95rem;
    color: #3B7A3E;
    opacity: 0.9;
    font-weight: 700;
}

/* Hero Section - Full Viewport Layout */
.hero-section {
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 1.8rem 2.2rem;
    align-items: center;
    padding: 1.2rem 0;
    box-sizing: border-box;
}

.hero-glass-card {
    background: rgba(255, 253, 248, 0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 197, 169, 0.5);
    border-radius: 24px;
    padding: 1.8rem 2.2rem;
    box-shadow: 0 16px 40px rgba(42, 29, 21, 0.08);
}

.hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(91, 140, 90, 0.12);
    border: 1px solid rgba(91, 140, 90, 0.3);
    border-radius: 999px;
    color: var(--color-bamboo);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #2A1D15 0%, #5B8C5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 5-Column Features Strip Spanning Full Width Below Both Columns */
.hero-trust-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0.8rem;
    width: 100%;
    background: rgba(255, 253, 248, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 197, 169, 0.6);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    box-shadow: 0 8px 25px rgba(42, 29, 21, 0.04);
    box-sizing: border-box;
    align-items: flex-start;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 0.75rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    min-width: 0;
}

.hero-trust-item:last-child,
.hero-trust-item.hero-trust-accent {
    border-right: none;
    padding-right: 0;
}

.hero-trust-title {
    font-family: var(--font-heading) !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--color-bamboo, #5B8C5A) !important;
    line-height: 1.25;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-trust-subtitle {
    font-size: 0.82rem;
    color: #4A4A4A;
    opacity: 0.8;
    font-weight: 500;
    line-height: 1.35;
}

/* 5th Accent Column (1 гра — 0 ₴) */
.hero-trust-item.hero-trust-accent {
    background: rgba(91, 140, 90, 0.12);
    border: 1.5px solid rgba(91, 140, 90, 0.35);
    border-radius: 12px;
    padding: 0.5rem 0.7rem;
    box-shadow: 0 4px 14px rgba(91, 140, 90, 0.15);
    margin-top: -0.2rem;
}

.hero-trust-item.hero-trust-accent .hero-trust-title {
    color: #2E6B31 !important;
    font-weight: 800 !important;
}

.hero-trust-item.hero-trust-accent .hero-trust-subtitle {
    color: #1F4221;
    opacity: 0.95;
    font-weight: 600;
}

.hero-photo-container {
    position: relative;
    border-radius: 22px;
    overflow: visible;
}

.hero-photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(42, 29, 21, 0.22);
    border: 6px solid #FFFFFF;
    transform: rotate(-1deg);
    transition: transform 0.4s ease;
}

.hero-photo-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-floating-badge:hover {
    transform: translateY(-3px) scale(1.03);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: rgba(91, 140, 90, 0.12);
    border: 1px solid rgba(91, 140, 90, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-bamboo);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-photo-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(42, 29, 21, 0.18);
    border: 8px solid white;
    transform: rotate(-1.5deg);
    transition: transform 0.4s ease;
}

.hero-photo-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-board-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Botanical Custom SVG Icons */
.icon-botanical {
    width: 18px;
    height: 18px;
    fill: currentColor;
    vertical-align: middle;
}

.icon-botanical-lg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.botanical-badge-icon {
    width: 16px;
    height: 16px;
    fill: var(--color-bamboo);
}

/* Cards Grid & Feature Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(42, 29, 21, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(42, 29, 21, 0.12);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-icon-box {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: rgba(91, 140, 90, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bamboo);
    margin-bottom: 1.2rem;
    border: 1px solid rgba(91, 140, 90, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background: var(--color-bamboo);
    color: white;
    transform: scale(1.08) rotate(4deg);
}

/* FAQ Accordion Styling */
.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.6rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(42, 29, 21, 0.04);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-bamboo);
    box-shadow: 0 8px 25px rgba(42, 29, 21, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.faq-answer {
    display: none;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(212, 197, 169, 0.4);
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.open {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.modal-content-card {
    background: var(--bg-linen-light);
    border: 2px solid var(--bg-linen-dark);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.open .modal-content-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

/* Compact Metaphoric Card Preview in Modals matching Previous Design */
.card-img-preview {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(42, 29, 21, 0.15);
    margin: 0.8rem auto 1.2rem auto;
    display: block;
}

/* Language Switcher Pills */
.lang-switcher-pills {
    display: inline-flex;
    align-items: center;
    background: rgba(232, 222, 200, 0.5);
    border: 1px solid rgba(212, 197, 169, 0.8);
    border-radius: var(--radius-full);
    padding: 2px;
    gap: 2px;
}

.lang-pill {
    background: none;
    border: none;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
}

.lang-pill:hover {
    color: var(--color-bamboo);
}

/* ==========================================================================
   Cult UI & Watermelon UI High-Craft Component Enhancements
   ========================================================================== */

/* Shimmer Animated Badges & Borders */
.cult-shimmer-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(91, 140, 90, 0.12) 0%, rgba(232, 160, 191, 0.12) 100%);
    border: 1px solid rgba(91, 140, 90, 0.35);
    color: var(--color-bamboo);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(91, 140, 90, 0.08);
    overflow: hidden;
}

.cult-shimmer-badge::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    animation: cultShimmer 4s infinite ease-in-out;
}

@keyframes cultShimmer {
    0% { left: -100%; }
    40%, 100% { left: 180%; }
}

/* Cult UI Spotlight Glow Cards */
.cult-spotlight-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(212, 197, 169, 0.6);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(42, 29, 21, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.cult-spotlight-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(91, 140, 90, 0.07), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cult-spotlight-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-bamboo);
    box-shadow: 0 20px 45px rgba(42, 29, 21, 0.1);
}

.cult-spotlight-card:hover::before {
    opacity: 1;
}

/* Bento Grid Utilities */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.bento-col-span-2 {
    grid-column: span 2;
}

.bento-col-span-3 {
    grid-column: span 3;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-col-span-2, .bento-col-span-3 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-col-span-2, .bento-col-span-3 {
        grid-column: span 1;
    }
}

/* Watermelon UI Tactile Spring Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:active {
    transform: scale(0.96) !important;
}

/* Shimmer Button Overlay */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

/* Floating Action Card (Watermelon UI Style) */
.watermelon-floating-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 197, 169, 0.7);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.8rem;
    box-shadow: 0 15px 35px rgba(42, 29, 21, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.watermelon-floating-card:hover {
    box-shadow: 0 20px 45px rgba(42, 29, 21, 0.12);
    border-color: var(--color-bamboo);
}

/* Custom Glass Dropdown Language Switcher */
.lang-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.lang-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    background: rgba(255, 253, 248, 0.9);
    border: 1.2px solid rgba(212, 197, 169, 0.8);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(42, 29, 21, 0.05);
    transition: all 0.25s ease;
}

.lang-dropdown-trigger:hover {
    border-color: var(--color-bamboo);
    background: #FFFFFF;
    box-shadow: 0 4px 14px rgba(91, 140, 90, 0.15);
}

.lang-dropdown-trigger .lang-arrow {
    transition: transform 0.25s ease;
}

.lang-dropdown-wrapper.open .lang-dropdown-trigger .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 165px;
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(16px);
    border: 1.2px solid rgba(212, 197, 169, 0.8);
    border-radius: 14px;
    padding: 0.35rem;
    box-shadow: 0 12px 30px rgba(42, 29, 21, 0.14);
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 1000;
    animation: langDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-dropdown-wrapper.open .lang-dropdown-menu {
    display: flex;
}

/* Responsive Rules for Hero Trust/Features 5-Column Strip */
@media (max-width: 768px) {
    .hero-trust-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.5rem;
        gap: 0.8rem;
        -webkit-overflow-scrolling: touch;
    }
    .hero-trust-item {
        flex: 0 0 160px !important;
        scroll-snap-align: start;
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        padding-right: 0.6rem;
    }
}

@keyframes langDropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.5rem 0.8rem;
    border: none;
    background: none;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.lang-dropdown-item:hover {
    background: rgba(91, 140, 90, 0.12);
    color: var(--color-bamboo);
}

.lang-dropdown-item.active {
    background: rgba(91, 140, 90, 0.18);
    color: var(--color-bamboo);
    font-weight: 700;
}

/* FAQ Accordion Component Styling */
.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    margin-bottom: 0.4rem;
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(42, 29, 21, 0.02);
}

.faq-item:hover {
    border-color: rgba(45, 90, 61, 0.25);
    box-shadow: 0 4px 14px rgba(45, 90, 61, 0.08);
}

.faq-item.open {
    border-color: #2D5A3D !important;
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.12) !important;
}

.faq-question {
    padding: 0.55rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    user-select: none;
    line-height: 1.3;
}

.faq-arrow {
    font-size: 0.76rem;
    color: #2D5A3D;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 1rem;
    font-size: 0.82rem;
    color: #5A4A3E;
    line-height: 1.45;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    opacity: 1;
    padding: 0 1rem 0.75rem 1rem;
    transition: max-height 0.35s cubic-bezier(0.5, 0, 0.1, 1), padding 0.3s ease, opacity 0.3s ease;
}

/* Continuous Smooth Infinite Testimonials Carousel Marquee */
.testimonials-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    user-select: none;
}

.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.testimonials-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 253, 248, 1), rgba(255, 253, 248, 0));
}

.testimonials-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 253, 248, 1), rgba(255, 253, 248, 0));
}

.testimonials-marquee-track {
    display: flex;
    gap: 1.6rem;
    width: max-content;
    animation: testimonialContinuousLoop 42s linear infinite;
}

.testimonials-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes testimonialContinuousLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card-item {
    width: 295px;
    flex-shrink: 0;
    background: #FFFFFF;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 6px 20px rgba(42, 29, 21, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(45, 90, 61, 0.12);
    border-color: rgba(45, 90, 61, 0.3);
}

/* 4-Column Modern Dark Footer Component */
.footer-link {
    color: #D4C5A9;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease, text-shadow 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(91, 140, 90, 0.5);
    transform: translateX(2px);
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 197, 169, 0.2);
    color: rgba(212, 197, 169, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background: #5B8C5A;
    border-color: #5B8C5A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(91, 140, 90, 0.3);
}

