/* ═══════════════════════════════════════════════════════════════
   LOKLU 2026 DESIGN SYSTEM — Shared base styles
   Premium SaaS aesthetic: aurora, glassmorphism, micro-interactions
   ═══════════════════════════════════════════════════════════════ */

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

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

:root {
    --orange-500: #ff7828;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-300: #fdba74;
    --orange-400: #fb923c;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --bg-warm: #fdf8f4;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--slate-900);
    background: var(--bg-warm);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Grain texture overlay */
body::after {
    content: '';
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9999; opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { text-decoration: none; color: inherit; }

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ========== AURORA MESH GRADIENT BG ========== */
.aurora-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: -1;
    overflow: hidden;
}
.aurora-blob {
    position: absolute; border-radius: 50%;
    filter: blur(120px);
    animation: auroraFloat 20s ease-in-out infinite;
}
.aurora-blob:nth-child(1) {
    width: 600px; height: 600px; top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(255,120,40,0.12) 0%, transparent 70%);
    animation-duration: 22s;
}
.aurora-blob:nth-child(2) {
    width: 500px; height: 500px; bottom: 20%; left: -100px;
    background: radial-gradient(circle, rgba(255,166,100,0.08) 0%, transparent 70%);
    animation-duration: 18s; animation-delay: -5s;
}
.aurora-blob:nth-child(3) {
    width: 400px; height: 400px; top: 40%; right: 10%;
    background: radial-gradient(circle, rgba(251,146,60,0.06) 0%, transparent 70%);
    animation-duration: 25s; animation-delay: -10s;
}
@keyframes auroraFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========== NAV (glassmorphic) ========== */
.nav-2026 {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent;
    backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-2026.scrolled {
    box-shadow: 0 1px 20px rgba(255,120,40,0.06), 0 1px 3px rgba(0,0,0,0.04);
    background: rgba(253,248,244,0.88);
}
.nav-2026-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
    height: 90px;
}
.nav-2026-brand {
    margin-left: -16px; margin-top: 20px;
    height: 90px; overflow: visible; display: flex; align-items: center;
}
.nav-2026-brand img {
    height: 250px; width: auto;
}
.nav-2026-logo {
    display: flex; align-items: center; gap: 10px;
    margin-left: -12px;
}
.nav-2026-links {
    display: flex; align-items: center; gap: 4px;
}
.nav-2026-links a {
    padding: 8px 18px; font-size: 15px; font-weight: 500;
    color: var(--slate-500); border-radius: 10px; transition: all 0.25s;
    position: relative;
}
.nav-2026-links a:hover { color: var(--slate-900); background: rgba(255,120,40,0.05); }
.nav-2026-links a::after {
    content: ''; position: absolute; bottom: 4px; left: 50%; width: 0; height: 2px;
    background: var(--orange-500); border-radius: 2px;
    transform: translateX(-50%); transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-2026-links a:hover::after { width: 20px; }
.nav-2026-links a.active { color: var(--orange-600); font-weight: 600; }
.nav-2026-links a.active::after { width: 20px; }
.nav-2026-right {
    display: flex; align-items: center; gap: 12px;
}
.btn-login-2026 {
    padding: 10px 24px; font-size: 14px; font-weight: 600;
    color: var(--slate-700); background: var(--white);
    border: 1.5px solid var(--slate-200); border-radius: 10px;
    cursor: pointer; transition: all 0.25s;
    text-decoration: none; display: inline-flex; align-items: center;
}
.btn-login-2026:hover { border-color: var(--orange-300); color: var(--orange-600); }
.btn-cta-2026 {
    padding: 10px 24px; font-size: 14px; font-weight: 600;
    color: var(--white); background: var(--orange-500);
    border: none; border-radius: 10px; cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(255,120,40,0.25);
    text-decoration: none; display: inline-flex; align-items: center;
}
.btn-cta-2026:hover {
    background: var(--orange-600); transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,120,40,0.3);
    color: var(--white);
}

.nav-2026-mobile-btn {
    display: none; background: none; border: none; padding: 8px; cursor: pointer;
}
.nav-2026-mobile-btn svg { width: 24px; height: 24px; color: var(--slate-700); }
.nav-2026-mobile {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-200);
    padding: 16px 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    flex-direction: column; gap: 4px; z-index: 99;
}
.nav-2026-mobile.open { display: flex; }
.nav-2026-mobile a {
    padding: 12px 16px; font-size: 16px; font-weight: 500;
    color: var(--slate-600); border-radius: 10px;
}
.nav-2026-mobile a:hover { background: rgba(255,120,40,0.05); }

/* ========== COMMON BUTTONS ========== */
.btn-hero-2026 {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 34px; font-size: 16px; font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #ff7828 0%, #ff6010 100%);
    border: none; border-radius: 14px; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(255,120,40,0.35);
    text-decoration: none;
}
.btn-hero-2026:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,120,40,0.4);
    color: var(--white);
}

/* ========== SECTION STYLING ========== */
.section-badge-2026 {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 100px;
    background: rgba(255,120,40,0.06);
    border: 1px solid rgba(255,120,40,0.12);
    font-size: 13px; font-weight: 600; color: var(--orange-600);
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}
.section-title-2026 {
    font-size: clamp(34px, 3.5vw, 48px); font-weight: 900;
    letter-spacing: -2px; color: var(--slate-900); margin-bottom: 16px;
}
.section-subtitle-2026 {
    font-size: 17px; line-height: 1.75; color: var(--slate-500);
    max-width: 560px; margin-bottom: 64px;
}
.accent-2026 {
    background: linear-gradient(135deg, #ff7828 0%, #ff9a5c 50%, #ff7828 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift-2026 4s ease-in-out infinite;
}
@keyframes gradientShift-2026 {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ========== GLASSMORPHIC CARD ========== */
.glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 22px; padding: 36px;
    border: 1px solid rgba(255,120,40,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
}
.glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover::before { transform: scaleX(1); }
.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255,120,40,0.08), 0 8px 20px rgba(0,0,0,0.04);
    border-color: rgba(255,120,40,0.12);
    background: rgba(255,255,255,0.9);
}

/* ========== CONTENT PAGE LAYOUT ========== */
.page-2026 {
    padding: 120px 32px 80px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.page-2026.wide { max-width: 1280px; }
.page-2026.narrow { max-width: 750px; }

.page-2026 h1 {
    font-size: clamp(32px, 4vw, 48px); font-weight: 900;
    letter-spacing: -1.5px; color: var(--slate-900); margin-bottom: 12px;
}
.page-2026 .page-subtitle {
    font-size: 17px; color: var(--slate-500); margin-bottom: 48px; line-height: 1.75;
}
.page-2026 h3 {
    font-size: 22px; font-weight: 800; color: var(--slate-900);
    margin-top: 48px; margin-bottom: 16px;
}
.page-2026 h4 {
    font-size: 18px; font-weight: 700; color: var(--slate-800);
    margin-top: 32px; margin-bottom: 12px;
}
.page-2026 p {
    color: var(--slate-600); line-height: 1.85; margin-bottom: 16px;
    font-size: 15px;
}
.page-2026 ul {
    color: var(--slate-600); line-height: 1.85; margin-bottom: 16px;
    padding-left: 24px; font-size: 15px;
}
.page-2026 a:not(.btn-hero-2026):not(.btn-cta-2026):not(.btn-login-2026):not(.nav-2026-links a) {
    color: var(--orange-500);
    transition: color 0.25s;
}
.page-2026 a:not(.btn-hero-2026):not(.btn-cta-2026):not(.btn-login-2026):not(.nav-2026-links a):hover {
    color: var(--orange-600);
}

/* ========== CTA SECTION ========== */
.cta-2026 {
    padding: 80px 32px; max-width: 1280px; margin: 0 auto;
    position: relative; z-index: 1;
}
.cta-2026-card {
    background: linear-gradient(135deg, #ff7828 0%, #ff5500 40%, #ea580c 100%);
    border-radius: 32px; padding: 80px 48px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-2026-card::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: ctaOrb-2026-1 8s ease-in-out infinite;
}
.cta-2026-card::after {
    content: ''; position: absolute; bottom: -120px; left: -80px;
    width: 350px; height: 350px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
    animation: ctaOrb-2026-2 10s ease-in-out infinite;
}
@keyframes ctaOrb-2026-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes ctaOrb-2026-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}
.cta-2026-card h2 {
    font-size: clamp(30px, 3vw, 44px); font-weight: 900;
    color: var(--white); margin-bottom: 16px; letter-spacing: -1.5px;
    position: relative; z-index: 1;
}
.cta-2026-card p {
    font-size: 18px; color: rgba(255,255,255,0.8);
    max-width: 500px; margin: 0 auto 36px; line-height: 1.6;
    position: relative; z-index: 1;
}
.btn-cta-white-2026 {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 40px; font-size: 16px; font-weight: 700;
    color: var(--orange-600); background: var(--white);
    border: none; border-radius: 14px; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    position: relative; z-index: 1;
    text-decoration: none;
}
.btn-cta-white-2026:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    color: var(--orange-600);
}

/* ========== FOOTER ========== */
.footer-2026 {
    padding: 60px 32px 32px; max-width: 1280px; margin: 0 auto;
    border-top: 1px solid rgba(0,0,0,0.06);
    position: relative; z-index: 1;
}
.footer-2026-inner {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 40px;
}
.footer-2026-brand img {

    height: 180px !important;
    margin-top: 10px;
    margin-bottom: -60px;
    display: block;
}
.footer-2026-brand p {
    font-size: 14px; color: var(--slate-400); margin-top: 12px;
    max-width: 280px; line-height: 1.65;
}
.footer-2026-links {
    display: flex; gap: 64px;
}
.footer-2026-col h4 {
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--slate-400); margin-bottom: 16px;
}
.footer-2026-col a {
    display: block; font-size: 14px; color: var(--slate-500);
    padding: 4px 0; transition: all 0.25s;
}
.footer-2026-col a:hover { color: var(--orange-500); transform: translateX(3px); }
.footer-2026-bottom {
    font-size: 13px; color: var(--slate-400);
    padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.04);
    display: flex; justify-content: space-between;
}

/* ========== AUTH PAGE ========== */
.auth-2026-wrapper {
    width: 100%; max-width: 460px; padding: 20px;
}
.auth-2026-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(255,120,40,0.1), 0 8px 24px rgba(0,0,0,0.04),
                inset 0 1px 0 rgba(255,255,255,0.6);
    border: 1px solid rgba(255,120,40,0.08);
    padding: 48px 40px;
}
.auth-2026-card .form-control {
    border-radius: 12px; padding: 14px 16px;
    border: 1px solid var(--slate-200);
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: 'Inter', sans-serif;
}
.auth-2026-card .form-control:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(255,120,40,0.1);
    outline: none;
}
.btn-loklu-2026 {
    background: linear-gradient(135deg, #ff7828 0%, #ff6010 100%);
    color: #fff; border: none;
    border-radius: 12px; padding: 14px; font-weight: 700; font-size: 1.05rem;
    width: 100%; transition: all 0.3s; cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-loklu-2026:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,120,40,0.3);
    color: #fff;
}
.btn-loklu-2026:disabled { opacity: 0.6; transform: none; }
.auth-2026-divider {
    display: flex; align-items: center; margin: 24px 0; color: var(--slate-400); font-size: 0.85rem;
}
.auth-2026-divider::before, .auth-2026-divider::after { content: ''; flex: 1; height: 1px; background: var(--slate-200); }
.auth-2026-divider span { padding: 0 16px; }

/* ========== ICON CONTAINERS ========== */
.icon-box-2026 {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 16px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255,120,40,0.08);
}
.icon-box-2026:hover { transform: scale(1.1) rotate(-3deg); }
.icon-box-2026.green { background: rgba(34,197,94,0.08); }
.icon-box-2026.blue { background: rgba(59,130,246,0.08); }
.icon-box-2026.purple { background: rgba(168,85,247,0.08); }

/* ========== STAT NUMBERS ========== */
.stat-2026 {
    font-size: 2.5rem; font-weight: 900;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== FAQ STYLING ========== */
.faq-2026-item {
    border: 1px solid rgba(255,120,40,0.08);
    border-radius: 16px; margin-bottom: 12px; overflow: hidden;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.faq-2026-item:hover { border-color: rgba(255,120,40,0.15); }
.faq-2026-item summary {
    padding: 20px 24px; font-weight: 600; cursor: pointer;
    list-style: none; display: flex; align-items: center; justify-content: space-between;
    color: var(--slate-800); font-size: 15px;
}
.faq-2026-item summary::-webkit-details-marker { display: none; }
.faq-2026-item summary::after {
    content: '▾'; font-size: 18px; color: var(--orange-500);
    transition: transform 0.3s;
}
.faq-2026-item[open] summary::after { transform: rotate(180deg); }
.faq-2026-item .faq-answer {
    padding: 0 24px 20px; color: var(--slate-500); line-height: 1.85; font-size: 15px;
}

/* ========== BLOG CARDS ========== */
.blog-2026-card {
    border-radius: 22px; border: 1px solid rgba(255,120,40,0.06);
    overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%; background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
}
.blog-2026-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255,120,40,0.08), 0 8px 20px rgba(0,0,0,0.04);
}
.blog-2026-img {
    height: 200px;
    background: linear-gradient(135deg, #ff7828 0%, #ff9a5c 100%);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3); font-size: 3rem;
}
.blog-2026-body { padding: 28px; }
.blog-2026-tag {
    display: inline-block;
    background: rgba(255,120,40,0.08);
    color: var(--orange-600);
    font-size: 0.75rem; font-weight: 600;
    padding: 4px 12px; border-radius: 8px; margin-bottom: 12px;
}
.blog-2026-body h5 { font-weight: 700; margin-bottom: 10px; color: var(--slate-900); font-size: 17px; }
.blog-2026-body p { color: var(--slate-500); font-size: 14px; line-height: 1.7; }
.blog-2026-meta { color: var(--slate-400); font-size: 0.8rem; margin-top: 16px; }

/* ========== CONTACT CARDS ========== */
.contact-2026-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 22px; border: 1px solid rgba(255,120,40,0.06);
    padding: 36px; text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-2026-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255,120,40,0.08);
}
.contact-2026-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: rgba(255,120,40,0.08);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 1.5rem; color: var(--orange-500);
}

/* ========== FORM STYLING ========== */
.form-2026 .form-control {
    border-radius: 12px; padding: 14px 16px;
    border: 1px solid var(--slate-200);
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: 'Inter', sans-serif;
}
.form-2026 .form-control:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(255,120,40,0.1);
    outline: none;
}
.form-2026 .form-select {
    border-radius: 12px; padding: 14px 16px;
    border: 1px solid var(--slate-200);
    font-family: 'Inter', sans-serif;
}
.btn-submit-2026 {
    background: linear-gradient(135deg, #ff7828 0%, #ff6010 100%);
    color: #fff; border: none;
    border-radius: 12px; padding: 14px 28px; font-weight: 700;
    transition: all 0.3s; cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-submit-2026:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,120,40,0.3);
    color: #fff;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
    .nav-2026-links { display: none; }
    .nav-2026-mobile-btn { display: block; }
    .btn-login-2026 { display: none; }
    .page-2026 { padding: 100px 20px 60px; }
    .page-2026 h1 { font-size: 32px; letter-spacing: -1px; }
    .footer-2026-inner { flex-direction: column; gap: 40px; }
    .footer-2026-links { gap: 40px; flex-wrap: wrap; }
    .footer-2026-bottom { flex-direction: column; gap: 8px; }
    .cta-2026-card { padding: 56px 28px; border-radius: 24px; }
}

/* ========== CURSOR ========== */
@media (hover: hover) {
    .btn-hero-2026, .btn-cta-2026, .btn-cta-white-2026, .btn-login-2026,
    .glass-card, .nav-2026-links a, .footer-2026-col a,
    .blog-2026-card, .contact-2026-card, .faq-2026-item summary {
        cursor: pointer;
    }
}

/* ═══════════════════════════════════════════
   LOKLU 2026 — COMPREHENSIVE MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */

/* ── TABLET (max 1024px) ─────────────────── */
@media (max-width: 1024px) {
    .nav-2026-inner { padding: 0 24px; }
    .nav-2026-links { gap: 0; }
    .nav-2026-links a { padding: 8px 12px; font-size: 14px; }
}

/* ── MOBILE EXPANDED (max 768px) ─────────── */
@media (max-width: 768px) {
    /* Nav */
    .nav-2026-inner { height: 70px; padding: 0 16px; }
    .nav-2026-brand { height: 70px; margin-top: 15px; }
    .nav-2026-brand img { height: 200px; }
    .nav-2026-links { display: none; }
    .nav-2026-right { display: none; }
    .nav-2026-mobile-btn { display: block; }
    .nav-2026-mobile { top: 70px; padding: 12px 16px; }
    .nav-2026-mobile a {
        padding: 14px 12px; font-size: 16px; min-height: 48px;
        display: flex; align-items: center;
        border-bottom: 1px solid var(--slate-100);
    }
    .nav-2026-mobile a:last-child { border-bottom: none; }

    /* Page content */
    .page-2026 { padding: 90px 16px 48px; }
    .page-2026 h1 { font-size: 28px; letter-spacing: -0.5px; line-height: 1.2; }
    .page-2026 h2 { font-size: 22px; }
    .page-2026 h3 { font-size: 18px; }
    .page-2026 p { font-size: 15px; }

    /* Buttons */
    .btn-hero-2026 { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }
    .btn-cta-2026, .btn-cta-white-2026 { width: 100%; justify-content: center; }
    .btn-login-2026 { display: none; }
    .btn-submit-2026 { width: 100%; }

    /* Glass cards */
    .glass-card { padding: 24px 20px; border-radius: 16px; }

    /* Footer */
    .footer-2026 { padding: 48px 16px 24px; }
    .footer-2026-inner { flex-direction: column; gap: 32px; }
    .footer-2026-brand img { height: 120px; }
    .footer-2026-brand p { font-size: 13px; }
    .footer-2026-links { flex-wrap: wrap; gap: 32px; }
    .footer-2026-col h4 { font-size: 12px; }
    .footer-2026-col a { font-size: 14px; }
    .footer-2026-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* CTA */
    .cta-2026-card { padding: 48px 20px; border-radius: 20px; }
    .cta-2026-card h2 { font-size: 24px; }
    .cta-2026-card p { font-size: 14px; }

    /* Grids / Multi-col */
    .hero-2026 { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-2026-actions { flex-direction: column; align-items: stretch; }

    /* FAQ */
    .faq-2026-item summary { font-size: 15px; padding: 16px; min-height: 48px; }
    .faq-2026-item p { font-size: 14px; padding: 0 16px 16px; }

    /* Blog cards */
    .blog-2026-grid { grid-template-columns: 1fr !important; }

    /* Contact */
    .contact-2026-grid { grid-template-columns: 1fr !important; }
    .contact-2026-card { padding: 24px 20px; }

    /* Aurora effects - reduce on mobile */
    .aurora-blob { filter: blur(80px); opacity: 0.7; }
    .aurora-blob:nth-child(1) { width: 300px; height: 300px; }
    .aurora-blob:nth-child(2) { width: 250px; height: 250px; }
    .aurora-blob:nth-child(3) { display: none; }
}

/* ── SMALL MOBILE (max 480px) ────────────── */
@media (max-width: 480px) {
    .nav-2026-inner { height: 60px; padding: 0 12px; }
    .nav-2026-brand { height: 60px; margin-top: 10px; }
    .nav-2026-brand img { height: 170px; }
    .nav-2026-mobile { top: 60px; }

    .page-2026 { padding: 80px 12px 36px; }
    .page-2026 h1 { font-size: 24px; }
    .page-2026 h2 { font-size: 20px; }

    .glass-card { padding: 20px 16px; border-radius: 14px; }
    .cta-2026-card { padding: 36px 16px; border-radius: 16px; }
    .cta-2026-card h2 { font-size: 22px; }

    .footer-2026-links { gap: 24px; }
    .footer-2026 { padding: 36px 12px 20px; }
}

/* ── TOUCH HELPERS (2026) ────────────────── */
@media (hover: none) and (pointer: coarse) {
    .nav-2026-mobile a { min-height: 52px; }
    .btn-hero-2026, .btn-cta-2026, .btn-submit-2026 { min-height: 48px; }
    .faq-2026-item summary { min-height: 52px; }
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE UTILITIES (Phase 19-03)
   ═══════════════════════════════════════════ */

/* Global safety net: prevent horizontal overflow */
html { max-width: 100vw; }
body { max-width: 100%; overflow-x: hidden; }
img, video, canvas, svg { max-width: 100%; height: auto; }

/* ── Responsive grid utility ── */
@media (max-width: 768px) {
    .responsive-grid { grid-template-columns: 1fr !important; }
    .responsive-grid-2 { grid-template-columns: repeat(2, 1fr) !important; }

    /* Table horizontal scroll wrapper */
    .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .table-responsive table { min-width: 500px; }

    /* Hide decorative elements on mobile */
    .hide-mobile { display: none !important; }

    /* Full-width containers with safe padding */
    .container-responsive { padding-left: 16px !important; padding-right: 16px !important; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.4rem !important; }
    .glass-card { padding: 20px 16px !important; }
}
