﻿/* ========== CSS Reset & Variables ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

:root {
    /* Core Brand Colors */
    --background: hsl(220, 20%, 98%);
    --foreground: hsl(222, 47%, 11%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222, 47%, 11%);
    --primary: hsl(231, 75%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(220, 14%, 96%);
    --secondary-foreground: hsl(222, 47%, 11%);
    --feature: hsl(160, 60%, 45%);
    --muted: hsl(220, 14%, 96%);
    --muted-foreground: hsl(220, 9%, 46%);
    --accent: hsl(231, 90%, 60%);
    --accent-foreground: hsl(0, 0%, 100%);
    --success: hsl(160, 84%, 39%);
    --success-foreground: hsl(0, 0%, 100%);
    --warning: hsl(38, 92%, 50%);
    --warning-foreground: hsl(0, 0%, 100%);
    --destructive: hsl(0, 84%, 60%);
    --border: hsl(220, 13%, 91%);
    --ring: hsl(231, 75%, 55%);
    --radius: 1rem;
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(231, 75%, 55%) 0%, hsl(250, 90%, 65%) 100%);
    --gradient-hero: linear-gradient(180deg, hsl(220, 20%, 98%) 0%, hsl(231, 50%, 97%) 100%);
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 hsla(220, 47%, 11%, 0.05);
    --shadow-md: 0 4px 6px -1px hsla(220, 47%, 11%, 0.1), 0 2px 4px -2px hsla(220, 47%, 11%, 0.1);
    --shadow-lg: 0 10px 15px -3px hsla(220, 47%, 11%, 0.1), 0 4px 6px -4px hsla(220, 47%, 11%, 0.1);
    --shadow-xl: 0 20px 25px -5px hsla(220, 47%, 11%, 0.1), 0 8px 10px -6px hsla(220, 47%, 11%, 0.1);
    --shadow-glow: 0 0 40px hsla(231, 75%, 55%, 0.3);
}



@media (prefers-color-scheme: dark) {
    :root {
        --background: hsl(215, 25%, 10%);
        --foreground: hsl(210, 20%, 95%);
        --card: hsl(215, 25%, 13%);
        --card-foreground: hsl(210, 20%, 95%);
        --primary: hsl(195, 70%, 50%);
        --primary-foreground: hsl(215, 25%, 10%);
        --secondary: hsl(215, 20%, 20%);
        --secondary-foreground: hsl(210, 20%, 90%);
        --muted: hsl(215, 20%, 18%);
        --muted-foreground: hsl(215, 15%, 60%);
        --border: hsl(215, 20%, 20%);
        --feature: hsl(160, 60%, 45%);
        --feature-foreground: hsl(160, 60%, 10%);
        --feature-bg: hsl(160, 40%, 15%);
        --update: hsl(35, 80%, 55%);
        --update-foreground: hsl(35, 80%, 10%);
        --update-bg: hsl(35, 60%, 15%);
        --fix: hsl(220, 70%, 60%);
        --fix-foreground: hsl(220, 70%, 10%);
        --fix-bg: hsl(220, 50%, 18%);
        --timeline-line: hsl(215, 20%, 25%);
        --timeline-dot: hsl(195, 70%, 50%);
        --shadow-card: 0 4px 12px -2px hsla(0, 0%, 0%, 0.3);
        --shadow-card-hover: 0 8px 24px -4px hsla(0, 0%, 0%, 0.4);
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
    background: none;
}

ul, ol {
    list-style: none;
}
/* ========== Utility Classes ========== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.shadow-card {
    box-shadow: var(--shadow-md);
}

.shadow-card-hover {
    box-shadow: var(--shadow-lg);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}
/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounceSoft {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-bounce-subtle {
    animation: bounceSoft 2s ease-in-out infinite;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}
/* Hidden initially for scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

    .scroll-animate.visible {
        opacity: 1;
        transform: translateY(0);
    }

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

    .scroll-animate-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

    .scroll-animate-right.visible {
        opacity: 1;
        transform: translateX(0);
    }
/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    /*background: hsla(0, 0%, 100%, 0.8);*/
    background: var(--background);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

    .header.scrolled {
        box-shadow: var(--shadow-md);
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--foreground);
    flex: 1 1 auto;
    min-width: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    /*background: var(--gradient-primary);*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

    .logo-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
    position: relative;
}

    .nav-link:hover {
        color: var(--primary);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--primary);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .nav-link:hover::after {
        transform: scaleX(1);
    }

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: block;
    }
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    max-width: 100vw;
    overflow-x: hidden;
}

    .mobile-menu.open {
        display: flex;
    }

.mobile-nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    border-radius: 0.75rem;
    transition: background 0.2s ease;
}

    .mobile-nav-link:hover {
        background: var(--secondary);
    }
/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-md);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-glow);
    }

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 2px solid var(--border);
}

    .btn-outline:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 1rem;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 30px -8px hsla(231, 75%, 55%, 0.5);
}

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px -8px hsla(231, 75%, 55%, 0.6);
    }

.btn-hero-outline {
    background: var(--card);
    color: var(--foreground);
    border: 2px solid var(--border);
}

    .btn-hero-outline:hover {
        border-color: var(--primary);
        background: hsla(231, 75%, 55%, 0.05);
    }
/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    /*background: var(--gradient-hero);*/
    background: var(--background);
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -25%;
        width: 80%;
        height: 150%;
        background: radial-gradient(ellipse, hsla(231, 75%, 55%, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-inner {
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

@media (min-width: 1024px) {
    .stat-item {
        text-align: left;
    }
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.875rem;
    }
}
/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.mockup-phone {
    background: var(--card);
    border-radius: 2rem;
    padding: 0.75rem;
    /*box-shadow: var(--shadow-xl);*/
    border: 1px solid var(--border);
}

.mockup-screen {
    /*background: linear-gradient(135deg, hsl(231, 75%, 55%) 0%, hsl(250, 90%, 65%) 100%);*/
    border-radius: 1.5rem;
    /*aspect-ratio: 9/16;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*padding: 2rem;*/
    color: white;
}

.mockup-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
}

.mockup-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mockup-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-floating-card {
    position: absolute;
    background: var(--card);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card-1 {
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    bottom: 25%;
    right: -5%;
    animation-delay: 2s;
}

.floating-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

    .floating-icon.success {
        background: var(--success);
    }

    .floating-icon.primary {
        background: var(--gradient-primary);
    }

.floating-text {
    font-size: 0.75rem;
}

.floating-value {
    font-weight: 700;
    color: var(--foreground);
}

.floating-label {
    color: var(--muted-foreground);
}

@media (max-width: 640px) {
    .hero-floating-card {
        /*display: none;*/
    }
}
/* ========== Section Styles ========== */
.section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}
/* ========== Segments Section ========== */
.segments {
    background: var(--background);
}

.segments-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .segments-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.segments-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    order: 2;
}

@media (min-width: 640px) {
    .segments-selector {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .segments-selector {
        grid-template-columns: repeat(2, 1fr);
        order: 1;
    }
}

.segment-btn {
    padding: 1rem;
    border-radius: 1rem;
    text-align: left;
    background: var(--card);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .segment-btn:hover {
        border-color: hsla(231, 75%, 55%, 0.2);
        transform: scale(1.02);
    }

    .segment-btn.active {
        border-color: var(--primary);
        box-shadow: var(--shadow-md);
    }

.segment-btn-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: white;
}

.segment-btn-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .segment-btn-title {
        font-size: 1rem;
    }
}

.segment-details {
    order: 1;
}

@media (min-width: 1024px) {
    .segment-details {
        order: 2;
    }
}

.segment-card {
    background: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.segment-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.segment-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .segment-card-title {
        font-size: 1.75rem;
    }
}

.segment-card-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.segment-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.segment-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.segment-benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.segment-benefit-text {
    font-weight: 500;
    color: var(--foreground);
}

.segment-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.2s ease;
}

    .segment-cta:hover {
        gap: 0.75rem;
    }
/* ========== Features Section ========== */
.features {
    /*background: hsla(220, 14%, 96%, 0.3);*/
    background: var(--secondary);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}
/* ========== Before/After Section ========== */
.before-after {
    background: var(--background);
}

.comparison-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-card {
    border-radius: 1.5rem;
    padding: 2rem;
    border: 2px solid;
}

    .comparison-card.before {
        background: hsla(0, 84%, 60%, 0.03);
        border-color: hsla(0, 84%, 60%, 0.2);
    }

    .comparison-card.after {
        background: hsla(160, 84%, 39%, 0.03);
        border-color: hsla(160, 84%, 39%, 0.2);
    }

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.comparison-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

    .comparison-icon.before {
        background: var(--destructive);
    }

    .comparison-icon.after {
        background: var(--success);
    }

.comparison-title {
    font-size: 1.5rem;
    font-weight: 700;
}

    .comparison-title.before {
        color: var(--destructive);
    }

    .comparison-title.after {
        color: var(--success);
    }

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.comparison-item-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

    .comparison-item-icon.before {
        color: var(--destructive);
    }

    .comparison-item-icon.after {
        color: var(--success);
    }

.comparison-item-text {
    color: var(--foreground);
    line-height: 1.5;
}
/* ========== Testimonials Section ========== */
.testimonials {
    /*background: hsla(220, 14%, 96%, 0.3);*/
    background: var(--background);
    overflow: hidden;
}

.testimonials-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-container {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-glow);
}

.testimonial-card {
    background: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-height: 320px;
    display: flex;
    align-items: center;
}

@media (min-width: 640px) {
    .testimonial-card {
        padding: 3rem;
    }
}

.testimonial-slide {
    width: 100%;
    display: none;
}

    .testimonial-slide.active {
        display: block;
        animation: fadeInUp 0.4s ease-out;
    }

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .testimonial-content {
        flex-direction: row;
    }
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.testimonial-body {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonial-body {
        text-align: left;
    }
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .testimonial-stars {
        justify-content: flex-start;
    }
}

.testimonial-star {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--warning);
    fill: var(--warning);
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .testimonial-quote {
        font-size: 1.25rem;
    }
}

.testimonial-author {
    font-weight: 700;
    color: var(--foreground);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

    .testimonial-nav-btn:hover {
        background: var(--secondary);
    }

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: hsla(220, 9%, 46%, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .testimonial-dot:hover {
        background: hsla(220, 9%, 46%, 0.5);
    }

    .testimonial-dot.active {
        width: 2rem;
        background: var(--primary);
    }
/* ========== Pricing Section ========== */
.pricing {
    background: var(--background);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.pricing-toggle-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: color 0.2s ease;
}

    .pricing-toggle-label.active {
        color: var(--foreground);
        font-weight: 600;
    }

.pricing-switch {
    width: 3.5rem;
    height: 2rem;
    background: var(--muted);
    border-radius: 9999px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .pricing-switch.active {
        background: var(--primary);
    }

.pricing-switch-thumb {
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
}

.pricing-switch.active .pricing-switch-thumb {
    transform: translateX(1.5rem);
}

.pricing-badge {
    background: hsla(160, 84%, 39%, 0.1);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .pricing-card.popular {
        border-color: var(--primary);
        box-shadow: var(--shadow-lg);
    }

.pricing-popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--foreground);
    line-height: 1;
}

.pricing-period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
}

.pricing-feature-text {
    font-size: 0.875rem;
    color: var(--foreground);
}

.pricing-cta {
    width: 100%;
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

    .pricing-cta.primary {
        background: var(--gradient-primary);
        color: white;
    }

        .pricing-cta.primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }

    .pricing-cta.outline {
        background: transparent;
        border: 2px solid var(--border);
        color: var(--foreground);
    }

        .pricing-cta.outline:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
/* ========== FAQ Section ========== */
.faq {
    /*background: hsla(220, 14%, 96%, 0.3);*/
    background: var(--secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        border-color: var(--primary);
    }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .faq-question:hover {
        background: var(--secondary);
    }

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}
/* ========== CTA Section ========== */
.cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -25%;
        width: 80%;
        height: 150%;
        background: radial-gradient(ellipse, hsla(0, 0%, 100%, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

    .cta-btn.primary {
        background: white;
        color: var(--primary);
    }

        .cta-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px -8px hsla(0, 0%, 0%, 0.3);
        }

    .cta-btn.outline {
        background: transparent;
        border: 2px solid hsla(0, 0%, 100%, 0.3);
        color: white;
    }

        .cta-btn.outline:hover {
            background: hsla(0, 0%, 100%, 0.1);
        }
/* ========== Footer ========== */
.footer {
    /*background: var(--foreground);*/
    background: var(--secondary);
    color: var(--foreground);
    /*color: hsla(0, 0%, 100%, 0.7);*/
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    /*background: var(--gradient-primary);*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: 800;
    /*color: white;*/
    color: var(--foreground);
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.875rem;
    /*color: hsla(0, 0%, 100%, 0.6);*/
    color: var(--foreground);
    transition: color 0.2s ease;
}

    .footer-link:hover {
        /*color: white;*/
        color: var(--feature) !important;
    }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    font-size: 0.875rem;
    /*color: hsla(0, 0%, 100%, 0.6);*/
    color: var(--foreground);
    transition: color 0.2s ease;
}

    .footer-legal-link:hover {
        color: white;
    }
/* ========== WhatsApp Button ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    width: 4.5rem;
    height: 4.5rem;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--feature) 0px 30px 60px 1px;
    transition: transform 0.2s ease;
    animation: bounceSoft 2s ease-in-out infinite;
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
    }
/* ========== SVG Icons ========== */
.icon {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-sm {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-lg {
    width: 2rem;
    height: 2rem;
}
