/* ============================================
   KiranaMitra — Creative Landing Page Styles
   ============================================ */

:root {
    --primary: #6C3CE1;
    --primary-dark: #5A2DCF;
    --primary-light: #8B5CF6;
    --accent: #F59E0B;
    --accent-dark: #D97706;
    --secondary: #1E1B4B;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --light: #F8FAFC;
    --border: #E2E8F0;
    --text: #0F172A;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(108, 60, 225, 0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Animations ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(108, 60, 225, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(108, 60, 225, 0.6), 0 0 60px rgba(108, 60, 225, 0.2);
    }
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3
    }
}

@keyframes subtle-drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -20px) rotate(1deg);
    }

    66% {
        transform: translate(-20px, 15px) rotate(-1deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes particle-float {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Navigation ── */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #fff;
    overflow: hidden;
}

/* SVG shapes layer */
.hero-shapes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Hide old elements */
.hero-bg::before,
.hero-bg::after,
.hero-gradient,
.hero-particles,
.hero-particle,
.hero-ring {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 60, 225, 0.08);
    border: 1px solid rgba(108, 60, 225, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--primary);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-ghost:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 28px;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    width: 100%;
}

.stat-item {
    text-align: center;
    color: var(--text);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: inline;
    color: var(--primary);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    margin-top: 2px;
    color: var(--text-light);
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(108, 60, 225, 0.25);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-bounce 1.5s infinite;
}

/* ── Social Proof ── */
.social-proof {
    background: var(--secondary);
    padding: 1.2rem 0;
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.proof-icon {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.9);
}

/* ── Section Common ── */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Features ── */
.features {
    background: var(--light);
}

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

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.feature-icon-wrap .feature-icon {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.gradient-1 {
    background: linear-gradient(135deg, #EEF2FF, #C7D2FE);
}

.gradient-2 {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.gradient-3 {
    background: linear-gradient(135deg, #ECFDF5, #A7F3D0);
}

.gradient-4 {
    background: linear-gradient(135deg, #FFF1F2, #FECDD3);
}

.gradient-5 {
    background: linear-gradient(135deg, #F0F9FF, #BAE6FD);
}

.gradient-6 {
    background: linear-gradient(135deg, #FDF4FF, #E9D5FF);
}

.gradient-7 {
    background: linear-gradient(135deg, #FFFBEB, #FDE68A);
}

.gradient-8 {
    background: linear-gradient(135deg, #F0FDF4, #BBF7D0);
}

.gradient-9 {
    background: linear-gradient(135deg, #FEF2F2, #FECACA);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

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

/* ── How It Works ── */
.how-it-works {
    background: #fff;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.step-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(108, 60, 225, 0.3);
}

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

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    flex-shrink: 0;
}

/* ── Pricing ── */
.pricing {
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
}

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

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 4px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-badge {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-amount {
    margin-bottom: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    vertical-align: super;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.02em;
}

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

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check {
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
}

.cross {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* ── Tech Stack ── */
.tech-stack {
    background: #fff;
}

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

.tech-item {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.tech-logo {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-logo svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.tech-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.tech-item p {
    color: var(--text-light);
    font-size: 0.82rem;
}

/* ── Downloads ── */
.downloads {
    background: var(--light);
}

.download-container {
    max-width: 600px;
    margin: 0 auto;
}

.payment-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.payment-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.payment-box>p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.payment-price {
    margin-bottom: 1.5rem;
}

.payment-currency {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    vertical-align: super;
}

.payment-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.payment-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.payment-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.payment-trust span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.releases-list {
    margin-top: 2rem;
}

.release-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.release-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.release-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.release-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.release-badge {
    display: inline-block;
    background: var(--success);
    color: #fff;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.release-notes {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.92rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.system-requirements {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 2rem;
    border: 1px solid var(--border);
}

.system-requirements h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.system-requirements ul {
    list-style: none;
    columns: 2;
}

.system-requirements li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.92rem;
}

.system-requirements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── FAQ ── */
.faq {
    background: #fff;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
    font-weight: 300;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ── Credits ── */
.credits {
    background: var(--light);
}

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

.credit-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.credit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.credit-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credit-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
}

.credit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.credit-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

.credit-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.credit-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
}

.credit-links a:hover {
    text-decoration: underline;
}

/* ── Footer ── */
.footer {
    background: var(--secondary);
    color: #fff;
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-social svg {
    fill: currentColor;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: #fff;
}

.footer-license {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* ── Hero Two-Column ── */
.hero-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    text-align: left;
}

.hero-text {
    max-width: 600px;
}

.hero-two-col .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.hero-two-col .hero-buttons {
    justify-content: flex-start;
}

/* Phone Mockup + Stats Column */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.phone-mockup {
    width: 280px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 32px;
    padding: 12px;
    position: relative;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(108, 60, 225, 0.1), 0 4px 20px rgba(0, 0, 0, 0.06);
}

.phone-notch {
    width: 100px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin: 0 auto 12px;
}

.phone-screen {
    background: var(--light);
    border-radius: 20px;
    padding: 16px;
    color: var(--text);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.mockup-header-icon {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.mockup-stat-card {
    background: linear-gradient(135deg, rgba(108, 60, 225, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.mockup-stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.mockup-stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: var(--light);
    border-radius: 8px;
}

.mockup-item-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    flex-shrink: 0;
}

.mockup-item-lines {
    flex: 1;
}

.mockup-line {
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    margin-bottom: 4px;
}

.mockup-line-long {
    width: 80%;
}

.mockup-line-short {
    width: 50%;
    margin-bottom: 0;
}

.mockup-item-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
}

/* ── Lucide Icon Sizing ── */
.logo-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.feature-icon {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.proof-icon {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.9);
}

.tech-logo svg,
.tech-logo i {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.credit-icon svg,
.credit-icon i {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
}

.inline-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    vertical-align: middle;
    margin-right: 4px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.footer-logo-icon {
    width: 22px;
    height: 22px;
    stroke: #fff;
    vertical-align: middle;
}

.payment-lucide-icon {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
}

.trust-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    vertical-align: middle;
    margin-right: 2px;
}

/* ── Coming Soon Badge ── */
.feature-coming-soon {
    position: relative;
    opacity: 0.85;
}

.coming-soon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

/* ── Payment Methods ── */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.method-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.payment-method strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 2px;
}

.payment-method p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Custom Development Section ── */
.custom-dev {
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
}

.custom-dev-content {
    max-width: 700px;
    margin: 0 auto;
}

.custom-dev-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.custom-dev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
}

.custom-dev-icon {
    margin-bottom: 1.5rem;
}

.custom-icon {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
}

.custom-dev-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.custom-dev-card>p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.custom-dev-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.custom-dev-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.custom-dev-features li:last-child {
    border-bottom: none;
}

.custom-check {
    width: 18px;
    height: 18px;
    stroke: var(--success);
    flex-shrink: 0;
}

.custom-dev-pricing {
    margin-bottom: 1.5rem;
}

.custom-price {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.custom-price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-two-col {
        gap: 2rem;
    }

    .phone-mockup {
        width: 240px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-two-col {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: none;
    }

    .hero-two-col .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-two-col .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-stats {
        flex-direction: row;
    }

    .phone-mockup {
        width: 220px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        text-align: center !important;
        margin-top: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .step-connector {
        width: 2px;
        height: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-featured {
        transform: none;
    }

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

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

    .credits-grid {
        grid-template-columns: 1fr;
    }

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

    .system-requirements ul {
        columns: 1;
    }

    .proof-items {
        gap: 1.5rem;
    }

    .proof-item {
        font-size: 0.8rem;
    }

    .custom-dev-card {
        padding: 2rem 1.5rem;
    }

    .payment-methods {
        gap: 8px;
    }
}