/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Theme-aware image toggles */
.theme-img { display: none; }
.theme-img--dark { display: block; }
.theme-light .theme-img--dark { display: none; }
.theme-light .theme-img--light { display: block; }

/* Theme toggle button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.theme-toggle:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-1px); }
.theme-toggle .material-symbols-outlined { font-size: 18px; line-height: 1; }

/* Landing Container with Exact Gradient */
.landing-container {
    min-height: 100vh;
    /* Two diagonal gradients meeting over a black core */
    background:
        linear-gradient(to bottom right, #FFF6E8 0%, #F97316 31%, rgba(0,0,0,0) 54%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom left, #FFF6E8 0%, #F97316 31%, rgba(0,0,0,0) 54%, rgba(0,0,0,0) 100%),
        #000000;
    position: relative;
    background-attachment: fixed, fixed, fixed; /* parallax-like effect */
}

/* Light theme overrides (non-destructive): apply by setting .theme-light on <html> */
.theme-light body {
    background: #ffffff;
    color: #111111;
}

.theme-light .landing-container {
    /* Keep the same strong orange hero gradient in light mode */
    background:
        linear-gradient(to bottom right, #FFF6E8 0%, #F97316 31%, rgba(0,0,0,0) 54%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom left, #FFF6E8 0%, #F97316 31%, rgba(0,0,0,0) 54%, rgba(0,0,0,0) 100%),
        #ffffff;
}

.theme-light .nav-container {
    border-color: rgba(0, 0, 0, 0.10);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(0,0,0,0.04);
}
.theme-light .brand-name,
.theme-light .nav-link { color: #111111; }
.theme-light .nav-toggle { color: #111111; }

.theme-light .btn-login {
    color: #111111;
    border-color: rgba(0, 0, 0, 0.2);
}
.theme-light .btn-login:hover { background: rgba(0, 0, 0, 0.06); }
.theme-light .btn-signup { background: #111111; color: #ffffff; }
.theme-light .btn-signup:hover { background: #000000; }

.theme-light .theme-toggle { background: rgba(0,0,0,0.06); color: #111111; border-color: rgba(0,0,0,0.18); }
.theme-light .theme-toggle:hover { background: rgba(0,0,0,0.10); }

.theme-light .hero-title,
.theme-light .cards-title,
.theme-light .section-heading { color: #111111; }
.theme-light .hero-subtitle,
.theme-light .section-subtitle,
.theme-light .card-text { color: #333333; }

.theme-light .dashboard-mockup::after { box-shadow: 0 30px 100px rgba(0, 0, 0, 0.12); }

.theme-light .feature-box { background: rgba(0, 0, 0, 0.02); border-color: rgba(0,0,0,0.08); }
.theme-light .feature-title { color: #111111; }
.theme-light .feature-tag { background: rgba(0,0,0,0.05); color: #111111; border-color: rgba(0,0,0,0.08); }

.theme-light .pricing-card { background: rgba(255,255,255,0.75); border-color: rgba(0,0,0,0.08); }
.theme-light .pricing-card .checkmark { color: #10b981; }
.theme-light .featured-badge { background: rgba(249, 115, 22, 0.1); color: #f97316; border-color: rgba(249,115,22,0.25); }

.theme-light .cards-grid .card { background: rgba(255,255,255,0.75); border-color: rgba(0,0,0,0.07); }

.theme-light .footer { background: #ffffff; border-top: 1px solid rgba(0,0,0,0.08); }
.theme-light .footer-content { color: #0f172a; }
.theme-light .footer-section { color: #0f172a; }
.theme-light .footer-brand-name { color: #0f172a; }
.theme-light .footer-description { color: rgba(17,17,17,0.7); }
.theme-light .social-link { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); color: rgba(17,17,17,0.7); }
.theme-light .social-link:hover { background: rgba(0,0,0,0.1); color: #111111; }
.theme-light .footer-title { color: #0f172a; }
.theme-light .footer-link { color: rgba(17,17,17,0.7); }
.theme-light .footer-link:hover { color: #111111; }
.theme-light .footer-bottom { border-top: 1px solid rgba(0,0,0,0.08); }
.theme-light .footer-copyright { color: rgba(17,17,17,0.65); }
.theme-light .footer-bottom-link { color: rgba(17,17,17,0.65); }
.theme-light .footer-bottom-link:hover { color: #111111; }

/* Extended light theme coverage for all sections */
.theme-light .dashboard-mockup {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(0,0,0,0.04);
}

/* --- Modern Blog Styles --- */
.blog-container{max-width:960px;margin:120px auto 48px;padding:0 20px}
.blog-grid{display:grid;grid-template-columns:1fr;gap:20px}
.post-card{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);border-radius:16px;overflow:hidden;transition:transform .18s ease,background .18s ease,border-color .18s ease}
.post-card:hover{transform:translateY(-2px);background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.14)}
.post-cover{width:100%;height:260px;object-fit:cover}
.post-body{padding:18px 22px}
.post-title{font-size:22px;margin:0 0 6px 0}
.post-excerpt{color:#aeb0b5;margin:8px 0 12px}
.post-meta{font-size:12px;color:#9aa0a6}

.post-hero{max-width:860px;margin:120px auto 40px;padding:0 20px}
.post-header{margin-bottom:18px;border-bottom:1px solid rgba(255,255,255,.08);padding-bottom:14px}
.post-header h1{margin:0 0 6px 0;font-size:34px;letter-spacing:-.01em}
.post-content{font-size:17px;line-height:1.75;color:#e5e7eb}
.post-content h2{font-size:24px;margin:28px 0 10px}
.post-content p{margin:0 0 16px}
.post-content img{border-radius:14px;margin:14px 0}

html.theme-light .post-card{background:#fff;border-color:#ececec}
html.theme-light .post-card:hover{background:#fff;border-color:#ddd}
html.theme-light .post-excerpt{color:#475569}
html.theme-light .post-meta{color:#64748b}
html.theme-light .post-content{color:#1f2937}
.theme-light .dashboard-image { box-shadow: 0 0 0 1px rgba(0,0,0,0.06) inset; }

.theme-light .why-section,
.theme-light .pricing-section,
.theme-light .cards-section,
.theme-light .try-section { background: #ffffff; }

.theme-light .section-container,
.theme-light .pricing-container,
.theme-light .cards-container,
.theme-light .try-content { color: #0f172a; }

.theme-light .section-badge {
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #0f172a;
}
.theme-light .section-subtitle,
.theme-light .cards-subtitle { color: rgba(0, 0, 0, 0.65); }

.theme-light .btn-view-demo,
.theme-light .btn-try-chat {
    color: #111111;
    border-color: rgba(0, 0, 0, 0.2);
}
.theme-light .btn-view-demo:hover,
.theme-light .btn-try-chat:hover { background: rgba(0, 0, 0, 0.05); }

.theme-light .card { background: rgba(255,255,255,0.9); border-color: rgba(0,0,0,0.08); }
.theme-light .card-title { color: #111111; }
.theme-light .card-text { color: rgba(17, 17, 17, 0.75); }
.theme-light .card-icon { background: rgba(0,0,0,0.06); color: #111111; border-color: rgba(0,0,0,0.12); box-shadow: none; }

.theme-light .plan-name,
.theme-light .currency,
.theme-light .price,
.theme-light .period { color: #111111; }
.theme-light .features-list .feature-item { color: rgba(17, 17, 17, 0.85); }
.theme-light .pricing-card.featured { background: linear-gradient(135deg, rgba(249,115,22,0.10), rgba(255,255,255,0.95)); border: 1px solid rgba(249,115,22,0.25); box-shadow: 0 8px 24px rgba(249,115,22,0.15); }

.theme-light .toggle-label { color: rgba(17, 17, 17, 0.7); }
.theme-light .toggle-slider { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.12); }
.theme-light .toggle-slider:before { background: #ffffff; box-shadow: 0 2px 4px rgba(0,0,0,0.15); }

.theme-light .try-title { color: #0f172a; }
.theme-light .try-subtitle { color: rgba(17, 17, 17, 0.75); }
.theme-light .btn-book-call { color: #ffffff; }

/* Stats (About) section - light theme */
.theme-light .stats-section { background: #ffffff; }
.theme-light .stats-container { color: #0f172a; }
.theme-light .stat-number { color: #0f172a; }
.theme-light .stat-number .accent { color: #F97316; }
.theme-light .stat-label { color: rgba(17,17,17,0.7); }
.theme-light .about-title { color: #0f172a; }
.theme-light .about-text p { color: rgba(17,17,17,0.75); }
.theme-light .services-label { color: #F97316; }

/* Keep calendar feature card orange in both themes */
.theme-light .calendar-box {
    background: linear-gradient(135deg, #F97316 0%, #EF4444 100%);
    color: #ffffff;
    border: none;
}
.theme-light .calendar-box .feature-title { color: #ffffff; }
.theme-light .calendar-box .feature-badge { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.95); }
.theme-light .calendar-box .feature-tag { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.22); }
.theme-light .calendar-box .explore-btn { background: rgba(255,255,255,0.18); color: #ffffff; border-color: rgba(255,255,255,0.22); }
.theme-light .calendar-box .explore-btn:hover { background: rgba(255,255,255,0.28); border-color: rgba(255,255,255,0.35); }

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 1200;
    padding: 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 12px; /* tighter to the right edge for signup */
    padding-left: 24px; /* keep generous left spacing for brand */
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(17, 17, 23, 0.35); /* glass base */
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center; /* center the links block */
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    opacity: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.nav-toggle .material-symbols-outlined { font-size: 22px; }

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: transparent; /* do not dim/blur full page */
    opacity: 0;
    pointer-events: none; /* let clicks pass through except the menu box */
    visibility: hidden; /* ensure it cannot intercept clicks */
    transition: opacity 0.25s ease;
    z-index: 950; /* below navbar (1000) */
}
.mobile-menu.open { opacity: 1; pointer-events: auto; visibility: visible; }
.mobile-menu .mobile-menu-inner {
    position: absolute;
    top: 0; /* set via JS for exact 10px gap below navbar */
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 90vw;
    max-width: 480px;
    background: rgba(17, 17, 23, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.06);
    pointer-events: none; /* disabled unless menu is open */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.mobile-menu.open .mobile-menu-inner { pointer-events: auto; opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* Center the homepage language dropdown under its trigger (dashboard unaffected) */
.navbar .lang-switcher { position: relative; }
.navbar .lang-switcher .lang-menu {
    right: 0 !important;
    left: auto !important;
    transform: none !important;
    top: calc(100% + 10px) !important;
}

/* Hide mobile menu entirely on desktop widths */
@media (min-width: 1000px) {
    .mobile-menu { display: none !important; }
}
.mobile-link {
    display: block;
    padding: 12px 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid transparent;
}
.mobile-link:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}
.mobile-actions {
    display: flex;
    gap: 10px;
    padding: 8px 4px 4px;
}
.no-scroll { overflow: hidden; }

.btn-login {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-signup {
    background: #ffffff;
    color: #000000;
    border: 1px solid transparent; /* match login height visually */
    height: 36px;
    padding: 0 18px; /* a touch wider; aligns with right curve */
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-signup:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding-top: 190px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
}

/* Hero layout: title left, description+buttons right using flexbox */
.hero-wrapper {
    display: flex;
    align-items: stretch; /* make both columns share the same height */
    gap: 80px;
    width: 100%;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-right {
    flex: 1;
    flex-direction: column;
    gap: 0;
    justify-content: space-between; /* top paragraph and bottom CTAs align with left column */
}

/* Ensure 50/50 columns so widths are predictable */
.hero-left,
.hero-right {
    flex: 0 0 50%;
}

.hero-title {
    font-size: clamp(56px, 7vw, 110px);
    font-weight: 800;
    line-height: 0.95;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: -0.035em;
    /* Better multi-line balancing for longer localized headings */
    text-wrap: balance;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0; /* avoid extra bottom padding – buttons sit flush via space-between */
    letter-spacing: -0.01em;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.btn-get-started {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-get-started:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-view-demo {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.btn-view-demo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Dashboard Section - Below text content, same width as text (right column) */
.dashboard-section {
    width: 100%;
    align-self: stretch;
    margin-top: 80px;
}

.dashboard-mockup {
    width: 100%;
    position: relative;
    border-radius: 24px 24px 0 0; /* square bottom edge */
    overflow: hidden;
    padding: 24px; /* frame padding like a device bezel */
    background: rgba(0,0,0,0.80);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.45), /* outer shadow */
        inset 0 1px 0 rgba(255,255,255,0.08), /* inner highlight */
        inset 0 0 0 1px rgba(255,255,255,0.06); /* soft inner stroke */
    /* crop the mockup so only the top portion is visible */
    height: clamp(360px, 48vw, 620px);
}

/* top-edge glow only, drawn inside the border area */
.dashboard-mockup::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 28px; /* glow height */
    border-radius: 24px 24px 0 0;
    border: 1px solid transparent; /* required for mask technique */
    pointer-events: none;
    background: radial-gradient(120% 120% at 50% -40%, rgba(255,255,255,0.45), rgba(255,255,255,0.18) 40%, rgba(255,255,255,0.0) 65%) border-box;
    /* show gradient only in the border ring */
    -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px 16px 0 0; /* square bottom edge inside */
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset; /* subtle inner border for screen */
}

/* Why Us Section */
.why-section {
    background: #0f0f11;
    padding: 96px 0 120px;
}

.why-section .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 64px auto 0;
}

.section-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 24px;
}

.section-heading {
    font-size: clamp(28px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px 0;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 820px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background: #0f0f11;
    padding: 120px 0;
    position: relative;
}

.pricing-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
}

/* Cards Content Section */
.cards-section {
    background: #0f0f11;
    padding: 120px 0;
}

.cards-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
    color: #ffffff;
}

.cards-header {
    max-width: 900px;
    margin: 0 auto 48px auto;
    text-align: center;
}

.cards-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin: 8px 0 16px 0;
}

.cards-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 820px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* Fixed row height to make spans align perfectly */
    --cardRowH: 280px;
    grid-auto-rows: var(--cardRowH);
    gap: 24px;
    margin-top: 32px;
}

.card {
    background: rgba(17, 17, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    text-align: left;
    overflow: hidden; /* clip overflowing media at card edges */
    --card-media-gap: 0px; /* default, can be overridden per layout */
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.card-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: left;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25) inset;
    line-height: 1;
}

.card-icon.material-symbols-outlined {
    font-size: 24px;
    line-height: 1;
    vertical-align: middle;
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.card-media {
    margin-top: auto;
    background: transparent;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    /* fixed media area for a cleaner look */
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: var(--card-media-gap);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

/* Portrait screenshots: make them use full width and natural height */
.card-complex .card-media,
.card-task .card-media {
    aspect-ratio: auto;
    /* keep a bottom gap so media doesn't touch the border */
    --card-media-gap: 20px;
    max-height: calc(100% - var(--card-media-gap));
}

.card-complex .card-media img,
.card-task .card-media img {
    width: 100%;
    height: auto;
}

/* Layout tweaks for specific cards */
/* Positioning to match desired layout */
.card-consistent {
    grid-column: 1 / span 2; /* big left */
    grid-row: 1 / span 2;
}

.card-complex { grid-column: 3; grid-row: 1 / span 2; }
.card-task { grid-column: 4; grid-row: 1 / span 2; }

/* 2x2 grid on the left below the big card */
.card-typography { grid-column: 1; grid-row: 3; }
.card-components { grid-column: 2; grid-row: 3; }
.card-speed { grid-column: 1; grid-row: 4; }
.card-dnd { grid-column: 2; grid-row: 4; }

/* Big card on the right spanning the height of the 2x2 grid */
.card-planner { grid-column: 3 / span 2; grid-row: 3 / span 2; }

/* Responsive behavior for cards section */
@media (min-width: 1600px) {
    .cards-container { padding: 0 40px; }
}

@media (max-width: 1200px) {
    .cards-container { padding: 0 32px; }
}

@media (max-width: 1000px) {
    .cards-container { padding: 0 24px; }
    .cards-grid { grid-template-columns: 1fr; gap: 16px; --cardRowH: auto; }
    .cards-grid .card { grid-column: auto !important; grid-row: auto !important; }
    .card-planner { min-height: 420px; }
}

@media (max-width: 480px) {
    .cards-container { padding: 0 20px; }
    .cards-grid { grid-template-columns: 1fr; gap: 14px; }
    .card { min-height: 200px; }
    .card-planner { min-height: 360px; }
    
    /* Apple-style horizontal scroll for mobile */
    .cards-section {
        padding: 80px 0;
        position: relative; /* positioning context for dots */
    }
    
    .cards-container {
        padding: 0 20px;
    }
    
    .cards-header {
        padding: 0 20px 60px;
        text-align: center;
    }
    
    .cards-grid {
        display: flex;
        flex-direction: row;
        gap: 0;
        margin-top: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
    }
    .cards-grid::-webkit-scrollbar { display: none; }
    
    .card {
        width: calc(100vw - 40px);
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 32px 24px;
        scroll-snap-align: start;
        flex: 0 0 calc(100vw - 40px);
        border-radius: 24px;
        background: rgba(17, 17, 23, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-right: 16px;
        grid-column: auto !important;
        grid-row: auto !important;
    }
    
    .card:last-child {
        margin-right: 20px;
    }
    
    .card-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .card-text {
        max-width: 340px;
        margin: 0 auto 24px;
    }
    
    .card-media {
        max-width: 90%;
        margin: 16px auto 0;
        aspect-ratio: auto;
        height: 200px; /* fixed height so images can crop nicely */
    }
    
    .card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* crop to fill */
    }
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 48px 0 64px 0;
}

.toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border-radius: 14px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
    background: #F97316;
    border-color: #F97316;
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F97316, #EF4444);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 8px;
    letter-spacing: 0.5px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(17, 17, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(17, 17, 23, 0.9));
    border: 1px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.2);
}

.pricing-card.featured:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F97316, #EF4444);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.card-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.plan-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.checkmark {
    color: #10B981;
    font-weight: 600;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.pricing-card.featured .checkmark {
    color: #F97316;
}


.feature-box {
    border-radius: 32px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-box {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.calendar-box {
    background: linear-gradient(135deg, #F97316 0%, #EF4444 100%);
    color: #ffffff;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: left;
}

.feature-header {
    margin-bottom: 32px;
}

.feature-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-box .feature-badge {
    background: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.7);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.contact-box .feature-title {
    color: #1a1a1a;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-box .feature-tag {
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.explore-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.explore-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.explore-btn .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.explore-btn:hover .arrow {
    transform: translateX(4px);
}

/* Try It Out Section */
.try-section {
    background: #0f0f11;
    padding: 80px 0;
    text-align: center;
}

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

.try-content {
    color: #ffffff;
}

.try-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.try-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 auto 32px auto;
    max-width: 600px;
}

.try-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-book-call {
    background: #F97316;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-book-call:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-try-chat {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.btn-try-chat:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Authentication Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Alert Messages */
.alert {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #FCA5A5;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86EFAC;
}

.auth-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
}

.auth-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.auth-box {
    background: rgba(17, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.auth-form {
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
}

/* Ensure Stripe card iframe has solid dark backdrop for contrast on iOS */
#card-element,
#card-element .__PrivateStripeElement,
#card-element iframe {
    background-color: #111111 !important;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.45);
}

.form-hint {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

.form-link {
    color: #F97316;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.form-link:hover {
    color: #FB923C;
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
    background: #F97316;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
    margin-top: 8px;
}

.auth-submit-btn:hover {
    background: #EA580C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Reusable Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: #F97316;
    border-color: #F97316;
    color: #ffffff;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider span {
    background: rgba(17, 17, 23, 0.85);
    padding: 0 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.social-auth-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-auth-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-auth-btn .material-symbols-outlined {
    font-size: 18px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.auth-link {
    color: #F97316;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #FB923C;
    text-decoration: underline;
}

/* Responsive Auth Pages */
@media (max-width: 640px) {
    .auth-section {
        padding: 100px 16px 60px;
    }
    
    .auth-box {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-auth-buttons {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 80px 0 40px 0;
}

.footer-section {
    color: #ffffff;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

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

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 60px 0 32px 0;
    }
    
    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 0 24px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
}

/* Stats Section */
/* FAQ Section */
.faq-section { padding: 80px 0; background: #0f0f11; }
.faq-accordion { max-width: 1100px; margin: 24px auto 0 auto; display: grid; gap: 12px; }
.faq-item { border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; background: transparent; color: #ffffff; border: 0; cursor: pointer; text-align: left; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.faq-icon { transition: transform 0.2s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 18px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease; color: rgba(255,255,255,0.85); text-align: center; }
.faq-item.open .faq-answer { max-height: 500px; opacity: 1; padding: 0 18px 16px 18px; }

/* Light theme overrides */
.theme-light .faq-item { border-color: rgba(0,0,0,0.12); background: rgba(0,0,0,0.04); }
.theme-light .faq-question { color: #111111; }
.theme-light .faq-answer { color: rgba(17,17,17,0.75); }
/* Match About section background in light theme */
.theme-light .faq-section { background: #ffffff; }
/* Use default light theme heading/badge colors */
.stats-section {
    background: #0f0f11;
    padding: 120px 0;
    position: relative;
}

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

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-number .accent {
    color: #F97316;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: -0.01em;
}

/* About Content */
.about-content {
    padding-left: 40px;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 24px 0 32px 0;
    letter-spacing: -0.03em;
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.services-preview {
    display: inline-block;
}

.services-label {
    font-size: 14px;
    font-weight: 600;
    color: #F97316;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive Design */
/* XL screens: widen containers and scale up hero type */
@media (min-width: 1600px) {
    .nav-container,
    .hero-container {
        max-width: 1600px;
    }
    /* Taller navbar and larger text */
    .nav-container {
        padding: 14px 16px;
        padding-left: 32px;
    }
    .brand-name { font-size: 18px; }
    .brand-logo-img { width: 56px; height: 56px; }
    .nav-links { gap: 44px; }
    .nav-link { font-size: 16px; }
    .btn-login { height: 40px; padding: 0 18px; }
    .btn-signup { height: 40px; padding: 0 22px; }

    /* Bigger hero typography and buttons */
    .hero-title {
        font-size: 112px; /* slightly reduced to better align with right column height */
    }
    .hero-subtitle {
        font-size: 22px;
    }
    .btn-get-started,
    .btn-view-demo {
        font-size: 16px;
        padding: 14px 30px;
        border-radius: 28px;
    }
    
    /* Scale up why section for large screens */
    .section-container {
        padding: 0 40px;
    }
    
    .why-section .features-grid {
        max-width: 1400px;
        gap: 40px;
    }
    
    .feature-box {
        padding: 48px 40px;
        min-height: 360px;
    }
    
    .feature-title {
        font-size: 32px;
    }
    
    .section-heading {
        font-size: 58px;
    }
    
    .section-subtitle {
        font-size: 18px;
        max-width: 900px;
    }
    
    /* Scale up pricing section for large screens */
    .pricing-container {
        padding: 0 40px;
    }
    
    .pricing-grid {
        max-width: 1400px;
        gap: 40px;
    }
    
    .pricing-card {
        padding: 40px 32px;
    }
    
    .plan-name {
        font-size: 28px;
    }
    
    .price {
        font-size: 56px;
    }
    
    .currency {
        font-size: 28px;
    }
    
    .period {
        font-size: 18px;
    }
    
    .feature-item {
        font-size: 16px;
        padding: 10px 0;
    }
    
    /* Scale up stats section for large screens */
    .stats-container {
        padding: 0 40px;
    }
    
    .stats-content {
        gap: 64px;
    }
    
    .stats-grid {
        gap: 56px 40px;
    }
    
    .stat-number {
        font-size: 84px;
    }
    
    .stat-label {
        font-size: 18px;
    }
    
    .about-title {
        font-size: 56px;
    }
    
    .about-text p {
        font-size: 18px;
    }
    
    .services-label {
        font-size: 16px;
    }
}

/* Desktop: let the right text column be content-sized instead of forced 50% */
@media (min-width: 1200px) {
    .hero-wrapper { gap: 48px; }
    /* Equal column widths on large screens */
    .hero-left,
    .hero-right { flex: 0 0 50%; max-width: none; }
    .hero-subtitle { max-width: 64ch; }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 80px;
    }
    
    .hero-wrapper {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .nav-container,
    .hero-container {
        padding: 0 32px;
    }
    
    .hero-title {
        font-size: 72px;
        margin-bottom: 6px; /* reduce space below title on mobile */
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-top: 0; /* tighter spacing to title */
    }
    
    .nav-links {
        gap: 28px;
    }
    
    .pricing-container {
        padding: 0 32px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .why-section .features-grid {
        gap: 20px;
    }
    
    .feature-box {
        padding: 32px 24px;
        min-height: 280px;
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .stats-container {
        padding: 0 32px;
    }
    
    .stats-content {
        gap: 40px;
    }
    
    .stats-grid {
        gap: 40px 24px;
        justify-items: center; /* center stat items horizontally */
    }
    
    .stat-number {
        font-size: 64px;
    }
    
    .stat-item {
        text-align: center; /* center text for each stat item */
    }
    
    .about-content {
        padding-left: 20px;
    }
    
    .about-title {
        font-size: 40px;
    }
}

@media (max-width: 1000px) {
    .landing-container { background-attachment: scroll, scroll, scroll; }
    .nav-links {
        display: none;
    }
    .nav-right { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-container { max-width: 90%; }
    
    .nav-container,
    .hero-container {
        padding: 0 24px;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto; /* allow the hero to end where content ends */
    }
    
    .hero-wrapper {
        flex-direction: column;
        gap: 10px; /* tighter spacing between title and copy */
        text-align: center;
    }
    
    .hero-left {
        justify-content: center;
    }
    
    .hero-right {
        align-items: center;
    }
    
    .hero-title {
        font-size: 56px;
        margin-bottom: 12px; /* less gap to the paragraph */
    }
    
    .hero-subtitle {
        font-size: 15px;
        text-align: center;
        max-width: 32ch; /* keep paragraph narrower than title width */
        margin-left: auto;
        margin-right: auto;
    }

    .hero-right {
        gap: 6px; /* reduce internal spacing further */
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .dashboard-section {
        width: 100%;
        align-self: stretch;
        margin-top: 60px;
    }
    
    .dashboard-mockup {
        max-width: 100%;
        height: auto; /* fit to image height */
        padding: 16px 16px 0 16px; /* remove bottom padding so it ends at image edge */
    }
    
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-container {
        padding: 0 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .billing-toggle {
        margin: 32px 0 48px 0;
    }
    
    .why-section .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 48px;
    }
    
    .feature-box {
        padding: 28px 24px;
        min-height: 240px;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .stats-section {
        padding: 80px 0;
    }
    
    .stats-container {
        padding: 0 24px;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stats-grid {
        gap: 32px 20px;
        order: 2;
    }
    
    .about-content {
        padding-left: 0;
        order: 1;
        text-align: center;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn-get-started,
    .btn-view-demo {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: auto;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-get-started,
    .btn-view-demo {
        width: auto;
        min-width: 220px;
        text-align: center;
    }
    
    .pricing-container {
        padding: 0 20px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .price {
        font-size: 40px;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 12px;
        margin: 24px 0 40px 0;
    }
    
    .toggle-switch {
        order: -1;
    }
    
    
    .feature-box {
        padding: 24px 20px;
        min-height: 200px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-tags {
        gap: 6px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .explore-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .stats-container {
        padding: 0 20px;
    }
    
    .stats-content {
        gap: 24px;
    }
    
    .stats-grid {
        gap: 24px 16px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-text p {
        font-size: 15px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Registration Wizard Styles */
.wizard-section {
    padding: 120px 16px 80px;
    min-height: 100vh;
}

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

/* Step Progress Bar */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.step-item.active {
    color: #ffffff;
}

.step-item.completed {
    color: #F97316;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-item.active .step-circle {
    border-color: #F97316;
    background: #F97316;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.step-item.completed .step-circle {
    border-color: #F97316;
    background: #F97316;
    color: transparent; /* hide the step number for completed steps */
}

.step-item.completed .step-circle::after {
    content: '✓';
    position: absolute;
    font-size: 20px;
    color: #ffffff; /* keep checkmark visible even when number is hidden */
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    margin: 0 20px;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #F97316;
    transition: width 0.3s ease;
}

.step-item.completed + .step-connector::after {
    width: 100%;
}

/* Wizard Content */
.wizard-content {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(16px);
}

/* Verify step: remove inner dark panel and let parent gradient show through */
.wizard-content.verify-mode {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 48px;
}

.step-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* Billing Toggle */
.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

/* Pricing Grid in Wizard */
.pricing-grid-wizard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* Desktop: ensure all 3 plans fit without wrapping */
@media (min-width: 1200px) {
    .wizard-container { max-width: 1400px; }
    .pricing-grid-wizard { grid-template-columns: repeat(3, minmax(280px, 1fr)); }
}

.plan-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.plan-card.selected {
    border-color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

.plan-card.featured {
    border-color: rgba(249, 115, 22, 0.3);
}

.plan-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.plan-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.select-plan-btn {
    width: 100%;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-plan-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.plan-card.selected .select-plan-btn {
    background: #F97316;
    border-color: #F97316;
}

/* Payment Grid */
.payment-grid-wizard {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
}

.payment-form-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.payment-card {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(12px);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.card-input-wrapper {
    position: relative;
}

.card-icons { display: none; }
.card-icon { display: none; }

/* Order Summary */
.order-summary-wizard {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 32px;
    position: sticky;
    top: 100px;
    backdrop-filter: blur(12px);
}

.summary-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.summary-item.total {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    padding-top: 16px;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 16px 0;
}

.summary-recurring {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.payment-security {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Account Form */
.account-form-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
}

.password-requirements {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.requirement[data-met="true"] {
    color: #10b981;
}

.requirement-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.terms-section {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: transparent;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-input:checked + .checkbox-custom {
    background: #F97316;
    border-color: #F97316;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 14px;
}

/* Verification Section */
.verify-section {
    max-width: 500px;
    margin: 0 auto;
}

.verify-card {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    backdrop-filter: none;
}

.verify-icon {
    margin-bottom: 16px;
    color: #F97316;
}

.verification-code-input {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.code-digit {
    width: 44px;
    height: 52px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
}

.code-digit:focus {
    outline: none;
    border-color: #F97316;
    background: rgba(249, 115, 22, 0.08);
}

.resend-section {
    margin-top: 16px;
}

.resend-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.resend-btn {
    background: transparent;
    border: none;
    color: #F97316;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.resend-btn:hover:not(:disabled) {
    opacity: 0.8;
}

.resend-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.verify-text {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.verify-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 8px 0 8px;
}

.btn-sm {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 10px;
}

.verify-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 4px;
}

.verify-message {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.verify-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.verify-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

/* Navigation Buttons */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
}

.wizard-navigation .btn-secondary,
.wizard-navigation .btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wizard-navigation .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.wizard-navigation .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.wizard-navigation .btn-primary {
    background: #F97316;
    border: 1px solid #F97316;
    color: #ffffff;
    margin-left: auto;
}

.wizard-navigation .btn-primary:hover {
    background: #ea580c;
    transform: translateX(4px);
}

.wizard-navigation .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
    .wizard-container {
        max-width: 800px;
    }
    
    .payment-grid-wizard {
        grid-template-columns: 1fr;
    }
    
    .order-summary-wizard {
        position: static;
    }
}

@media (max-width: 768px) {
    .wizard-content {
        padding: 32px 24px;
    }
    
    .step-progress {
        padding: 0;
    }
    
    .step-connector {
        width: 60px;
        margin: 0 12px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-title {
        font-size: 28px;
    }
    
    .pricing-grid-wizard {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .verify-card {
        padding: 32px 24px;
    }
    
    .verification-code-input {
        gap: 8px;
    }
    
    .code-digit {
        width: 48px;
        height: 56px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .step-label {
        display: none;
    }
    
    .step-connector {
        width: 40px;
        margin: 0 8px;
    }
    
    .wizard-navigation {
        flex-direction: column;
        gap: 16px;
    }
    
    .wizard-navigation .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .wizard-navigation .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
