/* ============================================
   GARUDA Landing Page Styles — v2.0
   Premium, polished, board-game themed
   ============================================ */

/* CSS Variables */
:root {
    --color-bg: #FAFAF8;
    --color-bg-alt: #F0EFEB;
    --color-bg-dark: #0F0F0F;
    --color-text: #111111;
    --color-text-muted: #6E6E6E;
    --color-text-light: #FFFFFF;
    --color-accent: #2196F3;
    --color-accent-light: #1976D2;
    --color-gold: #C9A84C;
    --color-border: rgba(0,0,0,0.07);
    --color-border-light: rgba(255,255,255,0.1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.05);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1240px;
    --color-blue: #2196F3;
    --color-blue-dark: #1976D2;
}

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

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

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

* {
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

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

img, svg {
    display: block;
    max-width: 100%;
}

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

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

@media (min-width: 1024px) {
    .container { padding: 0 60px; }
}

/* ============================================
   Grid Background & Particles
   ============================================ */
.grid-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
    background-image:
        linear-gradient(rgba(33, 150, 243, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33, 150, 243, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 60%);
}

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.04;
}

.p1 { width: 120px; height: 120px; top: 15%; left: 8%; animation: drift 20s ease-in-out infinite; }
.p2 { width: 80px; height: 80px; top: 45%; right: 12%; animation: drift 25s ease-in-out infinite 3s; }
.p3 { width: 50px; height: 50px; top: 70%; left: 20%; animation: drift 18s ease-in-out infinite 6s; }
.p4 { width: 30px; height: 30px; top: 25%; right: 25%; animation: drift 22s ease-in-out infinite 9s; }
.p5 { width: 100px; height: 100px; bottom: 20%; right: 8%; animation: drift 24s ease-in-out infinite 4s; }

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.1); }
    50% { transform: translate(-10px, 20px) scale(0.9); }
    75% { transform: translate(15px, 10px) scale(1.05); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: normal;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.btn svg { flex-shrink: 0; position: relative; z-index: 1; }
.btn span { position: relative; z-index: 1; }

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-text-light);
    padding: 18px 36px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.25);
}

.btn-accent:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(33, 150, 243, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(33, 150, 243, 0.03);
}

.btn-light {
    background: var(--color-bg);
    color: var(--color-text);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--color-bg-alt);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 28px;
    font-size: 14px;
}

@media (min-width: 480px) {
    .btn-lg {
        padding: 18px 36px;
        font-size: 15px;
    }
}

.btn-full { width: 100%; }

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.06em;
    color: var(--color-text);
    flex-shrink: 0;
}

.logo-icon {
    color: var(--color-accent);
    display: flex;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-desktop a:hover { color: var(--color-text); }
.nav-desktop a:hover::after { width: 100%; }

.btn-consultation { display: none; flex-shrink: 0; }

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 102;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 1px;
    transition: all var(--transition-base);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu nav a {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.mobile-menu nav a:hover { color: var(--color-accent); }

@media (min-width: 768px) {
    .nav-desktop, .btn-consultation { display: flex; }
    .menu-toggle { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    padding: 130px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-content {
    text-align: center;
    max-width: 100%;
}

.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-desc {
    margin-left: auto;
    margin-right: auto;
}

.hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(33, 150, 243, 0.06);
    border-radius: 100px;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    color: var(--color-text);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-title em {
    font-style: italic;
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: clamp(17px, 2.2vw, 21px);
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.4;
    word-wrap: break-word;
}

.hero-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
    word-wrap: break-word;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 6px 14px;
    background: var(--color-bg-alt);
    border-radius: 100px;
    border: 1px solid var(--color-border);
}

/* ============================================
   Hero Visual — 3D Dice
   ============================================ */
.hero-visual {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Crystal Dice — Modern 3D
   ============================================ */
.crystal-scene {
    width: 140px;
    height: 140px;
    perspective: 900px;
    position: relative;
    z-index: 2;
}

.crystal-dice {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: crystalFloat 8s ease-in-out infinite;
}

.crystal-face {
    position: absolute;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(33,150,243,0.15), rgba(25,118,210,0.08));
    border: 1px solid rgba(33,150,243,0.25);
    border-radius: 24px;
    backdrop-filter: blur(4px);
    box-shadow:
        0 0 40px rgba(33,150,243,0.1),
        inset 0 0 60px rgba(255,255,255,0.15),
        inset 0 1px 0 rgba(255,255,255,0.3);
    backface-visibility: visible;
}

.crystal-face.f1 { transform: rotateY(0deg) translateZ(70px); }
.crystal-face.f2 { transform: rotateY(90deg) translateZ(70px); }
.crystal-face.f3 { transform: rotateY(180deg) translateZ(70px); }
.crystal-face.f4 { transform: rotateY(-90deg) translateZ(70px); }
.crystal-face.f5 { transform: rotateX(90deg) translateZ(70px); }
.crystal-face.f6 { transform: rotateX(-90deg) translateZ(70px); }

.crystal-inner {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(33,150,243,0.08), rgba(25,118,210,0.04));
    border: 1px solid rgba(33,150,243,0.15);
    border-radius: 16px;
    transform: translateZ(0px);
    box-shadow: 0 0 30px rgba(33,150,243,0.08);
}

.crystal-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(33,150,243,0.12) 0%, transparent 60%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(33,150,243,0.12);
    border-radius: 50%;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring.r1 { width: 220px; height: 220px; animation: orbitSpin 12s linear infinite; }
.orbit-ring.r2 { width: 280px; height: 280px; border-color: rgba(33,150,243,0.06); animation: orbitSpin 18s linear infinite reverse; }

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(33,150,243,0.4);
    pointer-events: none;
}

.orbit-dot.d1 { top: 15%; left: 80%; animation: orbitFloat 6s ease-in-out infinite; }
.orbit-dot.d2 { top: 75%; left: 15%; animation: orbitFloat 8s ease-in-out infinite 1s; }
.orbit-dot.d3 { top: 30%; left: 10%; width: 5px; height: 5px; animation: orbitFloat 7s ease-in-out infinite 2s; }

@keyframes crystalFloat {
    0%, 100% { transform: rotateX(-15deg) rotateY(0deg) translateY(0); }
    25% { transform: rotateX(5deg) rotateY(90deg) translateY(-10px); }
    50% { transform: rotateX(-10deg) rotateY(180deg) translateY(0); }
    75% { transform: rotateX(8deg) rotateY(270deg) translateY(-8px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes orbitSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-15px); opacity: 1; }
}
}

/* Floating shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fshape {
    position: absolute;
    opacity: 0.1;
}

.token-round {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    top: 5%;
    left: 5%;
    animation: floatShape 7s ease-in-out infinite;
}

.token-round.sm {
    width: 30px;
    height: 30px;
    top: 65%;
    right: 8%;
    animation: floatShape 9s ease-in-out infinite 1s;
}

.card-mini {
    width: 36px;
    height: 50px;
    border-radius: 6px;
    border: 2px solid var(--color-accent);
    background: rgba(33, 150, 243, 0.05);
    top: 20%;
    right: 12%;
    transform: rotate(18deg);
    animation: floatShape 8s ease-in-out infinite 2s;
}

.card-mini.alt {
    width: 28px;
    height: 40px;
    bottom: 20%;
    left: 8%;
    transform: rotate(-14deg);
    animation: floatShape 10s ease-in-out infinite 3s;
}

.meeple {
    width: 24px;
    height: 36px;
    background: var(--color-accent);
    border-radius: 12px 12px 4px 4px;
    bottom: 25%;
    left: 20%;
    animation: floatShape 6s ease-in-out infinite 1.5s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-18px) rotate(var(--r, 0deg)); }
}

.token-round { --r: 0deg; }
.token-round.sm { --r: 0deg; }
.card-mini { --r: 18deg; }
.card-mini.alt { --r: -14deg; }
.meeple { --r: 0deg; }

@media (min-width: 768px) {
    .hero { padding: 140px 0 100px; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
    .hero-visual { height: 400px; }
    .hero-content { text-align: left; }
    .hero-content .hero-title,
    .hero-content .hero-subtitle,
    .hero-content .hero-desc {
        margin-left: 0;
        margin-right: 0;
    }
    .crystal-scene { width: 180px; height: 180px; }
    .crystal-face { width: 180px; height: 180px; border-radius: 28px; }
    .crystal-face.f1 { transform: rotateY(0deg) translateZ(90px); }
    .crystal-face.f2 { transform: rotateY(90deg) translateZ(90px); }
    .crystal-face.f3 { transform: rotateY(180deg) translateZ(90px); }
    .crystal-face.f4 { transform: rotateY(-90deg) translateZ(90px); }
    .crystal-face.f5 { transform: rotateX(90deg) translateZ(90px); }
    .crystal-face.f6 { transform: rotateX(-90deg) translateZ(90px); }
    .crystal-inner { width: 130px; height: 130px; top: 25px; left: 25px; }
    .orbit-ring.r1 { width: 260px; height: 260px; }
    .orbit-ring.r2 { width: 340px; height: 340px; }
}

@media (min-width: 1024px) {
    .crystal-scene { width: 200px; height: 200px; }
    .crystal-face { width: 200px; height: 200px; border-radius: 30px; }
    .crystal-face.f1 { transform: rotateY(0deg) translateZ(100px); }
    .crystal-face.f2 { transform: rotateY(90deg) translateZ(100px); }
    .crystal-face.f3 { transform: rotateY(180deg) translateZ(100px); }
    .crystal-face.f4 { transform: rotateY(-90deg) translateZ(100px); }
    .crystal-face.f5 { transform: rotateX(90deg) translateZ(100px); }
    .crystal-face.f6 { transform: rotateX(-90deg) translateZ(100px); }
    .crystal-inner { width: 140px; height: 140px; top: 30px; left: 30px; }
    .orbit-ring.r1 { width: 300px; height: 300px; }
    .orbit-ring.r2 { width: 380px; height: 380px; }
}

/* ============================================
   Sections
   ============================================ */
.section {
    position: relative;
    z-index: 1;
    padding: 70px 0;
}

.section-light { background: var(--color-bg-alt); }

.section-accent {
    background: var(--color-accent);
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.section-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
    pointer-events: none;
}

.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.section-pattern {
    background: var(--color-bg);
    position: relative;
}

.section-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle, var(--color-accent) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.section-header {
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
    padding: 8px 16px;
    background: rgba(33, 150, 243, 0.06);
    border-radius: 100px;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.section-tag.light {
    color: var(--color-text-light);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title.light { color: var(--color-text-light); }

@media (min-width: 768px) {
    .section { padding: 100px 0; }
    .section-header { margin-bottom: 64px; }
}

/* ============================================
   Cards Grid
   ============================================ */
.cards-grid {
    display: grid;
    gap: 20px;
}

.cards-6 { grid-template-columns: 1fr; }
.cards-5 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
    .cards-6 { grid-template-columns: repeat(2, 1fr); }
    .cards-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .cards-6 { grid-template-columns: repeat(3, 1fr); }
    .cards-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
    .cards-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ============================================
   Info Card with Image
   ============================================ */
.info-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    border-color: rgba(33, 150, 243, 0.15);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.card-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.info-card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 150, 243, 0.06);
    border-radius: var(--radius-sm);
    color: var(--color-accent);
    margin-bottom: 14px;
}

.info-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.info-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================
   Product Card with Image
   ============================================ */
.product-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: rgba(33, 150, 243, 0.15);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.product-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-body {
    padding: 24px;
    flex: 1;
    text-align: center;
}

.product-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.product-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================
   What Included
   ============================================ */
.included-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 0;
    position: relative;
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.included-item:hover {
    padding-left: 12px;
    border-bottom-color: rgba(33, 150, 243, 0.15);
}

.included-item:last-child { border-bottom: none; }

.included-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    opacity: 0.4;
    min-width: 32px;
    padding-top: 3px;
}

.included-content {
    text-align: center;
    flex: 1;
}

.included-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.included-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================
   Process
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    position: relative;
    justify-content: center;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 40px;
    position: relative;
}

.step-num {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-accent);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.08);
    transition: all var(--transition-base);
}

.process-step:hover .step-dot {
    box-shadow: 0 0 0 6px rgba(33, 150, 243, 0.12);
    transform: scale(1.15);
}

.step-dot::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 48px);
    background: var(--color-border);
    z-index: 1;
}

.process-step:last-child .step-dot::after { display: none; }

.step-content {
    text-align: center;
    flex: 1;
}

.step-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.step-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 40px;
    }
    .process-step { padding: 20px 0; }
    .step-dot::after { height: calc(100% + 36px); }
    .process-step:nth-child(5) .step-dot::after,
    .process-step:nth-child(6) .step-dot::after { display: none; }
}

/* ============================================
   Why GARUDA
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.why-item {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

.why-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    color: var(--color-text-light);
    margin: 0 auto 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition-base);
}

.why-item:hover .why-icon {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.why-item h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.why-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================
   CTA Section
   ============================================ */
.cta-section { padding: 60px 0; }

.cta-box {
    background: var(--color-accent);
    border-radius: var(--radius-lg);
    padding: 56px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
}

.cta-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
}

.cta-dice {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid white;
    border-radius: 18px;
    top: -30px;
    right: 10%;
    transform: rotate(15deg);
}

.cta-tokens {
    position: absolute;
    bottom: 20px;
    left: 15%;
    display: flex;
    gap: 12px;
}

.cta-tokens span {
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    max-width: 440px;
}

/* ============================================
   Form Section
   ============================================ */
.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.contact-form {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--color-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    resize: vertical;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

.form-contacts {
    margin-top: 24px;
    text-align: center;
}

.form-contacts p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.form-contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.contact-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    transition: opacity var(--transition-fast);
}

.contact-link:hover { opacity: 0.7; }

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
    .contact-form { padding: 44px; }
}

/* ============================================
   Contacts Section
   ============================================ */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    color: var(--color-text-light);
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.contact-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    max-width: 100%;
}

@media (min-width: 640px) {
    .contacts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .contacts-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border-light);
}

.footer-brand .logo {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.footer-brand .logo-icon { color: rgba(255,255,255,0.8); }

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    max-width: 300px;
    line-height: 1.6;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    text-align: center;
}

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

.powered {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-footer-consult {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 10px 20px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background: transparent;
}

.btn-footer-consult:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
}

@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 1fr 2fr; }
    .footer-nav { grid-template-columns: repeat(3, 1fr); }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ============================================
   Modal
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(24px) scale(0.95);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
    z-index: 2;
}

.modal-close:hover {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--color-border);
    transition: all var(--transition-base);
    background: var(--color-bg);
}

.contact-btn:hover {
    border-color: var(--color-accent);
    background: var(--color-bg-alt);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-btn-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    color: var(--color-accent);
    background: rgba(33, 150, 243, 0.06);
}

.contact-btn-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.contact-btn-value {
    font-size: 12px;
    color: var(--color-text-muted);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.contact-btn-arrow {
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.contact-btn:hover .contact-btn-arrow {
    transform: translateX(3px);
    color: var(--color-accent);
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Utility
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Hide Kimi Agent Badge
   ============================================ */
a[href*="kimi.com/agent"],
iframe[src*="kimi"],
[class*="kimi"],
[id*="kimi"],
.kimi-agent-badge,
[data-testid*="kimi"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: -9999 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* ============================================
   Powered by GARUDA Badge
   ============================================ */
.garuda-badge {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.garuda-badge:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(33,150,243,0.4);
}

.garuda-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Blocker overlay for Kimi Agent badge */
.kimi-blocker {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 60px;
    background: var(--color-bg);
    z-index: 99999;
    pointer-events: none;
}
