/* ═══════════════════════════════════════════
   Lilawan Promo Landing Page — Styles
   Pure CSS animations, zero JS dependencies
   ═══════════════════════════════════════════ */

/* ═══ LOADER ═══ */
.loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--d, #FAFAF8);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 28px;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}
.loader.hide {
    opacity: 0; visibility: hidden; pointer-events: none;
}
.loader-logo {
    width: 72px; height: 72px; border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.8; }
}
.loader-bar {
    width: 120px; height: 3px; border-radius: 3px;
    background: rgba(45,90,39,0.1); overflow: hidden;
}
.loader-fill {
    width: 0%; height: 100%; border-radius: 3px;
    background: #2D5A27;
    animation: loaderProgress 1.5s ease-out forwards;
}
@keyframes loaderProgress {
    0%   { width: 0%; }
    60%  { width: 70%; }
    100% { width: 100%; }
}

/* ═══ TOKENS ═══ */
:root {
    --g: #2D5A27; --gl: #3A7A32; --gs: #5CB85C;
    --orange: #E07B39; --sky: #4A90A4;
    --d: #FAFAF8; --dc: #FFFFFF; --db: #E8E8E4;
    --t: #1A1A1A; --td: #666666; --tm: #CCCCCC;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ═══ THAI FONT ═══ */
html[lang="th"], html[lang="th"] body, html[lang="th"] *:not(code) {
    font-family: 'Noto Sans Thai', 'Prompt', var(--font) !important;
}
html[lang="th"] .hero-title { font-family: 'Prompt', 'Noto Sans Thai', var(--font) !important; }

/* ═══ RESET ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--g) var(--d); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--d); }
::-webkit-scrollbar-thumb { background: var(--g); border-radius: 3px; }
body {
    font-family: var(--font); background: var(--d); color: var(--t);
    line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ═══ BACKGROUND ═══ */
#aurora {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 15% 30%, rgba(45,90,39,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 85% 70%, rgba(45,90,39,0.04) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(74,144,164,0.03) 0%, transparent 50%);
}
#grid-bg {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(45,90,39,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,90,39,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 10%, transparent 70%);
}

/* ═══ CUSTOM CURSOR ═══ */
html, html * {
    cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAABmJLR0QAAAAAAAD5Q7t/AAAADUlEQVQI12NgYGBgAAAABQABXvMqOgAAAABJRU5ErkJggg==') 0 0, none !important;
}
.cursor-dot {
    position: fixed; width: 8px; height: 8px; border-radius: 50%;
    background: var(--g); pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16,1,0.3,1), height 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.25s;
    opacity: 0.95;
}
.cursor-ring {
    position: fixed; border-radius: 50%; pointer-events: none;
    border: solid var(--g); transform: translate(-50%, -50%);
    transition: left 0.15s ease-out, top 0.15s ease-out,
                width 0.4s cubic-bezier(0.16,1,0.3,1), height 0.4s cubic-bezier(0.16,1,0.3,1),
                opacity 0.3s, border-color 0.3s;
}
.cursor-r1 { width: 60px; height: 60px; border-width: 1.5px; opacity: 0.45; z-index: 9998; transition-duration: 0.2s, 0.2s, 0.4s, 0.4s, 0.3s, 0.3s; }
.cursor-r2 { width: 110px; height: 110px; border-width: 1px; opacity: 0.22; z-index: 9997; transition-duration: 0.35s, 0.35s, 0.4s, 0.4s, 0.3s, 0.3s; }
.cursor-r3 { width: 170px; height: 170px; border-width: 0.5px; opacity: 0.10; z-index: 9996; transition-duration: 0.55s, 0.55s, 0.4s, 0.4s, 0.3s, 0.3s; }
.cursor-dot.hovering { width: 5px; height: 5px; opacity: 1; }
.cursor-r1.hovering { width: 28px; height: 28px; opacity: 0.7; border-color: var(--gl); }
.cursor-r2.hovering { width: 44px; height: 44px; opacity: 0.4; border-color: var(--gl); }
.cursor-r3.hovering { width: 64px; height: 64px; opacity: 0.2; border-color: var(--gl); }
.cursor-ripple {
    position: fixed; border-radius: 50%; pointer-events: none; z-index: 9995;
    border: 1px solid var(--g); transform: translate(-50%, -50%) scale(0);
}
.cursor-ripple.r1 { animation: ripple-out 0.6s ease-out forwards; }
.cursor-ripple.r2 { animation: ripple-out 0.8s 0.08s ease-out forwards; }
.cursor-ripple.r3 { animation: ripple-out 1.0s 0.15s ease-out forwards; }
@keyframes ripple-out {
    0%   { width: 10px; height: 10px; opacity: 0.6; transform: translate(-50%, -50%) scale(0); }
    100% { width: 200px; height: 200px; opacity: 0; transform: translate(-50%, -50%) scale(1); }
}
.cursor-glow {
    position: fixed; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(45,90,39,0.04) 0%, transparent 60%);
    pointer-events: none; z-index: 1; transform: translate(-50%, -50%);
    transition: left 0.3s ease-out, top 0.3s ease-out;
}
@media (pointer: coarse), (max-width: 768px) {
    html, html * { cursor: auto !important; }
    .cursor-dot, .cursor-ring, .cursor-glow { display: none !important; }
}

/* ═══ NAV ═══ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 40px; display: flex; justify-content: space-between; align-items: center;
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    background: rgba(250,250,248,0.8); border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s;
}
nav.scrolled { padding: 14px 40px; background: rgba(250,250,248,0.95); }
.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.nav-brand { font-weight: 900; font-size: 18px; color: var(--g); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a:not(.nav-cta) { font-size: 13px; font-weight: 500; color: var(--td); letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:not(.nav-cta):hover { color: var(--g); }
.nav-cta {
    padding: 10px 24px; border-radius: 10px; background: var(--g); color: white;
    font-size: 13px; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--gl); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,90,39,0.3); }
.lang-btn {
    padding: 8px 14px; border-radius: 8px; cursor: pointer;
    background: rgba(45,90,39,0.08); border: 1px solid rgba(45,90,39,0.15);
    color: var(--g); font-size: 12px; font-weight: 700; letter-spacing: 1px; transition: all 0.2s;
}
.lang-btn:hover { background: rgba(45,90,39,0.15); }
.nav-mobile-toggle { display: none; background: none; border: none; color: var(--t); cursor: pointer; }
@media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }
}

/* ═══ LAYOUT ═══ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ═══ SCROLL REVEAL ═══ */
.rv {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.rv.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }

/* ═══ HERO ═══ */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600; color: var(--g);
    padding: 8px 20px; background: rgba(45,90,39,0.08);
    border: 1px solid rgba(45,90,39,0.2); border-radius: 100px;
    margin-bottom: 32px; letter-spacing: 1px;
}
.hero-pulse { width: 8px; height: 8px; background: var(--g); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(45,90,39,0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(45,90,39,0); }
}
.hero-title { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -3px; margin-bottom: 28px; }
.gradient-text {
    background: linear-gradient(135deg, var(--g) 0%, var(--gs) 50%, var(--sky) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 18px; color: var(--td); max-width: 500px; line-height: 1.8; margin-bottom: 40px; }
.hero-desc strong { color: var(--t); font-weight: 600; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; border-radius: 14px; font-size: 15px; font-weight: 600;
    transition: all 0.3s; cursor: pointer; border: none; position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--g); color: white;
    box-shadow: 0 4px 20px rgba(45,90,39,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(45,90,39,0.4); background: var(--gl); }
.btn-secondary { background: rgba(0,0,0,0.02); color: var(--t); border: 1px solid rgba(0,0,0,0.1); }
.btn-secondary:hover { border-color: var(--g); color: var(--g); transform: translateY(-3px); }

/* ═══ HERO PHONE MOCKUP ═══ */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone-stack { position: relative; width: 320px; height: 580px; }
.phone {
    position: absolute; width: 260px; border-radius: 36px;
    background: var(--dc); border: 2px solid rgba(0,0,0,0.08);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12), 0 0 60px rgba(45,90,39,0.06);
    overflow: hidden;
}
.phone-back { top: 0; left: 0; transform: rotate(-6deg); z-index: 1; opacity: 0.7; }
.phone-front { top: 20px; left: 50px; transform: rotate(3deg); z-index: 2; }
.phone img { width: 100%; display: block; }
.phone-glow {
    position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(45,90,39,0.15) 0%, transparent 60%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; pointer-events: none;
}
.phone-float { animation: phoneFloat 6s ease-in-out infinite; }
@keyframes phoneFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-btns { justify-content: center; }
    .hero-visual { margin-top: 48px; }
    .phone-stack { transform: scale(0.85); }
}
@media (max-width: 480px) { .phone-stack { transform: scale(0.7); } }

/* ═══ APP SHOWCASE ═══ */
.showcase {
    padding: 100px 0 120px; position: relative; z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(45,90,39,0.03) 50%, transparent 100%);
    overflow: hidden;
}
.showcase-header { text-align: center; margin-bottom: 64px; }
.showcase-phones {
    display: flex; justify-content: center; align-items: flex-end;
    position: relative; height: 420px;
}
.showcase-phone {
    width: 200px; flex-shrink: 0; border-radius: 28px; overflow: hidden;
    border: 2px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    position: relative; z-index: 1;
}
.showcase-phone img { width: 100%; display: block; }
.showcase-phone:hover { transform: translateY(-12px) scale(1.04) !important; z-index: 10; box-shadow: 0 30px 80px rgba(0,0,0,0.15); }
.showcase-phone:nth-child(1) { transform: rotate(-8deg) translateY(20px); z-index: 2; }
.showcase-phone:nth-child(2) { transform: rotate(-4deg) translateY(6px); z-index: 3; margin-left: -30px; }
.showcase-phone:nth-child(3) { transform: rotate(0deg) translateY(0); z-index: 5; width: 220px; box-shadow: 0 30px 80px rgba(0,0,0,0.12); margin-left: -30px; }
.showcase-phone:nth-child(4) { transform: rotate(4deg) translateY(6px); z-index: 3; margin-left: -30px; }
.showcase-phone:nth-child(5) { transform: rotate(8deg) translateY(20px); z-index: 2; margin-left: -30px; }
.showcase-caption {
    text-align: center; margin-top: 40px;
    font-size: 14px; color: var(--td); font-weight: 500;
}
@media (max-width: 968px) {
    .showcase-phones { height: 320px; }
    .showcase-phone { width: 150px; }
    .showcase-phone:nth-child(3) { width: 170px; }
    .showcase-phone:nth-child(n+2) { margin-left: -20px; }
}
@media (max-width: 600px) {
    .showcase-phones { height: 260px; overflow-x: auto; justify-content: flex-start; padding: 0 20px; gap: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .showcase-phone { width: 160px; min-width: 160px; scroll-snap-align: center; }
    .showcase-phone:nth-child(3) { width: 160px; }
    .showcase-phone:nth-child(n) { transform: none !important; margin-left: 0 !important; }
}

/* ═══ STATS BAR ═══ */
.stats-bar {
    padding: 48px 0; position: relative; z-index: 2;
    border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06);
    background: rgba(245,245,242,0.7); backdrop-filter: blur(20px);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-box { text-align: center; padding: 20px 16px; position: relative; transition: all 0.3s; }
.stat-box:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 20%; height: 60%;
    width: 1px; background: rgba(0,0,0,0.08);
}
.stat-box:hover { background: rgba(45,90,39,0.03); }
.stat-icon { font-size: 28px; margin-bottom: 8px; }
.stat-val {
    font-size: clamp(28px, 3vw, 40px); font-weight: 900;
    background: linear-gradient(135deg, var(--g), var(--gs));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2;
}
.stat-label { font-size: 13px; color: var(--td); font-weight: 500; margin-top: 4px; }
@media (max-width: 600px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-box:nth-child(2)::after { display: none; }
}

/* ═══ SECTION HEADERS ═══ */
.section { padding: 120px 0; position: relative; }
.section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
    color: var(--g); margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--g); }
.section-title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -2px; }
.section-desc { font-size: 18px; color: var(--td); max-width: 600px; line-height: 1.8; }

/* ═══ FEATURE SECTIONS ═══ */
.feature-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.feature-section:nth-child(even) {
    background: rgba(45,90,39,0.015);
}
.feature-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-text { max-width: 480px; }
.feature-num {
    display: inline-block; font-size: 13px; font-weight: 800;
    color: var(--g); letter-spacing: 2px; margin-bottom: 12px;
    opacity: 0.5;
}
.feature-num-sm {
    display: inline-block; font-size: 11px; font-weight: 800;
    color: var(--g); letter-spacing: 2px; margin-bottom: 8px;
    opacity: 0.4;
}
.feature-title {
    font-size: 28px; font-weight: 800; margin-bottom: 16px;
    letter-spacing: -1px; line-height: 1.2;
}
.feature-desc {
    font-size: 16px; color: var(--td); line-height: 1.8; margin-bottom: 20px;
}
.feature-visual {
    display: flex; justify-content: center;
}
.feature-visual img {
    width: 100%; max-width: 480px; border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.10);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.feature-row:hover .feature-visual img {
    transform: translateY(-8px) scale(1.01);
}
@media (max-width: 768px) {
    .feature-section { padding: 48px 0; }
    .feature-row { grid-template-columns: 1fr; gap: 32px; }
    .feature-row.reverse { direction: ltr; }
    .feature-visual img { max-width: 320px; }
}

/* ═══ FEATURE CARDS GRID (smaller features) ═══ */
.feature-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 48px;
}
.feature-card {
    background: var(--dc); border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px; padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.feature-card:hover {
    border-color: rgba(45,90,39,0.25); transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.feature-card .feature-title { font-size: 16px; margin-bottom: 8px; }
.feature-card .feature-desc { font-size: 13px; line-height: 1.6; }
@media (max-width: 968px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ═══ SHARED ICON/TAG STYLES ═══ */
.bento-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px;
}
.bento-icon.green { background: rgba(45,90,39,0.12); }
.bento-icon.orange { background: rgba(224,123,57,0.12); }
.bento-icon.blue { background: rgba(74,144,164,0.12); }
.bento-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.bento-tag {
    padding: 4px 12px; border-radius: 6px; font-size: 11px; font-weight: 600;
    background: rgba(45,90,39,0.08); color: var(--g); border: 1px solid rgba(45,90,39,0.12);
}

/* ═══ HOW IT WORKS ═══ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.step-card {
    background: var(--dc); border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px; padding: 40px 32px; text-align: center;
    position: relative; transition: all 0.4s; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.step-card:hover { border-color: rgba(45,90,39,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.step-num {
    width: 56px; height: 56px; border-radius: 16px;
    background: rgba(45,90,39,0.1); color: var(--g);
    font-size: 24px; font-weight: 900;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.step-title { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.step-desc { font-size: 14px; color: var(--td); line-height: 1.7; }
.step-connector { position: absolute; right: -20px; top: 50%; width: 40px; height: 2px; background: rgba(45,90,39,0.15); }
.step-connector::after {
    content: ''; position: absolute; right: 0; top: -3px;
    width: 8px; height: 8px; border-right: 2px solid rgba(45,90,39,0.3);
    border-top: 2px solid rgba(45,90,39,0.3); transform: rotate(45deg);
}
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } .step-connector { display: none; } }

/* ═══ THAI SECTION ═══ */
.thai-section {
    background: linear-gradient(180deg, rgba(45,90,39,0.04) 0%, transparent 100%);
    border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06);
}
.thai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.thai-features { display: flex; flex-direction: column; gap: 24px; }
.thai-item { display: flex; gap: 20px; align-items: flex-start; padding: 20px; border-radius: 16px; transition: background 0.3s; }
.thai-item:hover { background: rgba(45,90,39,0.04); }
.thai-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(45,90,39,0.1); color: var(--g);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.thai-item-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.thai-item-desc { font-size: 13px; color: var(--td); line-height: 1.6; }
.thai-visual { position: relative; display: flex; justify-content: center; }
.thai-phone {
    width: 280px; border-radius: 32px; overflow: hidden;
    border: 2px solid rgba(0,0,0,0.08);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1), 0 0 40px rgba(45,90,39,0.04);
}
.thai-phone img { width: 100%; display: block; }
@media (max-width: 768px) { .thai-grid { grid-template-columns: 1fr; } .thai-visual { margin-top: 32px; } }

/* ═══ CTA ═══ */
.cta-section { padding: 120px 0; text-align: center; position: relative; }
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(45,90,39,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-title { font-size: clamp(36px, 5vw, 60px); font-weight: 900; letter-spacing: -2px; margin-bottom: 16px; }
.cta-desc { font-size: 18px; color: var(--td); max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }
.store-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-badge { height: 54px; border-radius: 10px; transition: transform 0.2s; }
.store-badge:hover { transform: scale(1.05); }
.store-badge.soon { opacity: 0.4; pointer-events: none; }

/* ═══ FOOTER ═══ */
footer { padding: 48px 0; border-top: 1px solid rgba(0,0,0,0.06); text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.footer-logo { width: 28px; height: 28px; border-radius: 8px; }
.footer-name { font-weight: 800; font-size: 16px; color: var(--g); letter-spacing: 2px; }
.footer-tagline { font-size: 14px; color: var(--td); margin-bottom: 20px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--td); transition: color 0.2s; }
.footer-links a:hover { color: var(--g); }
.footer-copy { margin-top: 24px; font-size: 12px; color: var(--tm); }
