/* =====================================================
   ANCHIEV STUDIO — PREMIUM LIGHT DESIGN SYSTEM
   Light mode, glassmorphism, vibrant purple palette
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
    /* Purple Palette */
    --purple-50:  #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7c3aed;
    --purple-800: #6d28d9;
    --purple-900: #4c1d95;

    /* Violet accent */
    --violet-400: #818cf8;
    --violet-500: #6366f1;
    --violet-600: #4f46e5;

    /* Pink accent */
    --pink-400: #f472b6;
    --pink-500: #ec4899;

    /* Light BG */
    --bg-base:     #f8f7ff;
    --bg-surface:  #f0ecff;
    --bg-elevated: #ebe5ff;
    --bg-card:     #ffffff;
    --bg-glass:    rgba(139, 92, 246, 0.06);
    --bg-glass-hover: rgba(139, 92, 246, 0.11);

    /* Text */
    --text-primary:   #1a0a3c;
    --text-secondary: #7c3aed;
    --text-muted:     #6b5f8a;
    --text-body:      #3d3360;

    /* Borders */
    --border:       rgba(139, 92, 246, 0.18);
    --border-hover: rgba(168, 85, 247, 0.45);
    --border-glow:  rgba(168, 85, 247, 0.7);

    /* Gradients */
    --grad-primary:  linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #ec4899 100%);
    --grad-subtle:   linear-gradient(135deg, rgba(168,85,247,0.08) 0%, rgba(99,102,241,0.08) 100%);
    --grad-hero:     linear-gradient(160deg, #f3e8ff 0%, #ede9ff 40%, #f8f7ff 100%);
    --grad-card:     linear-gradient(145deg, #ffffff 0%, #faf5ff 100%);

    /* Shadows */
    --shadow-sm:   0 2px 8px rgba(109,40,217,0.07);
    --shadow-md:   0 8px 24px rgba(109,40,217,0.10);
    --shadow-lg:   0 20px 60px rgba(109,40,217,0.13);
    --shadow-glow: 0 0 30px rgba(168,85,247,0.18);
    --shadow-glow-lg: 0 0 60px rgba(168,85,247,0.14);

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

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

img { max-width: 100%; }

/* ===== PARTICLES ===== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--purple-400);
    opacity: 0;
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.15; }
    90%  { opacity: 0.05; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 0;
    box-shadow: 0 4px 24px rgba(109,40,217,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    z-index: 1001;
}

.brand-icon {
    font-size: 1.2rem;
    color: var(--purple-500);
    animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-link {
    color: var(--text-body) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--purple-700) !important;
    background: var(--bg-glass);
}

.btn-nav-cta {
    background: var(--grad-primary);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
    background: var(--grad-hero);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168,85,247,0.14) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: glow-pulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.10) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: glow-pulse 8s ease-in-out infinite reverse;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236,72,153,0.08) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation: glow-pulse 10s ease-in-out infinite;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168,85,247,0.08);
    border: 1px solid rgba(168,85,247,0.25);
    border-radius: var(--radius-full);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--purple-700);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-hero {
    background: var(--grad-primary);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

.btn-primary-hero:hover::before { opacity: 1; }

.btn-secondary-hero {
    background: white;
    color: var(--purple-700);
    border: 1.5px solid var(--border);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.btn-secondary-hero:hover {
    border-color: var(--purple-500);
    background: var(--purple-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-stat-item { text-align: center; }

.hero-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(168,85,247,0.2);
    animation: ring-pulse 4s ease-in-out infinite;
}

.phone-ring-1 {
    width: 340px;
    height: 340px;
    animation-delay: 0s;
}

.phone-ring-2 {
    width: 430px;
    height: 430px;
    animation-delay: 1s;
    border-color: rgba(139,92,246,0.1);
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}

.phone-mockup {
    width: 240px;
    background: #1a0533;
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(168,85,247,0.3),
        0 30px 80px rgba(109,40,217,0.25),
        0 0 60px rgba(168,85,247,0.1);
    position: relative;
    z-index: 2;
    animation: float-phone 5s ease-in-out infinite;
}

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

.phone-notch {
    width: 80px;
    height: 20px;
    background: #1a0533;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 3;
}

.phone-screen {
    background: linear-gradient(160deg, #1a0a2e 0%, #0d0620 100%);
    border-radius: 28px;
    padding: 1rem;
    min-height: 480px;
    border: 1px solid rgba(168,85,247,0.2);
}

.app-ui { height: 100%; }

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #f5f3ff;
}

.app-status {
    color: #10b981;
    font-size: 0.7rem;
}

.app-card {
    background: rgba(168,85,247,0.15);
    border: 1px solid rgba(168,85,247,0.25);
    border-radius: 12px;
    padding: 0.875rem;
    margin-bottom: 0.75rem;
}

.app-card-label {
    font-size: 0.65rem;
    color: var(--purple-300);
    margin-bottom: 0.25rem;
}

.app-card-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.app-progress {
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    height: 4px;
}

.app-progress-bar {
    height: 100%;
    background: var(--grad-primary);
    border-radius: 999px;
    animation: progress-anim 3s ease-in-out infinite;
}

@keyframes progress-anim {
    0% { width: 40%; }
    50% { width: 65%; }
    100% { width: 52%; }
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.app-mini-card {
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 10px;
    padding: 0.6rem;
    font-size: 0.65rem;
    color: var(--purple-200);
    line-height: 1.4;
}

.app-mini-card small {
    display: block;
    color: var(--purple-400);
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 48px;
    border: 2px solid rgba(168,85,247,0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--purple-500);
    border-radius: 2px;
    animation: scroll-dot-anim 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes scroll-dot-anim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple-600);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 7rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-subtle);
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: var(--radius-lg);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after  { transform: scaleX(1); }

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(168,85,247,0.18);
    box-shadow: 0 0 20px rgba(168,85,247,0.2);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.feature-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(168,85,247,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-500);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 7rem 0;
    position: relative;
    background: var(--bg-surface);
    overflow: hidden;
}

.about-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    filter: blur(60px);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-body);
}

.about-feature-icon {
    color: var(--purple-600);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.4rem;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-badge {
    background: rgba(16,185,129,0.07);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #059669;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge i { font-size: 1.2rem; }

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.pricing-card.featured {
    background: linear-gradient(145deg, #f3e8ff 0%, #ede9ff 100%);
    border-color: var(--purple-400);
    transform: scale(1.03);
    box-shadow: var(--shadow-glow-lg), var(--shadow-lg);
}

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

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

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

.pricing-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    margin-bottom: 0.25rem;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-body);
}

.pricing-features li i {
    color: var(--purple-500);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-pricing {
    width: 100%;
    background: rgba(168,85,247,0.07);
    color: var(--purple-700);
    border: 1.5px solid var(--border);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-pricing:hover {
    background: rgba(168,85,247,0.13);
    border-color: var(--purple-500);
    color: var(--purple-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.featured-btn:hover {
    opacity: 0.9;
    box-shadow: 0 8px 30px rgba(168,85,247,0.35);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168,85,247,0.08) 0%, rgba(99,102,241,0.06) 50%, rgba(236,72,153,0.06) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-glow-1, .cta-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(168,85,247,0.10);
    top: -100px;
    left: -100px;
}

.cta-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(99,102,241,0.10);
    bottom: -100px;
    right: -50px;
}

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

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: var(--grad-primary);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(168,85,247,0.4);
}

/* ===== FOOTER ===== */
footer {
    padding: 5rem 0 2rem;
    background: white;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(168,85,247,0.07) 0%, transparent 70%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    filter: blur(40px);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: rgba(168,85,247,0.1);
    border-color: var(--purple-500);
    color: var(--purple-600);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition-base);
    display: block;
}

.footer-link:hover {
    color: var(--purple-600);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== LEGAL PAGE STYLES ===== */
.legal-page {
    min-height: 100vh;
    background: var(--bg-base);
}

.legal-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(160deg, #f3e8ff 0%, #ede9ff 50%, #f8f7ff 100%);
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.legal-hero-glow {
    position: absolute;
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(168,85,247,0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    pointer-events: none;
}

.legal-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.legal-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-meta-item i { color: var(--purple-500); }

/* Legal Content */
.legal-content-wrap {
    padding: 5rem 0;
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sidebar TOC */
.legal-toc {
    position: sticky;
    top: 5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.legal-toc-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple-600);
    margin-bottom: 1rem;
}

.legal-toc-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.legal-toc-links li a {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: block;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    line-height: 1.4;
}

.legal-toc-links li a:hover {
    color: var(--purple-700);
    background: rgba(168,85,247,0.07);
}

/* Legal Article */
.legal-article h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.legal-article h2:first-child {
    padding-top: 0;
    border-top: none;
}

.legal-article p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-article ul, .legal-article ol {
    margin: 1rem 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-article li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-article strong {
    color: var(--text-body);
    font-weight: 600;
}

.legal-section {
    margin-bottom: 2.5rem;
    scroll-margin-top: 5rem;
}

.legal-contact-box {
    background: rgba(168,85,247,0.05);
    border: 1px solid rgba(168,85,247,0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-contact-box i {
    font-size: 1.5rem;
    color: var(--purple-500);
    flex-shrink: 0;
}

.legal-contact-box a {
    color: var(--purple-700);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color var(--transition-base);
}

.legal-contact-box a:hover {
    text-decoration-color: var(--purple-500);
}

.legal-highlight {
    background: rgba(168,85,247,0.06);
    border-left: 3px solid var(--purple-500);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
}

.legal-highlight p { margin-bottom: 0; }

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--purple-700);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: gap var(--transition-base);
}

.back-link:hover {
    gap: 0.75rem;
    color: var(--purple-800);
}

/* ===== RESPONSIVE — TABLET (≤ 1024px) ===== */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ===== RESPONSIVE — SMALL TABLET (≤ 991px) ===== */
@media (max-width: 991px) {
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero { padding: 6rem 0 4rem; min-height: auto; }
    .hero-visual { order: -1; }
    .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    .about-features { align-items: flex-start; max-width: 400px; margin-left: auto; margin-right: auto; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }

    .legal-layout { grid-template-columns: 1fr; }
    .legal-toc { position: static; }
}

/* ===== RESPONSIVE — MOBILE (≤ 767px) ===== */
@media (max-width: 767px) {
    /* Mobile nav overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border);
        box-shadow: -4px 0 30px rgba(109,40,217,0.1);
    }

    .nav-menu.open { right: 0; }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        color: var(--text-primary) !important;
    }

    .hamburger { display: flex; }

    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .about-grid { gap: 2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }

    .hero-stats { flex-wrap: wrap; gap: 1rem; justify-content: center; }
    .hero-stat-divider { display: none; }

    .phone-ring-1 { width: 260px; height: 260px; }
    .phone-ring-2 { width: 330px; height: 330px; }
    .phone-mockup { width: 200px; }

    .section-header { margin-bottom: 2.5rem; }
    .features { padding: 5rem 0; }
    .about { padding: 5rem 0; }
    .pricing { padding: 5rem 0; }

    .legal-hero { padding: 7rem 0 3rem; }
    .legal-content-wrap { padding: 3rem 0; }
    .legal-meta { gap: 0.75rem; }

    /* Wider container on mobile for legal pages */
    .container { padding: 0 1.25rem; }
}

/* ===== RESPONSIVE — SMALL MOBILE (≤ 480px) ===== */
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary-hero, .btn-secondary-hero { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .cta-section { padding: 3rem 0; }
    .legal-contact-box { flex-direction: column; text-align: center; }
    .legal-meta { flex-direction: column; align-items: center; gap: 0.5rem; }
    .footer-socials { justify-content: flex-start; }
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== TRANSITIONS ===== */
button, a {
    cursor: pointer;
}

/* Print */
@media print {
    .navbar, .cta-section, footer, .particles { display: none; }
    body { background: white; color: black; }
}
