/* ============================================================
   Landing Page — Coffee POS
   สีโทนตามแอป: Warm Dark Brown + Amber Gold
   ============================================================ */

/* ── Fonts ── */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-400.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-600.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-700.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-800.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

/* ── Thai Webfont (Local WOFF2 - 6KB each) ── */
@font-face {
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/prompt-thai-400.woff2') format('woff2');
    unicode-range: U+0E01-0E5B, U+200C-200D, U+25CC;
}
@font-face {
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/prompt-thai-600.woff2') format('woff2');
    unicode-range: U+0E01-0E5B, U+200C-200D, U+25CC;
}
@font-face {
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/prompt-thai-700.woff2') format('woff2');
    unicode-range: U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* ── Design Tokens ── */
:root {
    --bg-main:       #0f0d0c;
    --bg-dark:       #1c1917;
    --bg-card:       #292524;
    --bg-card2:      #211f1e;
    --primary:       #d97706;
    --primary-hover: #b45309;
    --primary-light: #fef3c7;
    --accent:        #78350f;
    --accent2:       #8c5332;
    --gold:          #c68b57;
    --gold-light:    #f59e0b;
    --text-primary:  #f5f5f4;
    --text-secondary:#a8a29e;
    --text-muted:    #78716c;
    --border:        #44403c;
    --border-light:  #57534e;
    --radius-lg:     1.25rem;
    --radius-xl:     2rem;
    --shadow-glow:   0 0 60px rgba(217, 119, 6, 0.15);
    --shadow-card:   0 20px 60px rgba(0, 0, 0, 0.5);
    --gradient-gold: linear-gradient(135deg, #d97706 0%, #92400e 100%);
    --gradient-hero: linear-gradient(180deg, #0f0d0c 0%, #1c1917 50%, #0f0d0c 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Prompt', 'Sukhumvit Set', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}
body.menu-open {
    overflow: hidden;
}
body.menu-open #hamburger {
    opacity: 0;
    pointer-events: none;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Noise texture overlay ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}
.navbar.scrolled {
    background: rgba(15, 13, 12, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-logo img {
    width: 40px; height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    padding: 6px;
    object-fit: contain;
}
.nav-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}
.nav-logo-text span {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links-main {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.nav-links-main a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0.9rem;
    border-radius: 0.5rem;
    transition: color 0.2s, background 0.2s;
}
.nav-links-main a:hover { color: var(--primary); background: rgba(217,119,6,0.08); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gradient-gold);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.6rem 1.25rem;
    border-radius: 0.625rem;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(217,119,6,0.35);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    width: 42px;
    height: 42px;
    background: rgba(217, 119, 6, 0.12) !important;
    border: 1px solid rgba(217, 119, 6, 0.3) !important;
    border-radius: 0.625rem;
    transition: all 0.25s ease;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
}
.nav-hamburger:hover, .nav-hamburger:focus {
    background: rgba(217, 119, 6, 0.25) !important;
    border-color: var(--primary) !important;
}
.nav-hamburger svg {
    display: block;
    width: 22px;
    height: 22px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 2rem 5rem;
    overflow: hidden;
}

/* Radial glow background */
.hero::after {
    content: '';
    position: absolute;
    top: 20%; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse, rgba(217,119,6,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Floating coffee beans decoration */
.hero-beans {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.bean {
    position: absolute;
    width: 8px; height: 8px;
    background: var(--accent2);
    border-radius: 50%;
    opacity: 0.25;
    animation: floatBean linear infinite;
}

@keyframes floatBean {
    0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%  { opacity: 0.25; }
    90%  { opacity: 0.25; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217,119,6,0.12);
    border: 1px solid rgba(217,119,6,0.3);
    border-radius: 9999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    max-width: 100%;
    white-space: nowrap;
}
.hero-tag::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    text-wrap: balance;
    word-break: normal;
}
.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 540px;
    word-break: normal;
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.25s;
    box-shadow: 0 8px 30px rgba(217,119,6,0.4);
    border: none;
    cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(217,119,6,0.5); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 1.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-light);
    transition: all 0.25s;
    cursor: pointer;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(217,119,6,0.06); }

.hero-stats {
    display: flex;
    gap: 2.5rem;
}
.hero-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
    display: block;
}

/* ── Hero mockup visuals ── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}
.mockup-img {
    width: 100%;
    max-width: 850px;
    height: auto;
    display: block;
    transform: scale(1.15);
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.mockup-tablet, .mockup-phone {
    border-radius: 1.25rem;
    overflow: hidden;
    position: absolute;
    background: #1a1614;
}

.mockup-tablet {
    width: 380px;
    top: 20px;
    left: 0;
    z-index: 1;
    animation: floatDevice 6s ease-in-out infinite;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.1), 0 0 0 8px #1c1917;
}

.mockup-phone {
    width: 160px;
    bottom: -10px;
    right: 0;
    z-index: 2;
    animation: floatDevice 6s ease-in-out infinite 1s;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.15), 0 0 0 6px #1c1917;
}

.mockup-tablet img, .mockup-phone img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

/* Glow ring behind mockup */
.mockup-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 850px; height: 850px;
    background: radial-gradient(ellipse, rgba(140,83,50,0.22) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}

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

/* Floating badge on mockup */
.mockup-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    white-space: nowrap;
    backdrop-filter: blur(12px);
    animation: floatBadge 4s ease-in-out infinite;
}
.mockup-badge-icon { font-size: 1.3rem; }
.mockup-badge-title { color: var(--text-primary); }
.mockup-badge-sub   { color: var(--text-muted); font-size: 0.7rem; font-weight: 400; display: block; }
.mockup-badge.top-right { top: -1rem; right: -2rem; }
.mockup-badge.bottom-left { bottom: 2rem; left: -3rem; animation-delay: 1.5s; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50%       { transform: translateY(-8px) rotate(1deg); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 6rem 2rem; }

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.75;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features { background: var(--bg-dark); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.feat-card {
    background: linear-gradient(145deg, #2e2b29, #231f1e);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s;
}
.feat-card:hover::before { opacity: 1; }
.feat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217,119,6,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(217,119,6,0.1);
}

.feat-icon {
    width: 52px; height: 52px;
    background: rgba(217,119,6,0.12);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(217,119,6,0.2);
    transition: background 0.3s;
}
.feat-card:hover .feat-icon { background: rgba(217,119,6,0.2); }

.feat-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}
.feat-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   SCREENSHOTS SECTION
   ============================================================ */
.screenshots { background: var(--bg-main); position: relative; overflow: hidden; }
.screenshots::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.screenshots-header { text-align: center; margin-bottom: 4rem; }
.screenshots-header .section-desc { margin: 0 auto; }

.screenshots-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.875rem;
    padding: 0.375rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    background: transparent;
}
.tab-btn.active {
    background: var(--gradient-gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(217,119,6,0.35);
}
.tab-btn:not(.active):hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.screenshots-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.screenshots-showcase {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0.5rem 1.75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
}
.screenshots-showcase::-webkit-scrollbar { height: 6px; }
.screenshots-showcase::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 4px; }
.screenshots-showcase::-webkit-scrollbar-thumb { background: rgba(217,119,6,0.4); border-radius: 4px; }

.screenshot-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(28, 25, 23, 0.85);
    border: 1px solid rgba(217, 119, 6, 0.35);
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
.screenshot-nav.prev { left: -16px; }
.screenshot-nav.next { right: -16px; }
.screenshot-nav:hover {
    background: #d97706;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.5);
    transform: translateY(-50%) scale(1.08);
}
.screenshot-nav:active { transform: translateY(-50%) scale(0.95); }

.screenshots-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #d97706;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.85;
}
.screenshots-swipe-hint svg {
    animation: swipePulse 2s infinite ease-in-out;
}

@keyframes swipePulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.screen-frame {
    flex: 0 0 auto;
    scroll-snap-align: center;
    background: #1a1614;
    border-radius: 1.25rem;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screen-frame:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(217,119,6,0.2); }
.screen-frame img { display: block; width: 100%; height: auto; border-radius: inherit; }
.screen-frame.tablet { width: 85vw; max-width: 800px; }
.screen-frame.phone  { width: 75vw; max-width: 340px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { 
    background: var(--bg-dark); 
    position: relative;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
    position: relative;
}

/* Remove awkward overlapping line, replace with sleek card top accents */
.steps-grid::before {
    display: none;
}

.step-card {
    text-align: left;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(41, 37, 36, 0.6) 0%, rgba(28, 25, 23, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid rgba(217, 119, 6, 0.35);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem 1.5rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

.step-card.featured {
    background: linear-gradient(180deg, rgba(217, 119, 6, 0.12) 0%, rgba(41, 37, 36, 0.75) 100%);
    border-color: rgba(217, 119, 6, 0.35);
    border-top: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.12);
}

.step-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--gold-light);
    border-color: rgba(217, 119, 6, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(217, 119, 6, 0.2);
}

.step-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    width: 100%;
}

.step-pill {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(217, 119, 6, 0.15);
    border: 1px solid rgba(217, 119, 6, 0.3);
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.step-card:hover .step-pill {
    background: var(--gradient-gold);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.step-tag-text {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.step-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.step-card.featured .step-icon-box {
    background: rgba(217, 119, 6, 0.15);
    border-color: rgba(217, 119, 6, 0.3);
}

.step-card:hover .step-icon-box {
    transform: scale(1.08) rotate(3deg);
    background: rgba(217, 119, 6, 0.2);
    border-color: rgba(217, 119, 6, 0.4);
}

.step-title { 
    font-size: 1.05rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-desc { 
    font-size: 0.82rem; 
    color: var(--text-secondary); 
    line-height: 1.6; 
    flex-grow: 1;
}

.step-cta {
    margin-top: 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    background: var(--gradient-gold);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
    transition: all 0.25s ease;
    width: 100%;
}

.step-cta:hover {
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.55);
    transform: translateY(-2px);
    color: #ffffff;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-main); }

.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-desc { margin: 0 auto; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testi-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s;
    position: relative;
}
.testi-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217,119,6,0.25);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.testi-card::before {
    content: '"';
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 5rem;
    line-height: 1;
    color: rgba(217,119,6,0.08);
    font-family: Georgia, serif;
    font-weight: 700;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: var(--gold-light);
    font-size: 0.875rem;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.testi-name  { font-size: 0.875rem; font-weight: 700; }
.testi-role  { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   PRICING / CTA
   ============================================================ */
.cta-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(217,119,6,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.cta-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--bg-main);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.footer-logo img {
    width: 32px; height: 32px;
    background: var(--gradient-gold);
    border-radius: 8px;
    padding: 5px;
    object-fit: contain;
}
.footer-logo-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
}
.footer-links a {
    font-size: 0.84rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--primary);
}

/* ============================================================
   MOBILE MENU DRAWER (Right Slide Drawer)
   ============================================================ */
button, button:focus, button:active, button:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu.open {
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu.open .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu-panel {
    position: relative;
    z-index: 2;
    background: #1a1715;
    width: 310px;
    max-width: 85vw;
    height: 100%;
    padding: 1.5rem;
    padding-top: 4.5rem;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.85);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.mobile-menu-logo img {
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    border-radius: 8px;
    padding: 5px;
    object-fit: contain;
}

.mobile-menu-logo span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    background: rgba(217, 119, 6, 0.15) !important;
    border: 1px solid rgba(217, 119, 6, 0.35) !important;
    color: var(--primary) !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    outline: none !important;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

.mobile-menu-close:hover, .mobile-menu-close:active {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
    transform: rotate(90deg) scale(1.1);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    transition: all 0.25s ease;
    text-decoration: none;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu.open .mobile-menu-nav a {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.35s ease calc(var(--i, 1) * 0.06s + 0.1s),
                transform 0.35s ease calc(var(--i, 1) * 0.06s + 0.1s),
                background 0.2s ease, color 0.2s ease;
}

.mobile-menu-nav a:hover {
    color: var(--primary);
    background: rgba(217, 119, 6, 0.15);
    transform: translateX(-3px) !important;
}

.mobile-menu-nav a.btn-mobile-cta {
    margin-top: 1.5rem;
    background: var(--gradient-gold);
    color: #ffffff;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.35);
}

.mobile-menu-nav a.btn-mobile-cta:hover {
    color: #ffffff;
    opacity: 0.95;
    transform: translateY(-2px) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid::before { display: none; }
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid    { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links-main, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .hero {
        padding: 5.5rem 1.25rem 3rem;
        min-height: auto;
        overflow: hidden;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-tag {
        margin-bottom: 1.25rem;
        font-size: 0.76rem;
    }
    .hero-title {
        font-size: clamp(1.85rem, 6.5vw, 2.5rem);
        line-height: 1.25;
        margin-bottom: 1.25rem;
        width: 100%;
    }
    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 480px;
        padding: 0 0.5rem;
    }
    .hero-actions {
        justify-content: center;
        width: 100%;
        max-width: 380px;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        text-align: center;
    }
    .hero-stat-num {
        font-size: 1.35rem;
    }
    .hero-stat-label {
        font-size: 0.72rem;
    }

    .hero-visual {
        width: 100%;
        max-width: 100%;
    }
    .mockup-wrap {
        width: 100%;
        max-width: 520px;
    }
    .mockup-img {
        transform: scale(1);
        max-width: 100%;
    }
    .mockup-glow {
        width: 320px;
        height: 320px;
    }
    .mockup-tablet { width: 280px; top: 10px; left: 0; }
    .mockup-phone  { width: 120px; bottom: -20px; right: 0; }
    .mockup-badge.top-right  { right: -0.5rem; }
    .mockup-badge.bottom-left { left: -0.5rem; }

    .features-grid     { grid-template-columns: 1fr; }
    .steps-grid        { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .screenshots-showcase {
        gap: 1rem;
        padding: 0.5rem 0.25rem 1.25rem;
        scrollbar-width: none;
    }
    .screenshots-showcase::-webkit-scrollbar { display: none; }
    .screen-frame.tablet { width: 88vw; max-width: 480px; }
    .screen-frame.phone  { width: 72vw; max-width: 260px; margin-top: 0; }
    .screenshot-nav      { display: none; }

    footer {
        padding: 2.5rem 1.25rem 2rem;
    }
    footer .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
    .footer-logo {
        order: 1;
        justify-content: center;
    }
    .footer-links {
        order: 2;
        justify-content: center;
        max-width: 480px;
        margin: 0 auto;
        gap: 0.5rem 0.65rem;
        padding: 0.25rem 0;
    }
    .footer-links a {
        font-size: 0.82rem;
        padding: 0.35rem 0.65rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 6px;
    }
    .footer-links a:hover {
        background: rgba(217, 119, 6, 0.12);
        border-color: rgba(217, 119, 6, 0.3);
        color: var(--primary);
    }
    .footer-copy {
        order: 3;
        font-size: 0.78rem;
        line-height: 1.5;
        margin-top: 0.25rem;
    }
}

@media (max-width: 480px) {
    section { padding: 3.5rem 1rem; }
    .hero   { padding: 5rem 1rem 2.5rem; }
    .navbar { padding: 0.85rem 1rem; }
    .hero-title {
        font-size: clamp(1.65rem, 7vw, 2.05rem);
        line-height: 1.25;
    }
    .hero-desc {
        font-size: 0.88rem;
        line-height: 1.6;
        padding: 0;
    }
    .hero-actions {
        max-width: 100%;
    }
    .hero-stats {
        gap: 0.5rem;
        max-width: 100%;
    }
    .hero-stat-num {
        font-size: 1.15rem;
    }
    .hero-stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.02em;
    }
    .mockup-wrap { width: 100%; max-width: 360px; margin-top: 0.5rem; }
    .mockup-tablet { width: 240px; top: 0; left: 0; }
    .mockup-phone { width: 100px; bottom: -30px; right: 0; }
    .mockup-badge { display: none; }
    .footer-links {
        gap: 0.4rem 0.5rem;
    }
    .footer-links a {
        font-size: 0.78rem;
        padding: 0.3rem 0.55rem;
    }
}

/* ── Scroll-reveal utility ── */
[data-aos] { will-change: transform, opacity; }

/* ── Divider ── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    max-width: 1280px;
    margin: 0 auto;
}

/* ============================================================
   PRICING / PLANS SECTION
   ============================================================ */
.pricing {
    background: var(--bg-dark);
    position: relative;
}
.pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.pricing-header .section-desc {
    margin: 0 auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}
.plan-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s ease;
}
.plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 119, 6, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}
.plan-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(217, 119, 6, 0.2);
    background: linear-gradient(145deg, #30261f, #231d18);
}
.plan-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--gradient-gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.85rem;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}
.plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.plan-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.plan-price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}
.plan-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}
.plan-price-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.plan-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.plan-features li svg {
    color: var(--primary);
    flex-shrink: 0;
}
.btn-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    transition: all 0.25s ease;
    text-align: center;
}
.btn-plan:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(217, 119, 6, 0.08);
}
.btn-plan-popular {
    background: var(--gradient-gold);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35);
}
.btn-plan-popular:hover {
    color: #fff;
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.45);
}

/* ── SweetAlert2 Custom Dark Theme ── */
.swal2-popup.swal2-dark-popup {
    border: 1px solid var(--border) !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
    padding: 2rem 1.5rem !important;
}
.swal2-dark-popup .swal2-title {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
}
.swal2-dark-popup .swal2-html-container {
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
}
.swal2-dark-popup .swal2-styled {
    border-radius: 0.75rem !important;
    font-weight: 700 !important;
    padding: 0.75rem 1.5rem !important;
}

/* ── FAQ Section ── */
.faq-section {
    background: var(--bg-dark);
    position: relative;
    padding: 6rem 0;
}
.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.faq-header .section-desc {
    margin: 0 auto;
}
.faq-container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(217, 119, 6, 0.35);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.35rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease;
}
.faq-question:hover {
    color: var(--gold-light);
}
.faq-item.active .faq-question {
    color: var(--gold-light);
}
.faq-toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s;
}
.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: #fff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}
.faq-answer p {
    padding: 0 1.5rem 1.85rem 1.5rem;
}

/* ============================================================
   SME-GP CERTIFICATION & TRUST SECTION
   ============================================================ */
.sme-section {
    background: var(--bg-main);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.sme-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sme-card {
    background: linear-gradient(165deg, rgba(41, 37, 36, 0.75) 0%, rgba(28, 25, 23, 0.95) 100%);
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: var(--radius-xl);
    padding: 4rem 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(217, 119, 6, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-align: center;
}

.sme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.sme-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.sme-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 119, 6, 0.12);
    border: 1px solid rgba(217, 119, 6, 0.35);
    padding: 0.4rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.sme-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.sme-logo-container {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1rem 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 580px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sme-logo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(217, 119, 6, 0.25), 0 0 0 1px rgba(217, 119, 6, 0.4);
}

.sme-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.sme-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.sme-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sme-doc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: 0.75rem;
    padding: 0.55rem 1.35rem;
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}

.sme-doc-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

.sme-doc-badge strong {
    color: var(--gold-light);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.sme-desc {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 820px;
    margin: 0 auto 2.5rem;
}

.sme-desc strong {
    color: var(--text-primary);
}

.sme-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
    text-align: left;
}

.sme-feat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.sme-feat-item:hover {
    background: rgba(217, 119, 6, 0.08);
    border-color: rgba(217, 119, 6, 0.35);
    transform: translateY(-3px);
}

.sme-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(217, 119, 6, 0.15);
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.sme-feat-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.sme-feat-desc {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.sme-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sme-btn-cert {
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.35);
}

@media (max-width: 768px) {
    .sme-card {
        padding: 2.25rem 1.25rem;
        border-radius: var(--radius-lg);
    }
    .sme-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .sme-actions {
        flex-direction: column;
        width: 100%;
    }
    .sme-actions .btn-primary,
    .sme-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .sme-logo-container {
        padding: 0.75rem 1.25rem;
        border-radius: 0.875rem;
    }
    .sme-doc-badge {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* ============================================================
   COMPARISON / WHY CHOOSE US SECTION
   ============================================================ */
.compare-section {
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}
.compare-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}
.compare-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.compare-header .section-desc {
    margin: 0 auto;
}
.compare-table-wrap {
    background: linear-gradient(145deg, #1c1917, #171413);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 780px;
}
.compare-table th,
.compare-table td {
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
    text-align: left;
}
.compare-table thead th {
    font-size: 1rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
}
.compare-table thead th.col-feature {
    width: 25%;
    color: var(--text-secondary);
}
.compare-table thead th.col-pro {
    width: 43%;
    background: rgba(217, 119, 6, 0.08);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-top: 2px solid var(--primary);
    border-left: 1px solid rgba(217, 119, 6, 0.3);
    border-right: 1px solid rgba(217, 119, 6, 0.3);
    position: relative;
}
.compare-table thead th.col-free {
    width: 32%;
    color: var(--text-muted);
}
.compare-table tbody tr {
    transition: background 0.2s ease;
}
.compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}
.compare-table tbody tr td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.compare-table tbody tr:last-child td {
    border-bottom: none;
}
.compare-table tbody td.col-pro {
    background: rgba(217, 119, 6, 0.04);
    border-left: 1px solid rgba(217, 119, 6, 0.2);
    border-right: 1px solid rgba(217, 119, 6, 0.2);
}
.compare-table tbody tr:last-child td.col-pro {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}
.feat-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.feat-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.25rem;
    line-height: 1.4;
}
.pro-item, .free-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.icon-badge-check {
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.icon-badge-cross {
    width: 24px;
    height: 24px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.pro-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: #fef3c7;
    margin-bottom: 0.2rem;
}
.pro-desc {
    font-size: 0.82rem;
    color: #d6d3d1;
    line-height: 1.5;
}
.free-title {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}
.free-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.brand-pill-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--gradient-gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    margin-bottom: 0.4rem;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}
.brand-title-wrap {
    display: flex;
    flex-direction: column;
}
.brand-title-wrap strong {
    font-size: 1.15rem;
    color: var(--gold-light);
}
.free-title-wrap {
    display: flex;
    flex-direction: column;
}
.free-title-wrap strong {
    font-size: 1.05rem;
    color: var(--text-secondary);
}
.compare-scroll-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}
.compare-summary-box {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(120, 53, 15, 0.18));
    border: 1px solid rgba(217, 119, 6, 0.35);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.summary-content {
    flex: 1;
}
.summary-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.summary-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.summary-btn {
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.35);
}

.compare-mobile-cards {
    display: none;
}

@media (max-width: 992px) {
    .compare-summary-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .summary-title {
        justify-content: center;
    }
    .summary-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .compare-table-wrap {
        display: none !important;
    }
    .compare-mobile-cards {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .m-compare-card {
        background: linear-gradient(145deg, #1c1917, #171413);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 1.25rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
    .m-card-header {
        margin-bottom: 0.85rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .m-feat-name {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .m-feat-sub {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-top: 0.2rem;
    }
    .m-compare-pro {
        background: rgba(217, 119, 6, 0.08);
        border: 1px solid rgba(217, 119, 6, 0.35);
        border-radius: 0.875rem;
        padding: 1rem;
        margin-bottom: 0.75rem;
        position: relative;
    }
    .m-brand-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--gold-light);
        margin-bottom: 0.45rem;
    }
    .m-brand-badge .icon-badge-check {
        width: 18px;
        height: 18px;
        font-size: 0.68rem;
    }
    .m-compare-free {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0.875rem;
        padding: 0.875rem 1rem;
    }
    .m-free-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--text-muted);
        margin-bottom: 0.4rem;
    }
    .m-free-badge .icon-badge-cross {
        width: 18px;
        height: 18px;
        font-size: 0.68rem;
    }
}

/* ── UI Helpers & Clean Style Classes (Replacing Inline Styles) ── */
.nav-actions {
    display: flex;
    gap: 10px;
}
.nav-cta-outline {
    background: transparent !important;
    border: 1px solid #d97706 !important;
    color: #d97706 !important;
}
.mobile-link-login {
    text-align: center;
    border: 1px solid #d97706;
    color: #d97706;
    border-radius: 8px;
    margin-bottom: 10px;
    justify-content: center;
}
.compare-sub-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: normal;
}
.section-tag-center {
    justify-content: center;
}
.btn-line {
    border-color: rgba(0, 185, 0, 0.4) !important;
    color: #00b900 !important;
}

