/* ========================================
   Q-Less Landing Page Styles
   ======================================== */

:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --accent: #ec4899;
    --accent-light: #f472b6;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #0a0a0f;

    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;

    --white: #ffffff;
    --black: #000000;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Typography */
    --font-family: "Inter", system-ui, -apple-system, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md:
        0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg:
        0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl:
        0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 200ms ease;
    --transition-slow: 300ms ease;
}

/* ========================================
   Reset & Base
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* ========================================
   Utilities
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-500);
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--font-size-4xl);
    }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
}

.btn--outline:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn--ghost:hover {
    color: var(--gray-900);
    background: var(--gray-100);
}

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

.btn--white:hover {
    background: var(--gray-100);
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-base);
}

.btn--full {
    width: 100%;
}

/* ========================================
   Floating Navigation (Pill Style)
   ======================================== */

.floating-nav {
    position: fixed;
    top: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.floating-nav__pill {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 6px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.floating-nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding-left: var(--space-3);
    padding-right: var(--space-4);
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--white);
    position: relative;
}

.floating-nav__logo-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    filter: blur(8px);
    opacity: 0.5;
    left: var(--space-3);
    width: 32px;
    height: 32px;
}

.floating-nav__logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: var(--font-size-sm);
}

.floating-nav__divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
}

.floating-nav__links {
    display: none;
    align-items: center;
    gap: var(--space-1);
}

.floating-nav__links a {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
    border-radius: var(--radius-full);
}

.floating-nav__links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.floating-nav__link {
    display: none;
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.floating-nav__link:hover {
    color: var(--white);
}

.floating-nav__cta {
    padding: var(--space-2) var(--space-5);
    font-size: var(--font-size-sm);
    font-weight: 600;
    background: var(--white);
    color: var(--gray-900);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.floating-nav__cta:hover {
    background: var(--gray-100);
}

.floating-nav__divider--mobile-hidden {
    display: none;
}

@media (min-width: 768px) {
    .floating-nav__links,
    .floating-nav__link {
        display: flex;
    }

    .floating-nav__divider--mobile-hidden {
        display: block;
    }
}

/* Legacy nav styles (kept for reference/mobile menu) */
.nav__mobile-toggle {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 99;
    padding: var(--space-24) var(--space-6) var(--space-6);
    display: none;
    flex-direction: column;
    gap: var(--space-4);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--gray-700);
    padding: var(--space-3) 0;
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: var(--space-4) 0;
}

/* ========================================
   Hero
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-24) 0 var(--space-16);
    overflow: hidden;
    background: var(--gray-950);
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero__blob--1 {
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.3);
    animation: float 8s ease-in-out infinite;
}

.hero__blob--2 {
    bottom: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.2);
    animation: float 10s ease-in-out infinite reverse;
}

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

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

.hero__container {
    position: relative;
    display: grid;
    gap: var(--space-12);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (min-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.hero__content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero__content {
        text-align: left;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--space-6);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-6);
}

.hero__title-gradient {
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        var(--accent-light) 50%,
        var(--primary-light) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s linear infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: var(--font-size-6xl);
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: var(--font-size-7xl);
    }
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-8);
    max-width: 500px;
}

@media (min-width: 1024px) {
    .hero__subtitle {
        margin-left: 0;
        margin-right: auto;
    }
}

.hero__subtitle strong {
    color: rgba(255, 255, 255, 0.9);
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

@media (min-width: 640px) {
    .hero__cta {
        flex-direction: row;
        justify-content: center;
    }
}

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

.hero__note {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.4);
}

/* Phone Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone {
    position: relative;
    width: 280px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 42px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

.phone__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: var(--gray-900);
    border-radius: 20px;
    z-index: 10;
}

.phone__screen {
    background: var(--gray-950);
    border-radius: 32px;
    padding: var(--space-6);
    padding-top: var(--space-10);
}

.phone__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.phone__logo {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: var(--font-size-xs);
}

.phone__number-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
}

.phone__number {
    text-align: center;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        var(--primary-light),
        var(--accent-light)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-6);
}

.phone__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.phone__stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-3);
    text-align: center;
}

.phone__stat-value {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
}

.phone__stat-label {
    display: block;
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
}

.phone__btn {
    width: 100%;
    padding: var(--space-3);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* Floating elements */
.hero__floating {
    position: absolute;
    font-size: 32px;
    animation: float 4s ease-in-out infinite;
}

.hero__floating--1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.hero__floating--2 {
    top: 50%;
    right: -20px;
    animation-delay: 1s;
}

.hero__floating--3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

/* ========================================
   Social Proof
   ======================================== */

.social-proof {
    background: var(--gray-950);
    padding: var(--space-12) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-proof__text {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-6);
}

.social-proof__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
}

.social-proof__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.social-proof__logo svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   Features
   ======================================== */

.features {
    padding: var(--space-24) 0;
    background: var(--white);
}

.features__grid {
    display: grid;
    gap: var(--space-8);
}

@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 {
    padding: var(--space-6);
    border-radius: var(--radius-2xl);
    background: var(--gray-50);
    transition: all var(--transition);
}

.feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.feature__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.feature__icon--purple {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.feature__icon--pink {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}
.feature__icon--blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.feature__icon--green {
    background: linear-gradient(135deg, #10b981, #34d399);
}
.feature__icon--orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}
.feature__icon--red {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.feature__title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.feature__text {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   How It Works
   ======================================== */

.how-it-works {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.step {
    display: grid;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 768px) {
    .step {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }

    .step--reverse .step__content {
        order: 2;
    }

    .step--reverse .step__visual {
        order: 1;
    }
}

.step__number {
    display: none;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    font-size: var(--font-size-xl);
    font-weight: 800;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

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

.step__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.step__text {
    font-size: var(--font-size-base);
    color: var(--gray-500);
    line-height: 1.7;
}

.step__visual {
    display: flex;
    justify-content: center;
}

/* Step Mockups */
.step__mockup {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    width: 280px;
}

.step__mockup-header {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.step__mockup-input {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: var(--space-3);
    color: var(--gray-700);
    margin-bottom: var(--space-4);
}

.step__mockup-btn {
    background: var(--primary);
    color: var(--white);
    padding: var(--space-3);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
}

.step__qr {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.step__qr-code {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--space-4);
    color: var(--gray-900);
}

.step__qr span {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.step__dashboard {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    width: 300px;
}

.step__dashboard-current {
    text-align: center;
    margin-bottom: var(--space-4);
}

.step__dashboard-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-bottom: var(--space-2);
}

.step__dashboard-number {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--primary);
}

.step__dashboard-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.step__dashboard-btn {
    padding: var(--space-3);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--white);
}

.step__dashboard-btn--success {
    background: var(--success);
}

.step__dashboard-btn--danger {
    background: var(--danger);
}

/* ========================================
   Stats Section
   ======================================== */

.stats-section {
    padding: var(--space-24) 0;
    background: var(--white);
}

.stats-section__content {
    display: grid;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 768px) {
    .stats-section__content {
        grid-template-columns: 1fr 1fr;
    }
}

.stats-section__title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
}

.stats-section__subtitle {
    font-size: var(--font-size-base);
    color: var(--gray-500);
    margin-bottom: var(--space-6);
}

.stats-section__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.stats-section__list li {
    font-size: var(--font-size-base);
    color: var(--gray-700);
}

.stats-card {
    background: var(--gray-900);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    color: var(--white);
}

.stats-card__header {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-4);
}

.stats-card__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.stats-card__item {
    text-align: center;
}

.stats-card__value {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.stats-card__label {
    display: block;
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
}

.stats-card__estimate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--font-size-sm);
}

.stats-card__estimate span {
    color: rgba(255, 255, 255, 0.5);
}

.stats-card__estimate strong {
    font-size: var(--font-size-xl);
    color: var(--success);
}

/* ========================================
   Pricing
   ======================================== */

.pricing {
    padding: var(--space-24) 0;
    background: var(--gray-50);
}

.pricing__grid {
    display: grid;
    gap: var(--space-8);
    max-width: 800px;
    margin: 0 auto;
}

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

.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 2px solid var(--gray-200);
}

.pricing-card--featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.pricing-card__header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.pricing-card__name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-1);
}

.pricing-card__amount {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--gray-900);
}

.pricing-card__period {
    font-size: var(--font-size-base);
    color: var(--gray-500);
}

.pricing-card__features {
    margin-bottom: var(--space-8);
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: var(--font-size-sm);
    color: var(--gray-700);
}

.pricing-card__feature svg {
    flex-shrink: 0;
    color: var(--success);
}

.pricing-card__feature--disabled {
    color: var(--gray-400);
}

.pricing-card__feature--disabled svg {
    color: var(--gray-300);
}

/* ========================================
   Use Cases
   ======================================== */

.use-cases {
    padding: var(--space-24) 0;
    background: var(--white);
}

.use-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

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

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

.use-case {
    text-align: center;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    background: var(--gray-50);
    transition: all var(--transition);
}

.use-case:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.use-case__emoji {
    font-size: 36px;
    display: block;
    margin-bottom: var(--space-3);
}

.use-case h3 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-700);
}

/* ========================================
   CTA
   ======================================== */

.cta {
    padding: var(--space-24) 0;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
}

.cta__content {
    text-align: center;
}

.cta__title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .cta__title {
        font-size: var(--font-size-4xl);
    }
}

.cta__text {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: var(--space-16) 0 var(--space-8);
    background: var(--gray-900);
    color: var(--white);
}

.footer__grid {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 700;
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-4);
}

.footer__logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.footer__tagline {
    color: var(--gray-400);
    font-size: var(--font-size-sm);
}

.footer__links h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--gray-300);
}

.footer__links a {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--gray-400);
    padding: var(--space-2) 0;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer__bottom p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}
