/* =============================================
   Scalping World Trades — Main Stylesheet
   Author: Shuvadip Sana | https://pixelvect.com
   ============================================= */

/* -------------------------------------------
   1. CSS Custom Properties
   ------------------------------------------- */
:root {
    --swt-primary: #F5A300;
    --swt-primary-hover: #FFB800;
    --swt-primary-gradient: linear-gradient(135deg, #F5A300, #FFB800);
    --swt-bg: #070707;
    --swt-bg-sec: #0D0D0D;
    --swt-bg-3: #111111;
    --swt-card: #141414;
    --swt-border: rgba(255,255,255,0.08);
    --swt-border-hover: rgba(245,163,0,0.3);
    --swt-text: #FFFFFF;
    --swt-text-muted: #BDBDBD;
    --swt-text-dim: #666666;
    --swt-green: #22c55e;
    --swt-red: #ef4444;
    --swt-font: 'Poppins', sans-serif;
    --swt-radius-sm: 12px;
    --swt-radius: 16px;
    --swt-radius-lg: 18px;
    --swt-radius-xl: 24px;
    --swt-radius-full: 50px;
    --swt-shadow: 0 12px 40px rgba(245,163,0,0.12);
    --swt-shadow-heavy: 0 8px 40px rgba(0,0,0,0.5);
    --swt-header-h: 90px;
    --swt-transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--swt-font);
    background: var(--swt-bg);
    color: var(--swt-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--swt-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

/* -------------------------------------------
   3. Typography
   ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--swt-font);
    font-weight: 700;
    line-height: 1.15;
    color: var(--swt-text);
}

.highlight { color: var(--swt-primary); }

/* -------------------------------------------
   4. Layout
   ------------------------------------------- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

section { padding: 100px 0; }

/* -------------------------------------------
   5. Utilities
   ------------------------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.justify-center { justify-content: center !important; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--swt-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title .highlight { color: var(--swt-primary); }

.section-desc {
    font-size: 18px;
    color: var(--swt-text-muted);
    line-height: 1.7;
    max-width: 620px;
}

/* -------------------------------------------
   6. Animations
   ------------------------------------------- */
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes candlePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* -------------------------------------------
   7. Header
   ------------------------------------------- */
.header {
    height: var(--swt-header-h);
    background: var(--swt-bg);
    border-bottom: 1px solid var(--swt-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--swt-primary-gradient);
    border-radius: var(--swt-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--swt-bg);
    flex-shrink: 0;
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--swt-text);
}

.logo-text span {
    color: var(--swt-primary);
    display: block;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 1px;
}

.header .custom-logo-link img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-menu ul,
.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--swt-text-muted);
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu .current-menu-item a {
    color: var(--swt-primary);
}

.nav-menu a.active::after,
.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--swt-primary);
}

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--swt-primary);
    color: #000;
    height: 52px;
    padding: 0 30px;
    border-radius: var(--swt-radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: background var(--swt-transition);
}

.header-cta:hover { background: var(--swt-primary-hover); }

.header-cta i { transition: transform var(--swt-transition); font-size: 14px; }
.header-cta:hover i { transform: translateX(4px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--swt-text);
    border-radius: 2px;
    transition: all var(--swt-transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* -------------------------------------------
   8. Mobile Menu
   ------------------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--swt-bg-sec);
    border-left: 1px solid var(--swt-border);
    padding: 90px 30px 30px;
    transition: right 0.4s;
    z-index: 999;
}
.mobile-menu ul,
.mobile-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--swt-text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu a:hover,
.mobile-menu a.active,
.mobile-menu .current-menu-item a {
    color: var(--swt-primary);
}

.mobile-cta-btn {
    display: block;
    margin-top: 20px;
    background: var(--swt-primary);
    color: #000;
    border-radius: var(--swt-radius-full);
    text-align: center;
    padding: 14px;
    font-weight: 600;
    border: none;
}

.mobile-cta-btn:hover { background: var(--swt-primary-hover); }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--swt-transition);
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* -------------------------------------------
   9. Hero Section
   ------------------------------------------- */
.hero {
    height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245,163,0,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
}

.hero-left { flex: 1; }
.hero-right { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; min-height: 600px; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 500;
    color: var(--swt-primary);
    margin-bottom: 16px;
}

.hero-tag i { font-size: 14px; }

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .highlight { color: var(--swt-primary); display: block; }

.hero-desc {
    font-size: 20px;
    color: var(--swt-text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* Buttons */
.btn-primary, .btn-outline, .btn-cta, .swt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 56px;
    padding: 0 36px;
    border-radius: var(--swt-radius-full);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all var(--swt-transition);
    font-family: var(--swt-font);
}

.btn-primary {
    background: var(--swt-primary);
    color: #000;
}

.btn-primary:hover { background: var(--swt-primary-hover); }

.btn-outline {
    background: transparent;
    color: var(--swt-primary);
    border: 2px solid var(--swt-primary);
}

.btn-outline:hover { background: rgba(245,163,0,0.1); }

.btn-primary i, .btn-outline i, .swt-btn i {
    transition: transform var(--swt-transition);
    font-size: 14px;
}

.btn-primary:hover i, .btn-outline:hover i, .swt-btn:hover i {
    transform: translateX(4px);
}

/* Hero Reviews */
.hero-reviews {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-avatars { display: flex; }

.hero-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--swt-bg);
    margin-right: -10px;
    background: #333;
    object-fit: cover;
    cursor: pointer;
}

.hero-avatars img:hover {
    border-color: var(--swt-primary);
    transform: translateY(-2px);
}

.hero-avatars .avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--swt-bg);
    margin-right: -10px;
    background: var(--swt-primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.hero-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--swt-primary);
    font-size: 14px;
}

.hero-stars span { color: var(--swt-text-muted); font-size: 13px; }

/* Illustration */
.hero-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bull-3d {
    max-width: 100%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 80px rgba(245,163,0,0.3));
    user-select: none;
    pointer-events: none;
}

/* Candlestick */
.hero-candlestick {
    position: absolute;
    bottom: 60px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    opacity: 0.5;
}

.candle {
    width: 8px;
    background: var(--swt-primary);
    border-radius: 2px;
    animation: candlePulse 2s ease-in-out infinite;
}

.candle:nth-child(1) { height: 30px; animation-delay: 0s; }
.candle:nth-child(2) { height: 50px; animation-delay: 0.15s; }
.candle:nth-child(3) { height: 70px; animation-delay: 0.3s; }
.candle:nth-child(4) { height: 40px; animation-delay: 0.45s; }
.candle:nth-child(5) { height: 60px; animation-delay: 0.6s; }
.candle:nth-child(6) { height: 25px; animation-delay: 0.75s; }
.candle:nth-child(7) { height: 55px; animation-delay: 0.9s; }
.candle:nth-child(8) { height: 80px; animation-delay: 1.05s; }

.candle.red { background: var(--swt-red); }

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(20,20,20,0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius);
    padding: 16px 20px;
    min-width: 160px;
    box-shadow: var(--swt-shadow-heavy);
    animation: floatCard 3.5s ease-in-out infinite;
}

.float-card .label { font-size: 12px; color: var(--swt-text-muted); margin-bottom: 4px; }
.float-card .value { font-size: 20px; font-weight: 700; color: var(--swt-text); }
.float-card .value.green { color: var(--swt-green); }
.float-card .value.orange { color: var(--swt-primary); }

.float-card-1 { top: 10%; left: 0; animation-delay: 0s; }
.float-card-2 { top: 30%; right: 0; animation-delay: 0.6s; }
.float-card-3 { bottom: 25%; left: 5%; animation-delay: 1.2s; }
.float-card-4 { bottom: 10%; right: 10%; animation-delay: 0.3s; }

/* -------------------------------------------
   10. Trust Features
   ------------------------------------------- */
.trust-features { padding: 0 0 100px; margin-top: -20px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.trust-card {
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: var(--swt-border-hover);
}

.trust-card .icon {
    width: 56px;
    height: 56px;
    border-radius: var(--swt-radius);
    background: rgba(245,163,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--swt-primary);
    margin: 0 auto 16px;
}

.trust-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.trust-card p { font-size: 14px; color: var(--swt-text-muted); line-height: 1.5; }

/* -------------------------------------------
   11. About Section
   ------------------------------------------- */
.about { background: var(--swt-bg-sec); }

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--swt-radius-xl);
    overflow: hidden;
    min-height: 420px;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--swt-border);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--swt-radius-xl);
}

.about-content .section-title { font-size: 48px; }

.about-content p {
    font-size: 16px;
    color: var(--swt-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* -------------------------------------------
   12. Why Choose
   ------------------------------------------- */
.why-choose { background: var(--swt-bg); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }

.why-card {
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-lg);
    padding: 28px 22px;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    min-height: 170px;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--swt-shadow);
    border-color: rgba(245,163,0,0.4);
}

.why-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(245,163,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--swt-primary);
    margin-bottom: 14px;
}

.why-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: var(--swt-text-muted); line-height: 1.5; }

/* -------------------------------------------
   13. Statistics
   ------------------------------------------- */
.stats { padding: 60px 0; }

.stats-bar {
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-xl);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.3fr;
    overflow: hidden;
}

.stat-item {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--swt-border);
}

.stat-item:last-child { border-right: none; }
.stat-item .icon { font-size: 28px; color: var(--swt-primary); margin-bottom: 8px; }
.stat-item .number { font-size: 36px; font-weight: 700; }
.stat-item .label { font-size: 14px; color: var(--swt-text-muted); }

.stat-cta {
    background: var(--swt-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
    color: #000;
}

.stat-cta p { font-size: 18px; font-weight: 700; margin-bottom: 14px; }

.stat-cta .btn-cta {
    background: #000;
    color: var(--swt-primary);
    height: 48px;
    padding: 0 28px;
    font-size: 14px;
}

.stat-cta .btn-cta:hover { opacity: 0.9; }

/* -------------------------------------------
   14. Testimonials
   ------------------------------------------- */
.testimonials { background: var(--swt-bg-sec); }

.testimonials .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.testimonial-left .section-title { font-size: 48px; }

.testimonial-quote {
    font-size: 60px;
    color: var(--swt-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 20px;
    color: var(--swt-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author { font-size: 18px; font-weight: 600; }
.testimonial-role { font-size: 14px; color: var(--swt-text-muted); margin-bottom: 20px; }

.testimonial-dots { display: flex; gap: 10px; }

.testimonial-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--swt-primary);
    background: transparent;
    cursor: pointer;
}

.testimonial-dots span.active { background: var(--swt-primary); }
.testimonial-dots span:hover { background: rgba(245,163,0,0.3); }

.testimonial-right {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(245,163,0,0.06), transparent);
    pointer-events: none;
}

.testimonial-card {
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-xl);
    padding: 36px 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.testimonial-card .country {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-weight: 600;
}

.testimonial-card .country i { font-size: 24px; }

.testimonial-card .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.testimonial-card .rating .stars { color: var(--swt-primary); font-size: 18px; }
.testimonial-card .rating .score { font-size: 28px; font-weight: 700; }

.testimonial-card .avatars-stack { display: flex; }

.testimonial-card .avatars-stack img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--swt-card);
    margin-right: -12px;
    background: #333;
    object-fit: cover;
    cursor: pointer;
}

.testimonial-card .avatars-stack img:first-child { border-color: var(--swt-primary); opacity: 1; }

/* -------------------------------------------
   15. Telegram CTA
   ------------------------------------------- */
.telegram-cta { padding: 60px 0; }

.telegram-banner {
    background: var(--swt-primary-gradient);
    border-radius: var(--swt-radius-xl);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.telegram-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.telegram-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    flex-shrink: 0;
}

.telegram-left h3 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.telegram-left p {
    font-size: 15px;
    color: rgba(0,0,0,0.7);
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: var(--swt-primary);
    height: 54px;
    padding: 0 34px;
    border-radius: var(--swt-radius-full);
    font-weight: 600;
    font-size: 15px;
    flex-shrink: 0;
}

.telegram-btn:hover { opacity: 0.9; }
.telegram-btn i { transition: transform var(--swt-transition); }
.telegram-btn:hover i { transform: translateX(4px); }

/* -------------------------------------------
   16. Footer
   ------------------------------------------- */
.footer {
    background: #090909;
    border-top: 1px solid var(--swt-border);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col .logo { margin-bottom: 16px; }

.footer-col p {
    font-size: 14px;
    color: var(--swt-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swt-text-muted);
    font-size: 16px;
}

.footer-socials a:hover {
    border-color: var(--swt-primary);
    color: var(--swt-primary);
    background: rgba(245,163,0,0.08);
}

.footer-col h4 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--swt-text-muted); }
.footer-col ul li a:hover { color: var(--swt-primary); }

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

.footer-contact-item .contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--swt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
}

.footer-contact-item .contact-text {
    font-size: 14px;
    color: var(--swt-text-muted);
    line-height: 1.4;
}

.footer-contact-item .contact-text strong {
    display: block;
    color: var(--swt-text);
    font-weight: 600;
    margin-bottom: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--swt-border);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--swt-text-dim);
}

/* -------------------------------------------
   17. Page Banner (Inner Pages)
   ------------------------------------------- */
.page-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--swt-bg), var(--swt-bg-sec));
    border-bottom: 1px solid var(--swt-border);
    text-align: center;
}

.page-banner .label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--swt-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
}

.page-banner p {
    font-size: 18px;
    color: var(--swt-text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 16px auto 0;
}

/* -------------------------------------------
   18. About Page
   ------------------------------------------- */
/* About Hero */
.about-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245,163,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-content .hero-title { font-size: 48px; }
.about-hero-image { position: relative; display: flex; align-items: center; justify-content: center; }
.about-hero-image .hero-candlestick { bottom: 40px; right: 10px; }

/* Mission Intro */
.mission-intro { background: var(--swt-bg-sec); text-align: center; }

/* MVVC Grid */
.mvvc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.mvvc-card {
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-lg);
    padding: 32px 24px;
    text-align: left;
}

.mvvc-card:hover {
    transform: translateY(-4px);
    border-color: var(--swt-border-hover);
}

.mvvc-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(245,163,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--swt-primary);
    margin-bottom: 16px;
}

.mvvc-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.mvvc-card p { font-size: 14px; color: var(--swt-text-muted); line-height: 1.6; }

.mvvc-card ul { margin-top: 8px; }
.mvvc-card ul li {
    font-size: 14px;
    color: var(--swt-text-muted);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mvvc-card ul li i { color: var(--swt-primary); font-size: 12px; }
.mvvc-card .stat-number { font-size: 36px; font-weight: 700; color: var(--swt-text); }

/* Why We Exist */
.why-exist { background: var(--swt-bg); }

.why-exist .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-exist-left .section-label { margin-bottom: 12px; }

.why-exist-item {
    display: flex;
    gap: 16px;
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius);
    padding: 22px;
    margin-top: 20px;
}

.why-exist-item:hover {
    border-color: var(--swt-border-hover);
    transform: translateX(4px);
}

.why-exist-item .item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--swt-radius-sm);
    background: rgba(245,163,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--swt-primary);
}

.why-exist-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.why-exist-item p { font-size: 13px; color: var(--swt-text-muted); line-height: 1.5; }

.why-exist-right { position: relative; }
.why-image { border-radius: var(--swt-radius-xl); overflow: hidden; }
.why-image img { width: 100%; border-radius: var(--swt-radius-xl); }
.why-choose-img { display: block; }
.why-quote-card {
    background: var(--swt-card);
    border: 1px solid rgba(245,163,0,0.2);
    border-radius: var(--swt-radius);
    padding: 24px;
    margin-top: 24px;
    text-align: center;
}
.why-quote-card .quote-icon {
    font-size: 48px;
    color: var(--swt-primary);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 4px;
}
.why-quote-card p {
    font-style: italic;
    color: var(--swt-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}
.why-quote-card .quote-author {
    font-size: 12px;
    color: var(--swt-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}
}

/* -------------------------------------------
   19. Blog Page
   ------------------------------------------- */
.blog-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245,163,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.blog-hero-image { position: relative; display: flex; align-items: center; justify-content: center; }
.blog-hero-image .hero-candlestick { bottom: 40px; right: 10px; }

.search-bar {
    display: flex;
    align-items: center;
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-full);
    padding: 4px;
    max-width: 420px;
    margin-top: 24px;
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 20px;
    color: var(--swt-text);
    font-size: 15px;
    font-family: var(--swt-font);
    outline: none;
}

.search-bar input::placeholder { color: var(--swt-text-dim); }

.search-bar button {
    width: 48px;
    height: 48px;
    background: var(--swt-primary);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button:hover { background: var(--swt-primary-hover); }

/* Articles */
.articles-section { background: var(--swt-bg); }

.articles-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.articles-header .section-title { margin-bottom: 0; }

.articles-header .view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--swt-primary);
    font-weight: 500;
    font-size: 15px;
}

.articles-header .view-all:hover { gap: 12px; }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-lg);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--swt-shadow);
    border-color: var(--swt-border-hover);
}

.article-card .article-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-card .article-body { padding: 20px; }

.article-card .article-badge {
    display: inline-block;
    background: rgba(245,163,0,0.12);
    color: var(--swt-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--swt-radius-full);
    margin-bottom: 12px;
}

.article-card .article-body h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .article-body p {
    font-size: 14px;
    color: var(--swt-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--swt-text-dim);
}

.article-card .article-arrow {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swt-primary);
    flex-shrink: 0;
}

.article-card:hover .article-arrow { background: var(--swt-primary); color: #000; }

.articles-featured { padding-bottom: 60px; }
.articles-latest { background: var(--swt-bg-sec); }
.articles-latest .articles-grid { grid-template-columns: repeat(4, 1fr); }

/* Newsletter */
.newsletter-cta { background: var(--swt-bg); }

.newsletter-card {
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-xl);
    padding: 60px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.newsletter-card .newsletter-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(245,163,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--swt-primary);
    margin: 0 auto 20px;
}

.newsletter-card h3 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.newsletter-card p { font-size: 15px; color: var(--swt-text-muted); margin-bottom: 24px; }

.newsletter-form {
    display: flex;
    align-items: center;
    background: var(--swt-bg-sec);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-full);
    padding: 4px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 20px;
    color: var(--swt-text);
    font-size: 15px;
    font-family: var(--swt-font);
    outline: none;
}

.newsletter-form input::placeholder { color: var(--swt-text-dim); }

.newsletter-form button {
    height: 48px;
    padding: 0 28px;
    background: var(--swt-primary);
    border: none;
    border-radius: var(--swt-radius-full);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--swt-font);
}

.newsletter-form button:hover { background: var(--swt-primary-hover); }
.newsletter-note { font-size: 12px; color: var(--swt-text-dim); margin-top: 16px; }

/* -------------------------------------------
   20. Contact Page
   ------------------------------------------- */
.contact-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245,163,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-hero-image { position: relative; display: flex; align-items: center; justify-content: center; }
.contact-hero-image .hero-candlestick { bottom: 40px; right: 10px; }

.contact-hero-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-hero-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    padding: 12px 18px;
    border-radius: var(--swt-radius-sm);
    font-size: 14px;
    color: var(--swt-text-muted);
}

.contact-hero-feat i { color: var(--swt-primary); font-size: 16px; }

/* Contact Section */
.contact-section { background: var(--swt-bg); }

.contact-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-xl);
    padding: 50px;
}

.contact-form-section h3,
.contact-info-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--swt-primary);
    display: inline-block;
}

.contact-form-section > p,
.contact-info-section > p {
    font-size: 14px;
    color: var(--swt-text-muted);
    margin: 8px 0 24px;
}

/* Forms */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--swt-text-muted);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--swt-bg-sec);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-sm);
    padding: 14px 16px;
    color: var(--swt-text);
    font-size: 15px;
    font-family: var(--swt-font);
    outline: none;
    transition: border-color var(--swt-transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--swt-primary);
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 8px; }

.form-security {
    font-size: 12px;
    color: var(--swt-text-dim);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Contact Info */
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--swt-bg-sec);
    border-radius: 14px;
}

.contact-info-item:hover { background: rgba(245,163,0,0.04); }

.contact-info-item .info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: rgba(245,163,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swt-primary);
    font-size: 14px;
}

.contact-info-item .info-text {
    font-size: 14px;
    color: var(--swt-text-muted);
    line-height: 1.4;
}

.contact-info-item .info-text strong {
    display: block;
    color: var(--swt-text);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swt-text-muted);
    font-size: 18px;
}

.contact-socials a:hover {
    border-color: var(--swt-primary);
    color: var(--swt-primary);
    background: rgba(245,163,0,0.08);
}

/* Feedback Page */
.feedback-hero { padding: 80px 0; position: relative; overflow: hidden; }
.feedback-hero::before { content: ''; position: absolute; top: -20%; right: -5%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(245,163,0,0.12) 0%, transparent 70%); pointer-events: none; }
.feedback-hero .container { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.feedback-hero-left { flex: 1; }
.feedback-hero-right { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.feedback-hero .hero-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 18px; font-weight: 500; color: var(--swt-primary); margin-bottom: 16px; }
.feedback-hero .hero-tag i { font-size: 14px; }
.feedback-hero .hero-title { font-size: 56px; font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.feedback-hero .hero-title .highlight { color: var(--swt-primary); }
.feedback-hero .hero-desc { font-size: 20px; color: var(--swt-text-muted); line-height: 1.8; max-width: 540px; margin-bottom: 32px; }
.feedback-hero .hero-stats { display: flex; gap: 40px; }
.feedback-hero .hero-stat h4 { font-size: 28px; font-weight: 700; color: var(--swt-primary); }
.feedback-hero .hero-stat p { font-size: 14px; color: var(--swt-text-muted); }
.feedback-hero .hero-illustration { width: 100%; display: flex; align-items: center; justify-content: center; }
.feedback-hero .hero-img { max-width: 420px; filter: drop-shadow(0 20px 60px rgba(245,163,0,0.15)); }
.feedback-hero .hero-badge-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.feedback-hero .hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border: 1px solid var(--swt-border); padding: 8px 16px; border-radius: 50px; font-size: 13px; color: var(--swt-text-muted); }
.feedback-hero .hero-badge i { color: var(--swt-primary); font-size: 12px; }

.client-images { padding: 80px 0; background: var(--swt-bg-sec); }
.client-images .section-header { text-align: center; margin-bottom: 50px; }
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.client-card { background: var(--swt-card); border: 1px solid var(--swt-border); border-radius: 16px; overflow: hidden; transition: var(--swt-transition); }
.client-card:hover { border-color: rgba(245,163,0,0.3); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(245,163,0,0.08); }
@media (min-width: 641px) {
  .client-card { position: relative; }
  .client-card::before { content: ''; display: block; padding-bottom: 100%; }
  .client-card-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
}
.client-card-img { width: 100%; display: block; }

.video-testimonials { padding: 80px 0; background: var(--swt-bg); }
.video-testimonials .section-header { text-align: center; margin-bottom: 50px; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card { background: var(--swt-card); border: 1px solid var(--swt-border); border-radius: 16px; overflow: hidden; transition: var(--swt-transition); }
.video-card:hover { border-color: rgba(245,163,0,0.3); transform: translateY(-4px); }
.video-thumb { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #111; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-thumb video { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn { position: absolute; width: 60px; height: 60px; border-radius: 50%; background: var(--swt-primary); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #000; transition: var(--swt-transition); cursor: pointer; }
.video-play-btn:hover { transform: scale(1.12); box-shadow: 0 0 30px rgba(245,163,0,0.3); }


.feedback-cta { padding: 60px 0; }
.cta-banner { background: var(--swt-bg-sec); border: 1px solid var(--swt-border); border-radius: 24px; padding: 50px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden; }
.cta-banner .bg-icon { position: absolute; right: 20px; bottom: 10px; font-size: 120px; opacity: 0.06; pointer-events: none; user-select: none; }
.cta-left { display: flex; align-items: center; gap: 24px; }
.cta-icon { width: 70px; height: 70px; min-width: 70px; border-radius: 50%; background: rgba(245,163,0,0.12); display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--swt-primary); }
.cta-left h3 { font-size: 28px; font-weight: 700; line-height: 1.2; }
.cta-left p { font-size: 15px; color: var(--swt-text-muted); margin-top: 4px; }
.cta-btn { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--swt-primary); height: 54px; padding: 0 34px; border-radius: 50px; font-weight: 600; font-size: 15px; border: 2px solid var(--swt-primary); transition: var(--swt-transition); flex-shrink: 0; }
.cta-btn i { transition: var(--swt-transition); }
.cta-btn:hover { background: var(--swt-primary); color: #000; }
.cta-btn:hover i { transform: translateX(4px); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-content { position: relative; display: flex; align-items: center; justify-content: center; }
.lightbox-content img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-content video { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 36px; color: #fff; cursor: pointer; z-index: 10; transition: 0.3s; line-height: 1; }
.lightbox-close:hover { color: var(--swt-primary); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(255,255,255,0.08); border: none; border-radius: 50%; color: #fff; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; z-index: 10; }
.lightbox-nav:hover { background: var(--swt-primary); color: #000; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%); color: #BDBDBD; font-size: 14px; z-index: 10; }

/* Home Feedback Section */
.home-feedback { padding: 80px 0; background: var(--swt-bg-sec); }
.feedback-carousel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.fb-card { background: var(--swt-card); border: 1px solid var(--swt-border); border-radius: 16px; overflow: hidden; transition: var(--swt-transition); }
.fb-card:hover { border-color: rgba(245,163,0,0.3); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(245,163,0,0.06); }
@media (min-width: 641px) {
  .fb-card { position: relative; }
  .fb-card::before { content: ''; display: block; padding-bottom: 100%; }
  .fb-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
}
.fb-img { width: 100%; display: block; }

/* Community CTA */
.community-cta { padding: 60px 0; }
.community-banner {
    background: var(--swt-bg-sec);
    border: 1px solid var(--swt-border);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.community-banner .bg-bull {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 120px;
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
}
.community-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
.community-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: rgba(245,163,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--swt-primary);
}
.community-left h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4px;
}
.community-left p {
    font-size: 15px;
    color: var(--swt-text-muted);
}
.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--swt-primary);
    height: 54px;
    padding: 0 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--swt-primary);
    transition: var(--swt-transition);
    flex-shrink: 0;
}
.community-btn i { transition: var(--swt-transition); }
.community-btn:hover {
    background: var(--swt-primary);
    color: #000;
}
.community-btn:hover i { transform: translateX(4px); }

/* FAQ */
.faq { background: var(--swt-bg); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
    align-items: start;
}
.faq-item {
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--swt-transition);
    align-self: start;
}
.faq-item.open { border-color: rgba(245,163,0,0.3); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    height: 70px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--swt-transition);
}

.faq-question i {
    font-size: 14px;
    color: var(--swt-primary);
    transition: transform var(--swt-transition);
}
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 200px;
}
.faq-answer-inner {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--swt-text-muted);
    line-height: 1.7;
}

/* -------------------------------------------
   21. Policy Pages
   ------------------------------------------- */
.policy-page { padding: 40px 0 80px; }

.policy-card {
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-xl);
    padding: 50px;
}

.policy-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 40px;
}

.policy-card h2:first-child { margin-top: 0; }

.policy-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-card h3 .num-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(245,163,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--swt-primary);
    flex-shrink: 0;
}

.policy-card p {
    font-size: 15px;
    color: var(--swt-text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-card ul { margin: 8px 0 16px 20px; }

.policy-card ul li {
    font-size: 14px;
    color: var(--swt-text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 8px;
}

.policy-card ul li::before {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 6px;
    color: var(--swt-primary);
    margin-right: 10px;
    vertical-align: middle;
}

.policy-card strong { color: var(--swt-text); }
.policy-card a { color: var(--swt-primary); text-decoration: underline; }
.policy-card a:hover { color: var(--swt-primary-hover); }

.policy-card .last-updated {
    font-size: 14px;
    color: var(--swt-text-dim);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--swt-border);
}

/* -------------------------------------------
   22. WordPress Loop (Single, Archive, Search, Index)
   ------------------------------------------- */
/* Post Grid (archive, search, index) */
.swt-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 60px 0;
}

.swt-post-card {
    background: var(--swt-card);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-lg);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.swt-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--swt-shadow);
    border-color: var(--swt-border-hover);
}

.swt-post-card .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.swt-post-card .post-content { padding: 20px; }

.swt-post-card .post-content h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}

.swt-post-card .post-content h3 a { color: var(--swt-text); }
.swt-post-card .post-content h3 a:hover { color: var(--swt-primary); }

.swt-post-card .post-meta {
    font-size: 13px;
    color: var(--swt-text-dim);
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}

.swt-post-card .post-content p {
    font-size: 14px;
    color: var(--swt-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.swt-post-card .swt-btn {
    height: 42px;
    padding: 0 24px;
    font-size: 13px;
    background: var(--swt-primary);
    color: #000;
    border-radius: var(--swt-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.swt-post-card .swt-btn:hover { background: var(--swt-primary-hover); }

/* Single Post */
.single-post {
    padding: 60px 0;
}

.single-post .post-thumbnail-large {
    border-radius: var(--swt-radius-xl);
    overflow: hidden;
    margin-bottom: 32px;
}

.single-post .post-thumbnail-large img {
    width: 100%;
    border-radius: var(--swt-radius-xl);
}

.single-post .post-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--swt-text-dim);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.single-post .post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.single-post .post-meta i { color: var(--swt-primary); }

.single-post .entry-content {
    font-size: 16px;
    color: var(--swt-text-muted);
    line-height: 1.8;
}

.single-post .entry-content p {
    margin-bottom: 20px;
}

.single-post .entry-content h2,
.single-post .entry-content h3 {
    margin-top: 36px;
    margin-bottom: 16px;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
    margin: 0 0 20px 24px;
    list-style: disc;
}

.single-post .entry-content ul li,
.single-post .entry-content ol li {
    font-size: 16px;
    color: var(--swt-text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

/* 404 Page */
.error-404 {
    padding: 120px 0;
    text-align: center;
}

.error-404 h1 {
    font-size: 120px;
    color: var(--swt-primary);
    line-height: 1;
    margin-bottom: 16px;
}

.error-404 p {
    font-size: 20px;
    color: var(--swt-text-muted);
    margin-bottom: 32px;
}

.error-404 .swt-btn {
    background: var(--swt-primary);
    color: #000;
    height: 56px;
    padding: 0 36px;
    border-radius: var(--swt-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
}

.error-404 .swt-btn:hover { background: var(--swt-primary-hover); }

/* -------------------------------------------
   23. Comments
   ------------------------------------------- */
.comments-area {
    padding: 40px 0 0;
    margin-top: 40px;
    border-top: 1px solid var(--swt-border);
}

.comments-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}

.comment-list { margin-bottom: 40px; }

.comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--swt-border);
}

.comment:last-child { border-bottom: none; }

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-author { font-weight: 600; font-size: 15px; }
.comment-author .says { display: none; }
.comment-metadata { font-size: 13px; color: var(--swt-text-dim); }
.comment-metadata a { color: var(--swt-text-dim); }

.comment-content {
    font-size: 15px;
    color: var(--swt-text-muted);
    line-height: 1.7;
}

.comment-content p { margin-bottom: 8px; }

.reply {
    margin-top: 8px;
}

.reply a {
    font-size: 13px;
    font-weight: 500;
    color: var(--swt-primary);
}

.reply a:hover { text-decoration: underline; }

/* Comment Form */
.comment-respond { margin-top: 40px; }

.comment-reply-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.comment-form p { margin-bottom: 16px; }

.comment-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--swt-text-muted);
    margin-bottom: 6px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    background: var(--swt-bg-sec);
    border: 1px solid var(--swt-border);
    border-radius: var(--swt-radius-sm);
    padding: 14px 16px;
    color: var(--swt-text);
    font-size: 15px;
    font-family: var(--swt-font);
    outline: none;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--swt-primary);
}

.comment-form textarea { min-height: 120px; }

.comment-form .form-submit { margin-top: 8px; }

.comment-form .submit {
    background: var(--swt-primary);
    color: #000;
    height: 52px;
    padding: 0 32px;
    border: none;
    border-radius: var(--swt-radius-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    font-family: var(--swt-font);
}

.comment-form .submit:hover { background: var(--swt-primary-hover); }

/* -------------------------------------------
   24. WordPress Blocks
   ------------------------------------------- */
.wp-block-image { margin: 24px 0; }
.wp-block-image figcaption {
    font-size: 14px;
    color: var(--swt-text-dim);
    text-align: center;
    margin-top: 8px;
}

.wp-block-gallery { margin: 24px 0; }

.wp-block-quote {
    border-left: 4px solid var(--swt-primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--swt-card);
    border-radius: 0 var(--swt-radius) var(--swt-radius) 0;
}

.wp-block-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--swt-text);
}

.wp-block-quote cite {
    font-size: 14px;
    color: var(--swt-text-muted);
    margin-top: 8px;
    display: block;
}

.wp-block-button { margin: 24px 0; }

.wp-block-button .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--swt-primary);
    color: #000;
    height: 52px;
    padding: 0 32px;
    border-radius: var(--swt-radius-full);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.wp-block-button .wp-block-button__link:hover { background: var(--swt-primary-hover); }

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--swt-border);
    margin: 32px 0;
}

.wp-block-table { margin: 24px 0; }

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
    padding: 12px 16px;
    border: 1px solid var(--swt-border);
    text-align: left;
}

.wp-block-table th {
    background: var(--swt-card);
    font-weight: 600;
}

/* Alignments */
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { margin: 24px auto; display: block; }

.wp-block-cover { margin: 24px 0; }

/* -------------------------------------------
   25. Pagination
   ------------------------------------------- */
.pagination,
.posts-navigation {
    padding: 40px 0;
    text-align: center;
}

.pagination .nav-links,
.posts-navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination .page-numbers,
.posts-navigation .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 500;
    color: var(--swt-text-muted);
    border: 1px solid var(--swt-border);
}

.pagination .page-numbers.current,
.posts-navigation .page-numbers.current {
    background: var(--swt-primary);
    color: #000;
    border-color: var(--swt-primary);
}

.pagination .page-numbers:hover,
.posts-navigation .page-numbers:hover {
    border-color: var(--swt-primary);
    color: var(--swt-primary);
}

.pagination .next,
.pagination .prev,
.posts-navigation .next,
.posts-navigation .prev {
    width: auto;
    padding: 0 20px;
    border-radius: var(--swt-radius-full);
}

/* -------------------------------------------
   26. Backlinks / Credit
   ------------------------------------------- */
.swt-credit a,
.swt-seo-credit a {
    color: var(--swt-primary);
}

.swt-credit a:hover,
.swt-seo-credit a:hover {
    color: var(--swt-primary-hover);
    text-decoration: underline;
}

.swt-seo-credit {
    text-align: center;
    font-size: 12px;
    color: var(--swt-text-dim);
    padding: 8px 0;
}

/* -------------------------------------------
   27. Print Styles
   ------------------------------------------- */
@media print {
    .header,
    .footer,
    .hamburger,
    .mobile-menu,
    .mobile-overlay,
    .telegram-cta,
    .community-banner,
    .newsletter-cta,
    .btn-primary,
    .btn-outline,
    .header-cta,
    .search-bar {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .container { padding: 0; max-width: 100%; }
    section { padding: 20px 0; }

    a { color: #000; text-decoration: underline; }
}

/* -------------------------------------------
   28. Responsive — 1200px
   ------------------------------------------- */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .hero-title { font-size: 48px; }
    .about .container { gap: 40px; }
    .testimonials .container { gap: 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-latest .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .mvvc-grid { grid-template-columns: repeat(2, 1fr); }
    .swt-posts-grid { grid-template-columns: repeat(2, 1fr); }
    .client-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------------------------------------------
   29. Responsive — 992px
   ------------------------------------------- */
@media (max-width: 992px) {
    .container { padding: 0 24px; }

    /* Header */
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .header-cta { display: none; }

    /* Hero */
    .hero { height: auto; padding: 80px 0; }
    .hero .container { flex-direction: column; text-align: center; }
    .hero-left { order: 2; }
    .hero-right { order: 1; min-height: 500px; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-reviews { justify-content: center; }
    .hero-title { font-size: 42px; }
    .section-title { font-size: 36px; }

    /* Trust */
    .trust-grid { grid-template-columns: repeat(2, 1fr); }

    /* About */
    .about .container { grid-template-columns: 1fr; }
    .about-image { min-height: 320px; }

    /* Testimonials */
    .testimonials .container { grid-template-columns: 1fr; }

    /* Stats */
    .stats-bar { grid-template-columns: repeat(3, 1fr); }
    .stat-item:nth-child(4) { border-right: none; }
    .stat-cta { grid-column: 1 / -1; }

    /* Telegram */
    .telegram-banner { flex-direction: column; text-align: center; padding: 40px 30px; }
    .telegram-left { flex-direction: column; text-align: center; }

    /* Footer */
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

    /* Feedback Page */
    .feedback-hero .container { flex-direction: column; text-align: center; }
    .feedback-hero-left { order: 2; }
    .feedback-hero-right { order: 1; min-height: 300px; }
    .feedback-hero .hero-desc { margin: 0 auto 32px; }
    .feedback-hero .hero-stats { justify-content: center; }
    .feedback-hero .hero-badge-row { justify-content: center; }
    .feedback-hero .hero-title { font-size: 42px; }
    .feedback-carousel { grid-template-columns: 1fr; }
    .cta-banner { flex-direction: column; text-align: center; padding: 40px 30px; }
    .cta-left { flex-direction: column; text-align: center; }
    .cta-left h3 { font-size: 24px; }

    /* About Page */
    .about-hero .container { grid-template-columns: 1fr; text-align: center; }

    /* Blog Page */
    .blog-hero .container { grid-template-columns: 1fr; text-align: center; }
    .search-bar { margin: 24px auto 0; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }

    /* Contact Page */
    .contact-hero .container { grid-template-columns: 1fr; text-align: center; }
    .contact-card { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .community-banner { flex-direction: column; text-align: center; padding: 40px 30px; }
    .community-left { flex-direction: column; text-align: center; }
    .community-left h3 { font-size: 30px; }

    /* Why Exist */
    .why-exist .container { grid-template-columns: 1fr; }

    /* Page Banner */
    .page-banner h1 { font-size: 36px; }

    /* Policy */
    .policy-card { padding: 30px; }

    /* Post Grid */
    .swt-posts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------------------------------------------
   30. Responsive — 640px
   ------------------------------------------- */
@media (max-width: 640px) {
    .container { padding: 0 16px; }
    section { padding: 60px 0; }

    /* Hero */
    .hero-title { font-size: 34px; }
    .hero-right { min-height: 400px; }
    .bull-3d { max-width: 340px; }
    .hero-desc { font-size: 16px; }

    /* Section Titles */
    .section-title { font-size: 30px; }

    /* Grids */
    .trust-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-cta { grid-column: 1 / -1; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .articles-grid { grid-template-columns: 1fr; }
    .articles-latest .articles-grid { grid-template-columns: 1fr; }
    .mvvc-grid { grid-template-columns: 1fr; }
    .swt-posts-grid { grid-template-columns: 1fr; }

    /* Float Cards */
    .float-card { min-width: 120px; padding: 12px 14px; }
    .float-card .value { font-size: 16px; }

    /* Telegram */
    .telegram-banner { padding: 30px 20px; }
    .telegram-left h3 { font-size: 20px; }

    /* Page Banner */
    .page-banner { padding: 60px 0; }
    .page-banner h1 { font-size: 30px; }

    /* Policy */
    .policy-card { padding: 20px; }

    /* Contact */
    .contact-card { padding: 24px; }
    .community-icon { width: 56px; height: 56px; min-width: 56px; font-size: 24px; }
    .community-left h3 { font-size: 24px; }
    .community-banner { padding: 30px 20px; }

    /* Feedback */
    .feedback-hero-title { font-size: 34px; }
    .feedback-hero .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
    .feedback-hero-right { min-height: 250px; }
    .feedback-hero .hero-img { max-width: 280px; }
    .client-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .lightbox-content img, .lightbox-content video { max-width: 95vw; max-height: 75vh; }
    .lightbox-prev { left: 10px; width: 40px; height: 40px; font-size: 16px; }
    .lightbox-next { right: 10px; width: 40px; height: 40px; font-size: 16px; }
    .lightbox-close { top: 12px; right: 16px; font-size: 30px; }
    .cta-banner { padding: 30px 20px; }
    .cta-icon { width: 56px; height: 56px; min-width: 56px; font-size: 24px; }

    /* Newsletter */
    .newsletter-card { padding: 30px 20px; }
    .newsletter-form { flex-direction: column; background: none; border: none; gap: 12px; }
    .newsletter-form input { background: var(--swt-bg-sec); border: 1px solid var(--swt-border); border-radius: var(--swt-radius-full); }
    .newsletter-form button { width: 100%; justify-content: center; }
}
