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

/* ============================================================
   ROOT VARIABLES — Premium Futuristic Tech SaaS Theme
   ============================================================ */
:root {
    --bg-primary: #060813;
    --bg-secondary: rgba(13, 17, 30, 0.55);
    --bg-glass: rgba(255, 255, 255, 0.025);
    --bg-glass-active: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-glow: rgba(99, 102, 241, 0.25);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-primary: #6366f1;
    --accent-secondary: #06b6d4;
    --accent-violet: #8b5cf6;
    --accent-hover: #818cf8;
    --accent-success: #10b981;
    --accent-danger: #f43f5e;
    --accent-glow: rgba(99, 102, 241, 0.12);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --gradient-tech: linear-gradient(90deg, #6366f1, #06b6d4, #8b5cf6, #6366f1);
    --shadow-main: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.15);
}

/* ============================================================
   RESET & SYSTEM BASE
   ============================================================ */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6, .logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
    line-height: 1.6;
}

/* ============================================================
   MOVING AMBIENT GLOW BACKDROPS (TECH SaaS FEEL)
   ============================================================ */
body::before {
    content: '';
    position: fixed;
    top: -15%; left: -10%;
    width: 60vw; height: 60vh;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.14) 0%, transparent 70%);
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
    animation: floatBlob1 22s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%; right: -10%;
    width: 50vw; height: 50vh;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: floatBlob2 18s ease-in-out infinite alternate;
}

@keyframes floatBlob1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8vw, 6vh) scale(1.15); }
}

@keyframes floatBlob2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-6vw, -8vh) scale(1.2); }
}

/* Subtle dot-matrix grid overlay */
.site-grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
    background-size: 30px 30px, 90px 90px, 90px 90px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

body > * {
    position: relative;
    z-index: 1;
}

/* ============================================================
   LINKS
   ============================================================ */
a {
    text-decoration: none;
    color: var(--accent-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
    color: var(--accent-hover);
}

/* ============================================================
   GLASS PANEL CONTROLLERS
   ============================================================ */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow-main);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.08), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.glass-panel:hover {
    border-color: var(--border-glass-glow);
    box-shadow: var(--shadow-main), 0 0 25px rgba(99, 102, 241, 0.05);
}

/* ============================================================
   FORM FIELDS
   ============================================================ */
.input-group {
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.input-control {
    width: 100%;
    padding: 14px 20px;
    background: rgba(4, 5, 10, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.input-control::placeholder {
    color: rgba(148, 163, 184, 0.4);
}

.input-control:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-glow), 0 0 20px rgba(99, 102, 241, 0.1);
    background: rgba(4, 5, 10, 0.8);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn, .btn:hover, .btn:focus, .btn:active {
    color: #fff !important;
}

/* Metallic button glow & shimmer */
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    transition: none;
}

.btn:hover::after {
    left: 100%;
    transition: left 0.8s ease-in-out;
}

.btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(99, 102, 241, 0.55), 0 8px 30px rgba(99, 102, 241, 0.3);
}

.btn-success {
    background: var(--gradient-success);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.28);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(16, 185, 129, 0.55), 0 8px 30px rgba(16, 185, 129, 0.3);
}

.btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(2px);
}

/* ============================================================
   SÜZÜLEN FLOATING HEADER (STICKY HEADER)
   ============================================================ */
.main-header {
    width: 92%;
    max-width: 1400px;
    margin: 25px auto 0;
    padding: 12px 28px;
    border-radius: 20px;
    background: rgba(8, 10, 20, 0.45);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    border: 1px solid var(--border-glass);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inner header details when scrolled */
.main-header.scrolled {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    top: 0;
    background: rgba(6, 8, 16, 0.85);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 15px 40px;
}

.main-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.main-nav a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 10px 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav a:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
}

.main-nav a.login-link {
    border: 1px solid var(--border-glass);
}
.main-nav a.login-link:hover {
    border-color: var(--border-glass-glow);
    background: var(--bg-glass);
}

.main-nav a.btn {
    color: #fff !important;
}

/* ============================================================
   LOGO STYLING — Glowing metallic tech style
   ============================================================ */
.logo-text {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-span {
    color: var(--accent-primary);
    -webkit-text-fill-color: var(--accent-primary);
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.logo-text i {
    font-size: 1.4rem;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
}

/* ============================================================
   TOPBAR — Backend Navigation Desktop Styles
   ============================================================ */
.topbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    border: 1px solid var(--border-glass);
    padding: 15px 24px;
    border-radius: 18px;
    box-shadow: var(--shadow-main);
    width: 100%;
}

.topbar-header {
    display: flex;
    align-items: center;
}

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

.topbar-nav a {
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
}

.topbar-nav a:hover,
.topbar-nav a.active {
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent-primary);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.08);
}

/* ============================================================
   SEO ARTICLE & INTERNAL PAGES
   ============================================================ */
.seo-page {
    max-width: 1400px;
    width: 90%;
    margin: 6rem auto;
    padding: 4rem 3.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: var(--shadow-main);
    position: relative;
}

.seo-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
}

.seo-page h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 50%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-page h2 {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    color: var(--accent-primary);
    margin-top: 3.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.seo-page p {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.8rem;
}

.seo-page ul, .seo-page ol {
    margin-bottom: 2.2rem;
    padding-left: 24px;
}

.seo-page li {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ============================================================
   AUTHENTICATION STYLING
   ============================================================ */
.auth-wrapper {
    width: 100%;
    max-width: 440px;
    margin: auto;
    padding: 3rem 1rem;
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.auth-wrapper .logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-wrapper .logo-text {
    font-size: 2.2rem;
}

/* ============================================================
   ALERTS — Cyber Glass Alerts
   ============================================================ */
.alert {
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
    border: 1px solid transparent;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.4s ease-out;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.12), rgba(244, 63, 94, 0.05));
    color: #fecdd3;
    border-color: rgba(244, 63, 94, 0.2);
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.08);
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.05));
    color: #d1fae5;
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
}

/* ============================================================
   UTILITY ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ============================================================
   RESPONSIVE LAYOUT BASE (MAX 900px)
   ============================================================ */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-toggle:hover {
    border-color: var(--border-glass-glow);
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: inline-flex;
    }

    .main-header {
        width: 94%;
        margin-top: 15px;
        padding: 12px 20px;
    }

    .main-header.scrolled {
        padding: 14px 20px;
    }

    .main-header .header-inner {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .main-nav {
        position: fixed;
        top: 90px;
        left: 3%;
        right: 3%;
        width: 94%;
        flex-direction: column;
        gap: 0.5rem;
        background: rgba(8, 10, 20, 0.95);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border: 1px solid var(--border-glass);
        border-radius: 18px;
        padding: 1.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 999;
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .main-nav.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: 12px;
        justify-content: space-between;
    }

    .main-nav a.login-link {
        border: none;
        background: rgba(255, 255, 255, 0.02);
    }

    .main-nav a.btn {
        justify-content: center;
    }

    .seo-page {
        padding: 2.5rem 1.8rem;
        width: 94%;
        margin: 4rem auto;
    }

    /* Topbar responsive definitions */
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .topbar-header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .topbar-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.25rem;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 12px;
        padding: 0.5rem;
        animation: fadeInUp 0.3s ease-out;
    }

    .topbar-nav.active {
        display: flex;
    }

    .topbar-nav a {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        width: 100%;
        text-align: left;
        padding: 14px 14px;
        border-bottom: 1px solid var(--border-glass);
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .topbar-nav a:last-child {
        border-bottom: none;
    }
}

/* ============================================================
   LANDING PAGE — HERO SECTION (SPREAD ACROSS THE PAGE)
   ============================================================ */
.hero {
    position: relative;
    padding: 9rem 1.5rem 5rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99,102,241,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(99, 102, 241, 0.06);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.18);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.08);
    backdrop-filter: blur(8px);
}

.hero-badge i {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 5px var(--accent-primary));
}

.hero h1 {
    font-size: clamp(2rem, 5.8vw, 4.3rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    word-break: break-word;
    overflow-wrap: break-word;
    background: linear-gradient(135deg, #ffffff 10%, #c7d2fe 45%, #818cf8 70%, #06b6d4 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: clamp(1rem, 2.2vw, 1.22rem);
    color: var(--text-muted);
    margin: 0 auto 3rem;
    line-height: 1.8;
    max-width: 900px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
}

.hero-actions .btn-primary {
    width: auto;
    min-width: 240px;
    padding: 16px 36px;
    font-size: 1rem;
}

.hero-actions .btn-ghost {
    width: auto;
    min-width: 200px;
    padding: 16px 36px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--text-main) !important;
    backdrop-filter: blur(8px);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

/* ============================================================
   INFINITE PLATFORM MARQUEE (SMOOTH HORIZONTAL LOOP)
   ============================================================ */
.platform-marquee {
    position: relative;
    margin: 4.5rem auto 0;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 120px, #000 calc(100% - 120px), transparent);
    mask-image: linear-gradient(to right, transparent, #000 120px, #000 calc(100% - 120px), transparent);
}

.platform-marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
    padding: 10px 0;
}

.platform-marquee:hover .platform-marquee-track,
.platform-marquee.paused .platform-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.platform-badge {
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.platform-badge:hover {
    border-color: var(--border-glass-glow);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

/* ============================================================
   SECTIONS & MAIN LAYOUT (SPREAD ACROSS SCREEN)
   ============================================================ */
.section {
    width: 90%;
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    margin-bottom: 0.85rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 40%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 99px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin: 0 auto 4rem;
    font-size: 1.12rem;
    max-width: 800px;
    line-height: 1.8;
}

/* ============================================================
   INTENT & FEATURE CARDS (TECH GLOW CARD DESIGN)
   ============================================================ */
.intent-grid, .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.85rem;
}

.intent-card, .feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.intent-card::before, .feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%, rgba(99, 102, 241, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.4s ease;
}

.intent-card:hover, .feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-glow);
    background: rgba(99, 102, 241, 0.035);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(99, 102, 241, 0.06);
}

.intent-card:hover::before, .feature-card:hover::before {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent 30%, rgba(6, 182, 212, 0.3) 100%);
}

.intent-card h3, .feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.4;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.intent-card p, .feature-card p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.98rem;
}

/* ============================================================
   SEO HELPFUL CONTENT GLASS BOX
   ============================================================ */
.seo-content-box {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 20px 20px 0;
    padding: 3.5rem;
    margin: 0 auto;
    max-width: 1200px;
    text-align: left;
    word-break: break-word;
    overflow-wrap: break-word;
    box-shadow: var(--shadow-main);
}

.seo-content-box h2 {
    font-size: 1.75rem;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.seo-content-box p {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 1.02rem;
    margin-bottom: 1.5rem;
}

.seo-content-box p:last-child {
    margin-bottom: 0;
}

.seo-content-box a {
    font-weight: 700;
    color: var(--accent-primary);
}

.seo-content-box a:hover {
    color: var(--accent-hover);
}

/* ============================================================
   BLOG GRID STRIP (HORIZONTAL INK STRIP)
   ============================================================ */
.blog-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 380px);
    gap: 1.85rem;
    overflow-x: auto;
    padding: 0.5rem 0.5rem 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.blog-strip:active {
    cursor: grabbing;
}

.blog-strip::-webkit-scrollbar {
    display: none;
}

.blog-card {
    padding: 0;
    overflow: hidden;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-glow);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(99, 102, 241, 0.08);
}

.blog-card .blog-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #080b11;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover img {
    transform: scale(1.06);
}

.blog-card .blog-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(6, 8, 19, 0.85), transparent);
    pointer-events: none;
}

.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.45;
    font-weight: 700;
}

.blog-card h3 a {
    color: var(--text-main);
}
.blog-card h3 a:hover {
    color: var(--accent-primary);
}

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

.blog-card .btn {
    margin-top: auto;
}

.blog-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.blog-cta .btn {
    width: auto;
    padding: 14px 36px;
}

/* ============================================================
   FAQ ACCORDION LAYOUT
   ============================================================ */
.faq {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.025);
}

.faq-item.active {
    border-color: var(--border-glass-glow);
    border-left: 4px solid var(--accent-primary);
    background: rgba(99, 102, 241, 0.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-question i {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.98rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 1.5rem 1.5rem;
}

/* ============================================================
   PRICING PANEL (GLOWING SHIFT CARD)
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 850px);
    justify-content: center;
    width: 100%;
}

.pricing-card {
    position: relative;
    background: rgba(13, 17, 30, 0.45);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid var(--border-glass-glow);
    border-radius: 24px;
    padding: 3.5rem;
    text-align: center;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(99, 102, 241, 0.12);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    color: #34d399;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.22);
    animation: pricingGlow 3s ease-in-out infinite;
}

@keyframes pricingGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.08); }
    50% { box-shadow: 0 0 25px rgba(16, 185, 129, 0.25); border-color: rgba(16, 185, 129, 0.4); }
}

.pricing-card h3 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.pricing-card > p {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 2.2rem;
}

.pricing-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-actions .btn {
    width: auto;
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 50px;
}

.btn-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-blue:hover {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5), 0 8px 20px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

/* ============================================================
   FOOTER (SPACIOUS AND ALIGNED WITH REDESIGN)
   ============================================================ */
.footer {
    padding: 5rem 0 0;
    background: linear-gradient(180deg, rgba(6, 8, 19, 0) 0%, rgba(5, 7, 15, 0.8) 40%, rgba(4, 5, 10, 0.98) 100%);
    margin-top: 8rem;
    width: 100%;
    position: relative;
    border-top: 1px solid var(--border-glass);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.25), rgba(6, 182, 212, 0.25), transparent);
}

.footer-grid {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.1fr 1.1fr 1.4fr;
    gap: 4rem;
    text-align: left;
}

.footer h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer p, .footer a, .footer span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer p {
    margin-bottom: 1.5rem;
}

.footer p a {
    color: var(--text-main);
    font-weight: 600;
}
.footer p a:hover {
    color: var(--accent-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    padding: 2px 0;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-main);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1400px;
    width: 90%;
    margin: 4rem auto 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
}

.footer-bottom span {
    color: rgba(148, 163, 184, 0.5);
}

/* ============================================================
   MOBILE RESPONSIVENESS OVERRIDES
   ============================================================ */
@media (max-width: 900px) {
    .hero {
        padding: 7rem 1rem 4rem;
        width: 94%;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
    
    .hero p {
        font-size: 1.02rem;
        margin-bottom: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .section {
        margin: 5rem auto;
        width: 94%;
    }

    .intent-grid, .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .seo-content-box {
        padding: 2.2rem 1.8rem;
        border-radius: 20px;
        border-left: none;
        border-top: 4px solid var(--accent-primary);
    }

    .blog-strip {
        grid-auto-columns: minmax(280px, 75vw);
        gap: 1.25rem;
        padding-bottom: 1.5rem;
    }

    .pricing-card {
        padding: 2.2rem 1.8rem;
    }
    
    .pricing-actions {
        flex-direction: column;
    }
    
    .pricing-actions .btn {
        width: 100%;
    }

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

@media (max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 2.5rem;
        padding: 1.5rem 0;
    }
}

/* ============================================================
   BLOG DIRECTORY PAGE (SATELLITE PAGE CODES)
   ============================================================ */
.blog-container {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    width: 90%;
    box-sizing: border-box;
}

.blog-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.blog-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 40%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.blog-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #080b11;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.blog-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.22rem;
    color: var(--text-main);
    margin-bottom: 0.85rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-title a {
    color: var(--text-main);
}
.blog-title a:hover {
    color: var(--accent-primary);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.topic-links {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.topic-links a {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.topic-links a:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: var(--border-glass-glow);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

@media (max-width: 990px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 650px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .blog-container {
        width: 94%;
        padding: 0 1rem;
        margin: 4rem auto;
    }
}

/* Custom spacing for icons in headings */
h2 i, h3 i {
    margin-right: 10px;
}

