/* CSS Reset and Variables */
:root {
    --primary: #f97316;
    /* Vibrant Orange */
    --primary-hover: #ea580c;
    --secondary: #1e3a8a;
    /* Deep Blue for Trust */
    --secondary-light: #2563eb;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --text-main: #334155;
    --white: #ffffff;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-wa: 0 4px 10px rgba(37, 211, 102, 0.4);
    --radius: 8px;
    --radius-lg: 16px;
    --font: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font);
    color: var(--text-main);
    background-color: var(--white);
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--secondary-light);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--secondary);
}

.section-title.left-align {
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.text-green {
    color: var(--success);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: -5px;
    font-weight: 800;
}

.tagline {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.3;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: rgba(249, 115, 22, 0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 20px;
    border: 1px solid rgba(249, 115, 22, 0.4);
}

.hero-headline {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.hero-subheadline strong {
    color: var(--primary);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.hero-features i {
    color: var(--success);
    font-size: 1.25rem;
}

/* Form Section */
.hero-form-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    color: var(--text-main);
    transform: translateY(20px);
}

.urgency-banner {
    background-color: #fee2e2;
    color: #b91c1c;
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid #fecaca;
}

.urgency-banner p {
    font-weight: 700;
    margin-bottom: 10px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.time-box {
    background: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    box-shadow: var(--shadow-sm);
}

.time-box span {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.time-box small {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

.register-form {
    padding: 30px;
}

.register-form h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.form-subtitle {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.btn-submit {
    width: 100%;
    background-color: var(--success);
    color: var(--white);
    border: none;
    padding: 16px;
    font-size: 1.125rem;
    margin-top: 10px;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-submit:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.secure-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: var(--light);
}

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

.problem-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.problem-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.problem-card p {
    color: var(--gray);
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: var(--white);
}

.why-us-content {
    display: flex;
    flex-direction: column;
}

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

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

.stats-grid.trust-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 15px;
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: var(--transition);
}

.stat-item:hover {
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.offline-feature {
    display: flex;
    gap: 20px;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.05), transparent);
    padding: 24px;
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.offline-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-top: 5px;
}

.offline-text h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.offline-text p {
    color: var(--gray);
}

.image-placeholder {
    background-color: var(--gray-light);
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 3rem;
    gap: 15px;
}

.image-placeholder p {
    font-size: 1rem;
    font-weight: 600;
}

@media (min-width: 992px) {
    .why-us-section .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
}

/* Details Section */
.details-section {
    padding: 80px 0;
    background-color: var(--dark);
    color: var(--white);
}

.details-section .section-title {
    color: var(--white);
}

.details-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius);
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.5rem;
    margin-top: 2px;
}

.detail-item p {
    font-size: 1.125rem;
    color: #cbd5e1;
}

.detail-item strong {
    color: var(--white);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Social Proof Section */
.proof-section {
    padding: 80px 0;
    background-color: var(--light);
}

.rating-badge {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.25rem;
    font-weight: 700;
}

.rating-badge i {
    color: #fbbf24;
    margin-right: 5px;
}

.rating-badge span {
    margin-left: 10px;
    color: var(--dark);
}

.testimonial-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    padding: 10px 0;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    flex: 0 0 calc(100% - 20px);
    scroll-snap-align: center;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border-top: 4px solid var(--primary);
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

.slider-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

@media (max-width: 991px) {
    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }
}

.quote-icon {
    font-size: 2rem;
    color: rgba(249, 115, 22, 0.2);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary);
}

.testimonial-sub {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
}

/* Video Testimonials Section */
.video-testimonials-section {
    padding: 80px 0;
    background-color: var(--light);
}

.video-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0;
    width: 100%;
}

.video-slider::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    background: var(--white);
    padding: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    margin: 20px 0px 0px 0px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-prev-btn {
    left: -40px;
}

.video-next-btn {
    right: -40px;
}

@media (max-width: 991px) {
    .video-prev-btn {
        left: 0;
    }

    .video-next-btn {
        right: 0;
    }
}

@media (max-width: 768px) {
    .video-testimonials-section .container {
        padding: 0 20px;
    }

    .video-slider {
        gap: 0;
    }

    .video-card {
        flex: 0 0 100%;
        margin: 0;
        padding: 15px;
        border-radius: var(--radius-lg);
        background: var(--white);
        box-shadow: var(--shadow-lg);
    }

    .video-card .video-wrapper {
        aspect-ratio: 1/1;
        border-radius: var(--radius);
    }
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.125rem;
    margin: 0;
}

.faq-toggle {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--gray);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

/* Sticky Elements */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 99;
    border-top: 2px solid var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-footer.visible {
    transform: translateY(0);
}

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

.sticky-text p {
    color: var(--dark);
    font-size: 1rem;
}

.sticky-text p strong {
    color: var(--primary);
}

.btn-sticky {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    box-shadow: none;
}

.btn-sticky:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: var(--shadow-wa);
    z-index: 100;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Program Details Section */
.program-details-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.program-details-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.program-details-section .section-title {
    color: var(--white);
    margin-bottom: 40px;
}

.program-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.program-detail-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.program-detail-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.program-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #fb923c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
}

.program-detail-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 6px;
}

.program-detail-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .program-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .program-detail-card {
        padding: 24px 16px;
    }

    .program-detail-value {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .program-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background-color: var(--light);
}

.achievements-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievements-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0;
}

.achievements-slider::-webkit-scrollbar {
    display: none;
}

.achievement-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(249, 115, 22, 0.3);
}

.achievement-img-wrapper {
    width: 100%;
    overflow: hidden;
}

.achievement-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.achievement-card:hover .achievement-img-wrapper img {
    transform: scale(1.05);
}

.achievements-prev-btn {
    left: -20px;
}

.achievements-next-btn {
    right: -20px;
}

@media (max-width: 991px) {
    .achievements-prev-btn {
        left: 0;
    }

    .achievements-next-btn {
        right: 0;
    }
}

@media (max-width: 768px) {
    .achievement-card {
        flex: 0 0 calc(85% - 12px);
    }
}

/* Play Button Overlay */
.image-with-play-btn {
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.image-with-play-btn:hover .play-overlay {
    background: rgba(0,0,0,0.4);
}

.play-btn-circle {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
    transition: var(--transition);
    color: var(--white);
    font-size: 1.5rem;
    padding-left: 5px; /* Offset to center the play icon visually */
}

.image-with-play-btn:hover .play-btn-circle {
    transform: scale(1.1);
    background: var(--primary-hover);
}

@media (max-width: 768px) {
    .play-btn-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-form-wrapper {
        margin-top: 20px;
    }

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .sticky-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .btn-sticky {
        width: 100%;
    }

    .floating-wa {
        bottom: 100px;
        /* Lift above sticky footer */
    }
}