:root {
    --bg-1: #162454;
    --bg-2: #0d1b3e;
    --bg-3: #070e20;
    --bg-4: #030914;
    --accent: #0A84FF;
    --accent-light: #3BA0FF;
    --accent-dark: #0060CC;
    --accent-glow: rgba(10, 132, 255, 0.25);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.72);
    --text-muted: rgba(255, 255, 255, 0.42);
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-bg-hover: rgba(255, 255, 255, 0.07);
    --card-border: rgba(255, 255, 255, 0.09);
    --card-border-hover: rgba(10, 132, 255, 0.35);
    --nav-height: 68px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --shadow-blue: 0 20px 60px rgba(10, 132, 255, 0.2);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; background-color: #162454; overscroll-behavior-y: none; }

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 18%, var(--bg-3) 55%, var(--bg-4) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-4); }
::-webkit-scrollbar-thumb { background: rgba(10, 132, 255, 0.4); border-radius: 3px; }

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    background: rgba(7, 14, 32, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--card-border);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(3, 9, 20, 0.92);
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo-img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.nav-brand-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.2s;
}

.menu-toggle:hover { background: var(--card-bg); }

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.menu-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MENU OVERLAY ─── */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(2, 6, 15, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

/* ─── SIDE PANEL ─── */
.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 300;
    width: 300px;
    height: 100dvh;
    background: linear-gradient(160deg, #162454, #0a1628 50%, #060e1e);
    border-left: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.side-panel.open {
    transform: translateX(0);
}

.side-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--card-border);
}

.side-panel-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
}

.side-panel-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.side-panel-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: background 0.2s;
}

.side-panel-close:hover { background: rgba(255,255,255,0.1); }

.side-panel-nav {
    flex: 1;
    padding: 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.side-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.side-nav-item:hover {
    background: var(--card-bg-hover);
    border-color: var(--card-border-hover);
    transform: translateX(-2px);
}

.side-nav-icon {
    color: var(--accent);
    display: flex;
    flex-shrink: 0;
}

.side-nav-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 20px;
}

.side-panel-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--card-border);
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

/* ─── SUPPORT OVERLAY / MODAL ─── */
.support-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(2, 6, 15, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.support-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.support-modal {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(160deg, #1a2d5a, #0d1b3e);
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(10, 132, 255, 0.1);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.support-overlay.visible .support-modal {
    transform: translateY(0) scale(1);
}

.support-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.support-modal-header h3 {
    font-size: 22px;
    font-weight: 700;
}

.support-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: background 0.2s;
}

.support-close:hover { background: rgba(255,255,255,0.1); }

.support-modal-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.support-form { display: flex; flex-direction: column; gap: 18px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: none;
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus, .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.15);
}

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(10, 132, 255, 0.35);
    margin-top: 4px;
}

.form-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(10, 132, 255, 0.45);
}

.form-submit-btn:active { transform: translateY(0); }

/* ─── HERO SECTION ─── */
.hero-section {
    position: relative;
    min-height: 100dvh;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(10, 132, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 24px 100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }

.hero-app-badge {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 132, 255, 0.3), 0 4px 16px rgba(0,0,0,0.4);
}

.hero-app-badge img { width: 100%; height: 100%; object-fit: cover; }

.hero-title {
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 0.95;
    background: linear-gradient(135deg, #FFFFFF 0%, #A8CCFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
    color: var(--accent-light);
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.hero-desc {
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 460px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* ─── APP STORE BUTTON ─── */
.appstore-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--text-primary);
    border-radius: var(--radius-md);
    color: #000;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.appstore-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    opacity: 0.92;
}

.appstore-button:active { transform: translateY(0); }

.apple-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.appstore-text { display: flex; flex-direction: column; }
.appstore-small { font-size: 11px; font-weight: 500; opacity: 0.7; }
.appstore-large { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; }

/* ─── HERO VISUAL ─── */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-phone-img {
    max-width: 480px;
    width: 100%;
    animation: heroFloat 5s ease-in-out infinite;
}

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

/* ─── SCROLL ANIMATIONS ─── */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate].delay-1 { transition-delay: 0.1s; }
[data-animate].delay-2 { transition-delay: 0.2s; }
[data-animate].delay-3 { transition-delay: 0.3s; }

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.75s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ─── FEATURES SECTION ─── */
.features-section {
    padding: 100px 24px;
    max-width: 1160px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* ─── PHONE MOCKUP ─── */
.phone-mockup {
    position: relative;
    width: 260px;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

.feature-row.reverse .phone-mockup {
    animation-direction: alternate;
}

.phone-notch { display: none; }

.phone-screen {
    border-radius: 42px;
    overflow: hidden;
    line-height: 0;
    position: relative;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55))
            drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35))
            drop-shadow(0 0 30px rgba(10, 132, 255, 0.1));
}

.phone-screen::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 28px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.55) 0%, transparent 75%);
    pointer-events: none;
    z-index: 2;
}

.phone-screen img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 42px;
    display: block;
}

/* ─── FEATURE GLOW ─── */
.feature-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.18) 0%, transparent 70%);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.feature-glow.glow-purple { background: radial-gradient(circle, rgba(130, 80, 255, 0.15) 0%, transparent 70%); }
.feature-glow.glow-green  { background: radial-gradient(circle, rgba(52, 199, 89, 0.13) 0%, transparent 70%); }
.feature-glow.glow-orange { background: radial-gradient(circle, rgba(255, 159, 10, 0.13) 0%, transparent 70%); }

/* ─── FEATURE INFO ─── */
.feature-info { display: flex; flex-direction: column; gap: 16px; }

.feature-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-transform: uppercase;
}

.feature-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.1;
}

.feature-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feature-list { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--accent-glow);
}

/* ─── DESCRIPTION SECTION ─── */
.description-section {
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}

.description-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(10, 132, 255, 0.04) 30%, rgba(10, 132, 255, 0.06) 70%, transparent);
    pointer-events: none;
}

.desc-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.desc-top {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.desc-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(10, 132, 255, 0.35), 0 4px 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(10, 132, 255, 0.3);
}

.desc-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }

.desc-main-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #FFFFFF 0%, #8BBBFF 50%, #0A84FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desc-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    color: var(--accent-light);
}

.desc-intro {
    font-size: clamp(14px, 1.5vw, 17px);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 620px;
}

/* ─── DESC GRID ─── */
.desc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.desc-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.desc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.desc-card:hover {
    background: var(--card-bg-hover);
    border-color: var(--card-border-hover);
    transform: translateY(-3px);
}

.desc-card:hover::before { opacity: 1; }

.desc-card-icon { font-size: 32px; }

.desc-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.desc-card ul { display: flex; flex-direction: column; gap: 8px; }

.desc-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.desc-card li::before {
    content: '✓';
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.desc-card-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

.desc-card-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.2);
    padding: 5px 14px;
    border-radius: 100px;
    margin-top: 4px;
}

.desc-card-body {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.use-case-tags span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--card-border);
    padding: 5px 12px;
    border-radius: 8px;
}

/* ─── DESC BOTTOM ─── */
.desc-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px 30px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.desc-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(10, 132, 255, 0.1), transparent 60%);
    pointer-events: none;
}

.desc-pills {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pill {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-light);
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.25);
    padding: 8px 20px;
    border-radius: 100px;
}

.pill-dot { color: var(--text-muted); font-size: 18px; }

.desc-tagline {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.desc-cta {
    font-size: clamp(14px, 1.5vw, 17px);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ─── FOOTER ─── */
.footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 24px;
    background: rgba(3, 9, 20, 0.6);
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
}

.footer-logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── PRIVACY PAGE ─── */
.privacy-page { padding-top: var(--nav-height); }

.privacy-hero {
    padding: 70px 24px 50px;
    text-align: center;
    position: relative;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(10, 132, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.2);
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.privacy-hero h1 {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.privacy-hero p {
    font-size: 15px;
    color: var(--text-muted);
}

.privacy-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.privacy-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.privacy-section:hover { border-color: rgba(10, 132, 255, 0.2); }

.privacy-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section h2 .section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(10, 132, 255, 0.15);
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.privacy-section p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 10px;
}

.privacy-section p:last-child { margin-bottom: 0; }

.privacy-section ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.privacy-section li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-section strong { color: var(--text-primary); font-weight: 600; }

.contact-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.25);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
}

/* ─── MEDIA QUERIES ─── */

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 24px 80px;
    }

    .hero-content { align-items: center; }
    .hero-desc br { display: none; }
    .hero-visual { order: -1; }
    .hero-phone-img { max-width: 320px; }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .feature-row.reverse { direction: ltr; }

    .phone-mockup { width: 220px; }

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

    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 600px) {
    .nav-inner { padding: 0 16px; }

    .hero-inner { padding: 40px 16px 60px; }
    .hero-app-badge { width: 70px; height: 70px; border-radius: 18px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .appstore-button { justify-content: center; width: 100%; }

    .features-section { padding: 70px 16px; }
    .section-header { margin-bottom: 50px; }
    .phone-mockup { width: 200px; }

    .description-section { padding: 70px 16px 60px; }
    .desc-bottom { padding: 36px 20px; }
    .desc-pills { gap: 8px; }

    .side-panel { width: 100%; max-width: 320px; }

    .support-modal { padding: 24px 20px; }

    .privacy-section { padding: 22px 20px; }
    .privacy-content { padding: 0 16px 80px; }

    .footer { padding: 30px 16px; }
    .footer-nav { gap: 20px; }
}

@media (max-width: 380px) {
    .hero-title { letter-spacing: -1.5px; }
    .desc-pills { flex-direction: column; gap: 10px; }
    .pill-dot { display: none; }
}
