:root {
    --bg: #0a0b14;
    --bg-soft: #101221;
    --card: #1a1b2e;
    --text: #f8fafc;
    --muted: #94a3b8;
    --brand: #00d4aa;
    --brand-2: #0ea5e9;
    --accent: #f59e0b;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --orange: #f59e0b;
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-1: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 50%, var(--purple) 100%);
    --gradient-2: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
    --gradient-3: linear-gradient(135deg, var(--purple) 0%, var(--brand) 100%);
    --ring: rgba(0, 212, 170, .4);
    --shadow: 0 25px 70px rgba(0, 0, 0, .4), 0 10px 40px rgba(0, 212, 170, .1);
    --nav-bg: rgba(26, 27, 46, .85);
    --nav-border: rgba(0, 212, 170, .15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --mesh-bg:
        radial-gradient(ellipse 1200px 800px at 70% -20%, rgba(0, 212, 170, .08), transparent),
        radial-gradient(ellipse 1000px 600px at -20% 50%, rgba(139, 92, 246, .06), transparent),
        radial-gradient(ellipse 800px 500px at 120% 120%, rgba(236, 72, 153, .05), transparent);
}

html[data-theme=light] {
    --bg: #fefefe;
    --bg-soft: #f8fafc;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --brand: #00c896;
    --brand-2: #0284c7;
    --accent: #ea580c;
    --purple: #7c3aed;
    --pink: #db2777;
    --orange: #ea580c;
    --glass-border: rgba(15, 23, 42, 0.08);
    --gradient-1: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 50%, var(--purple) 100%);
    --gradient-2: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
    --gradient-3: linear-gradient(135deg, var(--purple) 0%, var(--brand) 100%);
    --ring: rgba(0, 200, 150, .3);
    --shadow: 0 20px 60px rgba(15, 23, 42, .06), 0 8px 30px rgba(0, 200, 150, .08);
    --nav-bg: rgba(255, 255, 255, .9);
    --nav-border: rgba(15, 23, 42, .08);
    --mesh-bg:
        radial-gradient(ellipse 1200px 800px at 70% -20%, rgba(0, 200, 150, .04), transparent),
        radial-gradient(ellipse 1000px 600px at -20% 50%, rgba(124, 58, 237, .03), transparent),
        radial-gradient(ellipse 800px 500px at 120% 120%, rgba(219, 39, 119, .03), transparent);
}

html[data-theme=light] .orb:nth-child(1) {
    background: radial-gradient(circle, rgba(0, 200, 150, .06), rgba(0, 200, 150, .02));
}

html[data-theme=light] .orb:nth-child(2) {
    background: radial-gradient(circle, rgba(124, 58, 237, .05), rgba(124, 58, 237, .01));
}

html[data-theme=light] .orb:nth-child(3) {
    background: radial-gradient(circle, rgba(219, 39, 119, .04), rgba(219, 39, 119, .01));
}

html[data-theme=light] .btn-outline {
    border-color: rgba(15, 23, 42, .15);
    color: var(--text);
}

html[data-theme=light] .feature-card,
html[data-theme=light] .pricing-card,
html[data-theme=light] .pricing-preview-card,
html[data-theme=light] .vm-card,
html[data-theme=light] .value-card,
html[data-theme=light] .about-visual-card,
html[data-theme=light] .faq-item,
html[data-theme=light] .contact-info-card,
html[data-theme=light] .feature-row {
    background: var(--card);
    border-color: rgba(15, 23, 42, .08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, .05);
}

html[data-theme=light] .comparison-table-wrapper {
    background: var(--card);
    border-color: rgba(15, 23, 42, .1);
}

html[data-theme=light] .comparison-table thead th {
    background: rgba(0, 200, 150, .05);
    border-color: rgba(15, 23, 42, .06);
}

html[data-theme=light] .comparison-table tbody td {
    border-color: rgba(15, 23, 42, .06);
}

html[data-theme=light] .input-wrapper {
    background: var(--bg-soft);
    border-color: rgba(15, 23, 42, .1);
}

html[data-theme=light] .social-links a {
    background: var(--bg-soft);
    border-color: rgba(15, 23, 42, .08);
    color: var(--text);
}

html[data-theme=light] .cta-section .btn-primary {
    color: #0a0b14 !important;
}

html[data-theme=light] .mobile-menu-btn {
    color: var(--text);
}

html[data-theme=light] .btn-secondary {
    border-color: rgba(15, 23, 42, .2);
    color: var(--text);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background: var(--mesh-bg), var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    color: var(--brand);
}

/* ============================================================
   Animated Background Orbs
   ============================================================ */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out;
}

.orb:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(0, 212, 170, .15), rgba(0, 212, 170, .05));
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 15%;
    background: radial-gradient(circle, rgba(139, 92, 246, .12), rgba(139, 92, 246, .04));
    animation-delay: -7s;
}

.orb:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 25%;
    background: radial-gradient(circle, rgba(236, 72, 153, .1), rgba(236, 72, 153, .03));
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    25% {
        transform: translate(-30px, -40px) scale(1.1) rotate(90deg);
    }

    50% {
        transform: translate(20px, -60px) scale(0.9) rotate(180deg);
    }

    75% {
        transform: translate(-20px, 30px) scale(1.05) rotate(270deg);
    }
}

/* ============================================================
   Navbar
   ============================================================ */
nav {
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    transition: var(--transition);
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 11, 20, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

html[data-theme=light] nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

/* Nav Controls (lang + theme + CTA) */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.lang-pills {
    display: flex;
    gap: 4px;
}

.lang-pill {
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    color: var(--text);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-family: inherit;
}

.lang-pill:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-1px);
}

.lang-pill.active {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(0, 212, 170, .3);
}

html[data-theme=light] .lang-pill {
    border-color: rgba(15, 23, 42, .1);
    background: rgba(15, 23, 42, .03);
}

html[data-theme=light] .lang-pill:hover {
    background: rgba(15, 23, 42, .06);
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    width: 38px;
    height: 38px;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-1px);
}

html[data-theme=light] .theme-toggle {
    border-color: rgba(15, 23, 42, .1);
    background: rgba(15, 23, 42, .03);
}

html[data-theme=light] .theme-toggle:hover {
    background: rgba(15, 23, 42, .06);
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-1);
    position: relative;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.logo-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--brand);
    border-radius: 50%;
    opacity: 0.4;
    animation: ring 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }
}

.logo-sub {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
    background: none;
    -webkit-text-fill-color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a.nav-item {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-links a.nav-item:hover::after,
.nav-links a.nav-item.active::after {
    width: 100%;
}

.nav-links a.nav-item:hover,
.nav-links a.nav-item.active {
    color: var(--brand);
}

.btn-outline {
    padding: 0.6rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--text);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
}

.mobile-only {
    display: none;
}

/* ============================================================
   Hero Section (Home)
   ============================================================ */
.hero {
    padding: 12rem 5% 6rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 212, 170, .1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    color: var(--muted);
    margin-bottom: 3.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* ============================================================
   Page Hero (Sub-pages)
   ============================================================ */
.page-hero {
    padding: 10rem 5% 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 212, 170, .08) 0%, transparent 70%);
    z-index: 0;
    filter: blur(60px);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
}

.page-hero h1 span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--muted);
}

.page-hero-small {
    padding: 9rem 5% 3rem;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 212, 170, .3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, .15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 212, 170, .4);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, .05);
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-3px);
}

/* ============================================================
   General Section Styles
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.section-title span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================================
   Stats Section
   ============================================================ */
.stats-section {
    padding: 5rem 5%;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-icon {
    color: var(--brand);
    margin-bottom: 1rem;
}

.stat-icon i,
.stat-icon svg {
    width: 40px;
    height: 40px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* ============================================================
   Features Section (Home)
   ============================================================ */
.features-section {
    padding: 8rem 5%;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
        var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: right;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 400px at var(--x, 50%) var(--y, 50%), rgba(0, 212, 170, .15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 170, .3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .2), 0 12px 40px rgba(0, 212, 170, .15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 212, 170, .3);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.feature-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================================
   Features Detail Section (features.html)
   ============================================================ */
.features-detail-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
        var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: all 0.4s ease;
}

.feature-row:hover {
    border-color: rgba(0, 212, 170, .3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .2), 0 12px 40px rgba(0, 212, 170, .15);
}

.feature-row.reverse {
    direction: ltr;
}

.feature-row.reverse .feature-row-content {
    direction: rtl;
}

.feature-row-icon {
    color: var(--brand);
    margin-bottom: 1rem;
}

.feature-row-icon i,
.feature-row-icon svg {
    width: 48px;
    height: 48px;
}

.feature-row-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-row-content>p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-detail-list {
    list-style: none;
}

.feature-detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text);
    font-size: 1rem;
}

.feature-detail-list li i,
.feature-detail-list li svg {
    color: var(--brand);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature-row-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-visual-box {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 170, .15) 0%, rgba(139, 92, 246, .1) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 170, .2);
    transition: var(--transition);
}

.feature-row:hover .feature-visual-box {
    transform: scale(1.05) rotate(3deg);
    border-color: var(--brand);
    box-shadow: 0 20px 40px rgba(0, 212, 170, .15);
}

.feature-visual-box i,
.feature-visual-box svg {
    width: 80px;
    height: 80px;
    color: var(--brand);
    opacity: 0.6;
}

/* ============================================================
   About Preview Section (Home)
   ============================================================ */
.about-preview-section {
    padding: 8rem 5%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01)),
        var(--bg-soft);
    position: relative;
}

.about-preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-preview-content p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-preview-content .section-title {
    text-align: right;
    margin-bottom: 1.5rem;
}

.about-preview-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-visual-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
        var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.about-visual-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, .3);
    box-shadow: 0 15px 40px rgba(0, 212, 170, .1);
}

.visual-icon {
    color: var(--brand);
    margin-bottom: 1rem;
}

.visual-icon i,
.visual-icon svg {
    width: 32px;
    height: 32px;
}

.about-visual-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.about-visual-card p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ============================================================
   Pricing Preview Section (Home)
   ============================================================ */
.pricing-preview-section {
    padding: 8rem 5%;
}

.pricing-preview-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-preview-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
        var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-preview-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 170, .3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .2), 0 12px 40px rgba(0, 212, 170, .15);
}

.pricing-preview-card.featured {
    border: 2px solid var(--brand);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .3), 0 0 50px rgba(0, 212, 170, .2);
    transform: scale(1.05);
}

.pricing-preview-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-preview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.preview-price {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.preview-price span {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-preview-card>p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ============================================================
   Pricing Section (pricing.html)
   ============================================================ */
.pricing-section {
    padding: 4rem 5% 8rem;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.billing-toggle span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--muted);
    transition: var(--transition);
}

.billing-toggle span.active {
    color: var(--text);
    font-weight: 700;
}

.discount-badge {
    background: var(--gradient-2);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.toggle-switch {
    width: 60px;
    height: 32px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 24px;
    height: 24px;
    background: var(--gradient-1);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch.yearly .toggle-slider {
    transform: translateX(-28px);
}

.toggle-switch.yearly {
    border-color: var(--brand);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.card-header {
    margin-bottom: 2rem;
}

.pricing-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
        var(--card);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    width: 350px;
    position: relative;
    transition: all 0.4s ease;
    text-align: right;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 24px 24px 0 0;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 212, 170, .3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25), 0 15px 50px rgba(0, 212, 170, .2);
}

.pricing-card.popular {
    border: 2px solid var(--brand);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .3), 0 0 50px rgba(0, 212, 170, .2);
    padding-top: 3.5rem;
}

.pricing-card.popular::before {
    display: none;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3), 0 0 60px rgba(0, 212, 170, .25);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-1);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 212, 170, .3);
    white-space: nowrap;
}

.plan-name {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.plan-price {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 5px;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--brand);
    font-weight: 700;
}

.price-period {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
    margin-right: 5px;
}

.plan-desc {
    color: var(--muted);
    font-size: 0.95rem;
    min-height: 45px;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 1.2rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--brand);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.plan-features li.disabled {
    color: var(--muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.plan-features li.disabled i {
    color: var(--muted);
}

.btn-subscribe {
    display: block;
    width: 100%;
    padding: 1.2rem;
    text-align: center;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    font-size: 1.1rem;
    background: var(--gradient-3);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, .2);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, .3);
}

.pricing-card.popular .btn-subscribe {
    background: var(--gradient-1);
    box-shadow: 0 15px 35px rgba(0, 212, 170, .3);
}

.pricing-card.popular .btn-subscribe:hover {
    box-shadow: 0 20px 45px rgba(0, 212, 170, .4);
}

/* ============================================================
   Comparison Table (pricing.html)
   ============================================================ */
.comparison-section {
    padding: 4rem 5% 8rem;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: var(--card);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.comparison-table thead th {
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 212, 170, .05);
}

.comparison-table thead th:first-child {
    text-align: right;
}

.comparison-table thead th.highlighted {
    color: var(--brand);
    background: rgba(0, 212, 170, .1);
}

.comparison-table tbody td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: var(--muted);
    font-size: 0.95rem;
}

.comparison-table tbody td:first-child {
    text-align: right;
    color: var(--text);
    font-weight: 500;
}

.comparison-table tbody td.highlighted {
    background: rgba(0, 212, 170, .03);
    color: var(--text);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.table-check {
    color: var(--brand) !important;
    width: 20px;
    height: 20px;
}

.table-x {
    color: var(--muted) !important;
    opacity: 0.4;
    width: 20px;
    height: 20px;
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
    padding: 4rem 5% 8rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 212, 170, .2);
}

.faq-item.active {
    border-color: rgba(0, 212, 170, .3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-align: right;
}

.faq-question:hover {
    color: var(--brand);
}

.faq-icon {
    color: var(--brand);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================================
   About Story Section
   ============================================================ */
.about-story-section {
    padding: 4rem 5% 6rem;
}

.about-story-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.about-story-content .section-title {
    text-align: right;
    margin-bottom: 1.5rem;
}

.about-story-content p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-visual-decoration {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 212, 170, .1) 0%, rgba(139, 92, 246, .05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 212, 170, .15);
    position: relative;
}

.story-visual-decoration::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 212, 170, .15);
    animation: spinSlow 30s linear infinite;
}

.story-icon-large {
    width: 100px;
    height: 100px;
    color: var(--brand);
    opacity: 0.5;
}

/* ============================================================
   Vision & Mission Section
   ============================================================ */
.vision-mission-section {
    padding: 4rem 5%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01)),
        var(--bg-soft);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.vm-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
        var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, .3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .2), 0 12px 40px rgba(0, 212, 170, .15);
}

.vm-icon {
    color: var(--brand);
    margin-bottom: 1.5rem;
}

.vm-icon i,
.vm-icon svg {
    width: 48px;
    height: 48px;
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vm-card p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================================
   Values Section
   ============================================================ */
.values-section {
    padding: 6rem 5%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
        var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 170, .3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .2), 0 12px 40px rgba(0, 212, 170, .15);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 212, 170, .3);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i,
.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact-section {
    padding: 4rem 5% 8rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-wrapper h2,
.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    transition: var(--transition);
}

.input-wrapper:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--ring);
}

.input-wrapper i,
.input-wrapper svg {
    position: absolute;
    right: 1rem;
    color: var(--muted);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
    padding-right: 3rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
}

.input-wrapper select option {
    background: var(--card);
    color: var(--text);
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper i,
.textarea-wrapper svg {
    top: 1rem;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.form-submit-btn {
    align-self: flex-start;
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

.form-success {
    text-align: center;
    padding: 4rem 2rem;
}

.form-success i,
.form-success svg {
    width: 60px;
    height: 60px;
    color: var(--brand);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brand);
}

.form-success p {
    color: var(--muted);
    font-size: 1.1rem;
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
        var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(0, 212, 170, .2);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 212, 170, .2);
}

.info-icon i,
.info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: #fff;
}

.contact-info-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* ============================================================
   Legal Pages
   ============================================================ */
.legal-section {
    padding: 4rem 5% 8rem;
}

.legal-container {
    max-width: 850px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-block p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-block ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-block ul li {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
}

.legal-block ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
}

.legal-block a {
    color: var(--brand);
    text-decoration: none;
    transition: var(--transition);
}

.legal-block a:hover {
    text-decoration: underline;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
    padding: 6rem 5%;
    background: var(--gradient-1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 60%);
    transform: rotate(45deg);
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    background:
        linear-gradient(180deg, transparent, rgba(255, 255, 255, .02)),
        var(--bg);
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-brand p {
    color: var(--muted);
    margin: 1.5rem 0;
    max-width: 300px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text);
    background: var(--card);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, .08);
}

.social-links a:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, .3);
}

.footer-links-group h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group ul li {
    margin-bottom: 1rem;
}

.footer-links-group ul li a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-group ul li a:hover {
    color: var(--brand);
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ============================================================
   Reveal Animation
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-12px);
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .about-preview-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-story-container {
        grid-template-columns: 1fr;
    }

    .about-story-visual {
        order: -1;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row.reverse {
        direction: rtl;
    }

    .feature-row-visual {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-actions .desktop-only {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(16, 18, 33, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        border-left: 1px solid var(--nav-border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .mobile-only {
        display: inline-block;
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    .pricing-preview-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-preview-card {
        max-width: 100%;
    }

    .pricing-preview-card.featured {
        transform: scale(1);
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 1.5rem auto;
    }

    .social-links {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .about-preview-visual {
        grid-template-columns: 1fr 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-submit-btn {
        width: 100%;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }

    .feature-row {
        padding: 2rem 1.5rem;
    }

    .feature-row-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-container h2 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-preview-visual {
        grid-template-columns: 1fr;
    }

    .story-visual-decoration {
        width: 180px;
        height: 180px;
    }

    .story-visual-decoration::before {
        width: 210px;
        height: 210px;
    }

    .story-icon-large {
        width: 70px;
        height: 70px;
    }
}