/* ============================================================
   QuickCreate — Welcome Page Stylesheet
   Theme: Warm Golden / Gray — matching logo palette
============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* ── Palette ─────────────────────────────── */
    --gold: #C9A35B;
    --gold-2: #D4B06A;
    --gold-dark: #A8872E;
    --gold-light: #F0DFB8;
    --gold-faint: #FBF7EF;

    --clr-bg: #F9F7F4;
    --clr-bg-2: #F3EFE8;
    --clr-surface: #FFFFFF;
    --clr-surface-2: #F7F4EF;
    --clr-surface-3: #EDE8DF;

    --clr-border: rgba(201, 163, 91, 0.18);
    --clr-border-2: rgba(0, 0, 0, 0.07);

    --clr-text: #1A1612;
    --clr-text-2: #6B5E4E;
    --clr-text-3: #A89785;
    --clr-text-inv: #FFFFFF;

    --shadow-sm: 0 2px 8px rgba(26, 22, 18, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 22, 18, 0.09);
    --shadow-lg: 0 20px 60px rgba(26, 22, 18, 0.12);
    --shadow-gold: 0 6px 30px rgba(201, 163, 91, 0.28);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font: 'Inter', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --tr: 0.3s var(--ease);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--clr-bg-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ============================================================
   HEADER
============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(249, 247, 244, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: background var(--tr), border-color var(--tr), box-shadow var(--tr);
}

.header.scrolled {
    background: rgba(249, 247, 244, 0.95);
    border-color: var(--clr-border);
    box-shadow: 0 4px 24px rgba(26, 22, 18, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    gap: 16px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--clr-text-3);
    letter-spacing: 0.04em;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(201, 163, 91, 0.07);
    border: 1px solid var(--clr-border);
    border-radius: 50px;
    padding: 4px;
}

.nav-link {
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--clr-text-2);
    transition: all var(--tr);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 2px 10px rgba(201, 163, 91, 0.35);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.8rem;
    color: var(--clr-text-2);
    cursor: pointer;
    transition: all var(--tr);
}

.lang-selector:hover {
    border-color: var(--gold);
    color: var(--clr-text);
}

.admin-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    transition: all var(--tr);
    box-shadow: 0 4px 14px rgba(201, 163, 91, 0.3);
}

.admin-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.admin-btn-arrow {
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-2);
    border-radius: 10px;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all var(--tr);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border-2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    box-shadow: var(--shadow-md);
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 20px;
}

.mobile-nav-link {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-2);
    transition: all var(--tr);
}

.mobile-nav-link:hover {
    background: rgba(201, 163, 91, 0.08);
    color: var(--gold-dark);
}

.mobile-admin-btn {
    margin-top: 8px;
    padding: 12px 16px;
    background: var(--gold);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: #fff;
    text-align: center;
    transition: all var(--tr);
}

.mobile-admin-btn:hover {
    background: var(--gold-dark);
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 68px;
    background: linear-gradient(155deg, #FBF8F2 0%, #F9F5EC 35%, #F5F0E8 65%, #F9F7F4 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 163, 91, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 163, 91, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: blobPulse 9s ease-in-out infinite alternate;
}

.hero-blob-1 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(201, 163, 91, 0.18) 0%, transparent 70%);
    top: -160px;
    left: -80px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(168, 135, 46, 0.1) 0%, transparent 70%);
    top: 60px;
    right: -80px;
    animation-delay: -3s;
}

.hero-blob-3 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(201, 163, 91, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: 40%;
    animation-delay: -5s;
}

@keyframes blobPulse {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.12) translate(28px, -28px);
    }
}

/* Mouse-reactive blob */
#heroMouseBlob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(201, 163, 91, 0.12) 0%, transparent 65%);
    transform: translate(-50%, -50%);
    transition: left 0.08s var(--ease), top 0.08s var(--ease);
    filter: blur(60px);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 163, 91, 0.1);
    border: 1px solid rgba(201, 163, 91, 0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.04em;
    width: fit-content;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--clr-text);
}

.hero-highlight {
    background: linear-gradient(135deg, #C9A35B, #A8872E, #D4B06A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--clr-text-2);
    line-height: 1.7;
    max-width: 540px;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-2);
    border-radius: var(--radius-md);
    padding: 12px 22px;
    min-width: 160px;
    box-shadow: var(--shadow-sm);
    transition: all var(--tr);
}

.store-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: var(--clr-text);
}

.store-button-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-button-small {
    font-size: 0.65rem;
    color: var(--clr-text-3);
    letter-spacing: 0.04em;
}

.store-button-large {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
}

.store-button:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.store-button.secondary {
    background: linear-gradient(135deg, #FBF3E0, #F7EBD0);
    border-color: rgba(201, 163, 91, 0.22);
}

.store-button.secondary svg {
    fill: var(--gold-dark);
}

.store-button.secondary:hover {
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(201, 163, 91, 0.2);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-trust-avatars {
    display: flex;
}

.trust-avatar {
    font-size: 1.3rem;
    margin-left: -6px;
    background: var(--clr-surface);
    border: 2px solid var(--clr-bg);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.trust-avatar:first-child {
    margin-left: 0;
}

.hero-trust-text {
    font-size: 0.85rem;
    color: var(--clr-text-2);
}

.hero-trust-text strong {
    color: var(--clr-text);
}

/* ─── 3D Scene ─────────────────────────────────────────────── */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-3d-scene {
    position: relative;
    width: 340px;
    height: 340px;
    transform-style: preserve-3d;
    transition: transform 0.08s var(--ease);
}

.float-card {
    position: absolute;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    animation: floatCard 6s ease-in-out infinite;
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.float-card-back {
    width: 200px;
    height: 100px;
    top: 30px;
    left: 20px;
    background: linear-gradient(135deg, #F0DFB8, #E5D0A0);
    animation-delay: 0s;
    --r: -6deg;
    z-index: 1;
}

.float-card-mid {
    width: 200px;
    height: 100px;
    top: 130px;
    left: 80px;
    background: linear-gradient(135deg, #EDE8DF, #E0D8CE);
    animation-delay: -2s;
    --r: 3deg;
    z-index: 2;
}

.float-card-front {
    width: 200px;
    height: 100px;
    top: 230px;
    left: 40px;
    background: linear-gradient(135deg, #FBF7EF, #F3EBD8);
    animation-delay: -4s;
    --r: -2deg;
    z-index: 3;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r, 0deg));
    }

    50% {
        transform: translateY(-12px) rotate(var(--r, 0deg));
    }
}

.float-card-inner {
    border-radius: calc(var(--radius-xl) - 2px);
    padding: 16px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.float-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--clr-text-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.float-card-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-text);
    letter-spacing: -0.03em;
}

.orbit-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(201, 163, 91, 0.2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-text-2);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

.orbit-badge-1 {
    top: 10px;
    right: 0;
    animation: floatBadge 5s ease-in-out infinite;
}

.orbit-badge-2 {
    top: 50%;
    right: -20px;
    animation: floatBadge 6s ease-in-out infinite -1s;
}

.orbit-badge-3 {
    bottom: 20px;
    left: -10px;
    animation: floatBadge 4s ease-in-out infinite -2s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--clr-text-3);
    animation: floatBadge 3s ease-in-out infinite;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(201, 163, 91, 0.3);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* ============================================================
   GRAPHICS SHOWCASE — Water Ripple Effect
============================================================ */
.graphics-showcase {
    padding: 60px 0 80px;
    overflow: hidden;
    background: var(--clr-surface);
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 24px;
}

.showcase-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FBF3E0, #F5E5C0);
    border: 1px solid rgba(201, 163, 91, 0.3);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.showcase-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--clr-text);
}

.showcase-marquee {
    width: 100%;
    overflow: visible;
    margin-bottom: 16px;
    cursor: none;
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
}

.marquee-left {
    animation: marqueeLeft 30s linear infinite;
}

.marquee-right {
    animation: marqueeRight 30s linear infinite;
}

/* Pause when JS ripple is active — controlled via .ripple-active class */
.showcase-marquee.ripple-active .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Each card — transforms driven by JS */
.showcase-card {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--clr-border-2);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
    transform-origin: center bottom;
    will-change: transform;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   STATS
============================================================ */
.stats-section {
    padding: 60px 0;
    background: var(--clr-bg);
}

.stats-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-2);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--tr);
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.stat-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(201, 163, 91, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-box svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-text);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--clr-text-3);
    font-weight: 500;
    margin-top: 2px;
}

/* ============================================================
   SHARED SECTION
============================================================ */
.section {
    padding: 100px 0;
}

.section.gray {
    background: var(--clr-bg-2);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(201, 163, 91, 0.1);
    border: 1px solid rgba(201, 163, 91, 0.22);
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--clr-text);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1rem;
    color: var(--clr-text-2);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   BUSINESS TYPES — 3D tilt
============================================================ */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.business-card {
    position: relative;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: default;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--tr), box-shadow var(--tr);
    transform-style: preserve-3d;
    will-change: transform;
}

.business-card:hover {
    border-color: var(--card-color, var(--gold));
    box-shadow: 0 12px 36px -6px rgba(26, 22, 18, 0.14);
}

.tilt-card-inner {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.business-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--card-color), var(--card-color-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 22, 18, 0.18);
    transition: transform var(--tr);
}

.business-card:hover .business-avatar {
    transform: translateZ(12px) scale(1.1);
}

.business-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.3;
}

.business-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--card-color, var(--gold));
    opacity: 0.1;
    transition: transform var(--tr), opacity var(--tr);
}

.business-card:hover .business-accent {
    transform: scale(2.5);
    opacity: 0.16;
}

.business-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
}

/* ============================================================
   CATEGORIES
============================================================ */
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-2);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--clr-text-2);
    cursor: default;
    box-shadow: var(--shadow-sm);
    transition: all var(--tr);
}

.category-tag:hover {
    border-color: var(--tag-color);
    color: var(--clr-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px -4px rgba(26, 22, 18, 0.1);
}

.category-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tag-color, var(--gold));
    flex-shrink: 0;
}

/* ============================================================
   CALENDAR LAYOUT
============================================================ */
.calendar-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.calendar-sidebar {
    position: sticky;
    top: 100px;
    width: 200px;
    flex-shrink: 0;
}

.sticky-month-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 2px solid var(--clr-border-2);
    padding-left: 10px;
}

.month-indicator {
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-3);
    cursor: pointer;
    transition: all var(--tr);
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.4;
    pointer-events: none;
}

.month-indicator.has-events {
    opacity: 1;
    pointer-events: auto;
    color: var(--clr-text-2);
}

.month-indicator.has-events:hover {
    background: rgba(201, 163, 91, 0.08);
    color: var(--gold-dark);
}

.month-indicator.active {
    background: var(--gold);
    color: #fff !important;
    box-shadow: var(--shadow-gold);
    transform: translateX(8px);
}

.month-indicator .m-long {
    display: block;
}

.month-indicator .m-short {
    display: none;
}

.calendar-main-scroll {
    flex: 1;
}

.month-section {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}

.month-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.month-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--clr-border-2);
}

/* ============================================================
   EVENTS
============================================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-2);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--tr);
    cursor: default;
}

.event-card:hover {
    border-color: var(--event-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px -6px rgba(26, 22, 18, 0.12);
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 50px;
    background: var(--event-color);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.event-month {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.event-day {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.event-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.3;
    flex: 1;
}

/* ============================================================
   FEATURES — 3D depth
============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-2);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--tr), box-shadow var(--tr);
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    cursor: default;
}

.feature-card:hover {
    border-color: rgba(201, 163, 91, 0.4);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(201, 163, 91, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    transition: transform var(--tr);
}

.feature-card:hover .feature-icon-wrap {
    transform: translateZ(14px) scale(1.05);
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--clr-text-2);
    line-height: 1.7;
}

.feature-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

/* ============================================================
   CTA
============================================================ */
.cta-section {
    position: relative;
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #FBF6EE 0%, #F5EEDF 50%, #F9F4EC 100%);
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 163, 91, 0.15), transparent 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 135, 46, 0.09), transparent 70%);
    bottom: -80px;
    left: 20%;
}

.cta-shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201, 163, 91, 0.07), transparent 70%);
    top: 20%;
    right: 10%;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 163, 91, 0.12);
    border: 1px solid rgba(201, 163, 91, 0.28);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--clr-text);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.cta-highlight {
    background: linear-gradient(135deg, #C9A35B, #A8872E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.05rem;
    color: var(--clr-text-2);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.cta-store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gold);
    border-radius: var(--radius-md);
    padding: 14px 28px;
    transition: all var(--tr);
    box-shadow: 0 4px 20px rgba(201, 163, 91, 0.35);
}

.cta-store-btn.secondary {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-2);
    box-shadow: var(--shadow-sm);
}

.cta-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 163, 91, 0.45);
}

.cta-store-btn.secondary:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.cta-btn-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.cta-store-btn.secondary .cta-btn-icon svg {
    fill: var(--clr-text);
}

.cta-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.cta-btn-small {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
}

.cta-btn-large {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.cta-store-btn.secondary .cta-btn-small {
    color: var(--clr-text-3);
}

.cta-store-btn.secondary .cta-btn-large {
    color: var(--clr-text);
}

.cta-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-trust-avatars {
    display: flex;
}

.cta-avatar {
    font-size: 1.3rem;
    margin-left: -6px;
    background: var(--clr-surface);
    border: 2px solid rgba(201, 163, 91, 0.15);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.cta-avatar:first-child {
    margin-left: 0;
}

.cta-trust-text {
    font-size: 0.85rem;
    color: var(--clr-text-2);
}

.cta-trust-text strong {
    color: var(--clr-text);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: #1A1612;
    border-top: 1px solid rgba(201, 163, 91, 0.12);
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.footer-brand-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    display: block;
    margin-top: 1px;
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 163, 91, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--tr);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.4);
    transition: fill var(--tr);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.social-link:hover svg {
    fill: #fff;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-column-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.38);
    transition: color var(--tr);
}

.footer-links li a:hover {
    color: var(--gold);
}

.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 163, 91, 0.12);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--tr);
}

.footer-app-btn svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.38);
}

.footer-app-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 163, 91, 0.1);
    padding: 20px 0;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.28);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
    transition: color var(--tr);
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-divider {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.15);
}

.footer-lang {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 60px 24px 40px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Calendar Tablet */
    .calendar-container {
        flex-direction: column;
    }

    .calendar-sidebar {
        position: sticky;
        top: 68px;
        width: 100%;
        z-index: 100;
        background: rgba(249, 247, 244, 0.9);
        backdrop-filter: blur(10px);
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .sticky-month-nav {
        flex-direction: row;
        overflow-x: auto;
        border-left: none;
        padding-left: 0;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sticky-month-nav::-webkit-scrollbar {
        display: none;
    }

    .month-indicator {
        flex-shrink: 0;
        padding: 8px 15px;
        transform: none !important;
    }

    .month-indicator.active {
        transform: scale(1.05) !important;
    }

    .month-indicator .m-long {
        display: none;
    }

    .month-indicator .m-short {
        display: block;
    }
}

@media (max-width:768px) {

    .nav-center,
    .lang-selector {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .admin-btn {
        display: none;
    }

    .hero-inner {
        padding: 40px 20px 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .download-buttons {
        justify-content: center;
    }

    .store-button {
        min-width: unset;
        flex: 1;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-scroll-hint {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 18px 14px;
    }

    .business-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }

    .events-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card {
        width: 160px;
        height: 160px;
    }

    .footer-container {
        gap: 40px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-store-btn {
        justify-content: center;
    }
}

@media (max-width:480px) {

    .stats-grid,
    .events-grid,
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }
}