/* ==========================================================================
   CSS VARIABLES & PRESETS
   ========================================================================== */
:root {
    /* Colors */
    --primary: #0f172a;
    /* Dark Blue */
    --primary-light: #1e293b;
    --secondary: #eab308;
    /* Yellow/Gold */
    --secondary-hover: #ca8a04;
    --accent-wa: #25D366;
    /* WhatsApp Green */
    --accent-wa-hover: #1EBE5D;

    --text-main: #334155;
    --text-heading: #0f172a;
    --text-light: #94a3b8;

    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;

    --border-color: #e2e8f0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;

    /* Shadows */
    --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-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(234, 179, 8, 0.4);

    /* Radius */
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--bg-white);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--bg-white);
}

.bg-dark h2 {
    color: var(--bg-white);
}

.mt-4 {
    margin-top: 2rem;
}

.section-tag {
    display: inline-block;
    background: rgba(234, 179, 8, 0.2);
    color: var(--secondary-hover);
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag-center {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(234, 179, 8, 0.3);
    z-index: -1;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
}

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

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--border-color);
}

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

.btn-wa {
    background-color: var(--accent-wa) !important;
    color: white !important;
}

.btn-wa:hover {
    background-color: var(--accent-wa-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-warning {
    background-color: var(--secondary);
    color: var(--primary);
}

.btn-warning:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

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

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

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

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   HEADER & TOP NOTICE
   ========================================================================== */
.top-notice {
    background-color: var(--secondary);
    color: var(--primary);
    text-align: center;
    padding: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-dot {
    color: var(--secondary);
}

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

.nav ul li a {
    color: var(--text-main);
    font-weight: 500;
}

.nav ul li a:hover {
    color: var(--primary);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.stars {
    color: var(--secondary);
    font-size: 0.85rem;
}

.trust-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-features i {
    color: var(--accent-wa);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Review Badges Overlay */
.review-badges-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    width: max-content;
}

.review-badge-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #0f172a;
    border-bottom: 3px solid #0f172a;
    min-width: 140px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.review-badge-card:nth-child(1) {
    border-color: #e63946;
}

.review-badge-card:nth-child(2) {
    border-color: #14a800;
}

.review-badge-card:nth-child(3) {
    border-color: #ff6b35;
}

.review-count {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-platform-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.clutch-text {
    color: #0f172a;
}

.upwork-text {
    color: #14a800;
}

.goodfirms-text {
    color: #ff6b35;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.review-stars i {
    font-size: 0.7rem;
    color: #f59e0b;
}

.review-rating {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
}

/* ==========================================================================
   CLIENT LOGO MARQUEE
   ========================================================================== */
.client-logos {
    background: #fdf6ec;
    padding: 24px 0;
    overflow: hidden;
    position: relative;
}

.client-logos-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.client-logos-label {
    flex-shrink: 0;
    padding-right: 40px;
    border-right: 2px solid rgba(0, 0, 0, 0.08);
    line-height: 1.4;
}

.client-logos-label span {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 400;
}

.client-logos-label strong {
    display: block;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
}

.marquee-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    height: 68px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 1;
    transition: all 0.4s ease;
}

.marquee-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   2. PROBLEM SECTION
   ========================================================================== */
.problem-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.problem-image {
    flex: 1;
}

.problem-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.problem-content {
    flex: 1;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.problem-list {
    margin-bottom: 2rem;
}

.problem-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fee2e2;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-list p {
    margin: 0;
}

.problem-conclusion {
    background-color: #fee2e2;
    padding: 16px;
    border-radius: var(--radius-md);
    border-left: 4px solid #ef4444;
}

.problem-conclusion p {
    color: #991b1b;
}

/* ==========================================================================
   3. SOLUTION SECTION
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.f-icon {
    width: 60px;
    height: 60px;
    background: rgba(234, 179, 8, 0.1);
    color: var(--secondary-hover);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

.cta-banner-small {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.cta-banner-small h3 {
    color: white;
    margin: 0;
}

/* ==========================================================================
   4. SOCIAL PROOF (CAROUSEL)
   ========================================================================== */
.testimonial-carousel-wrapper {
    margin-top: 40px;
    padding: 20px 0 60px; /* Space for pagination */
    position: relative;
}

.testimonial-card {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: left;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%; /* Ensure all cards have same height in carousel */
    display: flex;
    flex-direction: column;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.05);
}

.review-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 24px;
    color: #e2e8f0;
    flex-grow: 1; /* Push reviewer to bottom */
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.r-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.r-info strong {
    display: block;
    color: white;
}

.r-info span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Swiper Controls */
.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 30px;
    border-radius: 5px;
}

.testimonial-next,
.testimonial-prev {
    color: var(--secondary) !important;
    background: rgba(255, 255, 255, 0.05);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    top: 50% !important;
    transform: translateY(-50%);
}

.testimonial-next:after,
.testimonial-prev:after {
    font-size: 18px !important;
    font-weight: 900;
}

.testimonial-next:hover,
.testimonial-prev:hover {
    background: var(--secondary);
    color: var(--primary) !important;
}

.testimonial-prev {
    left: -70px !important;
}

.testimonial-next {
    right: -70px !important;
}

/* Responsive arrows */
@media (max-width: 1350px) {
    .testimonial-prev {
        left: 10px !important;
    }
    .testimonial-next {
        right: 10px !important;
    }
    .testimonial-carousel-wrapper {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 768px) {
    .testimonial-next,
    .testimonial-prev {
        display: none !important; /* Hide arrows on mobile, use swipe */
    }
    .testimonial-carousel-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ==========================================================================
   5. OFFER SECTION
   ========================================================================== */
.offer-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.offer-content {
    flex: 1.2;
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.offer-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.offer-checklist li {
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-checklist i {
    color: var(--accent-wa);
    font-size: 1.25rem;
}

/* ==========================================================================
   CONTENT WIDGET
   ========================================================================== */
.hekrown-content-section {
    position: relative;
    background: var(--bg-light);
}

.content-body-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: left;
}

.content-body-card .content-list-label {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.content-body-card .content-list {
    margin-left: 20px;
    margin-bottom: 2rem;
}

.content-body-card .content-list li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: var(--text-main);
    padding-left: 5px;
}

.content-body-card .content-conclusion {
    font-size: 1.125rem;
    color: var(--text-heading);
    margin: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.offer-bonus {
    flex: 0.8;
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
}

.offer-bonus h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.bonus-list {
    margin-bottom: 30px;
}

.bonus-list li {
    margin-bottom: 16px;
    font-size: 1.125rem;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.glass-card-dark::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: var(--secondary);
    z-index: -1;
    border-radius: var(--radius-lg);
    filter: blur(40px);
}

/* ==========================================================================
   6. PORTFOLIO SECTION
   ========================================================================== */
.portfolio-showcase {
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: inline-block;
    max-width: 100%;
    margin-bottom: 30px;
}

.portfolio-main-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

/* ==========================================================================
   7. PROCESS SECTION
   ========================================================================== */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
}

.step-connector {
    margin-top: 35px;
    font-size: 1.5rem;
    color: var(--border-color);
}

.process-close {
    font-size: 1.25rem;
    color: var(--primary);
    background: rgba(34, 197, 94, 0.1);
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
}

/* ==========================================================================
   8. PRICING SECTION
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Popular Card */
.pricing-card-popular {
    border-color: var(--primary);
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.12);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card-popular:hover {
    transform: scale(1.03) translateY(-6px);
}

.popular-badge {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-heading);
}

.pricing-header {
    padding: 32px 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.plan-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.plan-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.pricing-body {
    padding: 24px 28px;
    flex: 1;
}

.includes-badge {
    background: rgba(234, 179, 8, 0.12);
    color: var(--secondary-hover);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.includes-badge i {
    font-size: 0.7rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #16a34a;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.pricing-footer {
    padding: 20px 28px 28px;
}

/* ---- Comparison Table ---- */
.comparison-section {
    margin-top: 20px;
}

.comparison-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 30px;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    background: var(--bg-white);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 700px;
}

.comparison-table thead th {
    background: var(--primary);
    color: white;
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 5;
}

.comparison-table thead th.feature-col {
    text-align: left;
    width: 35%;
}

.comparison-table thead th.popular-col {
    background: var(--secondary);
    color: var(--primary);
}

.comparison-table tbody td {
    padding: 12px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-heading);
}

.comparison-table tbody tr:hover {
    background: rgba(234, 179, 8, 0.04);
}

.category-row td {
    background: var(--bg-light) !important;
    font-family: var(--font-heading);
    font-weight: 700 !important;
    font-size: 0.85rem;
    color: var(--primary) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px !important;
}

.comparison-table .fa-circle-check {
    color: #16a34a;
    font-size: 1.1rem;
}

.comparison-table .fa-xmark.dim {
    color: #d1d5db;
    font-size: 1rem;
}

/* ==========================================================================
   9. FAQ SECTION
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

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

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-main);
}

.faq-item.active .faq-question {
    color: var(--primary);
    background: rgba(15, 23, 42, 0.02);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    /* arbitrary large number */
    background: rgba(15, 23, 42, 0.02);
}

/* ==========================================================================
   9. FINAL CTA SECTION
   ========================================================================== */
.final-cta {
    background-color: var(--primary);
    padding: 100px 0;
    color: white;
    background-image: radial-gradient(circle at center, var(--primary-light) 0%, var(--primary) 100%);
}

.final-cta h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.urgency {
    color: var(--secondary) !important;
    font-weight: 600;
    font-size: 1rem !important;
    margin: 0 !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #020617;
    /* Very dark blue */
    padding: 40px 0;
    color: #cbd5e1;
}

.footer .logo {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer p {
    font-size: 0.9rem;
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-wa);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: var(--accent-wa-hover);
}

/* ==========================================================================
   ANIMATIONS & UTILITIES
   ========================================================================== */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@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);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Base state for scroll animations */
[data-scroll] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll="fade-up"] {
    transform: translateY(40px);
}

[data-scroll="fade-down"] {
    transform: translateY(-40px);
}

[data-scroll="fade-left"] {
    transform: translateX(50px);
}

[data-scroll="fade-right"] {
    transform: translateX(-50px);
}

[data-scroll="zoom-in"] {
    transform: scale(0.9);
}

/* Active state triggered by JS */
[data-scroll].is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Initial enter animations */
.animate-fade-up {
    animation: fadeUp 0.8s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 992px) {

    .hero-container,
    .problem-container,
    .offer-wrapper {
        flex-direction: column;
    }

    .hero {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .review-badges-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .review-badge-card {
        min-width: 120px;
        padding: 10px 14px;
    }

    .client-logos-label {
        padding-right: 30px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: 0;
    }

    .offer-checklist {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    /* Mobile menu toggle logic could go here */
}

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

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

    .hero-actions {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .cta-banner-small {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .final-cta h2 {
        font-size: 2.25rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .review-badge-card {
        min-width: 100px;
        padding: 8px 10px;
    }

    .review-platform-name {
        font-size: 1rem;
    }

    .review-rating {
        font-size: 1.1rem;
    }

    .review-count {
        font-size: 0.6rem;
    }

    .marquee-item img {
        height: 42px;
    }

    .review-badges-overlay {
        margin-top: -40px;
        width: 100%;
    }

    .client-logos-label {
        display: none;
    }

    .highlight::after {
        display: none !important;
    }

    .pricing-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .popular-badge {
        width: 100%;
    }
}