@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #06080c;
    --bg-surface: #0c1017;
    --bg-card: rgba(255,255,255,0.03);
    --bg-elevated: rgba(255,255,255,0.06);
    --accent: #c9a84c;
    --accent-hover: #e0c068;
    --accent-dim: rgba(201,168,76,0.12);
    --accent-glow: rgba(201,168,76,0.25);
    --white: #f0f0f0;
    --gray-100: rgba(255,255,255,0.85);
    --gray-200: rgba(255,255,255,0.6);
    --gray-300: rgba(255,255,255,0.35);
    --gray-400: rgba(255,255,255,0.15);
    --border: rgba(255,255,255,0.06);
    --border-accent: rgba(201,168,76,0.18);
    --font-th: 'Noto Sans Thai', sans-serif;
    --font-en: 'Space Grotesk', sans-serif;
    --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-th);
    background: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 56px;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font-th); }

/* ═══ SVG Icon System ═══ */
.icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.icon svg { width: 100%; height: 100%; fill: currentColor; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

/* ═══ Announcement ═══ */
.announce {
    background: linear-gradient(90deg, var(--accent) 0%, #e8d48b 50%, var(--accent) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    color: #0a0a0a;
    text-align: center;
    padding: 5px 16px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .02em;
    white-space: nowrap;
    overflow: hidden;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ═══ Header ═══ */
.hdr {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6,8,12,.92);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    padding: 0 16px;
    height: 52px;
}
.hdr-inner {
    max-width: 540px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    user-select: none;
    text-decoration: none;
}
.brand-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(201,168,76,0.3));
    transition: all .3s var(--ease);
}
.brand:hover .brand-logo {
    filter: drop-shadow(0 4px 16px rgba(201,168,76,0.5));
    transform: scale(1.03);
}
.hdr-tagline {
    flex: 1;
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent), #f0d97a, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: .04em;
    text-shadow: none;
    filter: drop-shadow(0 0 6px rgba(201,168,76,0.3));
    white-space: nowrap;
    padding: 0 8px;
    animation: taglineGlow 3s ease-in-out infinite;
}
@keyframes taglineGlow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(201,168,76,0.2)); opacity: .75; }
    50% { filter: drop-shadow(0 0 12px rgba(201,168,76,0.6)); opacity: 1; }
}
.hdr-cta { display: flex; gap: 8px; }

/* ═══ Buttons ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .2s var(--ease);
    letter-spacing: .01em;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), #dfc36a);
    color: #0a0a0a;
    box-shadow: 0 2px 8px rgba(201,168,76,.2);
}
.btn-primary:hover { box-shadow: 0 4px 16px rgba(201,168,76,.35); transform: translateY(-1px); }
.btn-ghost {
    background: transparent;
    color: var(--gray-100);
    border: 1px solid var(--gray-400);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ═══ Carousel ═══ */
.carousel {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
    overflow: hidden;
    aspect-ratio: 16/8.5;
    background: var(--bg-surface);
}
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform .55s var(--ease);
}
.carousel-slide {
    min-width: 100%;
    position: relative;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-fill {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    text-align: center;
}
.slide-fill .slide-icon { width: 48px; height: 48px; opacity: .7; }
.slide-fill .slide-icon svg { width: 100%; height: 100%; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.slide-fill h3 { font-size: 1.1rem; font-weight: 600; color: var(--accent); }
.slide-fill p { font-size: .82rem; color: var(--gray-200); }
.slide-1 { background: linear-gradient(160deg, #0d1321 0%, #162036 60%, #1a2744 100%); }
.slide-2 { background: linear-gradient(160deg, #110d21 0%, #1e1636 60%, #271a44 100%); }
.slide-3 { background: linear-gradient(160deg, #0d1510 0%, #0f2818 60%, #163420 100%); }

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s var(--ease);
    z-index: 5;
}
.carousel-nav:hover { background: rgba(201,168,76,.3); border-color: var(--accent); }
.carousel-nav svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: rgba(255,255,255,.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all .3s var(--ease);
}
.dot.on { background: var(--accent); width: 20px; }

/* ═══ Tabs ═══ */
.tabs {
    display: flex;
    max-width: 540px;
    margin: 0 auto;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 52px;
    z-index: 90;
}
.tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 0;
    font-size: .82rem;
    font-weight: 500;
    color: var(--gray-300);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all .2s var(--ease);
}
.tab svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.tab.on { color: var(--accent); }
.tab.on::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24%;
    right: 24%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
}
.tab:hover { color: var(--gray-100); }

/* ═══ Panels ═══ */
.panels { max-width: 540px; margin: 0 auto; padding: 0 14px; }
.panel { display: none; animation: panelIn .35s var(--ease); }
.panel.on { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ═══ Welcome ═══ */
.welcome { padding: 22px 4px; }
.welcome-logo {
    text-align: center;
    margin-bottom: 18px;
}
.welcome-logo-img {
    max-width: 220px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 16px rgba(201,168,76,0.35));
    animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 4px 16px rgba(201,168,76,0.35)); }
    50% { filter: drop-shadow(0 6px 24px rgba(201,168,76,0.55)); }
}
.welcome h1 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.5;
}
.welcome h1 span { color: var(--accent); }
.welcome p {
    font-size: .84rem;
    color: var(--gray-200);
    line-height: 1.75;
    margin-bottom: 8px;
}

/* ═══ Steps ═══ */
.steps { padding: 20px 4px; }
.steps-title {
    font-size: .95rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--white);
}
.steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 10px;
    text-align: center;
    transition: all .25s var(--ease);
}
.step:hover { border-color: var(--border-accent); background: var(--bg-elevated); }
.step-num {
    width: 34px;
    height: 34px;
    margin: 0 auto 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), #dfc36a);
    color: #0a0a0a;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step h3 { font-size: .8rem; font-weight: 600; margin-bottom: 4px; }
.step p { font-size: .7rem; color: var(--gray-300); line-height: 1.5; }

/* ═══ Categories ═══ */
.cats { padding: 20px 4px; }
.cats-title { font-size: .95rem; font-weight: 700; margin-bottom: 14px; }
.cats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.cat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all .25s var(--ease);
    text-decoration: none;
    color: var(--white);
}
.cat:hover { transform: translateY(-2px); border-color: var(--border-accent); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.cat-vis {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-vis svg { width: 40px; height: 40px; stroke: currentColor; fill: none; stroke-width: 1.5; opacity: .8; }
.cat-vis img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.cat:hover .cat-vis img { transform: scale(1.05); }
.cat-vis.c1 { background: linear-gradient(135deg, #0a2e1a, #0d3d22); color: #4ade80; }
.cat-vis.c2 { background: linear-gradient(135deg, #2e0a0a, #3d0d0d); color: #f87171; }
.cat-vis.c3 { background: linear-gradient(135deg, #1a0a2e, #2d1560); color: #a78bfa; }
.cat-vis.c4 { background: linear-gradient(135deg, #0a1a2e, #0d2d5a); color: #60a5fa; }
.cat-body { padding: 10px 12px; }
.cat-body h3 { font-size: .85rem; font-weight: 600; color: var(--accent); }
.cat-body p { font-size: .72rem; color: var(--gray-300); margin-top: 2px; }

/* ═══ SEO Block ═══ */
.seo { padding: 20px 4px; border-top: 1px solid var(--border); }
.seo h2 { font-size: .9rem; font-weight: 600; color: var(--accent); margin-bottom: 8px; }
.seo p { font-size: .8rem; color: var(--gray-300); line-height: 1.8; margin-bottom: 10px; }

/* ═══ Promos ═══ */
.promos { padding: 14px 0; }
.promo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    transition: all .25s var(--ease);
}
.promo:hover { border-color: var(--border-accent); }
.promo-vis { aspect-ratio: 2.2/1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; padding: 20px; }
.promo-vis svg { width: 36px; height: 36px; stroke: var(--accent); fill: none; stroke-width: 1.5; margin-bottom: 4px; }
.promo-vis h3 { font-size: 1.05rem; font-weight: 700; color: var(--accent); }
.promo-vis p { font-size: .8rem; color: var(--gray-200); }
.promo-vis.v1 { background: linear-gradient(150deg, #0c1628, #152244); }
.promo-vis.v2 { background: linear-gradient(150deg, #160c28, #271548); }
.promo-vis.v3 { background: linear-gradient(150deg, #081c0e, #0f3018); }
.promo-vis.v4 { background: linear-gradient(150deg, #1c1008, #30200f); }
.promo-vis:has(img) { aspect-ratio: unset; padding: 0; }
.promo-vis img { width: 100%; height: auto; display: block; }
.promo-body { padding: 12px 14px; }
.promo-body h3 { font-size: .88rem; font-weight: 600; margin-bottom: 3px; }
.promo-body p { font-size: .78rem; color: var(--gray-200); }

/* ═══ Articles ═══ */
.articles { padding: 14px 0; }
.article {
    display: flex;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    transition: all .25s var(--ease);
    cursor: pointer;
}
.article:hover { border-color: var(--border-accent); background: var(--bg-elevated); }
.article-thumb {
    min-width: 80px;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #141a24, #1e2a38);
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-thumb svg { width: 22px; height: 22px; stroke: var(--gray-300); fill: none; stroke-width: 1.5; }
.article-info { flex: 1; min-width: 0; }
.article-info h3 { font-size: .84rem; font-weight: 600; line-height: 1.4; margin-bottom: 3px; }
.article-info p { font-size: .74rem; color: var(--gray-300); line-height: 1.5; }
.article-date { font-size: .68rem; color: var(--gray-300); margin-top: 5px; }

/* ═══ Footer ═══ */
.ft {
    max-width: 540px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding: 22px 14px;
    text-align: center;
}
.ft-logo {
    margin-bottom: 14px;
}
.ft-logo-img {
    max-width: 160px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 2px 10px rgba(201,168,76,0.3));
}
.ft-banks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}
.bk {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: .5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
}
.ft-powered { font-size: .72rem; color: var(--gray-300); margin-bottom: 6px; }
.ft-powered strong { color: var(--accent); font-weight: 600; }
.ft-copy {
    font-size: .7rem;
    background: rgba(201,168,76,.12);
    color: var(--accent);
    padding: 8px 14px;
    margin: 14px -14px -22px;
    font-weight: 500;
}

/* ═══ Sticky Bar ═══ */
.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(6,8,12,.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    display: flex;
    z-index: 100;
}
.sticky a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-200);
    transition: all .2s var(--ease);
}
.sticky a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.sticky a:first-child:hover { color: var(--accent); }
.sticky a:last-child {
    background: linear-gradient(135deg, var(--accent), #dfc36a);
    color: #0a0a0a;
}
.sticky a:last-child svg { stroke: #0a0a0a; }

/* ═══ Floating FABs ═══ */
.fabs {
    position: fixed;
    right: 12px;
    bottom: 72px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 95;
}
.fab {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .2s var(--ease);
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
    border: none;
    cursor: pointer;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 20px; height: 20px; fill: currentColor; }
.fab-line { background: #06c755; }
.fab-tg { background: #2aabee; }
.fab-msg { background: linear-gradient(180deg, #00c6ff, #0078ff); }

/* ═══ Responsive — Tablet (768px+) ═══ */
@media (min-width: 768px) {
    .sticky { display: none; }
    body { padding-bottom: 0; }
    .fabs { bottom: 24px; right: 24px; }

    .hdr { padding: 0 32px; height: 60px; }
    .hdr-inner { max-width: 960px; }
    .brand-logo { height: 42px; }
    .btn { padding: 9px 24px; font-size: .85rem; }

    .carousel { max-width: 960px; aspect-ratio: 16/7; border-radius: 12px; margin-top: 16px; }
    .carousel-nav { width: 40px; height: 40px; }
    .carousel-nav svg { width: 18px; height: 18px; }
    .carousel-prev { left: 14px; }
    .carousel-next { right: 14px; }
    .dot { width: 8px; height: 8px; }
    .dot.on { width: 28px; }

    .tabs { max-width: 960px; top: 60px; border-radius: 0; }
    .tab { padding: 15px 0; font-size: .88rem; gap: 8px; }
    .tab svg { width: 18px; height: 18px; }

    .panels { max-width: 960px; padding: 0 24px; }

    .welcome { padding: 32px 8px; }
    .welcome h1 { font-size: 1.5rem; }
    .welcome p { font-size: .92rem; }
    .welcome-logo-img { max-width: 280px; }

    .steps { padding: 28px 8px; }
    .steps-title { font-size: 1.1rem; margin-bottom: 20px; }
    .steps-row { gap: 16px; }
    .step { padding: 24px 16px; border-radius: 12px; }
    .step-num { width: 42px; height: 42px; font-size: 1.15rem; border-radius: 10px; }
    .step h3 { font-size: .9rem; }
    .step p { font-size: .78rem; }

    .cats { padding: 28px 8px; }
    .cats-title { font-size: 1.1rem; }
    .cats-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .cat { border-radius: 12px; }
    .cat-vis svg { width: 48px; height: 48px; }
    .cat-body { padding: 12px 14px; }
    .cat-body h3 { font-size: .9rem; }
    .cat-body p { font-size: .78rem; }

    .seo { padding: 28px 8px; }
    .seo h2 { font-size: 1rem; }
    .seo p { font-size: .88rem; }

    .promos { padding: 20px 0; }
    .promo { border-radius: 12px; }
    .promo-vis { aspect-ratio: 2.5/1; padding: 28px; }
    .promo-vis h3 { font-size: 1.2rem; }
    .promo-vis p { font-size: .88rem; }
    .promo-body { padding: 14px 18px; }
    .promo-body h3 { font-size: .95rem; }
    .promo-body p { font-size: .84rem; }

    .articles { padding: 20px 0; }
    .article { padding: 16px; border-radius: 12px; gap: 16px; }
    .article-thumb { min-width: 110px; width: 110px; height: 80px; border-radius: 10px; }
    .article-info h3 { font-size: .92rem; }
    .article-info p { font-size: .82rem; }

    .ft { max-width: 960px; padding: 32px 24px; }
    .ft-logo-img { max-width: 200px; }
    .bk { width: 38px; height: 38px; font-size: .55rem; }
    .ft-powered { font-size: .78rem; }
    .ft-copy { font-size: .75rem; margin: 18px -24px -32px; padding: 10px 18px; }

    .fab { width: 50px; height: 50px; }
    .fab svg { width: 22px; height: 22px; }
}

/* ═══ Responsive — Desktop (1024px+) ═══ */
@media (min-width: 1024px) {
    .hdr { padding: 0 48px; height: 68px; }
    .hdr-inner { max-width: 1200px; }
    .brand-logo { height: 50px; }
    .btn { padding: 10px 28px; font-size: .9rem; border-radius: 8px; }
    .btn-primary { box-shadow: 0 4px 14px rgba(201,168,76,.25); }

    .carousel { max-width: 1200px; aspect-ratio: 16/6; border-radius: 16px; margin-top: 20px; }
    .carousel-nav { width: 46px; height: 46px; }
    .carousel-nav svg { width: 20px; height: 20px; }
    .carousel-prev { left: 20px; }
    .carousel-next { right: 20px; }
    .slide-fill h3 { font-size: 1.4rem; }
    .slide-fill p { font-size: .95rem; }
    .slide-fill .slide-icon { width: 64px; height: 64px; }

    .tabs { max-width: 1200px; top: 68px; }
    .tab { padding: 16px 0; font-size: .95rem; }

    .panels { max-width: 1200px; padding: 0 40px; }

    .welcome { padding: 40px 12px; }
    .welcome h1 { font-size: 1.8rem; margin-bottom: 16px; }
    .welcome p { font-size: 1rem; line-height: 1.85; }
    .welcome-logo-img { max-width: 340px; }

    .steps { padding: 40px 12px; }
    .steps-title { font-size: 1.25rem; margin-bottom: 28px; }
    .steps-row { gap: 24px; }
    .step { padding: 32px 20px; border-radius: 14px; }
    .step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
    .step-num { width: 50px; height: 50px; font-size: 1.3rem; border-radius: 12px; margin-bottom: 14px; }
    .step h3 { font-size: 1rem; margin-bottom: 6px; }
    .step p { font-size: .85rem; }

    .cats { padding: 40px 12px; }
    .cats-title { font-size: 1.25rem; margin-bottom: 22px; }
    .cats-grid { gap: 20px; }
    .cat { border-radius: 14px; }
    .cat:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
    .cat-vis { aspect-ratio: 16/10; }
    .cat-vis svg { width: 56px; height: 56px; }
    .cat-body { padding: 16px 18px; }
    .cat-body h3 { font-size: 1rem; }
    .cat-body p { font-size: .84rem; }

    .seo { padding: 40px 12px; }
    .seo h2 { font-size: 1.15rem; margin-bottom: 12px; }
    .seo p { font-size: .95rem; line-height: 1.9; margin-bottom: 14px; }

    .promos { padding: 28px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .promo { margin-bottom: 0; border-radius: 14px; }
    .promo:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }

    .articles { padding: 28px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .article { margin-bottom: 0; border-radius: 14px; }
    .article:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
    .article-thumb { min-width: 130px; width: 130px; height: 90px; }
    .article-info h3 { font-size: 1rem; }
    .article-info p { font-size: .88rem; }

    .ft { max-width: 1200px; padding: 40px 40px; }
    .ft-logo-img { max-width: 240px; }
    .ft-banks { gap: 10px; margin-bottom: 18px; }
    .bk { width: 42px; height: 42px; font-size: .58rem; }
    .ft-powered { font-size: .84rem; margin-bottom: 8px; }
    .ft-copy { font-size: .8rem; margin: 24px -40px -40px; padding: 12px 20px; }

    .fabs { right: 32px; bottom: 32px; gap: 12px; }
    .fab { width: 54px; height: 54px; }
    .fab svg { width: 24px; height: 24px; }
}

/* ═══ Responsive — Large Desktop (1440px+) ═══ */
@media (min-width: 1440px) {
    .hdr-inner { max-width: 1400px; }
    .carousel { max-width: 1400px; border-radius: 20px; }
    .tabs { max-width: 1400px; }
    .panels { max-width: 1400px; }
    .ft { max-width: 1400px; }

    .welcome h1 { font-size: 2rem; }
    .welcome p { font-size: 1.05rem; }

    .steps-row { max-width: 900px; margin: 0 auto; }
    .cats-grid { gap: 24px; }

    .promos { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .articles { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .article-thumb { min-width: 140px; width: 140px; height: 100px; }

    .fabs { right: 40px; bottom: 40px; }
    .fab { width: 58px; height: 58px; }
    .fab svg { width: 26px; height: 26px; }
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
