:root {
    /* Core Colors - Dark Mode Default */
    --primary-color: #f97316;
    /* Orange-500 */
    --primary-light: #fb923c;
    /* Orange-400 */
    --secondary-color: #8b5cf6;
    /* Violet-500 */
    --accent-color: #10b981;
    /* Emerald-500 */

    /* Backgrounds */
    --bg-color: #0f172a;
    /* Slate-900 */
    --bg-alt: #1e293b;
    /* Slate-800 */
    --card-bg: rgba(30, 41, 59, 0.7);

    /* Text */
    --heading-color: #f8fafc;
    /* Slate-50 */
    --text-color: #cbd5e1;
    /* Slate-300 */
    --white: #ffffff;

    /* Borders & Glass */
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* UI Elements */
    --badge-bg: rgba(249, 115, 22, 0.1);
    --badge-border: rgba(249, 115, 22, 0.2);
    --pricing-highlight: #f8fafc;
    /* Bright white for dark mode */

    /* Layout & Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Fonts */
    --font-sans: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] {
    /* Backgrounds */
    --bg-color: #fafbfc;
    /* Soft off-white */
    --bg-alt: #f1f5f9;
    /* Slate-100 */
    --card-bg: rgba(255, 255, 255, 0.95);

    /* Text */
    --heading-color: #0f172a;
    /* Slate-900 */
    --text-color: #475569;
    /* Slate-600 */

    /* Borders & Glass */
    --border-color: #cbd5e1;
    /* Slate-300 - more visible */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(203, 213, 225, 0.6);

    /* UI Elements */
    --badge-bg: rgba(249, 115, 22, 0.08);
    --pricing-highlight: #0f172a;
    /* Dark black for light mode */
    --badge-border: rgba(249, 115, 22, 0.25);

    /* Shadows */
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
}

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

html {
    transition: background-color 0.3s ease, color 0.3s ease;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}


/* Landing mode visibility (homepage business/user toggle) */
.user-only {
    display: none;
}

.landing-user-mode .business-only {
    display: none !important;
}

.landing-user-mode .user-only {
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    background: var(--bg-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    height: 100%;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.logo img {
    filter: none;
    transition: filter 0.3s ease;
}

.header .logo img {
    width: auto;
    height: 40px;
    max-width: none;
    display: block;
}

[data-theme="light"] .logo img {
    filter: brightness(0.95) contrast(1.1);
}

.nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    white-space: nowrap;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-light);
}

/* Notification & Icon Btns */
.icon-btn {
    background: transparent;
    border: 1px solid transparent;
    /* Match layout but keep invisible until hover unless native style */
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    position: relative;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background: var(--bg-alt);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.notification-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    /* Red-500 */
    border-radius: 50%;
    border: 1px solid var(--bg-color);
    display: none;
    /* Hidden by default */
}

.notification-dot.active {
    display: block;
}

/* Language Toggle */
.lang-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    font-weight: 700;
    font-size: 0.8rem;
    font-family: var(--font-sans);
    transition: all 0.2s ease;
}

.lang-toggle:hover {
    background: var(--bg-alt);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    color: var(--heading-color);
    transition: transform 0.2s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--heading-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-text {
    background: transparent;
    color: var(--text-color);
    padding: 0.5rem 1rem;
}

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

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

.glow-effect {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0.5rem;
    width: 48px;
    height: 48px;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--heading-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
}

.mobile-menu-btn span:nth-child(1) {
    top: 10px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 19px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 28px;
}

/* Mobile FAB - Hidden by default on desktop */
.mobile-cta-fab {
    display: none;
}

/* Mobile menu and overlay - Hidden by default on desktop */
.mobile-menu,
.mobile-menu-overlay {
    display: none;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 6rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

/* Hero Toggle */
.hero-toggle-container {
    display: inline-flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 2.5rem;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
    cursor: pointer;
}

.toggle-label.active {
    color: var(--primary-color);
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-knob {
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-switch.user-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.toggle-switch.user-active .toggle-knob {
    transform: translateX(24px);
}

/* Hero Content Switching */
.hero-content-block {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-content-block.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--badge-bg);
    color: var(--primary-light);
    border: 1px solid var(--badge-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

[data-theme="light"] .badge {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

[data-theme="light"] .stat-number {
    color: var(--heading-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

[data-theme="light"] .glass-card {
    background: var(--glass-bg);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .glass-card:hover {
    box-shadow: 0 12px 35px 0 rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

[data-theme="light"] .glass-panel {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.glass-panel-strong {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(14, 165, 233, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .glass-panel-strong {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
    border: 1px solid transparent;
}

/* Features Section */
.features {
    background-color: var(--bg-color);
    position: relative;
}

.section-padding {
    padding: 6rem 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.icon-glow-purple {
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
}

.icon-glow-blue {
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.icon-glow-green {
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

[data-theme="light"] .icon-glow-purple {
    background: rgba(249, 115, 22, 0.08);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
}

[data-theme="light"] .icon-glow-blue {
    background: rgba(139, 92, 246, 0.08);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .icon-glow-green {
    background: rgba(16, 185, 129, 0.08);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-color);
    font-size: 1rem;
}

/* BORTEX News Banner */
.ai-features-banner[hidden] {
    display: none !important;
}

.ai-features-banner {
    --ai-accent: var(--primary-color);
    --ai-accent-soft: var(--badge-bg);
    --ai-cyan: var(--secondary-color);
    --ai-surface: var(--card-bg);
    --ai-border: var(--glass-border);
    --ai-muted: var(--text-color);
    --ai-progress-duration: 5000ms;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 5.5rem;
    color: var(--heading-color);
    background:
        radial-gradient(circle at 84% 18%, rgba(249, 115, 22, 0.1), transparent 30%),
        radial-gradient(circle at 12% 78%, rgba(139, 92, 246, 0.1), transparent 34%),
        var(--bg-color);
}

.ai-features-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 48%);
    opacity: 1;
    pointer-events: none;
}

.ai-features-banner__intro {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ai-feature-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
    padding: 0.45rem 1rem;
    border: 1px solid var(--badge-border);
    border-radius: 999px;
    background: var(--ai-accent-soft);
    color: var(--primary-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ai-feature-kicker span {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--ai-accent);
    box-shadow: 0 0 18px rgba(249, 115, 22, 0.55);
}

.ai-features-banner__title {
    color: var(--heading-color);
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.ai-features-banner__title span {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-features-banner__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    max-width: 1100px;
    min-height: 440px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--ai-border);
    border-radius: var(--radius-xl);
    background: var(--ai-surface);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(249, 115, 22, 0.08);
}

.ai-feature-tabs {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--ai-border);
}

.ai-feature-tab {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
    align-items: center;
    width: 100%;
    padding: 1.35rem 2rem;
    border: 0;
    border-bottom: 1px solid var(--ai-border);
    border-left: 3px solid transparent;
    background: transparent;
    color: var(--ai-muted);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ai-feature-tab:hover,
.ai-feature-tab.is-active {
    background: rgba(249, 115, 22, 0.08);
    border-left-color: var(--ai-accent);
    color: var(--heading-color);
}

.ai-feature-tab:focus-visible,
.ai-feature-arrow:focus-visible,
.ai-feature-dots button:focus-visible {
    outline: 2px solid var(--ai-accent);
    outline-offset: 3px;
}

.ai-feature-tab__number {
    color: var(--ai-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.ai-feature-tab__tag {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.ai-feature-tab__title {
    display: block;
    color: var(--ai-muted);
    font-size: 0.78rem;
}

.ai-feature-progress {
    height: 2px;
    margin-top: auto;
    overflow: hidden;
    background: rgba(249, 115, 22, 0.16);
}

.ai-feature-progress__bar {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--ai-accent);
    transform-origin: left;
    animation: aiFeatureProgress var(--ai-progress-duration) linear infinite;
}

.ai-features-banner__preview {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 440px;
    padding: clamp(2rem, 5vw, 3.5rem);
    overflow: hidden;
}

.ai-feature-watermark {
    position: absolute;
    top: -1.2rem;
    right: -0.4rem;
    color: var(--ai-accent);
    font-size: clamp(7rem, 14vw, 11rem);
    font-weight: 800;
    line-height: 1;
    opacity: 0.06;
    pointer-events: none;
}

.ai-feature-slide {
    display: none;
    position: relative;
    z-index: 1;
}

.ai-feature-slide.is-active {
    display: block;
    animation: aiFeatureSlideIn 0.45s ease both;
}

.ai-feature-slide__tag {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--ai-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ai-feature-slide h3 {
    max-width: 430px;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.14;
}

.ai-feature-slide p {
    max-width: 430px;
    color: var(--ai-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.ai-feature-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 1.15rem;
    padding: 0.72rem 0.95rem;
    border: 1px solid rgba(249, 115, 22, 0.32);
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-light);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ai-feature-link:hover {
    border-color: var(--ai-accent);
    background: rgba(249, 115, 22, 0.18);
    color: var(--heading-color);
}

.ai-feature-visual {
    position: relative;
    width: min(100%, 380px);
    height: 180px;
    margin: 0 auto 2rem;
    border-radius: 28px;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.16), transparent 66%);
}

.ai-feature-orbit {
    position: absolute;
    inset: 50%;
    border: 1px dashed rgba(139, 92, 246, 0.28);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ai-feature-orbit--outer {
    width: 148px;
    height: 148px;
}

.ai-feature-orbit--middle {
    width: 96px;
    height: 96px;
    border-color: rgba(249, 115, 22, 0.34);
}

.ai-feature-core,
.ai-agent-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ai-accent);
    box-shadow: 0 0 32px rgba(249, 115, 22, 0.36);
    transform: translate(-50%, -50%);
}

.ai-feature-core::after,
.ai-agent-core::after {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: inherit;
    background: #fff;
    opacity: 0.9;
}

.ai-feature-node {
    position: absolute;
    top: var(--y);
    left: var(--x);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--ai-cyan);
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.42);
    transform: translate(-50%, -50%);
}

.ai-feature-visual--release {
    background:
        radial-gradient(circle at 24% 30%, rgba(139, 92, 246, 0.14), transparent 28%),
        radial-gradient(circle at 62% 52%, rgba(249, 115, 22, 0.18), transparent 58%);
}

.ai-release-radar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 148px;
    height: 148px;
    border: 1px dashed rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ai-release-radar::before,
.ai-release-radar::after {
    content: "";
    position: absolute;
    inset: 26px;
    border: 1px solid rgba(249, 115, 22, 0.22);
    border-radius: inherit;
}

.ai-release-radar::after {
    inset: 52px;
    background: rgba(249, 115, 22, 0.14);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.22);
}

.ai-release-card {
    position: absolute;
    top: 45%;
    left: 50%;
    display: grid;
    gap: 0.28rem;
    width: 142px;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: var(--glass-bg);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: center;
    transform: translate(-50%, -50%);
}

.ai-release-card span:first-child {
    color: var(--heading-color);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.ai-release-card span:nth-child(2) {
    color: var(--ai-cyan);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ai-release-card span:last-child {
    width: 70%;
    height: 4px;
    margin: 0.35rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ai-accent), var(--ai-cyan));
}

.ai-release-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ai-cyan);
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.42);
}

.ai-release-node--one {
    top: 22%;
    left: 24%;
}

.ai-release-node--two {
    top: 68%;
    left: 30%;
    background: var(--ai-accent);
}

.ai-release-node--three {
    top: 28%;
    right: 25%;
}

.ai-feature-visual--widget {
    background:
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.16), transparent 24%),
        radial-gradient(circle at 42% 48%, rgba(249, 115, 22, 0.16), transparent 62%);
}

.ai-widget-window {
    position: absolute;
    top: 12px;
    left: 50%;
    display: grid;
    align-content: start;
    gap: 0.55rem;
    width: 178px;
    height: 142px;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: var(--glass-bg);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateX(-50%);
}

.ai-widget-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(248, 250, 252, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
}

.ai-widget-header span:first-child {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--ai-cyan);
    box-shadow: 0 0 14px rgba(139, 92, 246, 0.42);
}

.ai-widget-bubble {
    display: block;
    max-width: 132px;
    padding: 0.48rem 0.58rem;
    border-radius: 12px;
    font-size: 0.68rem;
    line-height: 1.25;
}

.ai-widget-bubble--bot {
    color: rgba(248, 250, 252, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-widget-bubble--user {
    justify-self: end;
    color: #fff;
    background: linear-gradient(135deg, var(--ai-accent), var(--ai-cyan));
}

.ai-widget-input {
    display: block;
    width: 100%;
    height: 18px;
    margin-top: auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.ai-widget-launcher {
    position: absolute;
    right: 56px;
    bottom: 16px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ai-accent), var(--ai-cyan));
    box-shadow: 0 18px 36px rgba(249, 115, 22, 0.22);
}

.ai-widget-launcher span {
    position: relative;
    width: 23px;
    height: 16px;
    border-radius: 8px;
    background: #fff;
}

.ai-widget-launcher span::after {
    content: "";
    position: absolute;
    right: 4px;
    bottom: -4px;
    border-top: 6px solid #fff;
    border-left: 5px solid transparent;
}

.ai-widget-pulse {
    position: absolute;
    right: 47px;
    bottom: 7px;
    width: 66px;
    height: 66px;
    border: 1px solid rgba(139, 92, 246, 0.36);
    border-radius: 50%;
    animation: aiWidgetPulse 1.8s ease-out infinite;
}

.ai-doc-card,
.ai-doc-card span {
    position: absolute;
    display: block;
    border-radius: 8px;
}

.ai-doc-card {
    top: 22px;
    left: 50%;
    width: 112px;
    height: 138px;
    border: 1px solid rgba(244, 63, 94, 0.56);
    background: rgba(244, 63, 94, 0.06);
    transform: translateX(-50%);
}

.ai-doc-card--back {
    margin-left: 22px;
    margin-top: -16px;
    opacity: 0.28;
}

.ai-doc-card--mid {
    margin-left: 11px;
    margin-top: -8px;
    opacity: 0.56;
}

.ai-doc-card--front span {
    left: 18px;
    width: 68px;
    height: 4px;
    background: rgba(244, 63, 94, 0.48);
}

.ai-doc-card--front span:nth-child(1) {
    top: 26px;
    width: 54px;
}

.ai-doc-card--front span:nth-child(2) {
    top: 49px;
}

.ai-doc-card--front span:nth-child(3) {
    top: 72px;
    width: 78px;
}

.ai-doc-card--front span:nth-child(4) {
    top: 95px;
    width: 48px;
}

.ai-doc-scan {
    position: absolute;
    top: 89px;
    left: calc(50% - 56px);
    width: 112px;
    height: 2px;
    border-radius: 999px;
    background: var(--ai-cyan);
    box-shadow: 0 0 18px rgba(56, 214, 221, 0.65);
}

.ai-feature-visual--agent::before,
.ai-feature-visual--agent::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 63, 94, 0.38), transparent);
    transform: translate(-50%, -50%) rotate(24deg);
}

.ai-feature-visual--agent::after {
    transform: translate(-50%, -50%) rotate(-30deg);
}

.ai-agent-node {
    position: absolute;
    top: var(--y);
    left: var(--x);
    padding-top: 2rem;
    color: rgba(248, 250, 252, 0.72);
    font-size: 0.68rem;
    text-align: center;
    transform: translate(-50%, -50%);
}

.ai-agent-node::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(244, 63, 94, 0.54);
    border-radius: 50%;
    background: rgba(244, 63, 94, 0.1);
    box-shadow: inset 0 0 0 8px rgba(56, 214, 221, 0.12);
    transform: translateX(-50%);
}

.ai-search-globe {
    position: absolute;
    top: 50%;
    left: 47%;
    width: 112px;
    height: 112px;
    border: 1px solid rgba(56, 214, 221, 0.48);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ai-search-globe::before,
.ai-search-globe::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(56, 214, 221, 0.22);
    border-radius: 50%;
}

.ai-search-globe::after {
    inset: 50% 0 auto;
    height: 1px;
    border: 0;
    background: rgba(56, 214, 221, 0.32);
}

.ai-search-lens {
    position: absolute;
    top: 57%;
    left: 58%;
    width: 42px;
    height: 42px;
    border: 4px solid var(--ai-accent);
    border-radius: 50%;
    box-shadow: 0 0 22px rgba(244, 63, 94, 0.34);
}

.ai-search-handle {
    position: absolute;
    top: 69%;
    left: 69%;
    width: 36px;
    height: 5px;
    border-radius: 999px;
    background: var(--ai-accent);
    transform: rotate(45deg);
}

.ai-create-sheet {
    position: absolute;
    top: 28px;
    left: 50%;
    width: 172px;
    height: 118px;
    padding: 28px 22px;
    border: 1px solid rgba(244, 63, 94, 0.42);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.14), rgba(56, 214, 221, 0.08));
    transform: translateX(-50%);
}

.ai-create-sheet span {
    display: block;
    height: 5px;
    margin-bottom: 15px;
    border-radius: 999px;
    background: rgba(244, 63, 94, 0.55);
}

.ai-create-sheet span:nth-child(1) {
    width: 88px;
}

.ai-create-sheet span:nth-child(2) {
    width: 118px;
}

.ai-create-sheet span:nth-child(3) {
    width: 78px;
}

.ai-create-sheet span:nth-child(4) {
    width: 108px;
}

.ai-create-cursor {
    position: absolute;
    top: 48px;
    left: calc(50% + 72px);
    width: 2px;
    height: 18px;
    border-radius: 999px;
    background: var(--ai-cyan);
}

.ai-create-spark {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--ai-cyan);
    box-shadow: 0 0 20px rgba(56, 214, 221, 0.66);
}

.ai-create-spark--one {
    top: 30px;
    left: 19%;
}

.ai-create-spark--two {
    right: 19%;
    bottom: 36px;
}

.ai-feature-controls {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ai-feature-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--ai-border);
    border-radius: 50%;
    background: transparent;
    color: var(--ai-muted);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.ai-feature-arrow:hover,
.ai-feature-arrow--next {
    border-color: var(--ai-accent);
    color: var(--ai-accent);
    background: rgba(249, 115, 22, 0.12);
}

.ai-feature-count {
    flex: 1;
    color: var(--ai-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}

.ai-feature-count strong {
    color: var(--heading-color);
}

.ai-feature-dots {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.ai-feature-dots button {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.ai-feature-dots button.is-active {
    width: 1.6rem;
    background: var(--ai-accent);
}

[data-theme="light"] .ai-features-banner {
    --ai-surface: rgba(255, 255, 255, 0.88);
    --ai-border: rgba(15, 23, 42, 0.1);
    --ai-muted: rgba(51, 65, 85, 0.72);
    color: #0f172a;
    background:
        radial-gradient(circle at 84% 18%, rgba(249, 115, 22, 0.08), transparent 30%),
        radial-gradient(circle at 12% 78%, rgba(139, 92, 246, 0.08), transparent 34%),
        var(--bg-color);
}

[data-theme="light"] .ai-features-banner__title,
[data-theme="light"] .ai-feature-slide h3,
[data-theme="light"] .ai-feature-count strong {
    color: #0f172a;
}

@keyframes aiFeatureProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes aiFeatureSlideIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }

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

@keyframes aiWidgetPulse {
    from {
        opacity: 0.8;
        transform: scale(0.72);
    }

    to {
        opacity: 0;
        transform: scale(1.12);
    }
}

@media (max-width: 900px) {
    .ai-features-banner {
        padding: 4.5rem 0;
    }

    .ai-features-banner__intro {
        margin-bottom: 2.5rem;
    }

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

    .ai-feature-tabs {
        border-right: 0;
        border-bottom: 1px solid var(--ai-border);
    }

    .ai-features-banner__preview {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .ai-feature-tab {
        grid-template-columns: 1.7rem 1fr;
        padding: 1.1rem 1.25rem;
    }

    .ai-features-banner__preview {
        padding: 1.5rem;
    }

    .ai-feature-visual {
        height: 150px;
        margin-bottom: 1.5rem;
    }

    .ai-feature-controls {
        gap: 0.75rem;
    }
}

/* Demo Section */
.demo-section {
    position: relative;
}

.demo-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.demo-content h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.demo-content p {
    color: var(--text-color);
    margin-bottom: 3rem;
    text-align: center;
}

.chat-interface {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    text-align: left;
    height: 400px;
    display: flex;
    flex-direction: column;
}

[data-theme="light"] .chat-interface {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 1rem;
    max-width: 80%;
}

.message.bot {
    align-self: flex-start;
}

.message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.message.user .avatar {
    /* Or show user avatar */
}

.message .text {
    padding: 1rem;
    border-radius: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.message.bot .text {
    background: var(--bg-color);
    color: var(--text-color);
    border-top-left-radius: 0;
    border: 1px solid var(--border-color);
}

.message.user .text {
    background: var(--primary-color);
    color: var(--white);
    border-top-right-radius: 0;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.chat-input-area {
    padding: 1rem;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.chat-input-area input {
    flex: 1;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    outline: none;
    transition: border-color 0.3s;
    font-family: var(--font-sans);
}

.chat-input-area input:focus {
    border-color: var(--primary-color);
}

.btn-send {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-send:hover {
    transform: scale(1.05);
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: var(--bg-alt);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

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

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

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

.footer-column {
    min-width: 0;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: var(--text-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.footer-links li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-left p,
.footer-bottom-right p {
    color: var(--text-color);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-right a {
    color: var(--primary-color);
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-bottom-right a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-color);
    transition: color 0.3s;
}

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

/* Responsive */
@media (max-width: 1400px) {

    .nav-list {
        gap: 0.85rem;
    }

    .nav-link {
        font-size: 0.88rem;
    }

    .header-actions .lang-toggle,
    .header-actions .theme-toggle,
    .header-actions .btn-text {
        display: none;
    }

    .header-actions {
        gap: 0;
    }
}

@media (max-width: 1180px) {

    .header-container {
        gap: 1rem;
    }

    .nav-list {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .header-actions {
        gap: 0.4rem;
    }

    .lang-toggle {
        padding: 0.35rem 0.5rem;
    }

    .btn-text {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {

    .header-actions .btn-text {
        display: none;
    }

    .nav-list {
        gap: 0.85rem;
    }

    .nav-link {
        font-size: 0.88rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

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

@media (max-width: 992px) {

    /* Mobile Header - Rounded centered design */
    .header {
        position: fixed;
        top: 1rem;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 2rem);
        max-width: 500px;
        height: auto;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        padding: 0.75rem 1.25rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-theme="light"] .header {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .header.scrolled {
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }

    .header-container {
        padding: 0;
        max-width: 100%;
    }

    .logo img {
        height: 32px;
    }

    /* Hide desktop nav */
    .nav {
        display: none;
    }

    /* Keep only theme toggle and hamburger visible */
    .header-actions .btn {
        display: none;
    }

    .header-actions {
        gap: 0.5rem;
    }

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

    /* Mobile Menu - Sidebar from Left */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: var(--bg-color);
        border-right: 1px solid var(--glass-border);
        padding: 2rem 1.5rem;
        box-shadow: 5px 0 40px rgba(0, 0, 0, 0.3);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
    }

    [data-theme="light"] .mobile-menu {
        background: var(--bg-color);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
    }

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

    /* Overlay when menu is open */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

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

    .mobile-menu-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-header img {
        width: auto;
        height: 36px;
        display: block;
    }

    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .mobile-menu-list a {
        display: block;
        padding: 1rem 1.25rem;
        color: var(--heading-color);
        font-weight: 600;
        font-size: 1rem;
        border-radius: 12px;
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .mobile-menu-list a:hover,
    .mobile-menu-list a.active {
        background: rgba(249, 115, 22, 0.1);
        color: var(--primary-color);
        transform: translateX(4px);
    }

    .mobile-menu-divider {
        height: 1px;
        background: var(--border-color);
        margin: 0.5rem 0;
    }

    .mobile-menu-cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .mobile-menu-cta .btn {
        width: 100%;
        justify-content: center;
    }

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

    .hero-btns {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    /* Footer Mobile Styles */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

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

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

    .footer-brand .logo {
        display: block;
        text-align: center;
    }

    .footer-description {
        max-width: 100%;
        text-align: center;
        font-size: 0.9rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .footer-column {
        text-align: left;
    }

    .footer-title {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        gap: 0.6rem;
    }

    .footer-links li a {
        font-size: 0.85rem;
    }

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

    .footer-bottom-left p,
    .footer-bottom-right p {
        font-size: 0.8rem;
    }
}

/* Feature Layouts */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

/* Localized reverse layout */
.feature-row-reverse .feature-text {
    order: 2;
}

.feature-row-reverse .feature-image {
    order: 1;
}

@media (max-width: 768px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Reset order on mobile for natural flow (Text then Image usually better, or Image then Text) */
    .feature-row-reverse .feature-text {
        order: unset;
    }

    .feature-row-reverse .feature-image {
        order: unset;
    }
}

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

@media (max-width: 992px) {
    .feature-grid-3 {
        grid-template-columns: 1fr;
    }
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-col h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}
/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
