/* ============================================
   Ezynk v2 — Play-Style Cinematic Redesign
   Complete Stylesheet
   ============================================ */

/* ============================================
   A. FOUNDATION
   ============================================ */

/* Plus Jakarta Sans — Local */
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('../assets/fonts/jakarta-300.ttf') format('truetype'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/jakarta-400.ttf') format('truetype'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/fonts/jakarta-500.ttf') format('truetype'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/fonts/jakarta-600.ttf') format('truetype'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('../assets/fonts/jakarta-700.ttf') format('truetype'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 800; font-display: swap; src: url('../assets/fonts/jakarta-800.ttf') format('truetype'); }

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

/* Custom Properties */
:root {
    --bg-deep: #0A0E1A;
    --bg-surface: #111827;
    --bg-surface-glow: #1A1F35;
    --text-primary: #F0F4FF;
    --text-secondary: #8892A8;
    --accent-cyan: #00F0FF;
    --accent-blue: #4D7CFF;
    --accent-purple: #A855F7;
    --accent-teal: #22D3EE;
    --accent-amber: #FBBF24;
    --accent-pink: #EC4899;
    --accent-success: #10B981;
    --accent-danger: #EF4444;
    --glow-cyan: rgba(0, 240, 255, 0.15);
    --glow-blue: rgba(77, 124, 255, 0.15);
    --glow-purple: rgba(168, 85, 247, 0.15);
    --glow-teal: rgba(34, 211, 238, 0.15);
    --glow-amber: rgba(251, 191, 36, 0.15);
    --glow-pink: rgba(236, 72, 153, 0.15);
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: rgba(0, 240, 255, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

section {
    position: relative;
    z-index: 1;
}


/* ============================================
   B. UTILITIES
   ============================================ */

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-purple));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Gradient Text — General (cyan -> blue -> purple) */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Module Heading Gradients */
.gradient-cyan {
    background: linear-gradient(135deg, #00F0FF, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-pink {
    background: linear-gradient(135deg, #EC4899, #F472B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-purple {
    background: linear-gradient(135deg, #A855F7, #C084FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-teal {
    background: linear-gradient(135deg, #22D3EE, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-amber {
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.12);
}
.section-badge i {
    font-size: 0.75rem;
}


/* ============================================
   C. BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: var(--bg-deep);
    box-shadow: 0 0 30px var(--glow-cyan);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--glow-cyan), 0 10px 40px rgba(0, 240, 255, 0.2);
}
.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
}
.btn-ghost:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
}
.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}


/* ============================================
   D. NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}
.logo-img {
    height: 32px;
    filter: brightness(0) invert(1);
}
.nav-links {
    display: flex;
    gap: 28px;
}
.nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-login {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
    padding: 8px 16px;
}
.nav-login:hover {
    color: var(--accent-cyan);
}
.nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.nav-cta:hover {
    background: var(--accent-cyan);
    color: var(--bg-deep);
    box-shadow: 0 0 25px var(--glow-cyan);
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
}
.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   E. HERO SECTION — Cinematic Scroll-Zoom
   ============================================ */

.hero-section {
    position: relative;
    height: 250vh;
    background: var(--bg-deep);
    z-index: 1;
}

.hero-pin-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero phases — all centered, absolutely positioned */
.hero-phase {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    opacity: 0; /* GSAP controls visibility */
}
.hero-phase-intro {
    z-index: 5;
}
.hero-phase-subtitle {
    z-index: 4;
}

.hero-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 800px;
}

.hero-cta-btn {
    margin-top: 32px;
}

.hero-tagline {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
}

/* Geometric grid pattern */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
}
.hero-grid-pattern svg {
    width: min(80vw, 800px);
    height: min(80vw, 800px);
}

/* Giant zoom words */
.hero-word-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.hero-word {
    position: absolute;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;
    text-transform: lowercase;
    letter-spacing: -0.04em;
    opacity: 0;
    color: rgba(255, 255, 255, 0.08); /* Subtle text visible on gradient bg */
    will-change: transform, opacity;
}

/* .hero-word-1, .hero-word-2, .hero-word-3 are GSAP-only selectors,
   inheriting all visual styles from .hero-word above */

/* Scroll images in hero — appear alongside each word */
.hero-scroll-img {
    position: absolute;
    z-index: 10;
    opacity: 0;
    will-change: transform, opacity;
}
.hero-scroll-img img {
    max-width: 480px;
    border-radius: 12px;
    filter: drop-shadow(0 20px 60px rgba(0, 240, 255, 0.12)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}
/* Image 1: "powerful" — right side */
.hero-scroll-img-1 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}
/* Image 2: "easy" — left side */
.hero-scroll-img-2 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}
/* Image 3: "smart" — centered */
.hero-scroll-img-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Marketing text alongside scroll images */
.hero-scroll-text {
    position: absolute;
    z-index: 10;
    opacity: 0;
    will-change: transform, opacity;
    max-width: 340px;
}
.hero-scroll-text p {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 0, 0, 0.3);
}
/* Text-1 (POS): left side (image is right) */
.hero-scroll-text-1 {
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
}
/* Text-2 (CRM): right side (image is left) */
.hero-scroll-text-2 {
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    text-align: right;
}
/* Text-3 (Dashboard): below center */
.hero-scroll-text-3 {
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* Mascot in hero */
.hero-mascot {
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 10;
    opacity: 0;
    will-change: opacity;
}
.hero-mascot img {
    max-width: 200px;
    filter: drop-shadow(0 0 40px rgba(0, 240, 255, 0.2));
}


/* ============================================
   F. DEVICE FRAMES
   ============================================ */

.device-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-surface);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.device-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg-surface-glow);
    border-bottom: 1px solid var(--glass-border);
}
.device-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.dot.red { background: #EF4444; }
.dot.yellow { background: #FBBF24; }
.dot.green { background: #22C55E; }

.device-url {
    margin-left: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}
.device-url i {
    color: var(--accent-success);
    font-size: 0.65rem;
}

.device-screen img {
    width: 100%;
    display: block;
}

/* Browser with 3D perspective tilt */
.device-browser--3d {
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.6s ease;
}
.device-browser--3d:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

/* Phone device frame */
.device-phone {
    border-radius: var(--radius-xl);
    border-width: 3px;
    border-color: #333;
}
.device-phone .device-screen {
    border-radius: 0 0 calc(var(--radius-xl) - 3px) calc(var(--radius-xl) - 3px);
    overflow: hidden;
}


/* ============================================
   G. INTRO SECTION
   ============================================ */

.intro-section {
    padding: 100px 0;
    background: var(--bg-deep);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intro-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.intro-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.intro-visual img {
    max-width: 100%;
    border-radius: 12px;
    filter: drop-shadow(0 20px 60px rgba(0, 240, 255, 0.12)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}

/* Numbered value props */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-prop {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-num {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.02em;
    opacity: 0.7;
}

.value-prop h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.value-prop p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* ============================================
   H. MODULE SECTIONS — Numbered, Alternating
   ============================================ */

.modules-section {
    background: var(--bg-deep);
}

.module-block {
    padding: 100px 0;
    position: relative;
}

/* Each module gets its own dark gradient background */
.module-block[data-color="cyan"] {
    background: linear-gradient(135deg, #06101F 0%, #0A1A30 30%, #0C2238 50%, #0A1A30 70%, #06101F 100%);
}

.module-block[data-color="pink"] {
    background: linear-gradient(135deg, #100A18 0%, #1A0C24 30%, #220E2E 50%, #1A0C24 70%, #100A18 100%);
}

.module-block[data-color="purple"] {
    background: linear-gradient(135deg, #0C0A1E 0%, #120E30 30%, #16103A 50%, #120E30 70%, #0C0A1E 100%);
}

.module-block[data-color="teal"] {
    background: linear-gradient(135deg, #06121A 0%, #081C26 30%, #0A2430 50%, #081C26 70%, #06121A 100%);
}

.module-block[data-color="amber"] {
    background: linear-gradient(135deg, #12100A 0%, #1C1608 30%, #241C0A 50%, #1C1608 70%, #12100A 100%);
}

.module-num {
    display: block;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    margin-bottom: -20px;
    pointer-events: none;
    user-select: none;
}

/* Module number colors matching each section */
.module-block[data-color="cyan"] .module-num {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(77, 124, 255, 0.12));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.module-block[data-color="pink"] .module-num {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(168, 85, 247, 0.12));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.module-block[data-color="purple"] .module-num {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(77, 124, 255, 0.12));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.module-block[data-color="teal"] .module-num {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(0, 240, 255, 0.12));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.module-block[data-color="amber"] .module-num {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(245, 158, 11, 0.12));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.module-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Reverse layout for alternating modules */
.module-block--reverse .module-grid {
    direction: rtl;
}
.module-block--reverse .module-grid > * {
    direction: ltr;
}

.module-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.module-visual {
    width: 100%;
}

.module-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.module-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.module-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.module-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.module-features li i {
    color: var(--accent-cyan);
    margin-top: 3px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Module color-specific check icon colors */
.module-block[data-color="pink"] .module-features li i {
    color: var(--accent-pink);
}
.module-block[data-color="purple"] .module-features li i {
    color: var(--accent-purple);
}
.module-block[data-color="teal"] .module-features li i {
    color: var(--accent-teal);
}
.module-block[data-color="amber"] .module-features li i {
    color: var(--accent-amber);
}

.module-visual img {
    max-width: 100%;
    border-radius: 12px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.3));
}

/* Color-matched image glow per module */
.module-block[data-color="cyan"] .module-visual img {
    filter: drop-shadow(0 20px 60px rgba(0, 240, 255, 0.1)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}
.module-block[data-color="pink"] .module-visual img {
    filter: drop-shadow(0 20px 60px rgba(255, 0, 110, 0.1)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}
.module-block[data-color="purple"] .module-visual img {
    filter: drop-shadow(0 20px 60px rgba(168, 85, 247, 0.1)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}
.module-block[data-color="teal"] .module-visual img {
    filter: drop-shadow(0 20px 60px rgba(34, 211, 238, 0.1)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}
.module-block[data-color="amber"] .module-visual img {
    filter: drop-shadow(0 20px 60px rgba(255, 165, 0, 0.1)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}


/* ============================================
   I. EZY AI SECTION
   ============================================ */

.ezy-section {
    padding: 100px 0;
    background: var(--bg-deep);
}

.ezy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Chat Demo */
.chat-demo {
    width: 100%;
}

/* Chat Window */
.chat-window {
    max-width: 480px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.chat-header-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
    background: var(--bg-surface);
}

.chat-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-header-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-teal);
    display: inline-block;
    animation: pulse 2s infinite;
}

.chat-messages {
    padding: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.chat-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.6;
}
.chat-msg.user {
    align-self: flex-end;
    background: var(--accent-blue);
    color: white;
    border-bottom-right-radius: 4px;
}
.chat-msg.ezy {
    align-self: flex-start;
    background: var(--bg-surface-glow);
    border: 1px solid var(--glass-border);
    border-bottom-left-radius: 4px;
}

.chat-input-bar {
    display: flex;
    padding: 12px 16px;
    gap: 8px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-surface);
}
.chat-input-bar input {
    flex: 1;
    background: var(--bg-deep);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 10px 16px;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 0.875rem;
    outline: none;
}
.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    opacity: 0.5;
    cursor: pointer;
}

/* Ezy Info / Mascot */
.ezy-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ezy-mascot-large {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}
.ezy-mascot-large .mascot-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 1;
}
.ezy-mascot-large .mascot-img {
    max-width: 300px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 40px rgba(0, 240, 255, 0.15));
}

.ezy-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.ezy-pill {
    padding: 10px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}
.ezy-pill:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}
.ezy-pill i {
    color: var(--accent-cyan);
}


/* ============================================
   J. SELLER WEBSITE SECTION
   ============================================ */

.seller-section {
    padding: 100px 0;
    background: var(--bg-deep);
}

.seller-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Mock Store (inside device frame) */
.mock-store {
    background: var(--bg-deep);
}
.mock-store-header {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}
.mock-logo {
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-cyan);
}
.mock-nav {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    align-items: center;
}
.mock-cart {
    color: var(--accent-cyan);
    font-weight: 600;
}
.mock-store-hero {
    padding: 28px 16px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    margin: 12px;
    border-radius: var(--radius-md);
}
.mock-store-hero h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.mock-store-hero p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}
.mock-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 12px;
}
.mock-product {
    text-align: center;
}
.mock-product-img {
    height: 80px;
    background: var(--bg-surface-glow);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
}
.mock-product-name {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}
.mock-product-price {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

/* Seller Info Side */
.seller-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}
.seller-biz-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.biz-tag {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    color: var(--accent-cyan);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.biz-tag i {
    font-size: 0.7rem;
}
.seller-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.seller-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}
.seller-checklist li i {
    color: var(--accent-cyan);
    margin-top: 3px;
    font-size: 0.8rem;
}
.seller-ezy-inline {
    display: flex;
    align-items: center;
    gap: 16px;
}
.seller-ezy-mini {
    width: 64px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.15));
}
.ezy-speech-bubble {
    padding: 14px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
}
.ezy-speech-bubble::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid var(--glass-border);
}



/* ============================================
   L. CTA SECTION
   ============================================ */

/* ============================================
   L. CTA — "Ready to supercharge" (v1 style)
   ============================================ */

.cta-section {
    padding: 120px 0;
    background: var(--bg-deep);
}

.cta-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0052A5 50%, var(--accent-cyan) 100%);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}

.cta-animated-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cta-icon-float {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.7);
    animation: ctaFloat 6s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.15);
}

.cta-float-1 { top: 15%; left: 8%; animation-delay: 0s; animation-duration: 5s; }
.cta-float-2 { top: 10%; right: 12%; animation-delay: 1s; animation-duration: 7s; }
.cta-float-3 { bottom: 25%; left: 5%; animation-delay: 2s; animation-duration: 6s; }
.cta-float-4 { top: 45%; right: 6%; animation-delay: 0.5s; animation-duration: 5.5s; }
.cta-float-5 { bottom: 15%; right: 15%; animation-delay: 3s; animation-duration: 6.5s; }
.cta-float-6 { top: 20%; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; animation-duration: 5s; width: 48px; height: 48px; font-size: 1.2rem; background: rgba(255,255,255,0.08); }

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    25% { transform: translateY(-15px) rotate(5deg); opacity: 1; }
    50% { transform: translateY(-8px) rotate(-3deg); opacity: 0.85; }
    75% { transform: translateY(-20px) rotate(3deg); opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 48px;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: var(--accent-blue);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white:hover {
    background: #F0F4FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-ghost-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.cta-contact-info {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.cta-contact-item > i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

.cta-contact-item span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-contact-item a {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

.cta-contact-item a:hover {
    color: rgba(255,255,255,0.8);
}

.cta-contact-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}


/* ============================================
   M. FOOTER
   ============================================ */

.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 14, 26, 0.9);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 28px;
    filter: brightness(0) invert(1);
    margin-bottom: 14px;
    margin-top: 8px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
    font-size: 0.9rem;
}
.footer-social a:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px var(--glow-cyan);
}

.footer-col h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}
.footer-col a:hover {
    color: var(--accent-cyan);
}
.footer-col a i {
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom-logo {
    height: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}
.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: color var(--transition);
}
.footer-legal a:hover {
    color: var(--accent-cyan);
}


/* ============================================
   N. FLOATING ELEMENTS
   ============================================ */

.viber-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #7360F2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(115, 96, 242, 0.4);
    transition: all var(--transition);
}
.viber-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(115, 96, 242, 0.6);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--accent-cyan);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--accent-cyan);
    color: var(--bg-deep);
    box-shadow: 0 0 20px var(--glow-cyan);
}


/* ============================================
   O. KEYFRAMES
   ============================================ */

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 0 30px var(--glow-cyan); }
    50% { box-shadow: 0 0 50px var(--glow-cyan), 0 0 80px rgba(0, 240, 255, 0.1); }
}


/* ============================================
   P. REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    #particles-canvas {
        display: none;
    }
    .hero-section {
        height: auto;
    }
    .hero-pin-wrapper {
        height: auto;
        min-height: 100vh;
    }
    .hero-phase {
        position: relative;
        opacity: 1;
    }
    .hero-phase-intro {
        padding: 120px 24px 40px;
    }
    .hero-phase-subtitle,
    .hero-grid-pattern,
    .hero-word-container,
    .hero-device-mockup,
    .hero-scroll-img,
    .hero-scroll-text,
    .hero-mascot {
        display: none;
    }
}


/* ============================================
   Q. RESPONSIVE
   ============================================ */

/* ---- Tablet / Small Desktop ---- */
@media (max-width: 1024px) {
    /* Hero: keep 500vh for scroll room */
    .hero-section {
        height: 500vh;
    }

    /* Intro */
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-visual {
        max-width: 600px;
        margin: 0 auto;
        order: -1;
    }
    .value-props {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Modules */
    .module-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .module-block--reverse .module-grid {
        direction: ltr;
    }
    .module-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Ezy AI */
    .ezy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .chat-window {
        max-width: 100%;
    }

    /* Seller */
    .seller-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .device-browser--3d {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
    .device-browser--3d:hover {
        transform: none;
    }

    /* CTA Card */
    .cta-card {
        padding: 60px 40px;
    }
    .cta-icon-float {
        display: none;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 48px 24px;
    }
}


/* ---- Mobile (Landscape / Tablet Portrait) ---- */
@media (max-width: 768px) {
    /* Hero: reduce height for mobile */
    .hero-section {
        height: 200vh;
    }
    .hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    .hero-tagline {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }
    .hero-word {
        font-size: clamp(3rem, 10vw, 6rem);
    }
    .hero-scroll-img img {
        max-width: 340px;
    }
    .hero-scroll-text {
        max-width: 240px;
    }
    .hero-scroll-text p {
        font-size: 0.95rem;
    }
    .hero-device-mockup .device-phone {
        width: 220px;
    }
    .hero-mascot img {
        max-width: 140px;
    }

    /* Mobile Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 14, 26, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 1002;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-link {
        font-size: 1.25rem;
    }
    .nav-actions {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }

    /* Intro */
    .intro-section {
        padding: 60px 0;
    }
    .intro-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
    .intro-grid {
        margin-bottom: 48px;
    }

    /* Modules */
    .module-block {
        padding: 60px 0;
    }
    .module-num {
        font-size: clamp(3rem, 8vw, 5rem);
    }
    .module-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    /* Ezy AI */
    .ezy-section {
        padding: 60px 0;
    }
    .ezy-mascot-large .mascot-img {
        max-width: 200px;
    }
    .ezy-mascot-large .mascot-glow {
        width: 200px;
        height: 200px;
    }

    /* Seller */
    .seller-section {
        padding: 60px 0;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }
    .cta-card {
        padding: 50px 24px;
        border-radius: 16px;
    }
    .cta-content h2 {
        font-size: 1.75rem;
    }
    .cta-content h2 br {
        display: none;
    }
    .cta-content p {
        font-size: 0.95rem;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn-white,
    .cta-actions .btn-ghost-white {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .cta-animated-icons {
        display: none;
    }
    .cta-bg-shapes {
        display: none;
    }
    .cta-contact-info {
        flex-direction: column;
        gap: 20px;
    }
    .cta-contact-divider {
        display: none;
    }
    .cta-contact-item {
        justify-content: center;
    }
    .cta-contact-item > i {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .cta-contact-item div {
        text-align: left;
    }
    .cta-contact-item span {
        font-size: 0.7rem;
    }
    .cta-contact-item a {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 24px;
    }
    .footer-brand {
        padding-bottom: 24px;
        border-bottom: 1px solid var(--glass-border);
    }
    .footer-bottom {
        padding: 20px 24px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* Section Headers */
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}


/* ---- Small Mobile ---- */
@media (max-width: 480px) {
    /* Hero: minimal for small screens */
    .hero-section {
        height: 200vh;
    }
    .hero-headline {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .hero-tagline {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
    }
    .hero-word {
        font-size: clamp(2.5rem, 14vw, 5rem);
    }
    .hero-scroll-img img {
        max-width: 240px;
    }
    .hero-device-mockup .device-phone {
        width: 180px;
    }
    .hero-mascot img {
        max-width: 100px;
    }

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Intro */
    .intro-section {
        padding: 48px 0;
    }
    .intro-desc {
        font-size: 0.95rem;
    }

    /* Modules */
    .module-block {
        padding: 48px 0;
    }
    .module-num {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: -10px;
    }

    /* Mock Store */
    .mock-nav span:not(.mock-cart) {
        display: none;
    }

    /* Seller */
    .seller-ezy-inline {
        flex-direction: column;
        text-align: center;
    }
    .ezy-speech-bubble::before {
        display: none;
    }

    /* Footer */
    .footer-container {
        padding: 40px 16px;
    }
    .footer-bottom {
        padding: 20px 16px;
    }
}
