/* Base Styles & Reset */
:root {
    --primary: #4285F4;            /* Google Blue */
    --primary-dark: #3367D6;       /* Darker Google Blue */
    --secondary: #34A853;          /* Google Green */
    --secondary-dark: #288C42;     /* Darker Google Green */
    --accent: #FBBC05;             /* Google Yellow/Gold */
    --highlight-red: #EA4335;       /* Google Red */
    --light: #f8fafc;
    --dark: #3c3c3c;               /* Dark Gray for text */
    --gray: #a0aec0;
    --light-gray: #e2e8f0;
    --success: var(--secondary);     /* Consistent with new green */
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --logo-blue: #1A73E8;
    --logo-green: #0F9C58;
    --logo-yellow: #F7B415;
    --logo-red: #EA4335;
    --logo-navy: #1A2E4A;
}

html {
    scroll-behavior: smooth;
    position: relative;
    height: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent pull-to-refresh and overscroll on mobile */
@media screen and (max-width: 768px) {
    html, body {
        overscroll-behavior: none;
        overscroll-behavior-y: none;
        overflow-x: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    body {
        position: fixed;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    /* Ensure content is scrollable but container is fixed */
    #root, main {
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

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

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

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 20px;
}

/* Header/Navigation - Refined */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

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

.logo {
    max-width: 160px;
    height: auto;
    transition: all 0.3s ease;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.chat-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.chat-button:hover .whatsapp-icon {
    transform: scale(1.1);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Header States */
.header.scrolling {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.header.scrolling .logo {
    max-width: 140px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .logo {
        max-width: 130px;
    }

    .chat-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }

    .hamburger-menu {
        display: flex;
        margin-left: 15px;
    }
}

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

    .logo {
        max-width: 120px;
    }

    .chat-button span {
        display: none;
    }

    .chat-button {
        padding: 8px;
        border-radius: 50%;
        aspect-ratio: 1;
    }

    .whatsapp-icon {
        margin: 0;
    }
}

/* Buttons */
.cta-button {
    display: inline-flex;
    background: linear-gradient(135deg, #34c759 0%, #1f8d39 100%);
    color: white;
    padding: 18px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(52,199,89,0.3);
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(52,199,89,0.4);
}

.cta-button-secondary {
    background-color: var(--secondary);
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.cta-button-secondary:hover {
    background-color: var(--secondary-dark);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

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

.hero-cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-cta-group .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
}

/* Hero Section - Redesigned */
.hero {
    position: relative;
    padding: 140px 0 80px; /* Increased top padding to account for header */
    background: linear-gradient(180deg, rgba(248, 250, 255, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.shape-1 {
    background: linear-gradient(135deg, #4285F4, #34A853);
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.shape-2 {
    background: linear-gradient(135deg, #FBBC05, #EA4335);
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: -200px;
}

.shape-3 {
    background-color: rgba(66, 133, 244, 0.1);
    width: 200px;
    height: 200px;
    top: 40%;
    right: 15%;
}

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

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1A2E4A;
}

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

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(66, 133, 244, 0.1);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: #4A5568;
    max-width: 650px;
    margin: 0 auto 40px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: #4A5568;
    text-align: center;
}

/* Hero CTA */
.hero-cta {
    margin: 40px 0;
}

.hero-cta .cta-button {
    font-size: 1.2rem;
    padding: 18px 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.25);
}

/* Calculator Card - Redesigned */
.calculator-wrapper {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.calculator-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.calculator-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 25px 30px;
    text-align: center;
}

.calculator-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
}

.calculator-fields {
    padding: 30px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px; /* Adjusted for mobile */
    }

    .hero h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }

    .trust-item {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .trust-number {
        font-size: 1.8rem;
    }

    .hero-cta .cta-button {
        width: calc(100% - 40px);
        margin: 0 20px;
        justify-content: center;
        font-size: 1.1rem;
        padding: 16px 24px;
    }

    .calculator-wrapper {
        padding: 0 15px;
    }

    .calculator-card {
        border-radius: 16px;
    }

    .calculator-header {
        padding: 20px;
    }

    .calculator-header h2 {
        font-size: 1.5rem;
    }

    .calculator-fields {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        padding: 0 10px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 15px;
    }

    .trust-number {
        font-size: 1.6rem;
    }

    .trust-label {
        font-size: 0.85rem;
    }
}

/* Features and Benefits */
.hero-features-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-features-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4285F4, #34A853, #FBBC05, #EA4335);
    border-radius: 4px 0 0 4px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #3d4852;
}

.partner-logos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 300px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 30px;
}

.partner-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748B;
    margin-bottom: 15px;
    font-weight: 600;
}

.logos-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
}

.logos-container img {
    height: 35px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.logos-container img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Calculator Card */
.calculator-wrapper {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.calculator-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.calculator-header {
    background: linear-gradient(135deg, #4285F4, #3367D6);
    padding: 25px 30px;
    color: white;
    position: relative;
}

.calculator-header h2 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.calculator-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
}

.calculator-fields {
    padding: 30px;
}

.calculator-label {
    font-weight: 500;
    font-size: 0.95rem;
    color: #4A5568;
    margin-bottom: 8px;
    display: block;
}

.form-input,
.spend-range-dropdown {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2D3748;
    background-color: #F8FAFC;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234A5568'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-input:focus,
.spend-range-dropdown:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
    background-color: white;
}

.calculator-result {
    background-color: #F8FAFC;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.result-label {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 5px;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #38A169;
    display: block;
}

.value-update {
    animation: valueUpdate 0.4s ease-out;
}

@keyframes valueUpdate {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.calculator-cta {
    width: 100%;
    background: linear-gradient(135deg, #34c759, #1f8d39);
    padding: 16px;
    font-size: 1.05rem;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.calculator-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(52, 199, 89, 0.25);
}

.calculator-cta svg {
    transition: transform 0.3s ease;
}

.calculator-cta:hover svg {
    transform: translateX(4px);
}

.trustpilot {
    padding: 15px 30px;
    border-top: 1px solid #EDF2F7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #F8FAFC;
}

.stars {
    color: #00B67A;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.trustpilot-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: #4A5568;
}

/* Mobile responsiveness for hero section */
@media (max-width: 992px) {
    .hero {
        padding: 80px 20px 70px;
    }
    
    .hero-features-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 25px;
    }
    
    .hero-features {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
    
    .partner-logos {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
        align-items: center;
        max-width: none;
    }
    
    .logos-container {
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 20px 60px;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .logos-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-header {
        padding: 20px 25px;
    }
    
    .calculator-fields {
        padding: 25px;
    }
    
    .calculator-header h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 15px 50px;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features-wrapper {
        padding: 20px;
        gap: 30px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .calculator-card {
        border-radius: 12px;
    }
    
    .calculator-header {
        padding: 18px 20px;
    }
    
    .calculator-fields {
        padding: 20px;
    }
    
    .result-value {
        font-size: 1.6rem;
    }
    
    .calculator-cta {
        font-size: 1rem;
        padding: 14px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.section-header p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--secondary);
}

/* Intro Section */
.intro {
    background-color: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.intro-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

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

.intro-icon {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 85, 255, 0.1);
    border-radius: 50%;
}

.intro-icon img {
    width: 35px;
    height: 35px;
}

.intro-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Why Sell Section - Redesigned */
.why-sell {
    background: linear-gradient(180deg, #fff 0%, rgba(248, 250, 255, 0.9) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.1));
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.blue-gradient {
    background: linear-gradient(135deg, #4285F4, #3367D6);
}

.green-gradient {
    background: linear-gradient(135deg, #34A853, #288C42);
}

.yellow-gradient {
    background: linear-gradient(135deg, #FBBC05, #F57C00);
}

.feature-text h3 {
    color: #1A2E4A;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-text p {
    color: #4A5568;
    line-height: 1.7;
    font-size: 1rem;
}

.feature-stats {
    display: flex;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
}

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

.cta-wrapper .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.2);
}

.cta-wrapper .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(66, 133, 244, 0.3);
}

.cta-wrapper .cta-button svg {
    transition: transform 0.3s ease;
}

.cta-wrapper .cta-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .why-sell {
        padding: 80px 0;
    }

    .features-grid {
        gap: 25px;
    }

    .feature-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .why-sell {
        padding: 60px 0;
    }

    .feature-card {
        padding: 25px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .feature-text h3 {
        font-size: 1.3rem;
    }

    .stat-value {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .why-sell {
        padding: 50px 0;
    }

    .feature-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .cta-wrapper .cta-button {
        width: calc(100% - 40px);
        justify-content: center;
        padding: 16px 24px;
    }
}

/* Media queries for the features section */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-sell {
        padding: 60px 0;
    }
    
    .features-container {
        gap: 20px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon img {
        width: 35px;
        height: 35px;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .why-sell .cta-button {
        margin-top: 35px;
    }
}

@media (max-width: 576px) {
    .why-sell {
        padding: 50px 0;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
}



/* Testimonials Section - Fixed */
.testimonials {
    background-color: #f9f9f9;
    padding: 80px 0;
    overflow: hidden;
}

.testimonial-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1A2E4A;
}

.testimonial-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%; /* Accommodate 3 cards */
}

.testimonial-card {
    flex: 0 0 33.333%; /* Each card takes up 1/3 of track width */
    width: 33.333%;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testimonial-card.active {
    opacity: 1;
}

.star-rating {
    color: #FBBC05;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
    margin-right: 15px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: #2D3748;
    font-size: 1.1rem;
    margin: 0;
}

.author-title {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

/* Carousel Navigation */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #4A5568;
}

.carousel-arrow:hover {
    background: #4285F4;
    color: white;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4285F4;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-carousel-container {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .testimonial-carousel-container {
        padding: 0 30px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f5f1fc;
}

.faq-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #000;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    flex: 1;
    padding-right: 20px;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    color: #777;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .faq-container {
        padding: 0 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq {
        padding: 50px 0;
    }

    .faq-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* Contact Section - Mobile Optimized */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f8ff 0%, #e6efff 100%);
    position: relative;
    overflow: hidden;
}

/* Mobile Quick Actions - Only visible on mobile */
.mobile-quick-actions {
    display: none;
    gap: 12px;
    margin: 20px auto;
    padding: 0 15px;
    max-width: 400px;
}

.quick-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #2D3748;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.quick-action.telegram {
    border: 1px solid rgba(66, 133, 244, 0.2);
}

.quick-action.whatsapp {
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.quick-action img {
    width: 24px;
    height: 24px;
}

.quick-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

/* Form Styles */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    color: #1A2E4A;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-header p {
    color: #4A5568;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2D3748;
    margin-bottom: 8px;
}

.input-with-note {
    position: relative;
}

.input-note {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #718096;
    pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #F8FAFC;
    font-size: 1rem;
    color: #2D3748;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
    background: #fff;
}

/* Custom select styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%234A5568'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px !important;
}

/* Submit Button */
.contact-form .cta-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #4285F4, #3367D6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.25);
}

.contact-form .cta-button svg {
    transition: transform 0.3s ease;
}

.contact-form .cta-button:hover svg {
    transform: translateX(4px);
}

/* Info Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    color: #1A2E4A;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F4F8;
}

.benefits-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefits-list span {
    color: #4A5568;
    font-size: 1rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-method img {
    width: 24px;
    height: 24px;
}

.method-info {
    flex: 1;
}

.method-label {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.method-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2D3748;
    margin: 0;
}

/* Urgency Box */
.urgency-box {
    background: linear-gradient(135deg, rgba(251, 188, 5, 0.1), rgba(234, 67, 53, 0.1));
    border-radius: 16px;
    padding: 5px;
    overflow: hidden;
}

.urgency-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.urgency-icon {
    font-size: 24px;
    line-height: 1;
}

.urgency-text h4 {
    color: #EA4335;
    font-size: 1.1rem;
    margin: 0 0 8px 0;
}

.urgency-text p {
    color: #4A5568;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        order: -1; /* Form first on mobile */
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .mobile-quick-actions {
        display: flex;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    .form-header p {
        font-size: 1rem;
    }

    .info-card {
        padding: 25px;
    }

    .benefits-list li {
        padding: 10px 0;
    }

    .contact-method {
        padding: 15px;
    }

    .urgency-content {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 40px 0;
    }

    .contact-container {
        margin-top: 30px;
        gap: 25px;
    }

    .contact-form {
        padding: 25px 15px;
        border-radius: 16px;
    }

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

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .input-note {
        display: none;
    }

    .contact-form .cta-button {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .info-card {
        padding: 20px;
    }

    .benefits-list span {
        font-size: 0.9rem;
    }

    .method-value {
        font-size: 1rem;
    }

    .urgency-text h4 {
        font-size: 1rem;
    }

    .urgency-text p {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background-color: #ffffff;
    color: #333;
    padding: 50px 0 30px;
    border-top: 1px solid #f0f0f0;
}

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

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    max-width: 150px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.company-description {
    font-size: 14px;
    color: #777;
    line-height: 1.4;
    margin-top: 5px;
}

.footer-certificates {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-certificates img {
    height: 40px;
    object-fit: contain;
}

.footer-company-info {
    margin-bottom: 30px;
}

.company-address {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.address-icon {
    color: #666;
    margin-top: 3px;
}

.footer-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 20px 0;
}

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

.copyright {
    font-size: 14px;
    color: #999;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4285F4;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-certificates {
        margin-top: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-certificates {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .footer-certificates img {
        height: 35px;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.whatsapp-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

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

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

/* Media Queries */
@media (max-width: 992px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .hero-overlay-text {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: -20px auto 30px auto;
        text-align: center;
        padding: 15px 20px;
        max-width: 80%;
        border-left-width: 3px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-list.active {
        transform: translateY(0);
    }
    
    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid var(--light-gray);
    }
    .nav-list li:last-child a {
        border-bottom: none;
    }

    .nav-list .nav-cta {
        margin: 10px 20px;
        padding: 12px 20px;
    }
    
    .mobile-toggle {
        display: block;
        padding: 10px;
        width: 44px;
        height: 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .footer-content,
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .requirements-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }
    
    .intro-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta-group .cta-button {
        width: 100%;
        margin-bottom: 10px;
    }
    .hero-cta-group .cta-button:last-child {
        margin-bottom: 0;
    }

    .hero-trust-badges {
        gap: 8px;
    }
    .trust-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-group input, .form-group textarea, .form-group select {
        padding: 14px;
    }

    .footer-column h4 {
        margin-bottom: 15px;
    }
    .footer-column ul li {
        margin-bottom: 8px;
    }
    .footer-column a {
        padding: 5px 0;
        display: inline-block;
    }

    .pricing-table {
        font-size: 0.9rem;
        box-shadow: none;
        border-radius: 0;
    }

    .pricing-header {
        display: none;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        margin-bottom: 15px;
        border-radius: var(--border-radius);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        overflow: hidden;
        border-bottom: none;
    }

    .pricing-row:nth-child(odd) {
        background-color: white;
    }
    .pricing-row:nth-child(even) {
        background-color: var(--light);
    }

    .pricing-col {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid var(--light-gray);
        display: flex;
        justify-content: space-between;
    }
    
    .pricing-col:last-child {
      border-bottom: none;
    }

    .pricing-col::before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: 10px;
        color: var(--primary);
    }

    .pricing-row .pricing-col:nth-child(1)::before {
        content: "Ad Spend: ";
    }
    .pricing-row .pricing-col:nth-child(2)::before {
        content: "Account Age: ";
    }
    .pricing-row .pricing-col:nth-child(3)::before {
        content: "You Get: ";
    }

    .pricing-col.highlight {
    }

    h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    h3 {
        font-size: clamp(1.15rem, 4vw, 1.5rem);
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-content h1 {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.15rem);
        line-height: 1.65;
        margin-bottom: 25px;
    }

    .dashboard-image {
        transform: perspective(800px) rotateY(0deg);
        box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
    }

    .hero-image:hover .dashboard-image {
        transform: perspective(800px) rotateY(0deg);
    }

    .hero-overlay-text {
        padding: 12px 18px;
        max-width: 90%;
        margin: -15px auto 25px auto;
        gap: 6px;
    }
    .metrics-highlight {
        font-size: 1rem;
    }
    .comparison-text {
        font-size: 0.9rem;
    }

}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 30px 0;
}

.form-success h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Mobile Sticky CTA */
.mobile-cta {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--light, #f8fafc); /* Fallback color */
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    z-index: 998; /* Below WhatsApp button (999) and header (1000) but above most content */
    border-top: 1px solid var(--light-gray, #e2e8f0);
}

.mobile-cta .cta-button {
    width: 100%;
    padding: 15px; /* Adjust padding if needed for mobile CTA */
    font-size: 1.1rem; /* Adjust font size if needed */
}

@media (max-width: 768px) { /* Or your preferred mobile breakpoint */
    .mobile-cta {
        display: block; /* Show on mobile */
    }

    body {
        padding-bottom: 80px; /* Add padding to body to prevent content from being hidden by sticky CTA */
                               /* Adjust this value based on the actual height of .mobile-cta */
    }

    /* Other mobile styles from previous steps... */
}

/* Statistics Section */
.stats-section {
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(248, 250, 255, 0.9) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.stats-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
    border-radius: 4px 4px 0 0;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
}

.stat-item {
    flex: 1 1 220px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-width: 220px;
    position: relative;
    padding: 10px 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.stat-icon-wrapper {
    flex-shrink: 0;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    z-index: 0;
}

.dollar-icon {
    color: #FBBC05;
}

.dollar-icon::before {
    background: linear-gradient(135deg, #FBBC05, #F57C00);
}

.ad-icon {
    color: #4285F4;
}

.ad-icon::before {
    background: linear-gradient(135deg, #4285F4, #3367D6);
}

.client-icon {
    color: #34A853;
}

.client-icon::before {
    background: linear-gradient(135deg, #34A853, #2E7D32);
}

.account-icon {
    color: #9C27B0;
}

.account-icon::before {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-value {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.1;
    color: #2D3748;
    background: linear-gradient(to right, #2D3748, #4A5568);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #718096;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .stats-wrapper {
        padding: 30px 20px;
    }
    
    .stats-container {
        gap: 25px;
    }
    
    .stat-item {
        flex: 1 1 45%;
        min-width: 180px;
    }
    
    .stat-item:nth-child(2n)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 50px 0 60px;
    }
    
    .stats-wrapper {
        padding: 25px 15px;
    }
    
    .stats-container {
        gap: 30px 0;
    }
    
    .stat-item {
        flex: 1 1 100%;
        justify-content: flex-start;
        align-items: center;
        padding: 5px 10px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-value {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 40px 0 50px;
    }
    
    .stat-item {
        gap: 15px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(245,245,255,0.98), rgba(255,255,255,0.95));
    max-width: 800px;
    margin: 20px auto 0;
    border-radius: 12px;
    padding: 2px;
    position: relative;
    z-index: 10;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.urgency-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
    z-index: 1;
}

.urgency-content {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    position: relative;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #36B37E;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}

.pulse-dot:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #36B37E;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.8;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(2.5);
        opacity: 0;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.urgency-message {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    flex-grow: 1;
}

.urgency-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #EA4335;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.urgency-text {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.urgency-timer {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4285F4;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .urgency-banner {
        max-width: 90%;
        margin: 15px auto 0;
    }
    
    .urgency-content {
        padding: 12px 18px;
        flex-wrap: wrap;
    }
    
    .urgency-message {
        margin-right: 0;
        width: calc(100% - 25px);
    }
    
    .urgency-timer {
        margin-top: 8px;
        margin-left: 23px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .urgency-banner {
        max-width: 95%;
    }
    
    .urgency-content {
        padding: 10px 15px;
    }
    
    .pulse-dot {
        margin-right: 10px;
    }
    
    .urgency-text {
        font-size: 0.85rem;
    }
}

/* Process Section - Fixed Line */
.process {
    background-color: #f8fafc;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding-left: 36px; /* Create space for the line */
}

/* Vertical line */
.process-steps::before {
    content: '';
    position: absolute;
    left: 25px; /* Adjusted to align with numbers */
    top: 25px; /* Start from the middle of first number */
    bottom: 25px; /* End at the middle of last number */
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(66, 133, 244, 0.5) 0%, 
        rgba(52, 168, 83, 0.5) 33%, 
        rgba(251, 188, 5, 0.5) 66%, 
        rgba(234, 67, 53, 0.5) 100%);
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-left: -25px; /* Pull numbers to align with line */
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.process-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #4285F4, #3367D6);
}

.process-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #34A853, #288C42);
}

.process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #FBBC05, #F57C00);
}

.process-step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #EA4335, #C62828);
}

.step-content {
    background-color: white;
    border-radius: 16px;
    padding: 25px 30px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.process-step:nth-child(1) .step-content {
    border-left-color: #4285F4;
}

.process-step:nth-child(2) .step-content {
    border-left-color: #34A853;
}

.process-step:nth-child(3) .step-content {
    border-left-color: #FBBC05;
}

.process-step:nth-child(4) .step-content {
    border-left-color: #EA4335;
}

.process-step:hover .step-content {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2D3748;
}

.step-content p {
    color: #4A5568;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Responsiveness for Process Section */
@media (max-width: 768px) {
    .process {
        padding: 60px 0;
    }

    .process-steps {
        gap: 30px;
        padding-left: 30px;
    }

    .process-steps::before {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-left: -20px;
    }

    .step-content {
        padding: 20px;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .process {
        padding: 50px 0;
    }

    .process-steps {
        gap: 25px;
        padding-left: 25px;
    }

    .process-steps::before {
        left: 17px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-left: -17px;
    }

    .step-content {
        padding: 15px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }
} 

/* Notification System */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.success {
    background: linear-gradient(135deg, #34A853, #288C42);
}

.notification.error {
    background: linear-gradient(135deg, #EA4335, #C62828);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.disclaimers {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 10px;
}

.google-disclaimer {
    font-size: 0.8rem;
    color: #94A3B8;
    padding: 10px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .disclaimers {
        margin-top: 15px;
        padding-top: 15px;
    }

    .disclaimer {
        font-size: 0.8rem;
    }

    .google-disclaimer {
        font-size: 0.75rem;
        padding: 8px;
    }
}

/* Celebration Animation */
@keyframes celebrate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes firework {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.celebration-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.celebration-particle::before {
    content: '💰';
    font-size: 2rem;
    position: absolute;
    animation: float 1s ease-out forwards;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.firework {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: firework 0.8s ease-out forwards;
}

.calculator-cta.celebrating {
    animation: celebrate 0.5s ease-in-out;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Money rain effect */
@keyframes moneyRain {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.money-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    animation: moneyRain 3s linear forwards;
}

.us-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 300px;
    cursor: pointer;
}

.us-notification.show {
    transform: translateX(0);
}

.us-notification .flag {
    font-size: 1.2rem;
}

.us-notification .message {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.us-notification .close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    margin-left: auto;
    transition: background-color 0.3s ease;
}

.us-notification .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .us-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

/* Remove old banner styles */
.us-badge {
    display: none;
}

.cta-button.celebrating,
.celebration-trigger.celebrating {
    animation: celebrate 0.5s ease-in-out;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Ensure all CTAs have consistent hover effect */
.cta-button:hover,
.celebration-trigger:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(52,199,89,0.4);
}

/* Ensure smooth transitions */
.cta-button,
.celebration-trigger {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}