/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores baseadas no design do v0 */
    --primary: #00D66B;
    --primary-hover: #00C05E;
    --primary-light: #00B85A;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-gray-50: #f8f9fa;
    --bg-gray-100: #f1f3f4;
    --bg-gray-800: #1f2937;
    --bg-gray-900: #111827;
    
    /* Text colors */
    --text-gray-900: #111827;
    --text-gray-700: #374151;
    --text-gray-600: #4b5563;
    --text-gray-500: #6b7280;
    --text-gray-400: #9ca3af;
    --text-white: #ffffff;
    
    /* Borders */
    --border-gray-200: #e5e7eb;
    --border-gray-300: #d1d5db;
    --border-gray-700: #374151;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
    --spacing-3xl: 3rem;
    --spacing-4xl: 4rem;
    --spacing-5xl: 5rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Container */
    --container-max-width: 1200px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-gray-900);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Utility Classes */
.text-primary {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.875rem;
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1rem;
    height: 44px;
}

.btn-xl {
    padding: var(--spacing-xl) var(--spacing-2xl);
    font-size: 1.125rem;
    height: 64px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--text-gray-700);
    border: 2px solid var(--border-gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 214, 107, 0.05);
}

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

.btn-white:hover {
    background: var(--bg-gray-50);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gray-100);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    height: 36px;
    width: auto;
}

.nav {
    display: none;
    align-items: center;
    gap: var(--spacing-2xl);
}

.nav-link {
    color: var(--text-gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-gray-900);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--bg-gray-50);
    border: 1px solid var(--border-gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray-900);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-menu-item svg {
    width: 20px;
    height: 20px;
    color: var(--text-gray-600);
}

.mobile-menu-item:hover {
    background: var(--bg-gray-100);
    border-color: var(--border-gray-300);
}

.mobile-menu-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    border-color: transparent;
}

.mobile-menu-primary svg {
    color: var(--text-white);
}

.mobile-menu-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
}

.btn-login {
    background: var(--bg-gray-100) !important;
    color: var(--text-gray-700) !important;
    border: 1px solid var(--border-gray-300) !important;
    box-shadow: none !important;
}

.btn-login:hover {
    background: var(--bg-gray-200) !important;
    color: var(--text-gray-900) !important;
    border-color: var(--border-gray-400) !important;
}

button.btn,
a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    vertical-align: middle;
    line-height: 1;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    padding: 96px 0 64px;
    background: linear-gradient(135deg, var(--bg-gray-50) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 214, 107, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-4xl);
    }
}

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

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
        padding-right: var(--spacing-2xl);
    }
}

.hero-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    text-balance: balance;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(2.25rem, 4vw, 2.5rem);
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray-600);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
    text-pretty: pretty;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Hero Animation */
.hero-animation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: var(--spacing-2xl);
}

@media (min-width: 1024px) {
    .hero-animation {
        padding-left: var(--spacing-2xl);
    }
}

.central-circle {
    position: relative;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 214, 107, 0.85) 0%, rgba(0, 184, 90, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    animation: pulse-slow 4s ease-in-out infinite;
}

.central-circle-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 214, 107, 0.3) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 2s ease-in-out infinite;
    opacity: 0.7;
}

.central-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.central-icon {
    width: 64px;
    height: 64px;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
}

.central-text {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.central-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Orbit Icons */
.orbit-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 214, 107, 0.2);
}

.orbit-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.orbit-1 {
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbit-1 20s linear infinite;
}

.orbit-2 {
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    animation: orbit-2 20s linear infinite;
}

.orbit-3 {
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbit-3 20s linear infinite;
}

.orbit-4 {
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    animation: orbit-4 20s linear infinite;
}

/* Float Icons */
.float-icon {
    position: absolute;
    width: 64px;
    height: 64px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 214, 107, 0.1);
}

.float-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.float-1 {
    top: 80px;
    right: 80px;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    bottom: 80px;
    right: 80px;
    animation: float-delayed 8s ease-in-out infinite;
}

/* Decorative elements */
.decorative-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.decorative-1 {
    width: 128px;
    height: 128px;
    background: rgba(0, 214, 107, 0.2);
    bottom: -32px;
    right: -32px;
}

.decorative-2 {
    width: 96px;
    height: 96px;
    background: rgba(0, 214, 107, 0.1);
    top: -32px;
    left: -32px;
}

/* What is Fluzz Section - Split Layout */
.what-is-fluzz-section {
    position: relative;
    overflow: hidden;
}

.what-is-fluzz-wrapper {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .what-is-fluzz-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* Left Side - Green Gradient */
.what-is-fluzz-left {
    background: linear-gradient(135deg, rgba(0, 214, 107, 0.08) 0%, rgba(0, 214, 107, 0.05) 35%, rgba(241, 245, 249, 0.9) 100%);
    padding: var(--spacing-3xl) var(--spacing-2xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.what-is-fluzz-left-content {
    max-width: 500px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.what-is-fluzz-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 214, 107, 0.15) 0%, rgba(0, 214, 107, 0.08) 100%);
    color: var(--primary);
    padding: 8px var(--spacing-lg);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(0, 214, 107, 0.2);
}

.what-is-fluzz-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--text-gray-900);
}

.what-is-fluzz-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Decorative elements */
.what-is-fluzz-decoration-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 214, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.what-is-fluzz-decoration-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 214, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-delayed 10s ease-in-out infinite;
}

/* Right Side - Features List */
.what-is-fluzz-right {
    background: var(--bg-white);
    padding: var(--spacing-3xl) var(--spacing-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-is-fluzz-features {
    max-width: 500px;
    width: 100%;
}

.what-is-fluzz-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-gray-200);
    transition: all 0.3s ease;
}

.what-is-fluzz-feature-item:first-child {
    padding-top: 0;
}

.what-is-fluzz-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.what-is-fluzz-feature-item:hover {
    padding-left: var(--spacing-sm);
    background: linear-gradient(90deg, rgba(0, 214, 107, 0.03) 0%, transparent 100%);
}

.what-is-fluzz-feature-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 214, 107, 0.2);
    transition: all 0.3s ease;
    margin-top: 2px;
}

.what-is-fluzz-feature-item:hover .what-is-fluzz-feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 16px rgba(0, 214, 107, 0.3);
}

.what-is-fluzz-feature-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-white);
    stroke-width: 3;
}

.what-is-fluzz-feature-content {
    flex: 1;
}

.what-is-fluzz-feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-gray-900);
    line-height: 1.3;
}

.what-is-fluzz-feature-description {
    font-size: 0.875rem;
    color: var(--text-gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 1023px) {
    .what-is-fluzz-left,
    .what-is-fluzz-right {
        padding: var(--spacing-3xl) var(--spacing-lg);
    }
    
    .what-is-fluzz-image {
        margin-top: var(--spacing-xl);
        transform: none;
    }
    
    .what-is-fluzz-image:hover {
        transform: scale(1.02);
    }
    
    .what-is-fluzz-subtitle {
        margin-bottom: var(--spacing-xl);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-balance: balance;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-3xl);
}

/* Comparison Section */
.comparison-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-gray-50) 50%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.comparison-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 214, 107, 0.05) 0%, transparent 70%);
}

.comparison-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--bg-white);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-md);
    border: 2px solid var(--border-gray-200);
    transition: all 0.15s ease;
}

.comparison-item:hover {
    border-color: rgba(0, 214, 107, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.comparison-left,
.comparison-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
}

.comparison-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.comparison-icon svg {
    width: 20px;
    height: 20px;
}

.comparison-icon-bad {
    background: rgba(239, 68, 68, 0.1);
}

.comparison-icon-bad svg {
    color: #ef4444;
}

.comparison-icon-good {
    background: rgba(0, 214, 107, 0.1);
}

.comparison-icon-good svg {
    color: var(--primary);
}

.comparison-text {
    color: var(--text-gray-600);
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.comparison-text-good {
    color: var(--text-gray-900);
    font-weight: 600;
    transition: color 0.15s ease;
}

.comparison-arrow {
    flex-shrink: 0;
    transition: transform 0.15s ease;
}

.comparison-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--text-gray-400);
    transition: color 0.15s ease;
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-5xl) 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    top: 0;
    right: 25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 214, 107, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    animation: float 6s ease-in-out infinite;
}

.benefits-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 33%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 214, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float-delayed 8s ease-in-out infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(0, 214, 107, 0.05) 100%);
    border: none;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.benefit-card-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-card-cta .benefit-title,
.benefit-card-cta .benefit-description {
    color: var(--text-white);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 214, 107, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.benefit-card:hover .benefit-icon svg {
    color: var(--text-white);
}

.benefit-card-cta .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto var(--spacing-xl);
}

.benefit-card-cta .benefit-icon svg {
    color: var(--text-white);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.benefit-description {
    font-size: 0.875rem;
    color: var(--text-gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

/* How It Works Section */
.how-it-works-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(135deg, rgba(0, 214, 107, 0.05) 0%, var(--bg-gray-50) 50%, rgba(0, 214, 107, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-bg {
    position: absolute;
    bottom: 0;
    right: 33%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 214, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    animation: float 6s ease-in-out infinite;
}

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

.steps-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    align-items: start;
}

.timeline-line {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 214, 107, 0.2) 0%, var(--primary) 50%, rgba(0, 214, 107, 0.2) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.step-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.step-circle {
    position: relative;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
}

.step-circle:hover {
    transform: scale(1.1);
}

.step-circle-bg {
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

.step-icon {
    width: 56px;
    height: 56px;
    color: var(--text-white);
    position: relative;
    z-index: 10;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 20;
}

.step-content {
    max-width: 280px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.step-description {
    font-size: 0.875rem;
    color: var(--text-gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .timeline-line {
        display: none;
    }
    
    .step-item {
        position: relative;
        padding-left: 80px;
        text-align: left;
        align-items: flex-start;
    }
    
    .step-circle {
        position: absolute;
        left: 0;
        top: 0;
        width: 64px;
        height: 64px;
        margin-bottom: 0;
    }
    
    .step-icon {
        width: 32px;
        height: 32px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        transform: translateX(-50%) translateY(-8px);
    }
    
    .step-content {
        max-width: none;
    }
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(135deg, var(--bg-gray-900) 0%, var(--bg-gray-800) 50%, var(--bg-gray-900) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 1200px 800px at center, rgba(0, 214, 107, 0.15) 0%, rgba(0, 214, 107, 0.08) 40%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.pricing-section .container {
    position: relative;
    z-index: 20;
}

.pricing-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 25% 50%, rgba(0, 214, 107, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 600px 800px at 75% 50%, rgba(0, 214, 107, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 1000px 400px at 50% 30%, rgba(0, 214, 107, 0.2) 0%, transparent 60%);
    z-index: 1;
}

.pricing-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 800px;
    background: radial-gradient(ellipse closest-side, rgba(0, 214, 107, 0.4) 0%, rgba(0, 214, 107, 0.2) 40%, rgba(0, 214, 107, 0.1) 70%, transparent 100%);
    filter: blur(60px);
    animation: pulse-slow 6s ease-in-out infinite;
    z-index: 1;
}

.pricing-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse closest-side, rgba(0, 214, 107, 0.3) 0%, rgba(0, 214, 107, 0.15) 50%, transparent 80%);
    filter: blur(40px);
    animation: pulse-slower 8s ease-in-out infinite;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: stretch;
    position: relative;
    z-index: 20;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }
}

.pricing-info {
    display: flex;
    flex-direction: column;
}

.pricing-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(55, 65, 81, 0.5);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.black-friday-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: 10px var(--spacing-xl);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    width: fit-content;
}

.black-friday-badge .icon {
    width: 16px;
    height: 16px;
}

.price-section {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

.old-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.old-price-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    text-decoration: line-through;
}

.discount-badge {
    background: #ef4444;
    color: var(--text-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.price-main {
    font-size: 3.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.025em;
}

.price-cents {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
}

.price-period {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 214, 107, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Form Section */
.form-section {
    display: flex;
    flex-direction: column;
}

.form-card {
    background: var(--bg-white);
    border: 2px solid rgba(0, 214, 107, 0.3);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.form-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: radial-gradient(circle, rgba(0, 214, 107, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.form-content {
    padding: var(--spacing-2xl);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.form-title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-balance: balance;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-gray-600);
}

.signup-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-input {
    width: 100%;
    height: 56px;
    border: 2px solid var(--border-gray-200);
    border-radius: var(--radius-xl);
    padding: 0 var(--spacing-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 214, 107, 0.1);
}

.form-input::placeholder {
    color: var(--text-gray-500);
}

.form-submit {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Button text visibility - desktop by default */
.btn-text-desktop {
    display: inline;
}

.btn-text-mobile {
    display: none;
}

.form-consultant-link {
    width: 100%;
    color: var(--text-gray-600);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm) 0;
    transition: color 0.3s ease;
    text-align: center;
}

.form-consultant-link:hover {
    color: var(--primary);
}

.form-terms {
    font-size: 0.75rem;
    color: var(--text-gray-500);
    text-align: center;
    padding-top: var(--spacing-sm);
}

.terms-link {
    color: var(--primary);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(135deg, var(--bg-gray-50) 0%, var(--bg-white) 50%, var(--bg-gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    top: 25%;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 214, 107, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
}

.faq-bg::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 214, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.faq-item:hover {
    border-color: rgba(0, 214, 107, 0.3);
}

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

.faq-question:hover {
    background: var(--bg-gray-50);
}

.faq-question:focus {
    outline: none !important;
    background: var(--bg-gray-50);
    border: none !important;
    box-shadow: none !important;
}

.faq-question:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-question span {
    padding-right: var(--spacing-md);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

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

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

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    font-size: 0.875rem;
    color: var(--text-gray-600);
    line-height: 1.6;
}

/* CTA Sidebar */
.cta-sidebar {
    position: relative;
}

@media (min-width: 1024px) {
    .cta-sidebar {
        padding-left: var(--spacing-2xl);
    }
}

.cta-card {
    position: sticky;
    top: 96px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.cta-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-card-content {
    padding: var(--spacing-2xl);
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
}

.cta-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-white);
}

.cta-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    text-balance: balance;
}

.cta-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-consultant-link {
    width: 100%;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm) 0;
    transition: color 0.3s ease;
}

.cta-consultant-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.cta-social-proof {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: var(--bg-gray-900);
    color: var(--text-white);
    padding: var(--spacing-4xl) 0 var(--spacing-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-lg);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 2fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-brand a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-brand a:hover {
    opacity: 0.8;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: var(--spacing-md);
    cursor: pointer;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--text-gray-400);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.footer-description:last-child {
    margin-bottom: 0;
}

.footer-title {
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
    color: var(--text-white);
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-gray-400);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.footer-text:last-child {
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-gray-400);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    padding-top: var(--spacing-lg);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-gray-400);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes pulse-slow {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes pulse-slower {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes orbit-1 {
    0% { transform: translate(-50%, 0) rotate(0deg) translateX(180px) rotate(0deg); }
    100% { transform: translate(-50%, 0) rotate(360deg) translateX(180px) rotate(-360deg); }
}

@keyframes orbit-2 {
    0% { transform: translate(0, -50%) rotate(90deg) translateX(180px) rotate(-90deg); }
    100% { transform: translate(0, -50%) rotate(450deg) translateX(180px) rotate(-450deg); }
}

@keyframes orbit-3 {
    0% { transform: translate(-50%, 0) rotate(180deg) translateX(180px) rotate(-180deg); }
    100% { transform: translate(-50%, 0) rotate(540deg) translateX(180px) rotate(-540deg); }
}

@keyframes orbit-4 {
    0% { transform: translate(0, -50%) rotate(270deg) translateX(180px) rotate(-270deg); }
    100% { transform: translate(0, -50%) rotate(630deg) translateX(180px) rotate(-630deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .comparison-item {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .comparison-left,
    .comparison-right {
        justify-content: center;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Ajuste específico para o título da seção de comparação em mobile */
    .comparison-section .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 48px;
    }
    
    .pricing-card,
    .form-card {
        padding: var(--spacing-lg);
    }
    
    .benefit-card {
        padding: var(--spacing-lg);
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gray-100);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-gray-100);
}

/* Loading states */
.btn:active {
    transform: scale(0.98);
}

/* Focus states for accessibility */
.btn:focus,
.form-input:focus,
.faq-question:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-gray-200: #666666;
        --text-gray-600: #333333;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* LGPD Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
}

.cookie-banner.show {
    transform: translateY(0);
    display: block; /* Only show when has 'show' class */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.cookie-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-gray-900);
    margin: 0 0 var(--spacing-xs) 0;
}

.cookie-text p {
    font-size: 0.875rem;
    color: var(--text-gray-600);
    margin: 0;
    line-height: 1.5;
}

.cookie-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

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

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.cookie-customize {
    background: none;
    border: none;
    color: var(--text-gray-600);
    font-size: 0.875rem;
    text-decoration: underline;
    cursor: pointer;
    padding: var(--spacing-xs) var(--spacing-sm);
}

.cookie-customize:hover {
    color: var(--primary);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: var(--spacing-lg);
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-gray-900);
    margin: 0;
}

.cookie-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    color: var(--text-gray-500);
    border-radius: var(--radius-md);
}

.cookie-close:hover {
    background: var(--bg-gray-100);
    color: var(--text-gray-700);
}

.cookie-close svg {
    width: 20px;
    height: 20px;
}

.cookie-modal-body {
    padding: var(--spacing-lg);
}

.cookie-modal-description {
    font-size: 0.875rem;
    color: var(--text-gray-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.cookie-category {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.cookie-category-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray-900);
    margin: 0;
}

.cookie-category-description {
    font-size: 0.875rem;
    color: var(--text-gray-600);
    margin: 0;
    line-height: 1.4;
}

.cookie-toggle {
    position: relative;
}

.cookie-toggle input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.toggle-label {
    display: block;
    width: 44px;
    height: 24px;
    background: var(--bg-gray-300);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-label:hover {
    background: var(--bg-gray-400);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label {
    background: var(--primary);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label .toggle-slider {
    transform: translateX(20px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-label {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

/* Mobile responsiveness for cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-modal {
        padding: var(--spacing-md);
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
    }
    
    /* Fix pricing grid proportions on mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .pricing-card,
    .form-card {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    /* Reduce padding on form content for more space */
    .form-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    /* Larger form inputs on mobile */
    .form-input,
    .form-input input,
    .form-input select {
        width: 100%;
        min-width: 100%;
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 0 var(--spacing-sm);
    }
    
    .form-group {
        margin-bottom: var(--spacing-md);
    }
    
    .pricing-form .form-row {
        gap: var(--spacing-md);
    }
    
    /* Shorter button text on mobile */
    .btn-text-desktop {
        display: none;
    }
    
    .btn-text-mobile {
        display: inline;
    }
    
    .form-submit {
        font-size: 0.875rem;
        padding: var(--spacing-md) var(--spacing-sm);
        line-height: 1.2;
    }
    
    /* Add spacing before footer */
    .faq-section {
        margin-bottom: var(--spacing-3xl);
    }
    
    /* Fix CTA card borders on mobile */
    .cta-card {
        border-radius: var(--radius-2xl) !important;
        overflow: hidden !important;
        margin: 0 var(--spacing-md) var(--spacing-2xl) var(--spacing-md);
        min-height: auto;
        position: relative !important; /* Remove sticky on mobile */
        top: auto !important;
    }
    
    .cta-card-content {
        border-radius: var(--radius-2xl) !important;
        padding: var(--spacing-2xl);
        padding-bottom: var(--spacing-2xl);
    }
    
    .cta-card-bg {
        border-radius: var(--radius-2xl) !important;
    }
    
    /* Fix container overflow */
    .faq-grid {
        overflow: visible;
    }
    
    /* Ensure CTA section has proper spacing */
    .faq-section {
        padding-bottom: var(--spacing-4xl);
        margin-bottom: var(--spacing-3xl);
        overflow: visible;
    }
    
    .cta-sidebar {
        margin-bottom: var(--spacing-3xl);
        overflow: visible;
    }
    
    /* Ensure container doesn't cut content */
    .container {
        overflow: visible;
    }
    
    /* Better footer layout on mobile */
    .footer {
        text-align: left;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        max-width: 100%;
        margin-bottom: var(--spacing-lg);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h4 {
        margin-bottom: var(--spacing-md);
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: var(--spacing-xl);
    }
    
    /* Increase footer font sizes on mobile */
    .footer-brand p {
        font-size: 1rem;
    }
    
    .footer-links h4 {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .footer-bottom p {
        font-size: 0.95rem;
    }
    
    /* Hide desktop buttons and show mobile menu on mobile */
    .header-buttons {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Better header layout on mobile */
    .header {
        padding: var(--spacing-md) 0;
    }
    
    .header-content {
        padding: 0 var(--spacing-sm);
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .header .logo {
        flex-shrink: 1;
        min-width: 0;
        max-width: 60%;
    }
    
    .header .logo img {
        max-width: 100%;
        height: auto;
    }
    
    .header nav {
        display: none; /* Hide navigation on mobile to save space */
    }
    
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
        -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS */
        overscroll-behavior-y: contain; /* Prevent pull-to-refresh interference */
        touch-action: pan-y pinch-zoom; /* Allow only vertical scrolling and pinch zoom */
    }
    
    * {
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
    }
    
    /* Ensure smooth scrolling experience */
    body {
        position: relative;
        min-height: 100vh;
    }
    
    /* Ensure all containers respect viewport width */
    .container {
        max-width: 100%;
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
        margin-left: auto;
        margin-right: auto;
        overflow-x: hidden;
    }
    
    /* Fix any elements that might overflow */
    .hero-section,
    .comparison-section,
    .benefits-section,
    .how-it-works-section,
    .pricing-section,
    .faq-section,
    .footer {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Specific mobile fixes */
    .pricing-section .container {
        padding: 0 var(--spacing-lg);
    }
    
    .pricing-grid {
        gap: var(--spacing-lg);
        margin: 0;
        padding: 0;
    }
    
    .pricing-card {
        margin: 0;
        width: 100%;
    }
    
    .form-card {
        margin: 0;
        width: 100%;
    }
    
    /* Hide step numbers on mobile */
    .step-number {
        display: none;
    }
    
    /* Fix hero section potential overflow */
    .hero-content {
        padding: 0 var(--spacing-md);
        max-width: 100%;
    }
    
    .hero-buttons {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-buttons .btn {
        max-width: 100%;
        font-size: 0.9rem;
    }
    
    /* Disable heavy animations on mobile to prevent scroll issues */
    .orbit-icon,
    .float-icon,
    .central-circle,
    .central-circle-bg,
    .hero-animation * {
        animation: none !important;
        transform: none !important;
        will-change: auto !important;
    }
    
    .hero-visual,
    .hero-animation {
        pointer-events: none;
        touch-action: none;
    }
    
    /* Simplify hero visual on mobile */
    .hero-animation {
        display: none; /* Completely hide animations on mobile */
    }
}