/* =========================================
   LAYLINK PRO - DESIGN SYSTEM v12 (PRO MAX)
   Style: Swiss Minimal / SaaS Professional
   Primary: Shopee Orange-Red #EE4D2D
   Font: Inter
   Priority: Readability & Eye Comfort
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ================================
   LIGHT MODE — Clean White / Teal
   ================================ */
:root {
    /* Brand (Shopee Orange-Red) */
    --primary: #EE4D2D;
    --primary-hover: #D73211;
    --primary-light: rgba(238, 77, 45, 0.08);
    --primary-surface: rgba(238, 77, 45, 0.04);

    /* Backgrounds */
    --bg-page: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-header: #FFFFFF;

    /* Text (High readability — BOLDER) */
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-tertiary: #71717A;

    /* Borders & Dividers (Soft) */
    --divider: #E5E7EB;
    --border-card: rgba(0, 0, 0, 0.10);

    /* Input */
    --input-bg: #F8F9FA;
    --input-border: rgba(0, 0, 0, 0.08);
    --input-focus-border: #EE4D2D;

    /* Shadows */
    --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03);
    --shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);

    /* Radius */
    --radius-card: 12px;
    --radius-input: 8px;
    --radius-btn: 8px;

    /* Sizing */
    --header-height: 56px;

    /* === Backward-compat aliases for 1k.html / watermark.html === */
    --border: var(--border-card);
    --bg-body: var(--bg-page);
    --text-main: var(--text-primary);
    --text-muted: var(--text-tertiary);
    --secondary: #EA580C;
    --primary-dark: #B91C1C;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-sm: var(--shadow-card);
    --shadow-md: var(--shadow-card-hover);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
}

/* ================================
   DARK MODE — Premium Dark / Gold
   ================================ */
body.dark {
    --primary: #EDBE44;
    --primary-hover: #F5D060;
    --primary-light: rgba(237, 190, 68, 0.10);
    --primary-surface: rgba(237, 190, 68, 0.04);

    --bg-page: #121218;
    --bg-card: #1C1D24;
    --bg-header: #1C1D24;

    --text-primary: #FFFFFF;
    --text-secondary: #BFBFBC;
    --text-tertiary: #8A8A87;

    --divider: rgba(255, 255, 255, 0.10);
    --border-card: rgba(255, 255, 255, 0.12);

    --input-bg: #242430;
    --input-border: rgba(255, 255, 255, 0.18);

    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 4px 16px rgba(237, 190, 68, 0.06);

    /* Backward-compat aliases */
    --border: var(--border-card);
    --bg-body: var(--bg-page);
    --text-main: var(--text-primary);
    --text-muted: var(--text-tertiary);
    --secondary: #F59E0B;
    --shadow-sm: var(--shadow-card);
    --shadow-md: var(--shadow-card-hover);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --slate-50: #1C1D24;
    --slate-100: #242430;
    --slate-200: #2E2E3A;
    --slate-600: #9B9A97;
    --slate-800: #121218;
}

/* ================================
   RESET
   ================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-page);
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.2s ease, color 0.2s ease;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    outline: none;
    cursor: pointer;
}

input,
textarea,
select {
    font-family: inherit;
    outline: none;
}

/* ================================
   CONTAINER
   ================================ */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ================================
   HEADER — Clean, minimal
   ================================ */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: var(--header-height);
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

body {
    padding-top: var(--header-height);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.brand-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.brand-title span {
    color: var(--primary);
    font-weight: 700;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ================================
   ICON BUTTONS
   ================================ */
.icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-btn);
    border: none;
    background: transparent;
    color: var(--text-tertiary);
    font-size: 15px;
    transition: all 0.15s ease;
    cursor: pointer;
}

.icon-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* ================================
   BUTTONS — Solid, bold
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.01em;
    transition: all 0.15s ease;
    cursor: pointer;
    white-space: nowrap;
    border: none;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 2px 8px rgba(238, 77, 45, 0.25);
}

body.dark .btn-primary {
    color: #121218;
}

body.dark .btn-primary:hover {
    box-shadow: 0 2px 8px rgba(237, 190, 68, 0.25);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-card);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-danger {
    background: rgba(239, 68, 68, 0.08);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.12);
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.12);
}

body.dark .btn-danger {
    background: rgba(248, 113, 113, 0.10);
    color: #F87171;
    border-color: rgba(248, 113, 113, 0.15);
}

/* ================================
   CARDS
   ================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    padding: 16px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    margin-bottom: 12px;
    animation: cardSlideUp 0.4s ease both;
}

.card:nth-child(1) {
    animation-delay: 0.05s;
}

.card:nth-child(2) {
    animation-delay: 0.1s;
}

.card:nth-child(3) {
    animation-delay: 0.15s;
}

.card:nth-child(4) {
    animation-delay: 0.2s;
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-1px);
}

/* ================================
   SECTION LABELS
   ================================ */
.label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

/* ================================
   INPUTS
   ================================ */
input[type="text"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 10px 12px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-input);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 400;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
    resize: vertical;
    min-height: 88px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #EE4D2D;
    box-shadow: 0 0 0 3px rgba(238, 77, 45, 0.10);
    background: #FFFFFF;
}

input[type="checkbox"] {
    accent-color: var(--primary);
}

/* ================================
   DRAWER
   ================================ */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
}

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease;
    backdrop-filter: blur(4px);
}

.drawer.open {
    pointer-events: auto;
}

.drawer.open .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-card);
    transform: translateX(-100%);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 8px 0 24px rgba(0, 0, 0, 0.08);
}

.drawer.open .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid var(--divider);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.drawer-header .icon-btn {
    background: transparent;
    color: var(--text-tertiary);
}

.drawer-menu {
    padding: 8px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-btn);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.15s ease;
    cursor: pointer;
}

.menu-link:hover,
.menu-link.active {
    background: var(--primary-light);
    color: var(--primary);
}

.menu-link i {
    width: 20px;
    text-align: center;
    font-size: 15px;
}

/* ================================
   COLLAPSIBLE OPTIONS
   ================================ */
.opts-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.2s ease, opacity 0.15s ease, margin 0.15s ease;
    margin-top: 0;
}

.opts-panel.open {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

.opts-panel label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    cursor: pointer;
    margin-right: 10px;
    white-space: nowrap;
    color: var(--text-tertiary);
}

.chev-toggle {
    width: 24px;
    height: 24px;
    font-size: 11px;
    transition: transform 0.15s ease;
}

.chev-toggle.rotated {
    transform: rotate(180deg);
}

/* ================================
   PRODUCT GRID
   ================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

@media(min-width:640px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width:1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-item:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary);
}

.product-img {
    aspect-ratio: 1/1;
    background: var(--bg-page);
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 13px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    margin-top: auto;
}

.product-sold {
    font-size: 11px;
    color: var(--text-tertiary);
}

/* ================================
   TOAST
   ================================ */
#toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: var(--bg-card);
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    font-weight: 600;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    white-space: nowrap;
}

/* ================================
   PROMO BANNER
   ================================ */
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-surface);
    border-bottom: 1px solid var(--divider);
    padding: 8px 12px;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.hidden-mobile {
    display: block;
}

@media(max-width:600px) {
    .hidden-mobile {
        display: none;
    }
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--text-tertiary);
}

.hidden {
    display: none !important;
}

/* ================================
   MOBILE RESPONSIVE
   ================================ */
@media(max-width:768px) {
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .container {
        padding: 0 12px;
    }

    .card {
        padding: 14px;
    }

    textarea {
        min-height: 80px;
    }
}

/* ================================
   SCROLLBAR
   ================================ */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--text-tertiary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* ================================
   SELECTION
   ================================ */
::selection {
    background: var(--primary-light);
    color: var(--text-primary);
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes slideUp {
    from {
        transform: translateY(12px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ================================
   BOTTOM TAB BAR (Mobile Nav)
   ================================ */
.bottom-tabs {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    height: 60px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-card);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

body.dark .bottom-tabs {
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 0;
    color: var(--text-tertiary);
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.tab-item i {
    font-size: 18px;
    transition: transform 0.15s ease, color 0.2s ease;
}

.tab-item.active {
    color: var(--primary);
}

.tab-item.active i {
    transform: scale(1.1);
}

.tab-item:active i {
    transform: scale(0.8);
    color: var(--primary);
}

.tab-item:not(.active):hover {
    color: var(--text-secondary);
}

/* Body padding for bottom tab bar */
body {
    padding-bottom: 68px;
    transition: padding-bottom 0.3s ease;
}

/* Auto-hide state */
.bottom-tabs {
    transition: transform 0.3s ease;
}

.bottom-tabs.tabs-hidden {
    transform: translateY(100%);
}

body.tabs-collapsed {
    padding-bottom: 0;
}

/* Toggle arrow button */
.tabs-toggle {
    position: fixed;
    bottom: 62px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 61;
    width: 36px;
    height: 18px;
    border-radius: 10px 10px 0 0;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    color: var(--text-tertiary);
    transition: bottom 0.3s ease, color 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}

.tabs-toggle:hover {
    color: var(--primary);
}

.tabs-toggle.toggled {
    bottom: 0;
}

.tabs-toggle i {
    transition: transform 0.3s ease;
}

.tabs-toggle.toggled i {
    transform: rotate(180deg);
}

/* Hide hamburger icon on mobile when using bottom tabs */
@media(max-width:768px) {
    #btnMenu {
        display: none;
    }
}

/* ================================
   PRICING PAGE
   ================================ */
.pricing-hero {
    text-align: center;
    padding: 24px 0 28px;
}

.pricing-hero h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: cardSlideUp 0.5s ease both;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.1s;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

/* Pro card — gradient border glow */
.pricing-card.pro {
    border: 2px solid transparent;
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, #EE4D2D, #F97316, #FBBF24) border-box;
    box-shadow: 0 4px 24px rgba(238, 77, 45, 0.12), 0 0 0 1px rgba(238, 77, 45, 0.04);
}

body.dark .pricing-card.pro {
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, #EDBE44, #F59E0B, #EE4D2D) border-box;
    box-shadow: 0 4px 24px rgba(237, 190, 68, 0.10), 0 0 0 1px rgba(237, 190, 68, 0.06);
}

.pricing-card.pro:hover {
    box-shadow: 0 8px 32px rgba(238, 77, 45, 0.18);
}

body.dark .pricing-card.pro:hover {
    box-shadow: 0 8px 32px rgba(237, 190, 68, 0.16);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EE4D2D, #F97316);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(238, 77, 45, 0.3);
}

body.dark .pricing-popular-badge {
    background: linear-gradient(135deg, #EDBE44, #F59E0B);
    color: #121218;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-plan-name {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.pricing-card.pro .pricing-plan-name {
    color: var(--primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
}

.pricing-amount {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.pricing-period {
    font-size: 14px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-tertiary);
    margin: 0;
}

/* Feature list */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-features li i {
    width: 18px;
    text-align: center;
    font-size: 12px;
    flex-shrink: 0;
}

.pricing-features li.yes i {
    color: #22c55e;
}

.pricing-features li.no i {
    color: var(--text-tertiary);
    opacity: 0.5;
}

.pricing-features li.no {
    color: var(--text-tertiary);
    opacity: 0.6;
}

.pricing-cta {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ */
.pricing-faq {
    max-width: 700px;
    margin: 0 auto 32px;
}

.pricing-faq h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    padding: 0;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.faq-item summary {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-primary);
    transition: color 0.15s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: var(--text-tertiary);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item[open] summary {
    color: var(--primary);
}

.faq-item p {
    padding: 0 16px 14px;
    margin: 0;
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* On desktop, hide bottom tabs and show hamburger */
@media(min-width:769px) {
    .bottom-tabs {
        display: none;
    }

    .tabs-toggle {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

/* ================================
   PRICING MOBILE RESPONSIVE
   ================================ */
@media (max-width: 480px) {
    .pricing-hero {
        padding: 16px 0 20px;
    }

    .pricing-hero h1 {
        font-size: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 22px 18px;
    }

    .pricing-amount {
        font-size: 28px;
    }

    .pricing-features li {
        font-size: 13px;
        gap: 8px;
    }

    .pricing-cta {
        padding: 14px;
        font-size: 15px;
    }

    .faq-item summary {
        padding: 14px 14px;
        font-size: 13px;
    }

    .faq-item p {
        padding: 0 14px 14px;
        font-size: 12px;
    }
}