/**
 * Zorbalama Landing Page Styles
 * Restored to match original index.html structure.
 */

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background: radial-gradient(circle at top right, #111827, #0a0f1e);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.15);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(139, 92, 246, 0.15);
    animation-delay: -2s;
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.1);
    animation-delay: -4s;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--color-primary);
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.display-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary.gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #4f46e5 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.btn-outline:hover {
    background: var(--color-surface);
    color: var(--color-text-primary);
}

/* --- Sections --- */
.section {
    padding: 6rem 0;
}

.section-bg {
    background: var(--color-background);
}

.section-bg-alt {
    background: #0f172a;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

/* --- About Grid --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

/* --- Process Flow --- */
.process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
    display: none;
    /* Hidden for now, simpler revert */
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
}

.step-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-background);
    color: var(--color-text-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-surface);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.step-pink {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.step-teal {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.step-orange {
    background: linear-gradient(135deg, #f97316, #c2410c);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

/* --- Features Grid (HR) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

/* --- Assurance Grid --- */
.assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.assurance-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--color-surface);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

.assurance-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* --- Modern FAQ Section --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.accordion-button {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    background: var(--color-surface);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s;
}

.accordion-button:hover {
    color: var(--color-primary);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-text-secondary);
}

.accordion-button.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body {
    padding: 0 2rem 2rem 2rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid transparent;
    transition: border-color 0.3s;
}

/* --- Vision Mission --- */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--color-border);
}

.vm-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vm-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer {
    background: #050811;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-text {
    color: #94a3b8;
    max-width: 300px;
}

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

.footer-heading {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-link {
    display: block;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .about-grid,
    .features-grid,
    .assurance-grid,
    .vm-grid,
    .footer-grid,
    .simple-grid {
        grid-template-columns: 1fr;
    }

    .display-title {
        font-size: 2.5rem;
    }

    .blob {
        display: none;
    }
}

/* ============================================
   HEADER — MODERN REDESIGN
   ============================================ */

.header {
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 12, 28, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.header.scrolled {
    background: rgba(8, 12, 28, 0.97);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Inner nav wrapper */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 1.5rem;
}

/* ---- Brand / Logo ---- */
.brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand:hover .brand-logo {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.55);
}

.brand span {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #e0e7ff 0%, #a5b4fc 60%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---- Desktop Nav Links ---- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    position: relative;
    padding: 0.45rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.9);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 1.4rem);
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #e0e7ff;
    background: rgba(99, 102, 241, 0.08);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ---- Actions (right side) ---- */
.landing-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* CTA button override for header */
.landing-actions .btn.gradient {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
    font-size: 0.875rem;
    padding: 0.55rem 1.2rem;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    white-space: nowrap;
}

.landing-actions .btn.gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(99, 102, 241, 0.5);
    filter: brightness(1.08);
}

/* ---- Mobile Hamburger ---- */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    cursor: pointer;
    color: #e0e7ff;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

/* ============================================
   MOBILE DRAWER MENU
   ============================================ */

/* Overlay backdrop */
.mobile-menu-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    pointer-events: all;
    opacity: 1;
}

/* Dark backdrop */
.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu-overlay.active::before {
    opacity: 1;
}

/* Drawer panel */
.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(80vw, 320px);
    background: linear-gradient(160deg, #0d1221 0%, #111827 100%);
    border-left: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

/* Drawer header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.05rem;
    background: linear-gradient(135deg, #e0e7ff, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-menu-brand-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.close-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: #94a3b8;
    font-size: 1.25rem;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #f1f5f9;
}

/* Drawer links */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem;
    gap: 0.25rem;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    font-size: 0.975rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
    color: #e0e7ff;
}

/* Drawer CTA */
.mobile-menu-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-footer .btn {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 12px;
    padding: 0.875rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* --- Large Tablet (≤1024px) --- */
@media (max-width: 1024px) {
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        gap: 0.1rem;
    }

    .nav-link {
        font-size: 0.82rem;
        padding: 0.4rem 0.6rem;
    }
}

/* --- Tablet (≤900px) --- */
@media (max-width: 900px) {

    .about-grid,
    .vm-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .display-title {
        font-size: 2.8rem;
    }

    .section-heading {
        font-size: 2rem;
    }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    /* Header — hide desktop nav, show hamburger */
    .nav-links {
        display: none;
    }

    .landing-actions .btn {
        display: none;
    }

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

    /* Hero */
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .display-title {
        font-size: 2.2rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-group .btn {
        width: 100%;
        max-width: 320px;
    }

    /* Grids → single column */
    .features-grid,
    .assurance-grid,
    .process-flow {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Summary pill */
    .simple-summary {
        border-radius: 16px;
    }

    /* Section heading */
    .section-heading {
        font-size: 1.75rem;
    }

    /* Pricing */
    #pricing {
        padding: 60px 0;
    }

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

    #pricing .pricing-info-banner,
    #pricing .pricing-trial-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* --- Small Mobile (≤480px) --- */
@media (max-width: 480px) {
    .hero {
        padding: 5.5rem 0 3rem;
    }

    .display-title {
        font-size: 1.8rem;
        line-height: 1.25;
    }

    .lead-text {
        font-size: 0.95rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    /* Simple cards */
    .simple-card {
        padding: 1.75rem;
    }

    /* Process steps */
    .process-step {
        padding: 1.5rem;
    }

    /* Feature cards */
    .feature-card {
        padding: 1.5rem;
    }

    /* Assurance cards */
    .assurance-card {
        padding: 1.75rem;
    }

    /* VM cards */
    .vm-card {
        padding: 1.75rem;
    }

    /* About grid — stack image below text */
    .about-grid {
        gap: 2rem;
    }

    /* Section label */
    .section-label {
        font-size: 0.75rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    /* Pricing */
    #pricing {
        padding: 40px 0;
    }

    #pricing .plan-card {
        padding: 28px 20px;
    }

    #pricing .plan-price .amount {
        font-size: 2.25rem;
    }

    /* Accordion */
    .accordion-button {
        padding: 1.1rem 1.25rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 0 1.25rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Contact form — force single column */
    .grid-cols-2 {
        grid-template-columns: 1fr !important;
    }
}

/* --- Simple Explanation Section --- */
.simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.simple-card {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.simple-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.simple-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.simple-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.simple-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.simple-story {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), #111827);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.simple-story::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 10rem;
    color: rgba(37, 99, 235, 0.05);
    font-family: serif;
    pointer-events: none;
}

.simple-story h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    font-style: italic;
    line-height: 1.8;
}

.simple-summary {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--color-surface);
    border-radius: 100px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}



/* Pricing Section - Premium Dark Theme */
#pricing {
    background: #0a0f1e;
    color: #f1f5f9;
    padding: 100px 0;
    --pricing-accent: #6366f1;
    --pricing-accent2: #8b5cf6;
    --pricing-surface: #111827;
    --pricing-surface2: #1c2437;
    --pricing-border: rgba(255, 255, 255, 0.08);
    --pricing-muted: #94a3b8;
    --pricing-success: #10b981;
    --pricing-warning: #f59e0b;
}

#pricing .pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

#pricing .pricing-hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

#pricing .pricing-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

#pricing .pricing-hero-title span {
    background: linear-gradient(135deg, var(--pricing-accent), var(--pricing-accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#pricing .pricing-hero-desc {
    color: var(--pricing-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

#pricing .billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

#pricing .toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: var(--pricing-surface2);
    border-radius: 99px;
    cursor: pointer;
    border: 1px solid var(--pricing-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#pricing .toggle-switch.active {
    background: var(--pricing-accent);
}

#pricing .toggle-knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#pricing .toggle-switch.active .toggle-knob {
    transform: translateX(28px);
}

#pricing .save-badge {
    background: linear-gradient(135deg, var(--pricing-success), #059669);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    margin-left: 8px;
}

#pricing .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

#pricing .plan-card {
    background: var(--pricing-surface);
    border: 1px solid var(--pricing-border);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

#pricing .plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#pricing .plan-card.featured {
    border-color: var(--pricing-accent);
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.1), var(--pricing-surface));
    box-shadow: 0 0 0 1px var(--pricing-accent), 0 20px 60px rgba(99, 102, 241, 0.15);
}

#pricing .featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pricing-accent), var(--pricing-accent2));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 99px;
    white-space: nowrap;
}

#pricing .plan-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pricing-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

#pricing .plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

#pricing .plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

#pricing .plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pricing-muted);
}

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

#pricing .plan-annual-info {
    font-size: 0.85rem;
    color: var(--pricing-success);
    font-weight: 500;
    min-height: 1.2em;
}

#pricing .plan-desc {
    font-size: 0.95rem;
    color: var(--pricing-muted);
    line-height: 1.6;
}

#pricing .plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

#pricing .plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

#pricing .plan-features li::before {
    content: "✓";
    color: var(--pricing-success);
    font-weight: 800;
}

#pricing .pricing-info-banner,
#pricing .pricing-trial-banner {
    background: var(--pricing-surface2);
    border: 1px solid var(--pricing-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#pricing .pricing-trial-banner {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.05);
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    #pricing .plans-grid {
        grid-template-columns: 1fr;
    }
}

