/* ============================================================
   GO SUITE — Mobile-Native Landing Page Design System
   LIGHT THEME · Force mobile viewport (max 430px centered)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
    /* Colors — Light Theme */
    --bg-app: #ffffff;
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-alt: #f1f5f9;
    --bg-elevated: #f8fafc;
    --bg-input: #f1f5f9;

    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #4338ca;
    --primary-glow: rgba(79, 70, 229, 0.08);
    --primary-surface: rgba(79, 70, 229, 0.06);

    --secondary: #0891b2;
    --secondary-light: #06b6d4;

    --accent: #ea580c;
    --accent-light: #f97316;

    --success: #16a34a;
    --danger: #dc2626;
    --warning: #d97706;

    /* Extended Palette */
    --indigo: #4f46e5;
    --emerald: #10b981;
    --orange: #ea580c;
    --rose: #e11d48;
    --cyan: #0891b2;
    --amber: #d97706;
    --violet: #8b5cf6;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-link: #4f46e5;

    --border: rgba(15, 23, 42, 0.08);
    --border-medium: rgba(15, 23, 42, 0.12);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #4f46e5, #0891b2);
    --gradient-hero-soft: linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(8, 145, 178, 0.04));
    --gradient-cta: linear-gradient(135deg, #4f46e5, #4338ca);
    --gradient-accent: linear-gradient(135deg, #ea580c, #dc2626);
    --gradient-warm: linear-gradient(135deg, #fef3c7, #fce7f3);

    /* Spacing */
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --nav-height: 56px;
    --bottom-nav-height: 68px;
    --top-nav-total-height: calc(var(--nav-height) + var(--safe-top));
    --bottom-nav-total-height: calc(var(--bottom-nav-height) + var(--safe-bottom));
    --page-px: 20px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #e2e8f0;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

/* ============ MOBILE SHELL (Force 430px) ============ */
.app-shell {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    background: var(--bg-app);
    overflow-x: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.12);
}

/* ============ TOP NAVBAR ============ */
.top-nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: var(--top-nav-total-height);
    padding: 0 var(--page-px);
    padding-top: var(--safe-top);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    z-index: 100;
    transition: all 0.3s var(--ease-out);
}

.top-nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-cta);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.22);
}

.nav-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-logo-text span {
    color: var(--primary);
    font-weight: 500;
}

.nav-cta {
    min-height: 36px;
    padding: 8px 15px;
    background: var(--gradient-cta);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    text-decoration: none;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.2);
}

.nav-cta:active {
    transform: scale(0.95);
}

/* ============ BOTTOM NAV ============ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: var(--bottom-nav-total-height);
    padding-top: 4px;
    padding-bottom: var(--safe-bottom);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.08);
    z-index: 100;
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 2px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    min-height: 56px;
    padding: 6px 10px;
    border-radius: var(--radius-md);
    transition: all 0.2s var(--ease-out);
    position: relative;
}

.bottom-nav a.active {
    color: var(--primary);
    background: var(--primary-surface);
}

.bottom-nav a.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2.5px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.bottom-nav a svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
    transition: transform 0.2s var(--ease-out);
}

.bottom-nav a span {
    line-height: 1.1;
    letter-spacing: 0.1px;
}

.bottom-nav a.active svg {
    transform: translateY(-1px);
}

.bottom-nav a:focus-visible,
.nav-cta:focus-visible,
.nav-logo:focus-visible {
    outline: 2px solid rgba(79, 70, 229, 0.28);
    outline-offset: 2px;
}

.bottom-nav a:active {
    transform: scale(0.9);
}

/* ============ PAGE CONTENT ============ */
.page-content {
    padding-top: var(--top-nav-total-height);
    padding-bottom: var(--bottom-nav-total-height);
    min-height: 100vh;
    min-height: 100dvh;
}

/* ============ TABS ============ */
.tabs-container {
    margin-bottom: 20px;
    margin-left: calc(-1 * var(--page-px));
    margin-right: calc(-1 * var(--page-px));
}

.integrated-slider {
    margin: 12px calc(-1 * var(--page-px)) 20px;
    padding: 12px var(--page-px);
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(79, 70, 229, 0.08), rgba(15, 23, 42, 0.03));
    box-shadow: var(--shadow-sm);
    touch-action: pan-y;
}

.integrated-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s var(--ease-out);
    will-change: transform;
    user-select: none;
}

.integrated-slider-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.integrated-slider-slide img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    touch-action: manipulation;
}

.integrated-slider-slide figcaption {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
}

.integrated-slider-dots {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.integrated-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.15);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.integrated-slider-dot[aria-selected="true"] {
    width: 34px;
    background: rgba(79, 70, 229, 0.95);
    border-radius: var(--radius-full);
}

.integrated-slider-dot:focus-visible {
    outline: 2px solid rgba(79, 70, 229, 0.5);
    outline-offset: 2px;
}

.integrated-slider-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
    z-index: 120;
}

.integrated-slider-lightbox[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
}

.integrated-slider-lightbox__inner {
    position: relative;
    width: min(420px, 100%);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-xl);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.integrated-slider-lightbox img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    cursor: zoom-in;
    transform-origin: center center;
    transition: transform 0.24s var(--ease-out);
    will-change: transform;
    user-select: none;
    touch-action: none;
}

.integrated-slider-lightbox img[data-zoomed="true"] {
    cursor: grab;
}

.integrated-slider-lightbox .lightbox-caption {
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin: 0;
}

.integrated-slider-lightbox .lightbox-close {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s var(--ease-out);
}

.integrated-slider-lightbox .lightbox-close:active {
    background: rgba(255, 255, 255, 0.3);
}

.tab-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 var(--page-px) 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.tab-list:active {
    cursor: grabbing;
}

.tab-list::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: var(--bg-card-alt);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
}

.tab-btn.active {
    background: var(--gradient-cta);
    color: white;
    border-color: transparent;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ SECTION ============ */
.section {
    padding: 36px var(--page-px);
}

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

.section-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ============ HERO ============ */
.hero {
    padding: 76px var(--page-px) 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero-soft);
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--primary-glow);
    border: 1px solid rgba(79, 70, 229, 0.12);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.hero-title .gradient-text {
    background: var(--gradient-hero);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* ============ STATS STRIP ============ */
.stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px var(--page-px);
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 3px;
    letter-spacing: 0.2px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-medium);
    flex-shrink: 0;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.25s var(--ease-out);
    text-decoration: none;
    width: 100%;
    max-width: 320px;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--gradient-cta);
    color: white;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 1.5px solid var(--border-medium);
}

.btn-wa {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: var(--radius-lg);
}

/* ============ ALERT / STAT BOX ============ */
.alert-box {
    padding: 16px;
    border-radius: var(--radius-lg);
    border-left: 4px solid;
    margin-bottom: 16px;
}

.alert-box.danger {
    background: #fef2f2;
    border-color: #dc2626;
}

.alert-box.danger .alert-stat {
    color: #dc2626;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.alert-box.danger .alert-desc {
    color: #7f1d1d;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 4px;
}

.alert-box.warning {
    background: #fffbeb;
    border-color: #d97706;
}

.alert-box.warning .alert-stat {
    color: #d97706;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.alert-box.warning .alert-desc {
    color: #78350f;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 4px;
}

.alert-box.orange {
    background: #fff7ed;
    border-color: #ea580c;
}

.alert-box.orange .alert-stat {
    color: #ea580c;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.alert-box.orange .alert-desc {
    color: #7c2d12;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 4px;
}

.alert-box.danger .alert-stat,
.alert-box.warning .alert-stat {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.fact-bridge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: var(--radius-lg);
    margin-top: 4px;
}

.fact-bridge-icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1.4;
}

.fact-bridge-text {
    font-size: 13px;
    color: #14532d;
    line-height: 1.6;
}

/* ============ PAIN CARDS ============ */
.pain-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pain-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}

.pain-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: #fef2f2;
}

.pain-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.pain-content p {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pain-tag {
    display: inline-block;
    margin-top: 8px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-surface);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: var(--radius-full);
    padding: 3px 10px;
    letter-spacing: 0.2px;
}

/* ============ FEATURE LINK CARD ============ */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s var(--ease-out);
    box-shadow: var(--shadow-xs);
}

.feature-link:active {
    transform: scale(0.98);
    background: var(--bg-page);
}

.feature-link .fl-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.fl-icon.indigo {
    background: rgba(79, 70, 229, 0.08);
}

.fl-icon.cyan {
    background: rgba(8, 145, 178, 0.08);
}

.fl-icon.amber {
    background: rgba(217, 119, 6, 0.08);
}

.fl-icon.emerald {
    background: rgba(22, 163, 74, 0.08);
}

.fl-icon.rose {
    background: rgba(225, 29, 72, 0.08);
}

.fl-icon.violet {
    background: rgba(124, 58, 237, 0.08);
}

.fl-icon.orange {
    background: rgba(234, 88, 12, 0.08);
}

.feature-link .fl-body {
    flex: 1;
}

.feature-link .fl-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1px;
}

.feature-link .fl-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.feature-link .fl-arrow {
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 300;
}

/* ============ COMPARE TABLE ============ */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
}

.compare-table th {
    background: var(--bg-page);
    padding: 10px 8px;
    text-align: left;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.compare-table th.highlight {
    color: var(--primary);
    background: var(--primary-surface);
}

.compare-table td {
    padding: 10px 8px;
    border-top: 1px solid var(--border);
    vertical-align: middle;
}

.compare-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.01);
}

.compare-table .check {
    color: var(--success);
    font-weight: 700;
}

.compare-table .cross {
    color: var(--text-muted);
}

/* ============ STEPS ============ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--gradient-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.step-body h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.step-body p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============ INDUSTRY GRID ============ */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.industry-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 14px 6px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xs);
}

.industry-chip .ic-emoji {
    font-size: 24px;
}

.industry-chip .ic-label {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
}

.industry-chip .ic-tags {
    font-size: 9px;
    font-weight: 500;
    color: var(--primary);
    opacity: 0.7;
    line-height: 1.3;
    margin-top: 1px;
}

.industry-note {
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--primary-surface);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: var(--radius-lg);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

.industry-note span {
    font-weight: 700;
    color: var(--primary);
}

/* ============ COST BARS ============ */
.cost-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cost-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cost-bar-label span:last-child {
    color: var(--text-muted);
}

.cost-bar-track {
    height: 10px;
    background: var(--bg-card-alt);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.cost-bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1.2s var(--ease-out);
}

.cost-bar-fill.gosuite {
    background: var(--gradient-cta);
    width: 25%;
}

.cost-bar-fill.moka {
    background: #dc2626;
    width: 60%;
}

.cost-bar-fill.majoo {
    background: #d97706;
    width: 100%;
}

/* ============ FAQ ============ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: white;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-q .faq-chevron {
    transition: transform 0.3s var(--ease-out);
    color: var(--text-muted);
    font-size: 16px;
}

.faq-item.open .faq-q .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out);
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a-inner {
    padding: 0 16px 14px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ CTA SECTION ============ */
.cta-section {
    text-align: center;
    padding: 40px var(--page-px);
    background: var(--gradient-hero-soft);
}

/* ============ FOOTER ============ */
.footer {
    padding: 28px var(--page-px) 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    background: var(--bg-page);
}

.footer-logo {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-tagline {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.footer-copy {
    font-size: 10.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============ DIVIDER ============ */
.divider {
    height: 6px;
    background: var(--bg-page);
}

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

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

.stagger-1 {
    transition-delay: 0.05s;
}

.stagger-2 {
    transition-delay: 0.1s;
}

.stagger-3 {
    transition-delay: 0.15s;
}

.stagger-4 {
    transition-delay: 0.2s;
}

.stagger-5 {
    transition-delay: 0.25s;
}

.stagger-6 {
    transition-delay: 0.3s;
}

.stagger-7 {
    transition-delay: 0.35s;
}

/* ============ UTILITY ============ */
.text-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

/* ============ DETAIL PAGE ============ */
.detail-hero {
    padding: 72px var(--page-px) 28px;
    text-align: center;
    background: var(--gradient-hero-soft);
}

.detail-hero .detail-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 14px;
}

.detail-hero h1 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.detail-hero p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.feature-item .fi-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.feature-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 20px var(--page-px) 0;
}

/* ============ BOTTOM SHEET MODAL (16 MODULES) ============ */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    border-radius: 28px 28px 0 0;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    max-height: 88vh;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    padding-bottom: var(--safe-bottom);
}

.bottom-sheet.show {
    transform: translateX(-50%) translateY(0);
}

.sheet-header {
    padding: 16px 20px 12px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.sheet-drag-handle {
    width: 40px;
    height: 5px;
    background: #cbd5e1;
    border-radius: 10px;
    margin: 0 auto 16px;
}

.sheet-header h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.sheet-close {
    position: absolute;
    right: 16px;
    top: 45%;
    transform: translateY(-50%);
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
}

.sheet-close:active {
    transform: translateY(-50%) scale(0.9);
    background: #e2e8f0;
}

.sheet-content {
    padding: 24px 20px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 12px;
}

.module-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.module-card span {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.25;
}

.mc-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: #f1f5f9;
    transition: transform 0.2s var(--ease-out);
}

.module-card:active .mc-icon {
    transform: scale(0.92);
}
