/*
============================================================
LITTLE STARLINGS - MODERN WEBAPP STYLES
============================================================
Playful, animated, webapp-style design
============================================================
*/

:root {
    /* Colors - Modern gradient palette */
    --color-primary: #6366f1;
    --color-primary-dark: #4f46e5;
    --color-secondary: #8b5cf6;
    --color-accent: #fbbf24;
    --color-accent-light: #fef3c7;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-hero: linear-gradient(135deg, #fdf4ff 0%, #f5f3ff 50%, #eff6ff 100%);
    --gradient-text: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);

    /* Neutrals */
    --color-text: #1e293b;
    --color-text-muted: #64748b;
    --color-bg: #ffffff;
    --color-bg-soft: #f8fafc;
    --color-border: #e2e8f0;

    /* Feature icon colors */
    --icon-purple: #8b5cf6;
    --icon-blue: #3b82f6;
    --icon-green: #10b981;
    --icon-orange: #f97316;
    --icon-pink: #ec4899;
    --icon-teal: #14b8a6;
    --icon-yellow: #eab308;
    --icon-red: #ef4444;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
    --space-4xl: 8rem;

    /* Typography */
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 1000;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   BACKGROUND BLOBS
   ============================================================ */
.bg-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #c7d2fe 0%, #ddd6fe 100%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #fbcfe8 0%, #fce7f3 100%);
    bottom: 20%;
    left: -150px;
    animation-delay: -7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 100%);
    top: 50%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-ghost {
    color: var(--color-text);
}

.btn-ghost:hover {
    color: var(--color-primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-full { width: 100%; }

.btn-glow {
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-glow:hover {
    box-shadow: var(--shadow-lg), 0 0 60px rgba(99, 102, 241, 0.4);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform var(--transition);
}

.logo:hover { transform: scale(1.02); }

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

.logo-full {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition);
    position: relative;
}

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

.nav-link:hover { color: var(--color-primary); }
.nav-link:hover::after { width: 100%; }

/* Mobile menu button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    position: relative;
    transition: background var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: transform var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.mobile-menu-btn[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile nav */
.mobile-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.mobile-nav[hidden] { display: none; }

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

.mobile-nav-list a:hover {
    background: var(--color-bg-soft);
}

@media (min-width: 768px) {
    .nav { display: flex; }
    .mobile-menu-btn { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--gradient-hero);
    overflow: visible;
}

.hero .container {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-content { text-align: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    animation: fade-in-up 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fade-in-up 0.6s ease-out 0.1s both;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 540px;
    margin: 0 auto 2rem;
    animation: fade-in-up 0.6s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
    animation: fade-in-up 0.6s ease-out 0.3s both;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    animation: fade-in-up 0.6s ease-out 0.4s both;
}

.avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    margin-left: -8px;
    border: 2px solid white;
}

.avatar:first-child { margin-left: 0; }

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fade-in-up 0.8s ease-out 0.5s both;
}

.browser-frame {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 100%;
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f1f5f9;
    border-bottom: 1px solid var(--color-border);
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.browser-dot:nth-child(1) { background: #fca5a5; }
.browser-dot:nth-child(2) { background: #fcd34d; }
.browser-dot:nth-child(3) { background: #86efac; }

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    background: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-sm);
    margin: 0 2rem;
}

.browser-content {
    background: #f8fafc;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-content img {
    width: 100%;
    height: auto;
}

/* Floating cards */
.float-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.float-card-icon { font-size: 1.25rem; }

.float-card-1 {
    top: 10%;
    left: -10%;
    animation: float-1 6s ease-in-out infinite;
}

.float-card-2 {
    top: 60%;
    right: -5%;
    animation: float-2 7s ease-in-out infinite;
}

.float-card-3 {
    bottom: 5%;
    left: 5%;
    animation: float-3 5s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

.floating-slow {
    animation: floating 8s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

@media (min-width: 768px) {
    .hero-actions { flex-direction: row; }

    .float-card-1 { left: -15%; }
    .float-card-2 { right: -10%; }
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
    }

    .hero-content { text-align: left; }
    .hero-subtitle { margin: 0 0 2rem; }
    .hero-actions { justify-content: flex-start; }
    .hero-social-proof { justify-content: flex-start; }
}

/* ============================================================
   LOGOS SECTION
   ============================================================ */
.logos-section {
    padding: var(--space-2xl) 0;
    background: white;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.logos-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.logos-track {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-scroll {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
    opacity: 0.6;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
    padding: var(--space-2xl) 0;
    background: white;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--color-bg-soft);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition);
}

.trust-badge:hover {
    background: #ede9fe;
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.1rem;
}

.trust-text {
    white-space: nowrap;
}

@media (min-width: 768px) {
    .trust-badges {
        gap: 1.5rem;
    }

    .trust-badge {
        padding: 0.75rem 1.25rem;
    }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--color-accent-light);
    color: #92400e;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    padding: var(--space-4xl) 0;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.feature-icon-purple { background: #ede9fe; color: var(--icon-purple); }
.feature-icon-blue { background: #dbeafe; color: var(--icon-blue); }
.feature-icon-green { background: #d1fae5; color: var(--icon-green); }
.feature-icon-orange { background: #ffedd5; color: var(--icon-orange); }
.feature-icon-pink { background: #fce7f3; color: var(--icon-pink); }
.feature-icon-teal { background: #ccfbf1; color: var(--icon-teal); }
.feature-icon-yellow { background: #fef3c7; color: var(--icon-yellow); }
.feature-icon-red { background: #fee2e2; color: var(--icon-red); }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

/* Feature Spotlight */
.feature-spotlight {
    margin-top: var(--space-3xl);
    display: grid;
    gap: 2rem;
    align-items: center;
    background: var(--color-bg-soft);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.spotlight-content {
    text-align: center;
}

.spotlight-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.spotlight-content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.spotlight-content .step-list {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.spotlight-visual {
    display: flex;
    justify-content: center;
}

.spotlight-visual .browser-frame {
    max-width: 100%;
}

.spotlight-visual .browser-content img {
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .feature-spotlight {
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
        padding: 3rem;
    }

    .spotlight-content {
        text-align: left;
    }

    .spotlight-content .step-list {
        display: flex;
    }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-soft);
}

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

.step {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.step-visual {
    position: relative;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.step-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.step-image img {
    width: 100%;
    display: block;
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-list li {
    font-size: 1rem;
    font-weight: 500;
}

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

    .step-reverse .step-visual { order: 1; }
    .step-reverse .step-content { order: 0; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    padding: var(--space-4xl) 0;
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
}

.price-period {
    color: var(--color-text-muted);
}

.price-original {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.pricing-desc {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.pricing-features .check {
    color: #10b981;
    font-weight: 600;
}

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

    .pricing-card-featured {
        transform: scale(1.05);
    }

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

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-soft);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-muted);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: var(--space-4xl) 0;
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    display: grid;
    gap: 2rem;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content h2 .gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #fef3c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

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

.cta-actions .btn-primary:hover {
    background: #f8fafc;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-visual {
    display: none;
}

.cta-emoji {
    font-size: 6rem;
    animation: floating 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .cta-card {
        grid-template-columns: 1fr auto;
        padding: 4rem;
    }

    .cta-visual {
        display: block;
        position: relative;
        z-index: 1;
    }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-soft);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.contact-method:hover {
    box-shadow: var(--shadow-md);
}

.contact-method-icon {
    font-size: 1.5rem;
}

.contact-method span {
    display: flex;
    flex-direction: column;
}

.contact-method strong {
    font-size: 0.95rem;
}

.contact-method span span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Contact form */
.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
    border-color: #ef4444;
}

.form-error {
    font-size: 0.8rem;
    color: #ef4444;
    min-height: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.form-success[hidden] { display: none; }

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--color-text-muted);
}

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-text);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: white;
    -webkit-text-fill-color: white;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-subdomain strong {
    color: var(--color-accent);
}

.footer-nav h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 1rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
}

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

/* ============================================================
   ANIMATION ON SCROLL (data-aos attribute)
   ============================================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   UTILITIES
   ============================================================ */
[hidden] { display: none !important; }
