/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #313A7C;
    --primary-dark: #252D5C;
    --primary-light: #9B9ECF;
    --primary-bg: #F0F1F8;
    --accent: #2EAB6F;
    --text: #1a1a2e;
    --text-light: #64648b;
    --text-muted: #9494b8;
    --white: #ffffff;
    --bg-light: #F8F9FC;
    --border: #e8e8f0;
    --success: #2EAB6F;
    --danger: #ef4444;
    --shadow: 0 4px 6px -1px rgba(49, 58, 124, 0.1), 0 2px 4px -2px rgba(49, 58, 124, 0.1);
    --shadow-lg: 0 20px 40px -12px rgba(49, 58, 124, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(49, 58, 124, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    position: relative;
    width: 100%;
}

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

ul {
    list-style: none;
}

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.938rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

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

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

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

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

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 12px;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 400;
}

.logo-text strong {
    font-weight: 700;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-footer {
    height: 36px;
    filter: brightness(0) invert(1);
}

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

.nav-link {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.875rem;
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--white) 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin-bottom: 48px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-carousel {
    margin-bottom: 48px;
    position: relative;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    cursor: grab;
}

.hero-carousel:active {
    cursor: grabbing;
}

.hero-carousel-track {
    display: flex;
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
}

.hero-slide {
    min-width: 100%;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slide-label {
    display: block;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.slide-media {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tour-gif {
    width: auto;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

video.tour-gif {
    mix-blend-mode: normal;
    background: var(--bg-light);
    border-radius: 20px;
}

.whats-gif {
    mix-blend-mode: normal;
    border-radius: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    clip-path: inset(3% 3.7% 3% 3.7% round 44px);
}

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

.hero-carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.hero-carousel-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 0.813rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(49, 58, 124, 0.2);
}


/* ===== METRICS ===== */
.metrics {
    padding: 60px 0;
    background: var(--primary);
    position: relative;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.metric-item {
    color: var(--white);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.938rem;
    opacity: 0.85;
    font-weight: 400;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 0.813rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(49, 58, 124, 0.2);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.063rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.features-carousel {
    position: relative;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-x;
    -webkit-user-select: none;
    user-select: none;
}

.features-carousel:active {
    cursor: grabbing;
}

.features-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    will-change: transform;
    touch-action: pan-x;
}

.feature-card {
    min-width: 280px;
    max-width: 280px;
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    flex-shrink: 0;
    touch-action: pan-x;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(49, 58, 124, 0.3);
}

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

.feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: 8px;
    color: var(--primary);
}

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

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(49, 58, 124, 0.3);
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    margin-top: -40px;
}

/* ===== FOR WHO ===== */
.for-who {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.for-who-carousel {
    position: relative;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-x;
    -webkit-user-select: none;
    user-select: none;
}

.for-who-carousel:active {
    cursor: grabbing;
}

.for-who-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    will-change: transform;
    touch-action: pan-x;
}

.for-who-card {
    min-width: 300px;
    max-width: 300px;
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: left;
    transition: var(--transition);
    flex-shrink: 0;
    touch-action: pan-x;
}

.for-who-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(49, 58, 124, 0.3);
}

.for-who-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
}

.for-who-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
    color: var(--text);
}

.for-who-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.comparison-table {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-column {
    padding: 40px 32px;
}

.comparison-column.before {
    background: #fef2f2;
}

.comparison-column.after {
    background: #f0fdf4;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 1.063rem;
}

.comparison-column.before .comparison-header {
    color: var(--danger);
}

.comparison-column.after .comparison-header {
    color: var(--success);
}

.comparison-list li {
    padding: 10px 0;
    font-size: 0.938rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-column.before .comparison-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--danger);
    opacity: 0.5;
    flex-shrink: 0;
}

.comparison-column.after .comparison-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    flex-shrink: 0;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    width: 48px;
}

.divider-arrow {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.7; transform: translateX(4px); }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    cursor: grab;
}

.testimonials-carousel:active {
    cursor: grabbing;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    will-change: transform;
}

.testimonial-card {
    min-width: 300px;
    max-width: 300px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    flex-shrink: 0;
    will-change: transform;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(49, 58, 124, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    justify-content: flex-start;
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: normal;
    text-align: left;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.testimonial-author strong {
    color: var(--primary);
    font-weight: 700;
}

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

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text);
}

.author-info span {
    font-size: 0.813rem;
    color: var(--text-muted);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

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

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

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

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 8px;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-right: 4px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.price-cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.price-period {
    font-size: 0.938rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-annual {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.813rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    padding: 8px 12px;
    background: var(--primary-bg);
    border-radius: 8px;
    width: fit-content;
}

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

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

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

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

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(49, 58, 124, 0.3);
}

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

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

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

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

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -100px;
    right: -100px;
}

.cta-final::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -80px;
    left: -80px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-trust span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 24px;
    background: var(--text);
}

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

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== WHATSAPP FLOAT ===== */
/* ===== FLOATING CTA ===== */
.cta-float {
    position: fixed;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.938rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(49, 58, 124, 0.4);
    z-index: 998;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.cta-float.visible {
    bottom: 24px;
}

.cta-float:hover {
    background: var(--primary-dark);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 30px rgba(49, 58, 124, 0.5);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

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

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up.visible,
.animate-fade-left.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-carousel {
        max-width: 280px;
    }

    .slide-media {
        height: 450px;
    }

    .tour-gif {
        max-height: 450px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .comparison-divider {
        width: 100%;
        height: 48px;
    }

    .divider-arrow svg {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav .nav-link {
        font-size: 1.125rem;
    }

    .btn-header {
        display: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 1000;
    }

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

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

    .hero-carousel {
        max-width: 300px;
    }

    .slide-media {
        height: 480px;
    }

    .tour-gif {
        max-height: 480px;
    }

    .slide-label {
        font-size: 0.75rem;
    }

    .features-carousel .feature-card {
        min-width: 260px;
        max-width: 260px;
    }

    .for-who-carousel .for-who-card {
        min-width: 280px;
        max-width: 280px;
    }

    .for-who-title {
        font-size: 1.25rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .section-title {
        font-size: 1.75rem;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .metric-value {
        font-size: 2rem;
    }

    .steps-grid {
        flex-direction: column;
    }

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

    .testimonials-carousel .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 24px;
    }

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

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-column {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-carousel {
        max-width: 280px;
    }

    .slide-media {
        height: 450px;
    }

    .tour-gif {
        max-height: 450px;
    }

    .metric-value {
        font-size: 1.75rem;
    }

    .metric-label {
        font-size: 0.813rem;
    }

    .pricing-card {
        padding: 32px 20px;
    }

    .price-value {
        font-size: 2.75rem;
    }

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

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