﻿/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Core Colors - Exact match from index.css */
    --background: 222 47% 6%;
    --foreground: 210 40% 98%;
    --card: 222 47% 8%;
    --card-foreground: 210 40% 98%;
    --popover: 222 47% 8%;
    --popover-foreground: 210 40% 98%;
    --primary: 18 100% 60%;
    --primary-foreground: 222 47% 6%;
    --secondary: 348 83% 47%;
    --secondary-foreground: 210 40% 98%;
    --muted: 222 30% 15%;
    --muted-foreground: 215 20% 65%;
    --accent: 25 100% 50%;
    --accent-foreground: 222 47% 6%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 210 40% 98%;
    --border: 222 30% 18%;
    --input: 222 30% 18%;
    --ring: 18 100% 60%;
    --radius: 0.75rem;
    --gradient-start: 18 100% 60%;
    --gradient-end: 348 83% 47%;
    --success: 142 76% 36%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .section-container {
        padding: 6rem 1rem;
    }
}

/* Gradient text - exact from index.css */
.gradient-text {
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient background */
.gradient-bg {
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
}

/* Glass card effect - exact from index.css */
.glass-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border) / 0.5);
    background-color: hsl(var(--card) / 0.7);
}

/* Glow effects */
.glow-primary {
    box-shadow: 0 0 40px hsl(var(--primary) / 0.3), 0 0 80px hsl(var(--primary) / 0.1);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .btn-glow:hover {
        box-shadow: 0 0 20px hsl(var(--primary) / 0.5), 0 0 40px hsl(var(--primary) / 0.3);
        transform: translateY(-2px);
    }

/* Card hover effect */
.card-hover {
    transition: all 0.3s ease;
}

    .card-hover:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px hsl(var(--primary) / 0.15);
    }

/* Badge gradient - exact from index.css */
.badge-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--secondary) / 0.2));
    border: 1px solid hsl(var(--primary) / 0.3);
}

/* Animated underline */
.animated-underline {
    position: relative;
}

    .animated-underline::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
        transition: width 0.3s ease;
    }

    .animated-underline:hover::after {
        width: 100%;
    }

/* Float animation */
.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Pulse glow animation */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px hsl(var(--primary) / 0.4);
    }

    50% {
        box-shadow: 0 0 40px hsl(var(--primary) / 0.6), 0 0 60px hsl(var(--primary) / 0.3);
    }
}

/* Grid pattern background */
.grid-pattern {
    background-image: linear-gradient(hsl(var(--border) / 0.3) 1px, transparent 1px), linear-gradient(90deg, hsl(var(--border) / 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Radial overlay */
.radial-overlay {
    background: radial-gradient(ellipse at center, transparent 0%, hsl(var(--background)) 70%);
}

/* Hero gradient */
.bg-hero-gradient {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.15) 0%, transparent 50%, hsl(var(--secondary) / 0.1) 100%);
}

/* ===== TYPOGRAPHY ===== */
.text-display-lg {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

.text-display-md {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
}

.text-display-sm {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
}

/* ===== 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: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    color: hsl(var(--primary-foreground));
}

.btn-outline {
    background: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

    .btn-outline:hover {
        background: hsl(var(--muted));
        border-color: hsl(var(--primary) / 0.5);
    }

.btn-ghost {
    background: transparent;
    color: hsl(var(--foreground));
}

    .btn-ghost:hover {
        background: hsl(var(--muted));
    }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

    .header.scrolled {
        background: hsl(var(--background) / 0.9);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid hsl(var(--border) / 0.5);
        box-shadow: 0 4px 20px hsl(0 0% 0% / 0.2);
    }

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    padding: 0 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

    .logo:hover .logo-icon {
        transform: scale(1.05);
    }

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

    .logo-text span:first-child {
        font-weight: 700;
        font-size: 1.125rem;
        line-height: 1.2;
    }

    .logo-text span:last-child {
        font-size: 0.75rem;
        color: hsl(var(--muted-foreground));
    }

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: hsl(var(--foreground));
    }

.header-cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    color: hsl(var(--foreground));
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

    .mobile-menu-btn:hover {
        background: hsl(var(--muted));
    }

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    z-index: 40;
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid hsl(var(--border) / 0.5);
    box-shadow: 0 20px 40px hsl(0 0% 0% / 0.3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .mobile-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

.mobile-menu-content {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    text-align: left;
    transition: color 0.2s;
}

    .mobile-nav-link:hover {
        color: hsl(var(--foreground));
    }

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border) / 0.5);
    margin-top: 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.15) 0%, transparent 50%, hsl(var(--secondary) / 0.1) 100%);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(hsl(var(--border) / 0.3) 1px, transparent 1px), linear-gradient(90deg, hsl(var(--border) / 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-bg-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, hsl(var(--background)) 70%);
}

/* Floating decorations */
.hero-float-wrench {
    position: absolute;
    top: 25%;
    right: 2.5rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.hero-float-car {
    position: absolute;
    bottom: 25%;
    left: 2.5rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-float-gear {
    position: absolute;
    top: 33%;
    left: 25%;
    opacity: 0.1;
    display: none;
    animation: spin 20s linear infinite;
}

@media (min-width: 768px) {
    .hero-float-wrench {
        right: 5rem;
    }

    .hero-float-car {
        left: 5rem;
    }

    .hero-float-gear {
        display: block;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-badge {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.hero-title {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsl(var(--muted) / 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid hsl(var(--border) / 0.5);
    font-size: 0.875rem;
    font-weight: 500;
}

    .hero-benefit svg {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--primary));
    }

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.5s forwards;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-cta .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .hero-cta .btn {
        width: auto;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 36rem;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 3rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

    .stat-value svg {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--primary));
    }

@media (min-width: 768px) {
    .stat-value svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Video Preview */
.hero-video {
    margin-top: 4rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.video-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border) / 0.5);
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(16px);
    box-shadow: 0 0 40px hsl(var(--primary) / 0.3), 0 0 80px hsl(var(--primary) / 0.1);
}

.video-inner {
    aspect-ratio: 16/9;
    background: linear-gradient(to bottom right, hsl(var(--muted)), hsl(var(--card)));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--background) / 0.8), transparent, transparent);
}

.video-play-btn {
    position: relative;
    z-index: 10;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px hsl(0 0% 0% / 0.25);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .video-play-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 25px 50px -12px hsl(var(--primary) / 0.5);
    }

    .video-play-btn svg {
        width: 2rem;
        height: 2rem;
        color: hsl(var(--primary-foreground));
        margin-left: 0.25rem;
    }

.video-text {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .video-text svg {
        width: 1rem;
        height: 1rem;
    }

/* Hero Video Modal */
.hero-video-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: hsl(var(--foreground) / 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 60;
}

    .hero-video-modal.is-open {
        opacity: 1;
        pointer-events: auto;
    }

.hero-video-modal-backdrop {
    position: absolute;
    inset: 0;
}

.hero-video-modal-content {
    position: relative;
    width: min(960px, 92vw);
    background: hsl(var(--card));
    border-radius: 1.5rem;
    box-shadow: 0 30px 60px hsl(0 0% 0% / 0.35);
    overflow: hidden;
    transform: translateY(12px);
    transition: transform 0.3s ease;
}

.hero-video-modal.is-open .hero-video-modal-content {
    transform: translateY(0);
}

.hero-video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid hsl(var(--border));
    background: hsl(var(--background));
}

.hero-video-modal-title {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.hero-video-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid hsl(var(--border));
    border-radius: 999px;
    background: hsl(var(--card));
    color: hsl(var(--muted-foreground));
    cursor: pointer;
    transition: all 0.2s ease;
}

    .hero-video-modal-close:hover {
        color: hsl(var(--foreground));
        box-shadow: 0 8px 18px hsl(0 0% 0% / 0.2);
    }

    .hero-video-modal-close svg {
        width: 18px;
        height: 18px;
    }

.hero-video-modal-player {
    position: relative;
    padding-top: 56.25%;
    background: hsl(var(--foreground));
}

    .hero-video-modal-player iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

@media (max-width: 767px) {
    .hero-video-modal {
        padding: 0;
    }

    .hero-video-modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .hero-video-modal-header {
        padding: 1rem;
    }

    .hero-video-modal-player {
        flex: 1;
        padding-top: 0;
    }

        .hero-video-modal-player iframe {
            position: absolute;
        }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 0.5s ease 1.5s forwards;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid hsl(var(--muted-foreground) / 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 0.25rem;
    border-radius: 9999px;
    background: hsl(var(--primary));
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        height: 20%;
    }

    50% {
        height: 80%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--primary) / 0.05);
    border-radius: 50%;
    filter: blur(48px);
}

.features-bg-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--secondary) / 0.05);
    border-radius: 50%;
    filter: blur(48px);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

    .section-header .badge-gradient {
        margin-bottom: 1rem;
    }

    .section-header h2 {
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.125rem;
        color: hsl(var(--muted-foreground));
    }

.features-grid {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@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 {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border) / 0.5);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

    .feature-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (min-width: 768px) {
    .feature-card {
        padding: 2rem;
    }
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px hsl(var(--primary) / 0.15);
    border-color: hsl(var(--primary) / 0.3);
}

.feature-card-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover .feature-card-overlay {
    opacity: 0.05;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(var(--primary-foreground));
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: hsl(var(--primary));
}

.feature-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.feature-corner {
    position: absolute;
    bottom: -0.5rem;
    right: -0.5rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.1;
    transition: opacity 0.3s;
}

.feature-card:hover .feature-corner {
    opacity: 0.2;
}

/* Features bottom CTA */
.features-cta {
    margin-top: 4rem;
    text-align: center;
}

.features-cta-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--primary) / 0.2);
}

    .features-cta-box svg {
        width: 1.5rem;
        height: 1.5rem;
        color: hsl(var(--primary));
    }

    .features-cta-box p {
        font-size: 1.125rem;
        font-weight: 500;
    }

.pricing-card,
.pricing,
.testimonials,
.problems,
.problems-bg {
    background: transparent !important;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    position: relative;
    overflow: hidden;
}

.how-it-works-bg {
    position: absolute;
    top: 25%;
    right: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(to left, hsl(var(--primary) / 0.1), transparent);
    border-radius: 50%;
    filter: blur(48px);
}

.steps-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    height: 100%;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

    .step-card.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

.step-card-inner {
    height: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border) / 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .step-card-inner {
        padding: 2rem;
    }
}

.step-card-inner:hover {
    border-color: hsl(var(--primary) / 0.3);
}

.step-number-bg {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    font-size: 6rem;
    font-weight: 700;
    color: hsl(var(--primary) / 0.05);
    user-select: none;
}

.step-icon-wrapper {
    position: relative;
    z-index: 10;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.2);
    transition: transform 0.6s;
}

    .step-icon:hover {
        transform: rotate(360deg);
    }

    .step-icon svg {
        width: 2rem;
        height: 2rem;
        color: hsl(var(--primary-foreground));
    }

.step-number-badge {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: hsl(var(--background));
    border: 2px solid hsl(var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
}

.step-card > div > p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.step-details {
    list-style: none;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

    .step-details li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

        .step-details li svg {
            width: 1rem;
            height: 1rem;
            color: hsl(var(--primary));
            flex-shrink: 0;
        }

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
}

.step-tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    border: 1px solid hsl(var(--primary) / 0.2);
}

.step-hover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, hsl(var(--primary) / 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.step-card-inner:hover .step-hover-gradient {
    opacity: 1;
}

/* Connection line between steps */
.step-connection {
    display: none;
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(to right, hsl(var(--primary) / 0.5), transparent);
    z-index: 10;
}

@media (min-width: 1024px) {
    .step-connection {
        display: block;
    }
}

/* How it works bottom */
.how-it-works-bottom {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.how-it-works-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 500;
}

    .how-it-works-result svg {
        width: 1.25rem;
        height: 1.25rem;
        animation: bounceX 2s infinite;
    }

@keyframes bounceX {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* ===== PROBLEMS SECTION ===== */
.problems {
    position: relative;
    overflow: hidden;
}

.problems-bg {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to bottom, transparent, hsl(var(--secondary) / 0.05), transparent);*/
}

.problems-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.problem-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(var(--secondary) / 0.1);
    border: 1px solid hsl(var(--secondary) / 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

    .problem-card:nth-child(even) {
        transform: translateX(30px);
    }

    .problem-card.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .problem-card:hover {
        border-color: hsl(var(--secondary) / 0.4);
    }

.problem-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: hsl(var(--secondary) / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .problem-icon svg {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--secondary));
    }

.problem-card h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.problem-card:hover h4 {
    color: hsl(var(--secondary));
}

.problem-card p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.arrow-divider {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.arrow-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .arrow-circle svg {
        width: 1.5rem;
        height: 1.5rem;
        color: hsl(var(--primary-foreground));
        transform: rotate(90deg);
    }

.solution-card {
    max-width: 40rem;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--primary) / 0.2);
    box-shadow: 0 0 40px hsl(var(--primary) / 0.3), 0 0 80px hsl(var(--primary) / 0.1);
}

.solution-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

    .solution-header h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .solution-header p {
        color: hsl(var(--muted-foreground));
    }

.solution-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: hsl(var(--primary) / 0.05);
    border: 1px solid hsl(var(--primary) / 0.1);
    border-radius: 0.75rem;
}

.solution-check {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: hsl(var(--primary) / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .solution-check svg {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--primary));
    }

.solution-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== BEFORE/AFTER SECTION ===== */
.before-after {
    position: relative;
    overflow: hidden;
}

.before-after-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(var(--secondary) / 0.05), transparent, hsl(var(--primary) / 0.05));
}

.comparison-container {
    max-width: 56rem;
    margin: 0 auto;
}

.comparison-header-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    padding: 0 1rem 0.5rem;
    margin-bottom: 0.5rem;
}

    .comparison-header-row span {
        text-align: center;
        font-size: 0.875rem;
        font-weight: 600;
    }

        .comparison-header-row span:first-child {
            color: hsl(var(--secondary));
        }

        .comparison-header-row span:last-child {
            color: hsl(var(--primary));
        }

    .comparison-header-row > div {
        width: 2rem;
    }

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
}

    .comparison-row.visible {
        opacity: 1;
        transform: translateY(0);
    }

.before-item, .after-item {
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.before-item {
    background: hsl(var(--secondary) / 0.1);
    border: 1px solid hsl(var(--secondary) / 0.2);
}

    .before-item:hover {
        border-color: hsl(var(--secondary) / 0.4);
    }

.after-item {
    background: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.2);
}

    .after-item:hover {
        border-color: hsl(var(--primary) / 0.4);
    }

    .before-item .icon, .after-item .icon {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

.before-item .icon {
    background: hsl(var(--secondary) / 0.2);
}

    .before-item .icon svg {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--secondary));
    }

.after-item .icon {
    background: hsl(var(--primary) / 0.2);
}

    .after-item .icon svg {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--primary));
    }

.before-item span, .after-item span {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .before-item span, .after-item span {
        font-size: 1rem;
    }
}

.comparison-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .comparison-arrow svg {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--primary-foreground));
    }

/* ===== PROFILE BENEFITS ===== */
.profile-benefits {
    position: relative;
    overflow: hidden;
}

.profile-benefits-bg-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--primary) / 0.05);
    border-radius: 50%;
    filter: blur(48px);
}

.profile-benefits-bg-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--secondary) / 0.05);
    border-radius: 50%;
    filter: blur(48px);
}

.profile-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.profile-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: hsl(var(--muted) / 0.5);
    color: hsl(var(--muted-foreground));
}

    .profile-tab:hover {
        background: hsl(var(--muted));
        color: hsl(var(--foreground));
    }

    .profile-tab.active {
        background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
        color: hsl(var(--primary-foreground));
        box-shadow: 0 10px 30px -10px hsl(var(--primary) / 0.5);
    }

    .profile-tab svg {
        width: 1.25rem;
        height: 1.25rem;
    }

.profile-content {
    max-width: 48rem;
    margin: 0 auto;
}

.profile-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border) / 0.5);
}

@media (min-width: 768px) {
    .profile-card {
        padding: 2rem;
    }
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.profile-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .profile-icon-box svg {
        width: 2rem;
        height: 2rem;
        color: hsl(var(--primary-foreground));
    }

.profile-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.profile-info p {
    color: hsl(var(--muted-foreground));
}

.profile-benefits-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .profile-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.profile-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: hsl(var(--primary) / 0.05);
    border: 1px solid hsl(var(--primary) / 0.1);
    border-radius: 0.75rem;
    opacity: 0;
    transform: translateX(-20px);
}

    .profile-benefit-item.visible {
        opacity: 1;
        transform: translateX(0);
    }

.profile-benefit-check {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: hsl(var(--primary) / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .profile-benefit-check svg {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--primary));
    }

.profile-benefit-item span {
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50rem;
    height: 50rem;
    background: radial-gradient(circle, hsl(var(--primary) / 0.1), transparent);
    border-radius: 50%;
    filter: blur(48px);
}

.testimonials-grid {
    display: none;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border) / 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

    .testimonial-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .testimonial-card:hover {
        border-color: hsl(var(--primary) / 0.3);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px hsl(var(--primary) / 0.15);
    }

.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    color: hsl(var(--primary) / 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

    .testimonial-stars svg {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--primary));
        fill: hsl(var(--primary));
    }

.testimonial-text {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid hsl(var(--primary) / 0.2);
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.testimonial-location {
    font-size: 0.75rem;
    color: hsl(var(--primary));
}

/* Mobile carousel */
.testimonials-mobile {
    display: block;
}

@media (min-width: 768px) {
    .testimonials-mobile {
        display: none;
    }
}

.testimonial-mobile-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border) / 0.5);
    position: relative;
    overflow: hidden;
}

.testimonial-mobile-text {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.7;
    min-height: 7.5rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .testimonial-nav-btn:hover {
        background: hsl(var(--muted));
    }

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: hsl(var(--muted-foreground) / 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

    .testimonial-dot.active {
        /*width: 2rem;*/
        background: hsl(var(--primary));
    }

/* ===== PRICING ===== */
.pricing {
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, hsl(var(--primary) / 0.05), transparent);
}

.pricing-bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    filter: blur(48px);
    transform: translateX(-50%);
}

.pricing-bg-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--secondary) / 0.1);
    border-radius: 50%;
    filter: blur(48px);
    transform: translateX(50%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s;
}

    .pricing-toggle-label.active {
        color: hsl(var(--foreground));
    }

.toggle-switch {
    position: relative;
    width: 3.5rem;
    height: 2rem;
    background: hsl(var(--muted));
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.3s;
}

    .toggle-switch.active {
        background: hsl(var(--primary));
    }

    .toggle-switch::after {
        content: '';
        position: absolute;
        top: 0.25rem;
        left: 0.25rem;
        width: 1.5rem;
        height: 1.5rem;
        background: white;
        border-radius: 50%;
        transition: transform 0.3s;
    }

    .toggle-switch.active::after {
        transform: translateX(1.5rem);
    }

.discount-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    background: hsl(var(--primary) / 0.2);
    color: hsl(var(--primary));
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.pricing-card {
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

    .pricing-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .pricing-card.popular {
        z-index: 10;
    }

@media (min-width: 768px) {
    .pricing-card.popular {
        margin-top: -1rem;
        margin-bottom: 1rem;
    }
}

.pricing-card-inner {
    height: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border) / 0.5);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .pricing-card-inner {
        padding: 2rem;
    }
}

.pricing-card-inner:hover {
    border-color: hsl(var(--primary) / 0.3);
}

.pricing-card.popular .pricing-card-inner {
    border-color: hsl(var(--primary) / 0.5);
    box-shadow: 0 0 40px hsl(var(--primary) / 0.3), 0 0 80px hsl(var(--primary) / 0.1);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 4px 15px hsl(var(--primary) / 0.3);
    z-index: 10;
}

.pricing-plan-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-plan-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pricing-plan-icon svg {
        width: 1.5rem;
        height: 1.5rem;
        color: white;
    }

.pricing-plan-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.pricing-plan-description {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.pricing-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    color: hsl(var(--muted-foreground));
}

.pricing-billing-note {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.25rem;
}

.pricing-cta {
    width: 100%;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

    .pricing-feature svg {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--primary));
        flex-shrink: 0;
        margin-top: 0.125rem;
    }

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 3rem;
}

/* ===== DEMO FORM ===== */
.demo-form-section {
    position: relative;
    overflow: hidden;
}

.demo-form-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, hsl(var(--secondary) / 0.05), transparent);
}

.demo-form-container {
    max-width: 56rem;
    margin: 0 auto;
}

.demo-form-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .demo-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.demo-form-content h2 {
    margin-bottom: 1rem;
}

.demo-form-content > p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.demo-form-features {
    list-style: none;
}

    .demo-form-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

        .demo-form-features li svg {
            width: 1rem;
            height: 1rem;
            color: hsl(var(--primary));
            flex-shrink: 0;
        }

.demo-form-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border) / 0.5);
}

@media (min-width: 768px) {
    .demo-form-card {
        padding: 2rem;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: hsl(var(--background) / 0.5);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    color: hsl(var(--foreground));
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

    .form-input:focus, .form-select:focus {
        outline: none;
        border-color: hsl(var(--primary));
        box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
    }

    .form-input::placeholder {
        color: hsl(var(--muted-foreground));
    }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

    .form-select option {
        background: hsl(var(--card));
        color: hsl(var(--foreground));
    }

.demo-success {
    text-align: center;
    padding: 2rem;
}

.demo-success-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .demo-success-icon svg {
        width: 2.5rem;
        height: 2.5rem;
        color: hsl(var(--primary-foreground));
    }

.demo-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.demo-success p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

/* ===== MOBILE APP ===== */
.mobile-app-section {
    position: relative;
    overflow: hidden;
}

.mobile-app-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsl(var(--primary) / 0.05), transparent, transparent);
}

.mobile-app-container {
    max-width: 64rem;
    margin: 0 auto;
}

.mobile-app-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .mobile-app-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mobile-app-phone {
    display: flex;
    justify-content: center;
    order: 2;
}

@media (min-width: 768px) {
    .mobile-app-phone {
        order: 1;
    }
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 16rem;
    height: 32.5rem;
    border-radius: 3rem;
    background: linear-gradient(to bottom, hsl(var(--card)), hsl(var(--muted)));
    border: 4px solid hsl(var(--border));
    box-shadow: 0 25px 50px -12px hsl(0 0% 0% / 0.25);
    overflow: hidden;
    position: relative;
}

.phone-screen {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    border-radius: 2.5rem;
    overflow: hidden;
    background: hsl(var(--background));
}

.phone-status-bar {
    height: 2rem;
    background: hsl(var(--muted) / 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-notch {
    width: 5rem;
    height: 0.25rem;
    border-radius: 9999px;
    background: hsl(var(--foreground) / 0.2);
}

.phone-content {
    padding: 1rem;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.phone-header-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
}

.phone-header-text {
    flex: 1;
}

    .phone-header-text div:first-child {
        height: 0.75rem;
        width: 6rem;
        border-radius: 9999px;
        background: hsl(var(--muted));
    }

    .phone-header-text div:last-child {
        height: 0.5rem;
        width: 4rem;
        border-radius: 9999px;
        background: hsl(var(--muted) / 0.5);
        margin-top: 0.25rem;
    }

.phone-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phone-card {
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: hsl(var(--muted) / 0.5);
    border: 1px solid hsl(var(--border) / 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.phone-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: hsl(var(--primary) / 0.2);
}

.phone-card-text {
    flex: 1;
}

    .phone-card-text div:first-child {
        height: 0.625rem;
        width: 100%;
        border-radius: 9999px;
        background: hsl(var(--muted));
    }

    .phone-card-text div:last-child {
        height: 0.5rem;
        width: 66%;
        border-radius: 9999px;
        background: hsl(var(--muted) / 0.5);
        margin-top: 0.375rem;
    }

.phone-nav {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: hsl(var(--muted) / 0.5);
    border: 1px solid hsl(var(--border) / 0.5);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 1.5rem;
}

.phone-nav-item {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: hsl(var(--muted));
}

    .phone-nav-item.active {
        background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
    }

.phone-glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    filter: blur(48px);
    opacity: 0.3;
}

.phone-glow-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
}

.mobile-app-content {
    order: 1;
}

@media (min-width: 768px) {
    .mobile-app-content {
        order: 2;
    }
}

.mobile-app-content h2 {
    margin-bottom: 1rem;
}

.mobile-app-content > p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.mobile-app-features {
    list-style: none;
    margin-bottom: 2rem;
}

    .mobile-app-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

        .mobile-app-features li .check-circle {
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 50%;
            background: hsl(var(--primary) / 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .mobile-app-features li .check-circle svg {
                width: 0.875rem;
                height: 0.875rem;
                color: hsl(var(--primary));
            }

.mobile-app-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.mobile-app-rating-stars {
    display: flex;
}

    .mobile-app-rating-stars svg {
        width: 1rem;
        height: 1rem;
        color: hsl(var(--primary));
        fill: hsl(var(--primary));
    }

.mobile-app-rating-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* ===== FAQ ===== */
.faq {
    position: relative;
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 37.5rem;
    height: 37.5rem;
    background: radial-gradient(circle, hsl(var(--primary) / 0.05), transparent);
    border-radius: 50%;
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 0.75rem;
    background: hsl(var(--card) / 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border) / 0.5);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item:hover, .faq-item.open {
        border-color: hsl(var(--primary) / 0.3);
    }

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    color: hsl(var(--foreground));
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

    .faq-question:hover {
        color: hsl(var(--primary));
    }

    .faq-question svg {
        width: 1.25rem;
        height: 1.25rem;
        color: hsl(var(--muted-foreground));
        transition: transform 0.3s, color 0.3s;
        flex-shrink: 0;
    }

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: hsl(var(--primary));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid hsl(var(--border) / 0.5);
}

.footer-cta {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

    .footer-cta h2 {
        margin-bottom: 1rem;
    }

    .footer-cta > p {
        font-size: 1.125rem;
        color: hsl(var(--muted-foreground));
        margin-bottom: 2rem;
    }

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand > p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: hsl(var(--muted) / 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--foreground));
    transition: all 0.2s;
    text-decoration: none;
}

    .footer-social-link:hover {
        background: hsl(var(--primary) / 0.2);
        color: hsl(var(--primary));
    }

    .footer-social-link svg {
        width: 1rem;
        height: 1rem;
    }

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a, .footer-column button {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s;
}

    .footer-column a:hover, .footer-column button:hover {
        color: hsl(var(--foreground));
    }

.footer-bottom {
    border-top: 1px solid hsl(var(--border) / 0.5);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

    .footer-contact a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: hsl(var(--muted-foreground));
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-contact a:hover {
            color: hsl(var(--foreground));
        }

    .footer-contact svg {
        width: 1rem;
        height: 1rem;
    }

/* ===== UTILITIES ===== */
.hidden {
    display: none;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

@media (min-width: 768px) {
    .md-block {
        display: block;
    }
}



.w-100{
    width: 100%;
}

.d-none{
    display: none !important;
}