
/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    /* Colors */
    --primary: #0D5C5C;
    --primary-dark: #073838;
    --accent: #C8F560;
    --accent-hover: #b4e04a;
    --white: #ffffff;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --text-main: #111827;

    /* 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);

    /* Border Radius */
    --radius-md: 0.5rem;
    --radius-lg: 1rem;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-4 { gap: 2rem; }
.gap-8 { gap: 4rem; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

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

.hidden-mobile { display: none !important; }

@media (min-width: 768px) {
    .hidden-mobile { display: block !important; }
    a.btn.hidden-mobile { display: inline-block !important; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 245, 96, 0.3);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Transparent button variant for navbar */
.btn-transparent {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-transparent:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
section {
    padding: 5rem 0;
}

.badge {
    display: inline-block;
    background-color: rgba(13, 92, 92, 0.1);
    color: var(--primary);
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--primary-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
    padding: 6px;
    border-radius: 50%;
    font-size: 0.9rem;
}

.nav-links {
    display: none;
    gap: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.nav-links a:hover {
    color: var(--accent);
}

.hamburger {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--primary-dark);
    padding: 1.5rem;
    position: absolute;
    top: 100%;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
}

.mobile-menu ul li a {
    display: block;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: var(--accent);
}

/* Mobile menu CTA button */
.mobile-menu-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark) !important;
    padding: 0.875rem 1.5rem !important;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600 !important;
    margin-top: 0.5rem;
}

.mobile-menu-cta:hover {
    background: var(--accent-hover);
    color: var(--primary-dark) !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, #063636 0%, #0a4a4a 30%, #0d5c5c 60%, #0f6666 100%);
    color: var(--white);
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

/* Base grid pattern with subtle 3D effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Horizontal lines with varying opacity for depth */
        linear-gradient(0deg, transparent 0%, transparent 49%, rgba(255, 255, 255, 0.06) 49%, rgba(255, 255, 255, 0.06) 51%, transparent 51%, transparent 100%),
        /* Vertical lines with varying opacity for depth */
        linear-gradient(90deg, transparent 0%, transparent 49%, rgba(255, 255, 255, 0.06) 49%, rgba(255, 255, 255, 0.06) 51%, transparent 51%, transparent 100%);
    background-size: 80px 80px;
    pointer-events: none;
}

/* Colored highlight squares with 3D depth effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Accent colored squares - brighter, closer feel */
        radial-gradient(circle at center, rgba(200, 245, 96, 0.25) 0%, rgba(200, 245, 96, 0.15) 40%, transparent 70%),
        radial-gradient(circle at center, rgba(200, 245, 96, 0.2) 0%, rgba(200, 245, 96, 0.1) 40%, transparent 70%),
        radial-gradient(circle at center, rgba(200, 245, 96, 0.18) 0%, rgba(200, 245, 96, 0.08) 40%, transparent 70%),
        /* Lighter teal squares - mid distance */
        radial-gradient(circle at center, rgba(100, 200, 200, 0.15) 0%, rgba(100, 200, 200, 0.08) 40%, transparent 70%),
        radial-gradient(circle at center, rgba(100, 200, 200, 0.12) 0%, rgba(100, 200, 200, 0.06) 40%, transparent 70%),
        /* Subtle white squares - further away feel */
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 40%, transparent 70%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 70%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 70%),
        /* Dark depth squares - recessed look */
        radial-gradient(circle at center, rgba(0, 40, 40, 0.3) 0%, rgba(0, 40, 40, 0.15) 40%, transparent 70%),
        radial-gradient(circle at center, rgba(0, 40, 40, 0.25) 0%, rgba(0, 40, 40, 0.12) 40%, transparent 70%);
    background-size:
        80px 80px, 80px 80px, 80px 80px,
        80px 80px, 80px 80px,
        80px 80px, 80px 80px, 80px 80px,
        80px 80px, 80px 80px;
    background-position:
        40px 80px,
        280px 160px,
        600px 80px,
        120px 240px,
        520px 320px,
        200px 0px,
        440px 240px,
        680px 160px,
        360px 80px,
        160px 320px;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.9;
}

/* Content overlay for better text readability */
.hero .container {
    position: relative;
}

.hero .container::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -5%;
    right: -5%;
    bottom: -2rem;
    background: radial-gradient(ellipse at center, rgba(7, 56, 56, 0.4) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    margin-left: -12px;
}

.avatars img:first-child {
    margin-left: 0;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2.5rem;
    font-size: 2.5rem;
}

.payment-icons .guarantee-badge {
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
}

.payment-icons .guarantee-badge i {
    margin-right: 6px;
    opacity: 0.85;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
}

.stat-item h4 {
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.7;
    color: var(--white);
}

/* ==========================================================================
   Lead Form
   ========================================================================== */
.lead-form {
    background: rgba(7, 56, 56, 0.85);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    line-height: 1.2;
}

.form-header h3 .highlight {
    color: var(--accent);
    font-weight: 800;
}

.form-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(200, 245, 96, 0.2);
}

.phone-input-wrapper {
    position: relative;
}

.flag-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
}

.phone-input-wrapper input {
    padding-left: 3.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.25rem;
}

.lead-form .btn-primary {
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

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

/* Step Number */
.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 0 var(--radius-lg) 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Step Connector Arrow */
.step-connector {
    display: none;
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 32px;
    z-index: 5;
    color: var(--primary);
    font-size: 1.25rem;
    align-items: center;
    justify-content: center;
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-200), var(--primary));
    transform: translateY(-50%);
    z-index: -1;
}

.step-connector i {
    background: var(--white);
    padding: 0 4px;
}

.step-card:last-child .step-connector {
    display: none !important;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 245, 96, 0.2);
    color: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: rgba(200, 245, 96, 0.4);
    transform: scale(1.05);
}

.step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    white-space: nowrap;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ==========================================================================
   Split Sections (Job/Investment Scams)
   ========================================================================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.content-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--gray-800);
}

.content-checklist i {
    color: var(--primary);
    margin-top: 4px;
}

/* Dashboard Mockups */
.mockup-container {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.mockup-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    margin-top: 1rem;
}

.bar {
    width: 100%;
    background: var(--gray-200);
    border-radius: 4px 4px 0 0;
}

.bar.fill {
    background: var(--primary);
}

.bar.fill-accent {
    background: var(--accent);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FBBF24;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.quote {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--gray-600);
}

.user-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.user-details h5 {
    font-size: 0.9rem;
    font-weight: 700;
}

.user-details span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ==========================================================================
   Bento Grid Section
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.bento-box {
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.bento-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.bento-box p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* Bento Box Colors */
.bento-teal {
    background: var(--primary);
    color: var(--white);
}

.bento-lime {
    background: #f0fdf4;
    color: var(--text-main);
}

.bento-peach {
    background: #fef3e7;
    color: var(--text-main);
}

.bento-gray {
    background: var(--gray-100);
    color: var(--text-main);
}

/* Box 1: Our Goal with Credit Cards */
.bento-teal .bento-content {
    max-width: 55%;
}

.bento-teal .btn {
    margin-top: 1.5rem;
}

.bento-cards-visual {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 280px;
    height: 200px;
}

.credit-card {
    position: absolute;
    width: 200px;
    height: 130px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-back {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    transform: rotate(-8deg);
    bottom: 30px;
    right: 60px;
}

.card-back::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    border-radius: 4px;
}

.card-back::after {
    content: '••••';
    position: absolute;
    bottom: 25px;
    left: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    letter-spacing: 4px;
}

.card-front {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    transform: rotate(5deg);
    bottom: 10px;
    right: 20px;
}

.card-front::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 25px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='12' r='6' fill='%23eb001b'/%3E%3Ccircle cx='16' cy='12' r='6' fill='%23f79e1b'/%3E%3Cpath d='M12 7.5a6 6 0 0 0 0 9' fill='%23ff5f00'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.card-front::after {
    content: '1602  0911  2019  2021';
    position: absolute;
    top: 55px;
    left: 20px;
    color: #333;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-family: monospace;
}

/* Box 2: Track Recovery */
.bento-lime .bento-stat {
    margin-top: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.bento-lime .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e07850;
}

.bento-lime .stat-label {
    font-size: 1rem;
    color: var(--gray-600);
}

/* Box 3: Network Visual */
.bento-peach {
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.bento-peach h3,
.bento-gray h3 {
    margin-top: auto;
    margin-bottom: 0;
    text-align: center;
}

.network-visual {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Dashed connection lines SVG */
.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.network-lines line {
    stroke: #555;
    stroke-width: 1.5;
    stroke-dasharray: 6, 4;
}

img.network-node {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    background: #fff;
}

/* Center logo icon */
.network-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(13, 92, 92, 0.4);
}

.network-center-icon i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Box 4: Growth Graph */
.bento-gray {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 320px;
}

.bento-gray h3 {
    margin-top: auto;
}

.growth-graph-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.graph-label-y {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.growth-graph {
    width: 100%;
    height: 120px;
    margin-top: 2rem;
}

/* Grid lines */
.graph-grid {
    stroke: #ddd;
    stroke-width: 1;
}

/* Area under the curve */
.graph-area {
    fill: rgba(13, 92, 92, 0.15);
}

/* Main line */
.graph-line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Data points */
.graph-point {
    fill: var(--primary);
}

.graph-point-end {
    fill: var(--accent);
    stroke: var(--primary);
    stroke-width: 2;
}

/* X-axis labels */
.graph-labels-x {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding: 0 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: var(--text-main);
    font-family: inherit;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--gray-600);
}

.accordion-content p {
    padding-bottom: 1.25rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-box {
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    background-image:
        radial-gradient(circle at top right, rgba(200, 245, 96, 0.1), transparent 30%),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 51px);
    position: relative;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: var(--white);
    color: var(--gray-600);
    padding: 1.5rem 0;
    font-size: 0.9rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 3.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: var(--gray-600);
    transition: color 0.3s ease;
}

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

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease-out;
}

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

/* ==========================================================================
   Mobile-First Hero Optimizations
   ========================================================================== */

/* Mobile extras section - hidden on desktop */
.hero-mobile-extras {
    display: none;
}

@media (max-width: 767px) {
    .hero {
        padding-top: 5.5rem;
        padding-bottom: 4rem;
        min-height: auto;
    }

    .hero-grid {
        gap: 1.25rem;
    }

    /* Center trust badges on mobile */
    .trust-badges {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .avatars img {
        width: 32px;
        height: 32px;
    }

    /* Larger h1 but still 3 lines */
    .hero-content h1 {
        font-size: 2.05rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    /* Hide subtitle on mobile */
    .hero-subtitle-desktop {
        display: none;
    }

    /* Hide desktop stats and payment icons */
    .hero-stats-desktop,
    .payment-icons-desktop {
        display: none;
    }

    /* Show mobile extras below form */
    .hero-mobile-extras {
        display: block;
        margin-top: 2rem;
        position: relative;
        z-index: 2;
    }

    .hero-mobile-extras .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .hero-mobile-extras .stat-item h4 {
        font-size: 1.75rem;
    }

    .hero-mobile-extras .stat-item p {
        font-size: 0.8rem;
    }

    .hero-mobile-extras .payment-icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 2rem;
    }

    .hero-mobile-extras .guarantee-badge {
        font-size: 0.85rem;
    }

    /* Compact form on mobile */
    .lead-form {
        padding: 1.5rem;
    }

    .form-header h3 {
        font-size: 1.25rem;
    }

    .form-header p {
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 0.875rem;
    }

    .form-input {
        padding: 0.875rem 1rem;
    }

    .lead-form .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .disclaimer {
        margin-top: 0.75rem;
        font-size: 0.8rem;
    }

    /* Fix bento-teal box on mobile */
    .bento-teal {
        padding-bottom: 100px;
        overflow: hidden;
    }

    .bento-teal .bento-content {
        max-width: 100%;
    }

    .bento-cards-visual {
        position: absolute;
        right: 50%;
        bottom: -80px;
        transform: translateX(50%);
        width: 320px;
        height: 200px;
    }

    .bento-cards-visual .credit-card {
        width: 200px;
        height: 130px;
    }

    .bento-cards-visual .card-back {
        right: 80px;
        bottom: 30px;
    }

    .bento-cards-visual .card-front {
        right: 30px;
        bottom: 0;
    }
    #final-cta h2 {
        line-height: 1.25!important;
        font-size: 1.85rem!important;
    }
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (min-width: 768px) {
    .hero {
        padding-top: 8rem;
        padding-bottom: 5rem;
        min-height: auto;
    }

    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
        gap: 4rem;
    }

    .hero-content h1 {
        font-size: 3.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        display: grid;
    }

    .payment-icons {
        display: flex;
    }

    .stat-item h4 {
        font-size: 3rem;
    }

    .lead-form {
        padding: 3rem;
    }

    .form-header h3 {
        font-size: 1.75rem;
        line-height: 1.15;
    }

    .form-header p {
        margin-bottom: 2rem;
    }

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

    .split-section {
        grid-template-columns: 1fr 1fr;
    }

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

    /* Bento Grid - Tablet */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }

    .bento-large {
        grid-column: span 1;
    }

    .bento-teal .bento-content {
        max-width: 100%;
    }

    .bento-cards-visual {
        display: none;
    }

    .faq-layout {
        grid-template-columns: 1fr 2fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }

    .step-connector {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .payment-icons {
        font-size: 3rem;
    }

    /* Bento Grid - Desktop */
    .bento-grid {
        grid-template-columns: 1.5fr 1fr;
        grid-template-rows: auto auto;
    }

    .bento-box {
        padding: 2.5rem;
    }

    .bento-box h3 {
        font-size: 1.5rem;
    }

    .bento-teal .bento-content {
        max-width: 55%;
    }

    .bento-cards-visual {
        display: block;
    }

    .bento-peach,
    .bento-gray {
        min-height: 360px;
    }

    /* Reorder grid items for desktop layout */
    .bento-teal { order: 1; }
    .bento-lime { order: 2; }
    .bento-peach { order: 3; }
    .bento-gray { order: 4; }
}
