/* =============================================
   STARBOOSTER - Main Stylesheet
   ============================================= */

/* CSS Variables */
:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #E6F0FF;
    --secondary: #1a1a2e;
    --accent: #00D4AA;
    --success: #00C853;
    --warning: #FFB300;
    --danger: #FF3D57;
    
    --text-primary: #1a1a2e;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    
    --border-color: #e2e8f0;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    
    /* Service colors */
    --google-color: #4285F4;
    --tripadvisor-color: #34E0A1;
    --trustpilot-color: #00B67A;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

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

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

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

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

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

.btn-xl {
    padding: 20px 40px;
    font-size: 20px;
    border-radius: var(--border-radius-lg);
}

.btn-block {
    width: 100%;
}

/* =============================================
   SERVICE SELECTOR BAR
   ============================================= */
.service-selector-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-selector-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.service-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.service-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: var(--border-radius);
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.service-tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.service-tab.active {
    background: white;
    color: var(--text-primary);
    box-shadow: var(--shadow);
}

.service-tab .service-icon {
    width: 18px;
    height: 18px;
}

.service-tab .service-icon-emoji {
    font-size: 16px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-flag {
    font-size: 18px;
}

.lang-code {
    font-weight: 600;
}

.lang-arrow {
    transition: var(--transition);
}

.lang-dropdown.active + .lang-btn .lang-arrow,
.lang-btn:focus .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    overflow: hidden;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.lang-option:hover {
    background: var(--bg-light);
}

.lang-option.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 64px; /* Account for service selector bar + spacing */
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--primary);
    font-size: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
}

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

.nav-cta {
    padding: 10px 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* =============================================
   RESERVED OFFER BANNER
   ============================================= */
.reserved-offer-banner {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
    padding: 14px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    position: fixed;
    top: 128px; /* Below service bar + navbar */
    left: 0;
    right: 0;
    z-index: 1050; /* Above navbar (1000) but below service bar (1100) */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reserved-offer-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.reserved-offer-banner .reserved-icon {
    font-size: 18px;
}

.reserved-offer-banner strong,
.reserved-offer-banner .reserved-business-name {
    font-weight: 700;
}

.reserved-offer-banner.hidden {
    display: none;
}

/* When banner is visible, adjust hero padding */
body.has-reserved-banner .hero {
    padding-top: 270px;
}

@media (max-width: 768px) {
    .reserved-offer-banner {
        top: 108px; /* Below mobile service bar + navbar */
        padding: 12px 16px;
        font-size: 14px;
    }
    
    body.has-reserved-banner .hero {
        padding-top: 220px;
    }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 195px 0 80px; /* Increased for double navbar + spacing */
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-container {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fadeInDown 0.6s ease;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.typing-container {
    display: inline-block;
    color: var(--primary);
}

.typing-cursor {
    display: inline-block;
    animation: blink 1s infinite;
    font-weight: 400;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

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

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-trust {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.trust-logo svg {
    width: 24px;
    height: 24px;
}

.tripadvisor-emoji {
    font-size: 24px;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.stat-card {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 200px;
    margin: 0 auto;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--text-primary);
}

.badge-discount {
    display: inline-block;
    padding: 2px 8px;
    background: var(--success);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--border-radius-full);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
    background: var(--border-color);
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.toggle-switch.active .toggle-slider {
    left: 29px;
}

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

.pricing-card {
    position: relative;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--primary);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

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

.pricing-features .check {
    color: var(--success);
    font-weight: 700;
}

.pricing-features .x {
    color: var(--text-light);
}

.pricing-features li.disabled {
    color: var(--text-light);
}

/* =============================================
   COMPARISON SECTION
   ============================================= */
.comparison {
    padding: 100px 0;
    background: var(--bg-white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.comparison-table th:last-child {
    background: var(--primary-light);
}

.competitor-header,
.our-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.competitor-icon,
.our-icon {
    font-size: 20px;
}

.our-header {
    color: var(--primary);
    font-weight: 700;
}

.comparison-table td:last-child {
    background: rgba(0, 102, 255, 0.02);
}

.table-yes {
    color: var(--success);
    font-weight: 600;
}

.table-no {
    color: var(--danger);
}

.table-partial {
    color: var(--warning);
}

.table-neutral {
    color: var(--text-light);
}

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

/* =============================================
   HOW IT WORKS / SECTORS
   ============================================= */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sector-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.sector-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.sector-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.sector-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: white;
    margin-bottom: 16px;
}

.cta-content h2 span {
    opacity: 0.9;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.cta-rating .stars {
    font-size: 24px;
    color: #FFD700;
}

.cta-rating span {
    font-size: 14px;
    opacity: 0.9;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* =============================================
   BEFORE/AFTER SECTION
   ============================================= */
.before-after {
    padding: 100px 0;
    background: var(--bg-light);
}

.ba-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ba-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    width: 320px;
    box-shadow: var(--shadow);
    position: relative;
}

.ba-label {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 4px 16px;
    border-radius: var(--border-radius-full);
    font-size: 13px;
    font-weight: 600;
}

.ba-card.before .ba-label {
    background: var(--danger);
    color: white;
}

.ba-card.after .ba-label {
    background: var(--success);
    color: white;
}

.ba-preview {
    padding-top: 8px;
}

.ba-business-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ba-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.ba-stars {
    font-size: 20px;
}

.ba-stars.bad {
    color: var(--danger);
}

.ba-stars.good {
    color: #FFD700;
}

.ba-score {
    font-size: 24px;
    font-weight: 800;
}

.ba-reviews {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.ba-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
}

.ba-status.negative {
    background: rgba(255, 61, 87, 0.1);
    color: var(--danger);
}

.ba-status.positive {
    background: rgba(0, 200, 83, 0.1);
    color: var(--success);
}

.ba-arrow {
    color: var(--primary);
}

/* =============================================
   RESULTS SECTION
   ============================================= */
.results {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.result-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
}

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

.result-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.result-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.result-avatar-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.result-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.result-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

.result-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 16px;
}

.result-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.result-metrics {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* =============================================
   GUARANTEES SECTION
   ============================================= */
.guarantees {
    padding: 80px 0;
    background: var(--bg-light);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.guarantee-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
}

.guarantee-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.guarantee-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.guarantee-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* =============================================
   WHY CHOOSE US SECTION
   ============================================= */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.why-choose-us .section-title {
    color: white;
}

.why-choose-us .section-title .highlight {
    color: #FFD700;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

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

.why-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.why-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.why-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.why-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.why-feature h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 12px;
}

.why-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .why-stat-number {
        font-size: 36px;
    }
    
    .why-features {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */
.final-cta {
    padding: 120px 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: clamp(28px, 5vw, 42px);
    color: white;
    margin-bottom: 20px;
}

.final-cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

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

.final-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.final-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

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

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

.faq-icon {
    transition: var(--transition);
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-dark);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
}

.footer-links h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icon {
    font-size: 20px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .service-selector-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-label {
        display: none;
    }
    
    .stats-grid,
    .pricing-grid,
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sectors-grid,
    .benefits-grid,
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .service-selector-bar {
        padding: 6px 0;
    }
    
    .service-selector-wrapper {
        gap: 6px;
        padding: 0 8px;
    }
    
    .service-label {
        display: none;
    }
    
    .service-tabs {
        gap: 2px;
        padding: 3px;
    }
    
    .service-tab {
        padding: 6px 10px;
        font-size: 12px;
        gap: 4px;
    }
    
    .service-tab .service-icon {
        width: 14px;
        height: 14px;
    }
    
    .service-tab .service-icon-emoji {
        font-size: 14px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .lang-flag {
        font-size: 14px;
    }
    
    .lang-code {
        font-size: 11px;
    }
    
    .lang-arrow {
        width: 10px;
        height: 10px;
    }
    
    .navbar {
        top: 44px;
    }
    
    .hero {
        padding-top: 155px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.15;
    }
    
    /* Hide br on mobile for better text flow */
    .hero-title br {
        display: none;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-logos {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stats-grid,
    .pricing-grid,
    .sectors-grid,
    .benefits-grid,
    .guarantees-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .ba-comparison {
        flex-direction: column;
        gap: 60px;
    }
    
    .ba-arrow {
        transform: rotate(90deg);
    }
    
    .ba-card {
        width: 100%;
        max-width: 320px;
    }
    
    .final-cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .service-selector-wrapper {
        gap: 6px;
        padding: 0 4px;
    }
    
    .service-tabs {
        gap: 1px;
        padding: 2px;
    }
    
    .service-tab {
        padding: 5px 8px;
        font-size: 11px;
        gap: 3px;
        border-radius: 6px;
    }
    
    .service-tab .service-icon {
        width: 12px;
        height: 12px;
    }
    
    .service-tab .service-icon-emoji {
        font-size: 12px;
    }
    
    .lang-btn {
        padding: 5px 8px;
        gap: 4px;
    }
    
    .lang-flag {
        font-size: 12px;
    }
    
    .lang-code {
        font-size: 10px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px;
        font-size: 14px;
    }
}

/* ========================================
   CHECKOUT MODAL
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
    z-index: 10;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.modal-header {
    padding: 32px 32px 24px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.modal-header p {
    color: #6b7280;
    font-size: 15px;
}

.modal-body {
    padding: 24px 32px;
    background: #ffffff;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    font-size: 15px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* Quiz Confirmation Message */
.quiz-confirmation-msg {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border: 1px solid #93c5fd;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #1e40af;
    line-height: 1.6;
}

.quiz-confirmation-msg .confirm-icon {
    margin-right: 8px;
}

.quiz-confirmation-msg strong {
    font-weight: 600;
    color: #1e3a8a;
    white-space: nowrap;
}

/* Platform Selection */
.platform-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform-option {
    cursor: pointer;
    display: block;
}

.platform-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: #ffffff;
}

.platform-option input:checked + .platform-card {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.04);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.platform-option:hover .platform-card {
    border-color: #d1d5db;
}

.platform-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.platform-icon-emoji {
    font-size: 26px;
    flex-shrink: 0;
}

.platform-name {
    font-weight: 600;
    color: #111827;
    font-size: 15px;
}

.platform-desc {
    font-size: 13px;
    color: #6b7280;
    margin-left: auto;
}

/* Search Input with Results */
.search-input-wrapper {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f3f4f6;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f9fafb;
}

.search-result-item .result-name {
    font-weight: 500;
    color: #111827;
    font-size: 14px;
}

.search-result-item .result-address {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.search-loading {
    padding: 16px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    align-items: start;
    cursor: pointer;
    padding: 16px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: #ffffff;
}

.checkbox-label:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #ffffff;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkbox-text strong {
    color: #111827;
    font-size: 15px;
    font-weight: 600;
}

.checkbox-hint {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.4;
}

/* Order Summary */
.order-summary {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #e5e7eb;
}

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

.summary-row span:first-child {
    font-weight: 600;
    color: #111827;
    font-size: 16px;
}

.summary-price {
    font-size: 28px;
    font-weight: 800;
    color: #d97706;
}

/* Modal Footer */
.modal-footer {
    padding: 24px 32px 32px;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Modal Mobile Responsive */
@media (max-width: 640px) {
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    
    .modal-content {
        max-height: 95vh;
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        animation: modalSlideUp 0.3s ease;
    }
    
    @keyframes modalSlideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .modal-header {
        padding: 24px 20px 20px;
        border-radius: 20px 20px 0 0;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 20px;
        border-radius: 0;
    }
    
    .platform-card {
        padding: 14px 16px;
        flex-wrap: wrap;
    }
    
    .platform-desc {
        width: 100%;
        margin-left: 42px;
        margin-top: 4px;
    }
    
    .summary-price {
        font-size: 24px;
    }
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */

.whatsapp-float {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    left: auto !important;
    top: auto !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    background: #25D366 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99999 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
    overflow: hidden;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    flex-shrink: 0;
    fill: white !important;
}

.whatsapp-tooltip {
    display: none;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a2e;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1a1a2e;
}

.whatsapp-float:hover .whatsapp-tooltip {
    display: block;
}

/* WhatsApp mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 56px !important;
        height: 56px !important;
        min-width: 56px;
        min-height: 56px;
        max-width: 56px;
        max-height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px;
        min-height: 28px;
        max-width: 28px;
        max-height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none !important;
    }
}
