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

:root {
    --bg-primary: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    --bg-card-border: #1a1a1a;
    --bg-elevated: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --accent: #c8ff00;
    --accent-dark: #9acc00;
    --accent-glow: rgba(200, 255, 0, 0.15);
    --border: #1e1e1e;
    --border-light: #2a2a2a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 50px;
}



.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav-link:hover {
    color: var(--text-primary);
}

.btn-header {
    font-size: 14px;
    font-weight: 500;
    color: var(--bg-primary);
    background: var(--text-primary);
    padding: 8px 20px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 60px;
    position: relative;
    overflow: hidden;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 4s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroGlow {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title span {
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: 100px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 255, 0, 0.3);
}

.hero-arc {
    margin-top: 40px;
    position: relative;
}

.arc-svg {
    width: 100%;
    max-width: 550px;
    height: auto;
}

.arc-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawArc 2s ease forwards 0.5s;
}

@keyframes drawArc {
    to {
        stroke-dashoffset: 0;
    }
}

.arc-bars line {
    animation: growBar 1s ease forwards;
    transform-origin: bottom;
    opacity: 0;
}

.arc-bars line:nth-child(1) {
    animation-delay: 1s;
}

.arc-bars line:nth-child(2) {
    animation-delay: 1.1s;
}

.arc-bars line:nth-child(3) {
    animation-delay: 1.2s;
}

.arc-bars line:nth-child(4) {
    animation-delay: 1.3s;
}

.arc-bars line:nth-child(5) {
    animation-delay: 1.4s;
}

.arc-bars line:nth-child(6) {
    animation-delay: 1.5s;
}

.arc-bars line:nth-child(7) {
    animation-delay: 1.6s;
}

.arc-bars line:nth-child(8) {
    animation-delay: 1.7s;
}

.arc-bars line:nth-child(9) {
    animation-delay: 1.8s;
}

.arc-bars line:nth-child(10) {
    animation-delay: 1.9s;
}

.arc-bars line:nth-child(11) {
    animation-delay: 2.0s;
}

.arc-bars line:nth-child(12) {
    animation-delay: 2.1s;
}

.arc-bars line:nth-child(13) {
    animation-delay: 2.2s;
}

.arc-bars line:nth-child(14) {
    animation-delay: 2.3s;
}

@keyframes growBar {
    from {
        opacity: 0;
        transform: scaleY(0);
    }

    to {
        opacity: 0.4;
        transform: scaleY(1);
    }
}

/* ===== TRUSTED BY ===== */
.trusted {
    padding: 40px 40px 60px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.logo-item:hover {
    color: var(--text-secondary);
}

.logo-item svg {
    opacity: 0.5;
}

/* ===== DESCRIPTION ===== */
.description-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.description-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-icon {
    margin-bottom: 24px;
    display: inline-block;
}

.description-text {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== PROBLEMS SECTION ===== */
.problems-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.problems-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.problems-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Problem Cards */
.problems-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.problem-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.problem-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.problem-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

.card-visual {
    height: 160px;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Chart Visual */
.chart-visual {
    background: linear-gradient(180deg, rgba(200, 255, 0, 0.05) 0%, transparent 100%);
    padding: 20px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100%;
    width: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(200, 255, 0, 0.2) 100%);
    border-radius: 3px 3px 0 0;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    animation: barGrow 1s ease forwards;
    transform-origin: bottom;
}

.bar.highlight {
    opacity: 0.8;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(200, 255, 0, 0.4) 100%);
}

.problem-card:hover .bar {
    opacity: 0.7;
}

.problem-card:hover .bar.highlight {
    opacity: 1;
}

/* Lightning Visual */
.lightning-visual {
    background: radial-gradient(circle at center, rgba(200, 255, 0, 0.08) 0%, transparent 70%);
}

.lightning-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.3), transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

/* Scale Visual */
.scale-visual {
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.03), transparent);
}

.scale-circles {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scale-circle {
    position: absolute;
    border: 1px solid rgba(200, 255, 0, 0.15);
    border-radius: 50%;
    animation: scaleIn 2s ease-in-out infinite;
}

.scale-circle.c1 {
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.scale-circle.c2 {
    width: 70px;
    height: 70px;
    animation-delay: 0.3s;
}

.scale-circle.c3 {
    width: 100px;
    height: 100px;
    animation-delay: 0.6s;
}

.scale-circle.c4 {
    width: 130px;
    height: 130px;
    animation-delay: 0.9s;
}

@keyframes scaleIn {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Small problem cards */
.problems-grid-row2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.problem-card-small {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.problem-card-small:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.small-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card-small h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.small-card-icon svg {
    color: var(--accent);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.problem-card-small:hover .small-card-icon svg {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}


.avatars {
    display: flex;
    gap: 0;
    justify-content: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    margin-left: -8px;
}

.avatar.a1 {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
}

.avatar.a2 {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.avatar.a3 {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.avatar:first-child {
    margin-left: 0;
}

.faces span {
    font-size: 20px;
}

/* ===== TOOLS SECTION ===== */
.tools-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tools-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.4s ease;
}

.tool-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.tool-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tool-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 320px;
}

.video-text {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-quote {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300;
}

.video-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.author-name {
    font-size: 14px;
    font-weight: 600;
}

.author-role {
    font-size: 12px;
    color: var(--text-secondary);
}

.video-thumbnail {
    background: linear-gradient(135deg, #1a2a0a, #0a1a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><radialGradient id="g"><stop offset="0%" stop-color="%23c8ff00" stop-opacity="0.06"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="200" cy="200" r="200" fill="url(%23g)"/></svg>');
    background-size: cover;
}

.play-button {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.play-button:hover svg {
    opacity: 1;
}

/* ===== STATS ===== */
.stats-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
}

.stat-plus {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--text-secondary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ===== REVIEWS ===== */
.reviews-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: all 0.4s ease;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.rv1 {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.rv2 {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.rv3 {
    background: linear-gradient(135deg, #feca57, #f9ca24);
}

.rv4 {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.rv5 {
    background: linear-gradient(135deg, #55efc4, #00b894);
}

.rv6 {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.reviewer-name {
    font-size: 14px;
    font-weight: 600;
}

.reviewer-handle {
    font-size: 12px;
    color: var(--text-muted);
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item.active {
    border-color: var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--text-secondary);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-container {
    background: linear-gradient(135deg, #1a2a00 0%, #0d1a00 50%, #1a2a00 100%);
    border: 1px solid rgba(200, 255, 0, 0.15);
    border-radius: var(--radius-2xl);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
}

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: 100px;
    transition: all 0.3s ease;
    position: relative;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 255, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px;
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }

    .problems-grid-row2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .video-card {
        grid-template-columns: 1fr;
    }

    .video-thumbnail {
        min-height: 250px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .header-container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .trusted {
        padding: 30px 20px 40px;
    }

    .trusted-logos {
        gap: 24px;
    }

    .problems-section,
    .tools-section,
    .video-section,
    .stats-section,
    .reviews-section,
    .faq-section,
    .cta-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .problems-grid-row2 {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .video-text {
        padding: 32px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}