@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #D0BCFF;
    --primary-dark: #6750A4;
    --primary-darker: #4a3780;
    --bg-dark: #0A0A0B;
    --bg-darker: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-bg-hover: rgba(208, 188, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-light: rgba(255, 255, 255, 0.05);
    --text-main: #FFFFFF;
    --text-muted: #BDBDBD;
    --text-dim: #888;
    --accent-glow: rgba(103, 80, 164, 0.4);
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 4px 15px rgba(103, 80, 164, 0.3);
    --shadow-glow-hover: 0 8px 25px rgba(103, 80, 164, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

body::before {
    top: -10%;
    left: -10%;
}

body::after {
    bottom: -10%;
    right: -10%;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #fff;
}

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

img.nav-logo-img,
img.footer-logo-img,
img.hero-phone-icon-img,
img.story-icon-img {
    max-width: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

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

/* ============================================
   NAVBAR
   ============================================ */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 10%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(10, 10, 11, 0.95);
    padding: 0.8rem 10%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo img {
    -webkit-text-fill-color: initial;
    background: none;
}

.nav-logo span {
    -webkit-text-fill-color: transparent;
}

.nav-logo-img {
    height: 28px !important;
    width: auto !important;
    object-fit: contain;
    margin-right: 0.4rem;
}

.nav-center {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-center a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.3rem 0;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 1px;
}

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

.nav-center a:hover::after,
.nav-center a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    position: relative;
    cursor: pointer;
}

.lang-switcher-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.lang-switcher-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1a1a1f;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.lang-dropdown button:hover,
.lang-dropdown button.active {
    background: var(--card-bg-hover);
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-dark), #8a6be0);
    color: white;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-hover);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 11, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 600;
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-menu .lang-switcher-mobile {
    margin-top: 1rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-menu .lang-switcher-mobile button {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu .lang-switcher-mobile button.active,
.mobile-menu .lang-switcher-mobile button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 10% 60px;
    gap: 5%;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border-radius: 40px;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--accent-glow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.hero-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: #0A0A0B;
    border-radius: 38px 38px 0 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-phone-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.hero-phone-text {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary), #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-phone-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-phone-icon-img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 10%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* ============================================
   SECTION GENERAL
   ============================================ */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--card-bg-hover);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(208, 188, 255, 0.2);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.features-grid-2col {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

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

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.feature-card .icon-brain { color: var(--primary); }
.feature-card .icon-bolt { color: #FFD54F; }
.feature-card .icon-capture { color: #4FC3F7; }
.feature-card .icon-graph { color: #81C784; }
.feature-card .icon-repeat { color: #FF8A65; }
.feature-card .icon-task { color: #BA68C8; }
.feature-card .icon-calendar { color: #4DD0E1; }
.feature-card .icon-study { color: #FFB74D; }
.feature-card .icon-daily { color: #FFF176; }
.feature-card .icon-assistant { color: var(--primary); }
.feature-card .icon-attachments { color: #4FC3F7; }
.feature-card .icon-sync { color: #81C784; }

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.feature-card .learn-more:hover {
    gap: 0.6rem;
}

/* ============================================
   AI PROVIDERS
   ============================================ */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.provider-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.provider-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.provider-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.provider-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.provider-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-dark), #8a6be0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
    box-shadow: var(--shadow-glow);
}

.step-card h3 {
    margin-bottom: 0.8rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-connector {
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.pricing-card.popular {
    border-color: var(--primary);
    background: rgba(208, 188, 255, 0.03);
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, var(--primary-dark), #8a6be0);
    color: white;
    padding: 0.3rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-tier {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

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

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

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

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

.pricing-features .check {
    color: var(--success);
    font-size: 0.9rem;
}

.pricing-features .cross {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* ============================================
   DOWNLOAD CARDS
   ============================================ */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

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

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

.download-card.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.download-card .platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-card h3 {
    margin-bottom: 0.5rem;
}

.download-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.coming-soon-tag {
    display: inline-block;
    background: var(--card-bg-hover);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   SYSTEM REQUIREMENTS TABLE
   ============================================ */
.req-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.req-table th,
.req-table td {
    padding: 1rem 1.5rem;
    text-align: start;
    border-bottom: 1px solid var(--border-color-light);
}

.req-table th {
    background: rgba(208, 188, 255, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.req-table td {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.req-table tr:last-child td {
    border-bottom: none;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-dark);
}

.faq-item.open {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    background: var(--card-bg);
    transition: var(--transition);
    border: none;
    width: 100%;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: start;
}

.faq-question:hover {
    background: var(--card-bg-hover);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
    font-size: 0.8rem;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

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

.faq-answer-content {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   TABS (Privacy page)
   ============================================ */
.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: var(--transition);
}

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

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    background: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.legal-text h3 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text p,
.legal-text li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-text ul {
    padding-inline-start: 1.5rem;
    margin-bottom: 1rem;
}

.legal-text ul li {
    margin-bottom: 0.4rem;
}

.legal-updated {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* ============================================
   PRIVACY SNIPPET (on product page)
   ============================================ */
.privacy-snippet {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
}

.privacy-snippet-icon {
    font-size: 3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.privacy-snippet h3 {
    margin-bottom: 0.5rem;
}

.privacy-snippet p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient(180deg, transparent, rgba(103, 80, 164, 0.08), transparent);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section h2 span {
    color: var(--primary);
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   ABOUT PAGE SPECIFICS
   ============================================ */
.vision-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-section h2 {
    margin-bottom: 1.5rem;
}

.vision-section h2 span {
    color: var(--primary);
}

.vision-section p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.9;
}

.story-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 280px;
}

.story-text h3 {
    margin-bottom: 1rem;
}

.story-text p {
    color: var(--text-muted);
    line-height: 1.8;
}

.story-visual {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.story-icon-box {
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 0 60px var(--accent-glow);
}

.story-icon-box .story-icon-img {
    width: 100px !important;
    height: 100px !important;
    object-fit: contain;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.ecosystem-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

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

.ecosystem-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ecosystem-card h4 {
    margin-bottom: 0.8rem;
}

.ecosystem-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.contact-section .contact-email {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 1rem 0;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.contact-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 10% 20px;
}

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

.footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer-brand .logo img {
    -webkit-text-fill-color: initial;
    background: none;
}

.footer-logo-img {
    height: 24px !important;
    width: auto !important;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 1rem;
}

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

.copyright {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color-light);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

/* ============================================
   PLACEHOLDER/PAGE HEADER
   ============================================ */
.page-header {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(103, 80, 164, 0.08), transparent);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header h1 span {
    color: var(--primary);
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ANIMATIONS / UTILITIES
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.glow-text {
    text-shadow: 0 0 10px rgba(208, 188, 255, 0.5);
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    nav { padding: 1rem 5%; }
    .nav-center { display: none; }
    .nav-right .btn-primary { display: none; }
    .hamburger { display: flex; }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 130px 5% 40px;
        min-height: auto;
    }
    .hero-content p { margin: 0 auto 2rem; }
    .hero-btns { justify-content: center; }
    .hero-phone { width: 220px; height: 440px; }

    .nav-logo-img { height: 22px !important; }
    .footer-logo-img { height: 18px !important; }
    .hero-phone-icon-img { width: 60px !important; height: 60px !important; }
    .story-icon-box .story-icon-img { width: 70px !important; height: 70px !important; }

    section { padding: 60px 5%; }
    .stats-bar { gap: 2rem; padding: 2rem 5%; }
    .stat-number { font-size: 2rem; }

    .features-grid { grid-template-columns: 1fr; }
    .features-grid-2col { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .download-grid { grid-template-columns: 1fr; }
    .providers-grid { grid-template-columns: repeat(3, 1fr); }

    .how-it-works { flex-direction: column; align-items: center; }

    .privacy-snippet { flex-direction: column; text-align: center; }

    .story-section { flex-direction: column; text-align: center; }

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

    .story-icon-box { width: 150px; height: 150px; font-size: 3.5rem; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    h1 { font-size: 1.9rem; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .cta-btns { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .tabs { flex-direction: column; }
    .tab-btn { width: 100%; border-bottom: 1px solid var(--border-color); }
    .providers-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .provider-card { padding: 1rem 0.6rem; }
}

/* ============================================
   RTL/LTR DIRECTION HANDLING
   ============================================ */
[dir="rtl"] .privacy-features li .fa-check-circle,
[dir="rtl"] .pricing-features li {
    text-align: right;
}

[dir="ltr"] .privacy-features li .fa-check-circle,
[dir="ltr"] .pricing-features li {
    text-align: left;
}

[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-center {
    direction: rtl;
}

[dir="rtl"] .nav-logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-logo-img {
    margin-right: 0;
    margin-left: 0.5rem;
}

[dir="ltr"] .nav-logo-img {
    margin-right: 0.5rem;
}

[dir="rtl"] .footer-brand .logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-logo-img {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    nav, .hamburger, .mobile-menu, .lang-switcher { display: none !important; }
    body { background: white; color: black; }
    body::before, body::after { display: none; }
    section { padding: 20px 0; }
}