/* ============================================================
   AIGENIX THEME - MAIN STYLES
   Author  : Aigenix Theme
   Version : 1.0
   File    : assets/css/style.css

   TABLE OF CONTENTS
   ============================================================

   01. Variables & Reset
   02. Buttons
   03. Scrollbar & Selection
   04. Background Patterns
   05. Navigation
   06. Page Loader
   07. Hero (index.html)
   08. Footer
   09. Features Section
   10. Marquee Ribbon
   11. Bento Box
   12. Partners Ticker
   13. Shared UI (badges, sections, cards)
   14. Pricing (homepage)
   15. FAQ (homepage)
   16. Back to Top
   17. Inner Hero & Breadcrumbs
   18. About Page
   19. Pipeline Section
   20. Team Section
   21. Testimonials Section
   22. Portfolio Filter
   23. FAQ Page
   24. Portfolio Page
   25. Portfolio Details
   26. Blog Page
   27. Blog Details
   28. Scroll Performance
   29. Services Page
   30. Cyber Pipeline
   31. Service Details
   32. Pricing Page
   33. Feature Comparison
   34. Team Details
   35. Login & Register
   36. Coming Soon
   37. 404 Page
   38. Contact Page
   39. Map Section
   40. Legal Pages
   41. Startup Homepage (index-1) - ais-
   42. SaaS Homepage (index-2) - saas-
   43. Chatbot Homepage (index-3) - bot-

   ============================================================ */

:root {
    --primary: #b8fb04;
    --secondary: #034651;
    --primary-glow: rgba(184, 251, 4, 0.35);
    --primary-dim: rgba(184, 251, 4, 0.08);
    --nav-glow-angle: 0deg;
    --black: #000000;
    --dark: #080808;
    --dark2: #0d0d0d;
    --dark3: #111111;
    --surface: #141414;
    --surface2: #1a1a1a;
    --border: rgba(255, 255, 255, 0.07);
    --border-warm: rgba(184, 251, 4, 0.2);
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.72);
    --text-dim: rgba(255, 255, 255, 0.55);
    --font-display: "Space Grotesk", sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --white-color: #ffffff;
}

.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    overflow-x: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    font-family: inherit;
}

.mlr-40 {
    margin-left: 40px;
    margin-right: 40px;
}

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.mtb-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.radius-25 {
    overflow: hidden;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.text-highlight-primary {
    color: var(--primary);
}

.text-highlight-secondary {
    color: var(--secondary);
}

.text-dark {
    color: var(--secondary) !important;
}

.bg-dark {
    background: var(--black) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-secondary {
    background: var(--secondary) !important;
}

/* =======================
   BUTTONS
======================== */
.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    padding: 10px 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: transparent;
    box-sizing: border-box;
}

.btn-primary {
    color: var(--black);
    border: 2px solid var(--primary);
    background: var(--primary);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 0;
    height: 100%;
    background: var(--white-color);
    transform: skewX(-25deg);
    transform-origin: left center;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--black) !important;
    border-color: var(--secondary);
    border: 2px solid var(--white-color);
}

.btn-primary:hover::before {
    width: 130%;
}

.btn-ghost {
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-ghost::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 0;
    height: 100%;
    background: var(--primary);
    transform: skewX(-25deg);
    transform-origin: left center;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-ghost:hover {
    color: var(--secondary) !important;
}

.btn-ghost:hover::before {
    width: 130%;
}

.btn-primary i,
.btn-ghost i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-primary:hover i,
.btn-ghost:hover i {
    transform: scale(1.1);
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--primary);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

/* Selection */
::selection {
    background: var(--primary);
    color: #000;
}

/* Dark Background Patterns */
.dark-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 251, 4, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 251, 4, 0.10) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
    mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
}

/* Light Background Patterns */
.light-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
}

/* ======================
   NAVIGATION
====================== */
#navbar {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: padding var(--transition);
}

#navbar.scrolled {
    padding: 0.65rem 0;
    top: 0;
}

@property --nav-glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.nav-shell {
    position: relative;
    border-radius: 15px;
    padding: 15px;
    overflow: visible;
    isolation: isolate;
    z-index: 1;
    transition: box-shadow var(--transition), background var(--transition);
}

#navbar.scrolled .nav-shell {
    background: var(--secondary);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.55),
        0 0 20px rgba(184, 251, 4, 0.1);
}

.nav-shell::before,
.nav-shell::after {
    display: none !important;
}

.nav-glow-line {
    display: none !important;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.nav-logo img {
    height: 28px;
    width: auto;
}

.nav-logo span.accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-bottom: 0;
    padding-left: 0;
}

.menu-item {
    position: relative;
    padding: 0.35rem 0.5rem;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition);
    letter-spacing: 0.01em;
    cursor: pointer;
    padding: 0.45rem 0.7rem;
    border-radius: 8px;
    position: relative;
}

.nav-link .nav-icon {
    font-size: 0.8rem;
    opacity: 0.5;
    transition: all var(--transition);
}

.nav-link i.fa-chevron-down {
    font-size: 12px;
    transition: transform var(--transition);
}

.menu-item:hover .nav-link,
.menu-item.active .nav-link {
    color: var(--text-primary);
    background: rgba(184, 251, 4, 0.06);
}

.menu-item:hover .nav-link .nav-icon,
.menu-item.active .nav-link .nav-icon {
    opacity: 1;
    color: var(--primary);
}

.menu-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary);
    opacity: 1;
}

.menu-item.open .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary);
    opacity: 1;
}

/* Dropdown Panels */
.dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white-color);
    border: 1px solid rgba(184, 251, 4, 0.12);
    backdrop-filter: blur(24px);
    color: var(--text-primary);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius);
    padding: 0.75rem;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 1100;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 1px 0 rgba(184, 251, 4, 0.08);
}

.dropdown-panel::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--white-color);
    border-left: 1px solid rgba(184, 251, 4, 0.12);
    border-top: 1px solid rgba(184, 251, 4, 0.12);
}

.menu-item:hover .dropdown-panel,
.menu-item.open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-panel.mega-panel {
    width: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1rem;
}

.dropdown-panel li {
    position: relative;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--black);
}

.dropdown-link i {
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0.5;
    transition: all var(--transition);
}

.dropdown-link:hover {
    color: var(--black);
    background: var(--primary);
    padding-left: 0.9rem;
}

.dropdown-link:hover i {
    opacity: 1;
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* Hamburger & Responsive Framework Trigger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    padding: 4px;
    z-index: 1200;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1140;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
    pointer-events: none;
}

.nav-backdrop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open #navbar {
    z-index: 1200;
}

body.nav-open .ais-header {
    z-index: 1252;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* =======================
   PAGE LOADER
========================== */
#ai-loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: var(--font-mono);
}

.loader-matrix {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(184, 251, 4, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 251, 4, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center;
    opacity: 0.7;
}

.loader-matrix::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(184, 251, 4, 0.08), transparent);
    animation: loader-scan 3s linear infinite;
}

@keyframes loader-scan {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.loader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 380px;
    padding: 20px;
}

.loader-glitch {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
}

.loader-glitch img {
    height: 38px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.loader-status {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: left;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.status-tag {
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.75rem;
}

.loader-bar-wrap {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 10px var(--primary-glow);
}

.loader-metrics {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--text-dim);
}

.metric-pct {
    color: var(--text-primary);
    font-weight: 500;
}

/* ================================
   HERO SECTION
=================================== */
#hero {
    position: relative;
    min-height: 96vh;
    display: flex;
    align-items: center;
    overflow: hidden !important;
    background: var(--secondary);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(184, 251, 4, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 251, 4, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
    pointer-events: none;
}

.hero-aurora {
    position: absolute;
    inset: -20%;
    z-index: 0;
    background:
        radial-gradient(ellipse 40% 35% at 70% 40%, rgba(184, 251, 4, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 30% 25% at 20% 60%, rgba(3, 70, 81, 0.06) 0%, transparent 55%);
    animation: aurora-drift 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes aurora-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(3%, -2%) scale(1.05);
    }
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100% !important;
    height: 100% !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 30% 50%, rgba(184, 251, 4, 0.06) 0%, transparent 65%),
        linear-gradient(180deg, transparent 50%, var(--secondary) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border-warm);
    border-radius: 50px;
    background: var(--primary-dim);
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-mono);
    color: var(--primary);
    margin-bottom: 1.75rem;
    width: fit-content;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 78px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    overflow: hidden;
    display: block;
}

.hero-title .accent {
    color: var(--primary);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 580px;
    overflow: visible;
}

.hero-ai-hub {
    position: relative;
    width: min(100%, 620px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    --hub-radius: 200px;
    --hub-inner: 64px;
    overflow: visible;
    padding: 12px;
    box-sizing: content-box;
}

.hub-spotlight {
    position: absolute;
    top: -30%;
    width: 55%;
    height: 80%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    filter: blur(40px);
}

.hub-spotlight-left {
    left: -5%;
    background: radial-gradient(ellipse at top, rgba(184, 251, 4, 0.35) 0%, transparent 70%);
    animation: spotlight-pulse 6s ease-in-out infinite;
}

.hub-spotlight-right {
    right: -5%;
    background: radial-gradient(ellipse at top, rgba(3, 70, 81, 0.25) 0%, transparent 70%);
    animation: spotlight-pulse 6s ease-in-out infinite reverse;
}

@keyframes spotlight-pulse {

    0%,
    100% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.45;
    }
}

.hub-orbit {
    display: none !important;
}

.hub-stage {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: visible;
}

.hub-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    pointer-events: none;
    overflow: visible;
}

.hub-hex-ring {
    animation: hub-hex-pulse 4s ease-in-out infinite;
}

@keyframes hub-hex-pulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.65;
    }
}

.hub-lines line {
    stroke: #b8fb04;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 8 6;
    stroke-opacity: 0.9;
    animation: hub-line-flow 2s linear infinite;
}

.hub-lines line:nth-child(1),
.hub-lines line:nth-child(4) {
    stroke-width: 2.5;
    stroke-opacity: 1;
    stroke-dasharray: 10 5;
}

.hub-lines line:nth-child(1) {
    animation-delay: 0s;
}

.hub-lines line:nth-child(2) {
    animation-delay: -0.4s;
}

.hub-lines line:nth-child(3) {
    animation-delay: -0.8s;
}

.hub-lines line:nth-child(4) {
    animation-delay: -1.2s;
}

.hub-lines line:nth-child(5) {
    animation-delay: -1.6s;
}

.hub-lines line:nth-child(6) {
    animation-delay: -2s;
}

@keyframes hub-line-flow {
    to {
        stroke-dashoffset: -32;
    }
}

.hub-dots {
    display: none;
}

.hub-chip-text {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.04em;
    position: relative;
    z-index: 4;
    text-shadow: 0 0 20px rgba(184, 251, 4, 0.55);
}

.hub-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.hub-nodes {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}

.hub-chip {
    position: relative;
    width: 114px;
    height: 114px;
    border-radius: 24px;
    background: var(--primary);
    border: 1px solid rgba(184, 251, 4, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 40px rgba(184, 251, 4, 0.25),
        0 0 80px rgba(184, 251, 4, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: hub-chip-pulse 3s ease-in-out infinite;
}

@keyframes hub-chip-pulse {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(184, 251, 4, 0.25), 0 0 80px rgba(184, 251, 4, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    50% {
        box-shadow: 0 0 55px rgba(184, 251, 4, 0.4), 0 0 100px rgba(184, 251, 4, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
}

.hub-pin {
    position: absolute;
    background: rgba(184, 251, 4, 0.5);
    border-radius: 1px;
}

.hub-pin-t,
.hub-pin-b {
    width: 14px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.hub-pin-l,
.hub-pin-r {
    width: 3px;
    height: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.hub-pin-t {
    top: -6px;
}

.hub-pin-b {
    bottom: -6px;
}

.hub-pin-l {
    left: -6px;
}

.hub-pin-r {
    right: -6px;
}

.hub-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: rotate(var(--angle)) translateY(calc(-1 * var(--hub-radius)));
    pointer-events: auto;
}

.hub-node-pill {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.35rem;
    font-size: 0.92rem;
    border-radius: 50px;
    background: var(--primary);
    border: 1px solid rgba(184, 251, 4, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle)));
    animation-delay: calc(var(--angle) / 60deg * -0.3s);
}

.hub-node-pill i {
    color: var(--black);
    font-size: 0.95rem;
}

.hub-node:hover .hub-node-pill {
    color: var(--black);
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle))) scale(1.04);
}

.hero-stats {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-num span {
    color: var(--primary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

[data-aos] {
    will-change: transform, opacity;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* =================
   FOOTER
==================== */
#cyber-footer {
    position: relative;
    background: #040d12 !important;
    padding: 7rem 0 3rem !important;
    overflow: hidden;
    isolation: isolate;
}

.footer-neon-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 10%, var(--primary) 50%, transparent 90%);
    filter: drop-shadow(0 0 12px var(--primary));
}

.footer-matrix-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(184, 251, 4, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 251, 4, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 0%, black 40%, transparent 90%);
    pointer-events: none;
}

.footer-glow-aurora {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(184, 251, 4, 0.12) 0%, rgba(3, 70, 81, 0.25) 50%, transparent 100%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 3.5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(184, 251, 4, 0.15);
}

.footer-brand .nav-logo {
    margin-bottom: 1.5rem;
    display: inline-flex;
    filter: drop-shadow(0 0 8px rgba(184, 251, 4, 0.3));
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 340px;
}

.footer-status-pills {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.f-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white-color);
    transition: all var(--transition);
}

.f-pill:hover {
    border-color: var(--primary);
    background: rgba(184, 251, 4, 0.04);
}

.f-pill .f-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
    animation: status-pill-pulse 1.5s infinite ease-in-out;
}

@keyframes status-pill-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
        filter: drop-shadow(0 0 4px var(--primary));
    }
}

.f-pill.code-version {
    border-color: rgba(184, 251, 4, 0.3);
    color: var(--primary);
    background: rgba(184, 251, 4, 0.08);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-link:hover {
    color: var(--primary) !important;
    transform: translateX(6px);
}

.newsletter-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-terminal-form {
    width: 100%;
    margin-bottom: 2rem;
}

.terminal-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(184, 251, 4, 0.2) !important;
    border-radius: 10px;
    padding: 0.4rem 0.6rem 0.4rem 1.2rem;
    transition: all var(--transition);
}

.terminal-input-wrap:focus-within {
    border-color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(184, 251, 4, 0.25) !important;
}

.terminal-prompt {
    font-family: var(--font-mono);
    color: var(--primary);
    font-weight: 700;
    margin-right: 0.75rem;
}

.terminal-input-wrap input {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: var(--white-color) !important;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    width: 100%;
}

.terminal-submit-btn {
    background: rgba(184, 251, 4, 0.1) !important;
    border: 1px solid rgba(184, 251, 4, 0.3) !important;
    color: var(--primary) !important;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.terminal-submit-btn:hover {
    background: var(--primary) !important;
    color: var(--black) !important;
    box-shadow: 0 0 15px var(--primary-glow);
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    padding-left: 0;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.social-btn:hover {
    background: rgba(184, 251, 4, 0.08) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(184, 251, 4, 0.2);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4) !important;
    letter-spacing: 0.03em;
}

.copyright-text {
    line-height: 1.6;
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.4) !important;
    transition: color var(--transition);
}

.footer-bottom-link:hover {
    color: var(--primary) !important;
}

/* =============================
   FEATURES MATRIX SECTION
================================= */
#features-matrix {
    position: relative;
    background: #090e11 !important;
    padding: 7.5rem 0 !important;
    overflow: hidden !important;
    border-bottom: 1px solid var(--border);
}

.features-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(184, 251, 4, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 251, 4, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.features-aurora {
    position: absolute;
    inset: -10%;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, rgba(184, 251, 4, 0.06) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.85;
}

#features-matrix .container {
    position: relative;
    z-index: 2;
}

.section-muted-lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 4.5rem;
    font-weight: 300;
}

.matrix-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.matrix-card {
    position: relative;
    border-radius: var(--radius-lg) !important;
    padding: 3rem 2.25rem !important;
    background: rgba(14, 20, 24, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    contain: paint;
}

#features-matrix .matrix-card.glass {
    background: rgba(14, 20, 24, 0.95) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.card-glow-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(184, 251, 4, 0.07) 0%, transparent 45%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 1;
}

.matrix-icon-shell,
.matrix-card-title,
.matrix-card-desc,
.matrix-action-link {
    position: relative;
    z-index: 2;
}

.matrix-card:hover {
    border-color: rgba(184, 251, 4, 0.35) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.matrix-card:hover .card-glow-effect {
    opacity: 1;
}

.matrix-icon-shell {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(184, 251, 4, 0.08);
    border: 1px solid rgba(184, 251, 4, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.matrix-card:hover .matrix-icon-shell {
    background: var(--primary);
    color: var(--black);
    border-color: var(--primary);
}

.matrix-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.matrix-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

.matrix-action-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.matrix-action-link i {
    font-size: 0.85rem;
}

.matrix-card:hover .matrix-action-link {
    gap: 0.75rem;
}

.matrix-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4.5rem;
}

/* ===========================
   MARQUEE RIBBON SECTION
============================== */
.cyber-ticker-ribbon {
    position: relative;
    width: 105%;
    margin: 60px -5px;
    background: var(--secondary);
    border: 1px solid rgba(184, 251, 4, 0.15);
    padding: 25px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    transform: rotate(-1.5deg);
    z-index: 5;
}

.ticker-ribbon-track {
    display: flex;
    width: max-content;
    animation: cyberMarqueeScroll 28s linear infinite;
    will-change: transform;
}

.ticker-ribbon-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-right: 2rem;
}

.ticker-item {
    font-family: var(--font-display);
    font-size: 30px;
    letter-spacing: 3px;
    color: var(--white-color);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2rem;
}

.ticker-item i {
    color: var(--primary);
    font-size: 1rem;
}

.ticker-item.text-glow {
    color: var(--white-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.ticker-splitter {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
}

@keyframes cyberMarqueeScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* =========================
   BENTO-BOX SECTION
========================== */
#bento-premium-light {
    background: var(--white-color);
    z-index: 1;
    overflow: hidden;
}

.bp-light-header {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.bp-light-display-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.bp-light-highlight {
    position: relative;
    display: inline-block;
}

.bp-light-highlight::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.8;
}

.bp-light-muted-lead {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
}

.bp-light-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.8rem;
    position: relative;
    z-index: 2;
}

.bp-span-7 {
    grid-column: span 7;
}

.bp-span-5 {
    grid-column: span 5;
}

.bp-span-4 {
    grid-column: span 4;
}

.bp-span-8 {
    grid-column: span 8;
}

.bp-light-card {
    background: var(--white-color);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 2px solid var(--primary);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bp-light-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.bp-light-content {
    position: relative;
    z-index: 2;
}

.bp-light-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.bp-light-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bp-mock-chart {
    display: flex;
    gap: 1rem;
    height: 180px;
    margin-top: auto;
    position: relative;
}

.bp-chart-y {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #cbd5e1;
    padding: 10px 0;
    font-family: var(--font-mono);
}

.bp-chart-graph {
    flex-grow: 1;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
    border-left: 1px solid #f1f5f9;
}

.bp-grid-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #f8fafc;
}

.bp-chart-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 1;
}

.bp-path-fg {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2.5s ease-out;
}

.bp-path-area {
    opacity: 0;
    transition: opacity 2s ease 1s;
}

.bp-light-card:hover .bp-path-area {
    opacity: 1;
}

.bp-tooltip {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    transform: translate(-50%, -100%);
    z-index: 10;
}

.bp-tooltip.primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 12px rgba(184, 251, 4, 0.3);
}

.bp-tooltip.secondary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(3, 70, 81, 0.2);
}

.bp-point {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.bp-mock-security {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    width: 100%;
}

.bp-sec-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 320px;
}

.bp-sec-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bp-sec-center {
    position: relative;
    border-radius: 24px;
    padding: 16px;
    background: var(--white-color);
    box-shadow: 0 0 0 12px var(--primary), 0 15px 35px rgba(184, 251, 4, 0.06);
}

.bp-shield-core {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-float-node {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--white-color);
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.bp-mock-radial {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
}

.bp-radial-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
}

.bp-radial-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.bp-radial-bg {
    fill: none;
    stroke: #f1f5f9;
    stroke-width: 10;
}

.bp-radial-fg {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 238;
    stroke-dashoffset: 238;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bp-radial-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bp-radial-val {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 2px;
}

.bp-radial-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.bp-split-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    height: 100%;
}

.bp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bp-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
}

.bp-feature-list i {
    color: var(--primary);
    font-size: 1.1rem;
}

.bp-pipeline-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: #f8fafc;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.bp-pipe-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bp-pipe-pill {
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    transition: transform 0.3s;
}

.bp-pipe-pill.outline {
    background: var(--white-color);
    border: 1px solid #e2e8f0;
    color: #0f172a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.bp-pipe-pill.outline i {
    color: var(--secondary);
    font-size: 1rem;
}

.bp-pipe-pill.active {
    background: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #000;
    box-shadow: 0 8px 20px rgba(184, 251, 4, 0.4);
}

.bp-glow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
    opacity: 0.6;
}

.bp-pipe-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-dash-line {
    animation: bp-dash-flow 2s linear infinite;
}

@keyframes bp-dash-flow {
    to {
        stroke-dashoffset: -8;
    }
}

/* ===========================
   PARTNERS TICKER SECTION
=========================== */
.partners-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 0;
}

#partners-section {
    background: var(--secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0;
    overflow: hidden;
}

.partners-section-title {
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.partners-ticker-wrap {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    z-index: 2;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.ticker-row {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
}

.ticker-group {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
    align-items: center;
}

.partner-card {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.partner-card span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.partner-card i {
    font-size: 1.4rem;
}

.partner-card-red {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.partner-card-red span,
.partner-card-red i {
    color: #fca5a5 !important;
}

.scroll-left {
    animation: marquee-left 40s linear infinite;
}

.scroll-right {
    animation: marquee-right 40s linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ==============================
   REUSABLE UI COMPONENTS
================================ */
/* Section Title */
.aig-section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Accent Badge */
.aig-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border-warm);
    border-radius: 50px;
    background: var(--primary-dim);
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--font-mono);
    color: var(--primary);
    margin-bottom: 1.5rem;
    width: fit-content;
}

.aig-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.dark-badge {
    background: rgba(3, 70, 81, 0.08) !important;
    border: 1px solid rgba(3, 70, 81, 0.2) !important;
    color: var(--secondary) !important;
}

.dark-badge .dot {
    background: var(--secondary) !important;
}

/* Image Wrapper with Border-Glow & Zoom Hover Effects */
.aig-img-wrap {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.aig-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.aig-img-wrap:hover {
    border-color: var(--border-warm);
    box-shadow: 0 12px 35px rgba(184, 251, 4, 0.1);
}

.aig-img-wrap:hover img {
    transform: scale(1.04);
}

/* Section Layout container */
.aig-section {
    margin-left: 40px;
    margin-right: 40px;
    border-radius: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* =========================
   PRICING SECTION
============================ */
#pricing-section {
    position: relative;
    background: #06090a !important;
    padding: 7.5rem 0 !important;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.pricing-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, rgba(184, 251, 4, 0.015) 0%, transparent 65%);
    pointer-events: none;
}

.pricing-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 75%);
    pointer-events: none;
}

.pricing-aurora {
    display: none;
}

.pricing-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Billing Toggle Switch */
.pricing-toggle-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--black);
    border: 1px solid rgba(184, 251, 4, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-top: 1rem;
    box-shadow: 0 0 20px rgba(184, 251, 4, 0.03);
}

.toggle-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.toggle-label.active {
    color: var(--primary);
    font-weight: 500;
}

.discount-badge {
    background: var(--primary-dim);
    color: var(--primary);
    border: 1px solid var(--border-warm);
    font-size: 0.7rem;
    padding: 0.15rem 0.45rem;
    border-radius: 20px;
    margin-left: 0.25rem;
}

.pricing-toggle {
    width: 48px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.pricing-toggle.active {
    background: var(--primary-dim);
    border-color: var(--primary);
}

.switch-handle {
    width: 16px;
    height: 16px;
    background: var(--text-primary);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.pricing-toggle.active .switch-handle {
    transform: translateX(22px);
    background: var(--primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* Pricing Cards */
.card-clip-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

.pricing-card {
    position: relative;
    background: rgba(14, 20, 24, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--radius-lg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    contain: paint;
}

.pricing-card:hover {
    border-color: rgba(184, 251, 4, 0.35) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.pricing-card:hover .card-glow-effect {
    opacity: 1;
}

#pricing-section .card-accent-line {
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: center top;
    transition: transform 0.2s ease;
}

#pricing-section .pricing-card:hover .card-accent-line {
    transform: scaleX(1);
}

.pricing-card.featured {
    border-color: rgba(184, 251, 4, 0.4) !important;
    background: rgba(14, 20, 24, 0.98) !important;
    box-shadow: 0 0 25px rgba(184, 251, 4, 0.06) !important;
    contain: none;
    overflow: visible;
}

.pricing-card.featured:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 12px 32px rgba(184, 251, 4, 0.12);
}

.card-inner {
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 10;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 2.7rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    color: var(--text-primary);
    margin-bottom: 2.25rem;
}

.plan-price .currency {
    font-size: 1.6rem;
    font-weight: 600;
    margin-right: 0.15rem;
    color: var(--text-muted);
}

.plan-price .price-val {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 0 20px rgba(184, 251, 4, 0.15);
}

.plan-price .duration {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.plan-features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.plan-features li {
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features li i {
    color: var(--primary);
    font-size: 0.98rem;
}

.pricing-card .w-100 {
    width: 100%;
}

/* ==============
   FAQ SECTION
================= */
.faq-lead {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
}

.faq-accordion-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-grid {
    margin-top: 3.5rem;
}

.faq-item {
    background: var(--white-color);
    border: 2px solid rgba(3, 70, 81, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(3, 70, 81, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 2px 5px rgba(0, 0, 0, 0.02);
}

.faq-item.active {
    border-color: var(--primary) !important;
    box-shadow: 0 25px 50px rgba(3, 70, 81, 0.08) !important;
    transform: translateY(-3px);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 2.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.20rem;
    font-weight: 700;
    color: #0f172a;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-item.active .faq-question {
    color: var(--secondary) !important;
}

.faq-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(3, 70, 81, 0.05);
    color: var(--secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1rem;
    position: relative;
}

.faq-question:hover .faq-icon-wrap {
    background: rgba(3, 70, 81, 0.1);
}

.faq-item.active .faq-icon-wrap {
    background: var(--primary) !important;
    color: var(--black) !important;
    box-shadow: 0 0 15px var(--primary-glow);
}

.faq-question i {
    font-size: 0.85rem;
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.faq-question .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 2.25rem 1.8rem 2.25rem;
}

.faq-answer p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .icon-minus {
    opacity: 1;
    transform: rotate(0);
}

/* =======================
   BACK TO TOP BUTTON
========================== */
.back-to-top-btn {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s, border-color 0.3s;
    box-shadow: 0 10px 30px rgba(3, 70, 81, 0.25);
    outline: none;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top-btn i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.back-to-top-btn:hover {
    background: var(--secondary);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(184, 251, 4, 0.25);
    color: var(--primary);
}

.back-to-top-btn:hover i {
    transform: translateY(-3px);
}

/* SVG Progress Ring */
.back-to-top-btn .progress-ring {
    position: absolute;
    top: 0px;
    left: 0px;
    transform: rotate(-90deg);
    z-index: 1;
    pointer-events: none;
}

.back-to-top-btn .progress-ring_circle {
    stroke-dasharray: 132;
    stroke-dashoffset: 132;
    transition: stroke-dashoffset 0.1s linear;
}

/* ======================
   BREADCRUMB
========================= */
.inner-hero {
    position: relative;
    background: var(--secondary) !important;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.inner-hero .container {
    padding-top: 160px !important;
    padding-bottom: 100px !important;
}

.inner-hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px) !important;
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
    pointer-events: none;
}

.inner-hero-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(184, 251, 4, 0.12) 0%, transparent 70%) !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.inner-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white-color) !important;
    position: relative;
    z-index: 2;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.breadcrumb-list a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: var(--primary) !important;
}

.breadcrumb-list .divider {
    color: rgba(255, 255, 255, 0.3) !important;
}

.breadcrumb-list .active {
    color: var(--primary) !important;
}

/* ==================================
   ABOUT GENESIS SECTION
==================================== */
.genesis-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.genesis-title {
    font-family: var(--font-display) !important;
    font-size: 3.4rem !important;
    font-weight: 800 !important;
    color: var(--secondary) !important;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.genesis-lead {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.genesis-features-light {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.g-feature-light {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--secondary);
    border: 2px solid var(--primary);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.g-feature-light:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

.g-feature-icon-light {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.g-feature-text-light h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.g-feature-text-light p {
    font-size: 0.95rem;
    color: var(--white-color);
    line-height: 1.6;
    margin: 0;
}

.genesis-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-solid-primary:hover {
    border: 2px solid var(--primary);
}

.genesis-visual-light {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.genesis-core-container-light {
    position: relative;
    width: 500px;
    height: 500px;
}

.core-ring-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.ring-outer-light {
    width: 90%;
    height: 90%;
    border: 2px dashed var(--primary);
    animation: core-spin 40s linear infinite;
}

.ring-middle-light {
    width: 60%;
    height: 60%;
    border: 2px solid transparent;
    border-top: 2px solid var(--secondary);
    border-right: 2px solid var(--secondary);
    border-bottom: 2px solid var(--primary);
    animation: core-spin 20s linear infinite reverse;
}

.ring-inner-light {
    width: 35%;
    height: 35%;
    border: 1px dotted #94a3b8;
    animation: core-spin 30s linear infinite;
}

.core-center-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white-color);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgba(184, 251, 4, 0.1);
    z-index: 5;
    animation: core-pulse-light 3s ease-in-out infinite alternate;
}

.core-chip-light i {
    font-size: 2rem;
    color: var(--secondary);
}

.core-pulse-waves-light {
    position: absolute;
    inset: -15px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: core-wave-expand 2.5s ease-out infinite;
}

/* Floating White Data Nodes */
.float-node-light {
    position: absolute;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    background: var(--white-color);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.fn-icon-light {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f0fdf4;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.fn-data-light {
    display: flex;
    flex-direction: column;
}

.fn-label-light {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.fn-val-light {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.fn-top-left {
    top: 15%;
    left: -5%;
    animation: core-float-up 4s ease-in-out infinite;
}

.fn-bottom-left {
    bottom: 20%;
    left: -10%;
    animation: core-float-up 5s ease-in-out infinite 1s;
}

.fn-bottom-right {
    bottom: 12%;
    right: -5%;
    animation: core-float-up 6s ease-in-out infinite 2s;
}

@keyframes core-spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes core-pulse-light {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 8px rgba(184, 251, 4, 0.1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 0 15px rgba(184, 251, 4, 0.2);
    }
}

@keyframes core-wave-expand {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes core-float-up {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ==================================
   DEPLOYMENT PIPELINE
==================================== */
.pipeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 1.1rem;
    border: 1px solid rgba(184, 251, 4, 0.3);
    border-radius: 50px;
    background: rgba(184, 251, 4, 0.05);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pipeline-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.pipeline-container {
    position: relative;
    margin-top: 4rem;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.pipeline-connector {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 0;
    pointer-events: none;
}

.connector-path-flow-dark {
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 8 8;
    animation: dash-flow 2.5s linear infinite reverse;
}

.pipeline-step-dark {
    background: #0b0f13;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pipeline-step-dark:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 251, 4, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 25px rgba(184, 251, 4, 0.03);
}

.step-icon-wrap-dark {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(184, 251, 4, 0.05);
    border: 1px solid rgba(184, 251, 4, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.pipeline-step-dark:hover .step-icon-wrap-dark {
    background: rgba(184, 251, 4, 0.1);
    box-shadow: 0 0 20px rgba(184, 251, 4, 0.15);
}

.step-icon-dark {
    font-size: 1.5rem;
    color: var(--primary);
}

.step-number-dark {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: #000;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(184, 251, 4, 0.2);
}

.step-content-dark h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.75rem;
}

.step-content-dark p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.step-features-dark {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}

.step-features-dark li {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.step-features-dark li i {
    color: var(--primary);
    font-size: 0.9rem;
}

@keyframes dash-flow {
    to {
        stroke-dashoffset: 16;
    }
}

/* ==================================
   OUR TEAM SECTION
==================================== */
.team-header-top {
    position: relative;
    z-index: 2;
}

.team-lead-light {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    max-width: 650px;
}

.team-staggered-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding-bottom: 3.5rem;
    align-items: start;
}

/* Staggered offsets for team grids */
.team-staggered-full-grid .team-card-light:nth-child(even) {
    margin-top: 3.5rem;
}

.team-card-light {
    background: var(--white-color);
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    height: max-content;
}

.team-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(3, 70, 81, 0.08);
}

.team-img-wrap-light {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--white-color);
}

.team-img-wrap-light img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.team-card-light:hover .team-img-wrap-light img {
    transform: scale(1.05);
}

.team-socials-light {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    z-index: 5;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.team-card-light:hover .team-socials-light {
    opacity: 1;
    transform: translateY(0);
}

.team-socials-light a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-socials-light a:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-3px);
}

.team-info-light {
    padding: 1.25rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
    background: var(--secondary);
}

.team-name-light {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.15rem;
    transition: color 0.3s ease;
}

.team-card-light:hover .team-name-light {
    color: var(--primary);
}

.team-role-light {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==================================
   TESTIMONIALS SECTION
==================================== */
.about-testimonials-light {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 100% 0%, rgba(3, 70, 81, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(184, 251, 4, 0.04) 0%, transparent 50%),
        #f8fafc;
    border-top: 1px solid rgba(3, 70, 81, 0.06);
    z-index: 1;
}

.testimonials-lead {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.swiper-controls-testimonials {
    display: flex;
    gap: 1rem;
}

.swiper-controls-testimonials .swiper-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-controls-testimonials .swiper-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(3, 70, 81, 0.15);
}

.testimonials-swiper {
    width: 100%;
    padding: 10px 0 30px 0;
}

.testimonial-card-light {
    padding: 3rem;
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.08);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(3, 70, 81, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-light:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(3, 70, 81, 0.06), 0 0 15px rgba(184, 251, 4, 0.1);
}

.testimonial-content {
    position: relative;
}

.testimonial-content .quote-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--secondary);
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 2rem;
}

.card-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    border-top: 1px dashed rgba(3, 70, 81, 0.12);
    border-bottom: 1px dashed rgba(3, 70, 81, 0.12);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.metric-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.metric-val {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 10px rgba(184, 251, 4, 0.15);
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.15rem;
}

.author-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ==================================
   PORTFOLIO FILTER MENU
==================================== */
.team-filter-menu-wrap {
    display: inline-block;
}

.team-filter-menu {
    background: rgba(3, 70, 81, 0.03);
    border: 1px solid rgba(3, 70, 81, 0.08);
    border-radius: 50px;
    padding: 4px;
}

/* Portfolio filter buttons */
.filter-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--secondary);
    padding: 8px 18px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover:not(.active) {
    color: var(--primary);
    background: rgba(3, 70, 81, 0.06);
}

.filter-btn.active {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(3, 70, 81, 0.15);
}

/* Testimonials */
.sticky-sidebar {
    position: sticky;
    top: 120px;
    height: max-content;
}

.testimonials-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding-bottom: 3.5rem;
}

.testimonials-bento-grid .testimonial-card-light {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ==================================
   FAQ PAGE
==================================== */
.faq-dark-page-section .faq-lead {
    color: rgba(255, 255, 255, 0.6) !important;
    max-width: 600px;
}

.faq-dark-page-section .faq-item {
    background: var(--black) !important;
    border: 1px solid var(--primary) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.faq-dark-page-section .faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 251, 4, 0.3) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(184, 251, 4, 0.04) !important;
}

.faq-dark-page-section .faq-item.active {
    border-color: var(--primary) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(184, 251, 4, 0.08) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.faq-dark-page-section .faq-question {
    color: var(--white-color) !important;
}

.faq-dark-page-section .faq-question:hover {
    color: var(--primary) !important;
}

.faq-dark-page-section .faq-item.active .faq-question {
    color: var(--primary) !important;
}

.faq-dark-page-section .faq-icon-wrap {
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--white-color) !important;
}

.faq-dark-page-section .faq-question:hover .faq-icon-wrap {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--primary) !important;
}

.faq-dark-page-section .faq-item.active .faq-icon-wrap {
    background: var(--primary) !important;
    color: var(--black) !important;
}

.faq-dark-page-section .faq-answer p {
    color: rgba(255, 255, 255, 0.6) !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
}

/* ==================================
   PORTFOLIO PAGE
==================================== */
.portfolio-card {
    position: relative;
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.08);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(3, 70, 81, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(0);
    transition:
        transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 22px 48px rgba(3, 70, 81, 0.1), 0 0 18px rgba(184, 251, 4, 0.12);
}

.portfolio-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.05);
}

.portfolio-tag-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary);
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    border: 1px solid rgba(184, 251, 4, 0.2);
    letter-spacing: 0.05em;
    z-index: 2;
}

.portfolio-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.portfolio-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px dashed rgba(3, 70, 81, 0.12);
    border-bottom: 1px dashed rgba(3, 70, 81, 0.12);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.portfolio-metrics-grid .metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.portfolio-metrics-grid .metric-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.portfolio-metrics-grid .metric-val {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.portfolio-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.portfolio-link-btn i {
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-link-btn:hover {
    color: var(--primary);
}

.portfolio-link-btn:hover i {
    transform: translateX(4px);
}

.portfolio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at 50% 50%, rgba(184, 251, 4, 0.07), transparent 45%);
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 1;
}

.portfolio-card:hover::before {
    opacity: 1;
}

.card-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(3, 70, 81, 0.12);
    transition:
        width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
    pointer-events: none;
}

.card-corner.top-left {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 4px;
}

.card-corner.top-right {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 4px;
}

.card-corner.bottom-left {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 4px;
}

.card-corner.bottom-right {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 4px;
}

.portfolio-card:hover .card-corner {
    border-color: var(--primary);
    width: 18px;
    height: 18px;
    box-shadow: 0 0 6px var(--primary-glow);
}

/* Featured Badge */
.portfolio-featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    color: var(--secondary);
    background: rgba(3, 70, 81, 0.05);
    border: 1px solid rgba(3, 70, 81, 0.08);
    padding: 3px 10px;
    border-radius: 30px;
    letter-spacing: 0.06em;
    width: fit-content;
}

.portfolio-featured-tag i {
    color: var(--primary);
    filter: drop-shadow(0 0 3px var(--primary-glow));
    animation: portfolioStarPulse 2s infinite ease-in-out;
}

@keyframes portfolioStarPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* Mini Telemetry Graph */
.portfolio-micro-graph {
    background: rgba(3, 70, 81, 0.02);
    border: 1px solid rgba(3, 70, 81, 0.06);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.portfolio-micro-graph .graph-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(3, 70, 81, 0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.portfolio-micro-graph .graph-svg-wrap {
    height: 30px;
    position: relative;
}

.portfolio-micro-graph .wave-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawWavePulse 5s linear infinite;
    stroke: var(--secondary) !important;
}

@keyframes drawWavePulse {
    0% {
        stroke-dashoffset: 600;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -600;
    }
}

.portfolio-mini-console {
    background: #040c0e;
    border: 1px solid rgba(3, 70, 81, 0.15);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: #cbd5e1;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.portfolio-mini-console::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.04));
    background-size: 100% 4px, 4px 100%;
    pointer-events: none;
    z-index: 10;
}

.portfolio-mini-console .graph-label {
    display: block;
    font-size: 9px;
    color: var(--primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(184, 251, 4, 0.15);
    padding-bottom: 4px;
}

.portfolio-mini-console .console-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 38px;
}

.portfolio-mini-console .console-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.portfolio-mini-console .c-tag {
    color: var(--primary);
    font-weight: 600;
}

.portfolio-hex-scrambler {
    background: rgba(3, 70, 81, 0.02);
    border: 1px solid rgba(3, 70, 81, 0.06);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
    position: relative;
}

.portfolio-hex-scrambler .scrambler-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(3, 70, 81, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.portfolio-hex-scrambler .hex-key {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--secondary);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.portfolio-util-meter {
    background: rgba(3, 70, 81, 0.02);
    border: 1px solid rgba(3, 70, 81, 0.06);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    position: relative;
}

.portfolio-util-meter .meter-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(3, 70, 81, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.portfolio-util-meter .meter-track {
    height: 6px;
    background: rgba(3, 70, 81, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.portfolio-util-meter .meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 10px;
    position: relative;
    transition: width 0.8s ease-in-out;
}

.portfolio-util-meter .meter-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    background-size: 20px 20px;
    animation: moveMeterFill 1.5s linear infinite;
}

@keyframes moveMeterFill {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 0;
    }
}

/* Security Core Enclave Shield */
.portfolio-security-status {
    background: rgba(3, 70, 81, 0.02);
    border: 1px solid rgba(3, 70, 81, 0.06);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
    position: relative;
}

.portfolio-security-status .status-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(3, 70, 81, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.portfolio-security-status .status-shield {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: #0d9488;
    font-weight: 600;
}

.portfolio-security-status .status-shield i {
    animation: shieldGlow 2.5s infinite ease-in-out;
}

@keyframes shieldGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 1px rgba(13, 148, 136, 0.4));
        opacity: 0.7;
    }

    50% {
        filter: drop-shadow(0 0 5px rgba(13, 148, 136, 0.8));
        opacity: 1;
    }
}

/* Node Elasticity Scaling Grid Map */
.portfolio-node-scale {
    background: rgba(3, 70, 81, 0.02);
    border: 1px solid rgba(3, 70, 81, 0.06);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    position: relative;
}

.portfolio-node-scale .scale-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(3, 70, 81, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.portfolio-node-scale .scale-dots {
    display: flex;
    gap: 6px;
}

.portfolio-node-scale .s-dot {
    width: 6px;
    height: 6px;
    background: rgba(3, 70, 81, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.portfolio-node-scale .s-dot.active {
    background: var(--secondary);
}

.portfolio-node-scale .s-dot.animate-pulse {
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
    animation: activeDotPulse 1.2s infinite ease-in-out;
}

@keyframes activeDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* ==================================
   PORTFOLIO DETAILS
==================================== */
.portfolio-details-section h2,
.portfolio-details-section h3,
.portfolio-details-section h4,
.portfolio-details-section h5,
.portfolio-details-section h6,
.portfolio-details-section .stream-section-title,
.portfolio-details-section .specs-card-title,
.portfolio-details-section .agent-card-name,
.portfolio-details-section .step-card-title {
    color: var(--secondary) !important;
}

.portfolio-details-section p,
.portfolio-details-section .stream-desc,
.portfolio-details-section .agent-card-desc,
.portfolio-details-section .step-card-desc {
    color: #475569 !important;
}

.portfolio-details-section .row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.portfolio-details-section .portfolio-card {
    flex: 1 1 auto;
    height: auto !important;
    min-height: 100%;
    transform: translateY(0);
    transition:
        transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-details-section .client-specs-card.portfolio-card {
    overflow: hidden !important;
}

.portfolio-details-section .portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 22px 48px rgba(3, 70, 81, 0.1), 0 0 18px rgba(184, 251, 4, 0.12);
}

.portfolio-details-section .portfolio-card:hover .card-glow-effect {
    opacity: 1;
}

.portfolio-details-section .aig-badge {
    border-color: rgba(3, 70, 81, 0.15) !important;
    background: rgba(3, 70, 81, 0.05) !important;
    color: var(--secondary) !important;
}

.portfolio-details-section .aig-badge .dot {
    background: var(--secondary) !important;
}

/* Circular load gauge stroke */
.portfolio-details-section .circular-chart .circle {
    stroke: var(--primary) !important;
    filter: drop-shadow(0 0 2px var(--primary-glow));
}

/* Status Pill Styles for Agents */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(3, 70, 81, 0.04);
    color: #64748b;
    width: fit-content;
    transition: all var(--transition);
}

.status-pill.active {
    background: rgba(184, 251, 4, 0.15) !important;
    color: var(--secondary) !important;
    border: 1px solid rgba(184, 251, 4, 0.3) !important;
}

.status-pill .f-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--primary);
    animation: status-pill-pulse 1.5s infinite ease-in-out;
}

/* Client specs details card */
.client-specs-card {
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.08);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(3, 70, 81, 0.03);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition:
        transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.specs-card-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.04em;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.specs-list .spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(3, 70, 81, 0.08);
    padding-bottom: 12px;
}

.specs-list .spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.specs-list .spec-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: #64748b;
    letter-spacing: 0.04em;
}

.specs-list .spec-value {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
}

/* Agent bento cards */
.agent-grid-card {
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.08);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(3, 70, 81, 0.02);
    height: 100%;
    transform: translateY(0);
    transition:
        transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agent-grid-card:hover {
    border-color: var(--primary);
    box-shadow: 0 22px 48px rgba(3, 70, 81, 0.1), 0 0 18px rgba(184, 251, 4, 0.12);
}

.agent-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(3, 70, 81, 0.04);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto;
    transition:
        background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agent-grid-card:hover .agent-icon-wrap {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.agent-card-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

.agent-card-desc {
    font-size: 11px;
    color: #64748b;
    line-height: 1.5;
    min-height: 33px;
}

.agent-mini-specs {
    border-top: 1px solid rgba(3, 70, 81, 0.06);
    border-bottom: 1px solid rgba(3, 70, 81, 0.06);
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-spec-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 9px;
    color: #64748b;
}

.mini-spec-row strong {
    color: var(--secondary);
    font-weight: 600;
}

.radial-gauge-wrap {
    position: relative;
    width: 50px;
    height: 50px;
}

.gauge-pct {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    color: var(--secondary);
}

/* SVG Radial load gauge */
.radial-svg-wrap {
    position: relative;
    width: 60px;
    height: 60px;
}

.circular-chart {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    stroke: rgba(3, 70, 81, 0.05);
}

.circle {
    stroke: var(--secondary);
    transition: stroke-dasharray 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.agent-details-card .circle {
    stroke: var(--primary) !important;
    filter: drop-shadow(0 0 3px var(--primary));
}

.gauge-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
}

.gauge-desc {
    display: flex;
    flex-direction: column;
}

.gauge-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: #64748b;
    letter-spacing: 0.04em;
}

.gauge-sub {
    font-size: 10px;
    color: var(--secondary);
    font-weight: 500;
}

/* Narrative details styles */
.tech-highlight-box {
    background: #f8fafc;
    border-left: 3px solid var(--primary);
    border-radius: 0 16px 16px 0;
}

.highlight-quote {
    font-family: var(--font-body);
    font-size: 15px;
    font-style: italic;
    color: var(--secondary);
    line-height: 1.6;
}

.quote-author {
    font-family: var(--font-mono);
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
}

.details-content-stream .stream-section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
}

.details-content-stream .stream-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* Benchmark Metrics Dashboard */
.details-metrics-panel {
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(3, 70, 81, 0.02);
    transform: translateY(0);
    transition:
        transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.metric-sec-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.metric-sec-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    margin-top: 4px;
}

.metric-sec-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.divider-right {
    border-right: 1px dashed rgba(3, 70, 81, 0.12);
}

.metric-sep {
    border: none;
    border-top: 1px dashed rgba(3, 70, 81, 0.12);
    margin: 0;
}

/* ROI Slider */
.roi-slider-container {
    background: rgba(3, 70, 81, 0.02);
    border: 1px solid rgba(3, 70, 81, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
}

.slider-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: #64748b;
    letter-spacing: 0.04em;
}

.slider-value {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(3, 70, 81, 0.06);
    padding: 3px 8px;
    border-radius: 6px;
}

.roi-range-input {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(3, 70, 81, 0.1);
    outline: none;
    transition: background 0.3s ease;
}

.roi-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(3, 70, 81, 0.2);
    transition: transform 0.15s ease, background 0.15s ease;
}

.roi-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.slider-ticks {
    font-family: var(--font-mono);
    font-size: 8px;
    color: #94a3b8;
}

/* Milestone Stepper Timeline */
.details-timeline-wrap {
    position: relative;
    padding-left: 8px;
}

.timeline-step {
    position: relative;
}

.step-badge-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-index-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid rgba(3, 70, 81, 0.1);
    color: var(--secondary);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition:
        background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-step:hover .step-index-badge {
    background: var(--secondary);
    color: var(--white-color);
    border-color: var(--secondary);
    box-shadow: 0 4px 10px rgba(3, 70, 81, 0.2);
}

.step-line {
    width: 2px;
    flex-grow: 1;
    background: rgba(3, 70, 81, 0.08);
    position: absolute;
    top: 28px;
    bottom: -24px;
    z-index: 1;
}

.step-content-card {
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.06);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(3, 70, 81, 0.01);
    width: 100%;
    transform: translateX(0);
    transition:
        transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-step:hover .step-content-card {
    transform: translateX(6px);
    border-color: rgba(184, 251, 4, 0.35);
    box-shadow: 0 12px 28px rgba(3, 70, 81, 0.06), 0 0 12px rgba(184, 251, 4, 0.08);
}

.step-card-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

.step-card-desc {
    font-size: 11px;
    color: #64748b;
    line-height: 1.6;
}

/* ==================================
   BLOG PAGE
==================================== */
.blog-grid-card {
    background: var(--dark2) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.35s ease;
}

.blog-grid-card:hover {
    transform: translateY(-5px);
    background: var(--surface) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(184, 251, 4, 0.15) !important;
}

.blog-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--dark3);
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-grid-card:hover .blog-card-img-wrap img {
    transform: scale(1.04);
}

.blog-category-tag-dark {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(184, 251, 4, 0.08);
    border: 1px solid rgba(184, 251, 4, 0.15);
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.06em;
}

.blog-card-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
}

.blog-card-meta .date {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
}

.blog-card-title a {
    color: var(--white-color);
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.blog-card-footer {
    border-top: 1px dashed rgba(255, 255, 255, 0.11);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
}

.read-more-btn {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.read-more-btn:hover {
    color: var(--white-color);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(4px);
}

/* Static Pagination */
.blog-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.blog-pagination .page-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(184, 251, 4, 0.15);
    transform: translateY(-2px);
}

.blog-pagination .page-link.active {
    background: var(--primary);
    color: var(--black);
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.blog-pagination .page-link.prev,
.blog-pagination .page-link.next {
    font-size: 12px;
}

/* ==================================
   BLOG DETAILS PAGE
==================================== */
.post-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.details-cover-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.11);
    height: 440px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: var(--dark2);
}

.details-cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-body-text {
    font-size: 16px;
    line-height: 1.7;
}

.post-body-text p {
    margin-bottom: 1.5rem;
}

.post-body-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2.5rem;
}

/* Blockquote */
.blog-post-content blockquote {
    background: var(--dark2);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.blog-post-content blockquote .highlight-quote {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Code Block wrapper */
.code-block-wrapper {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.code-header {
    background: var(--dark3);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.code-status {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.code-block-wrapper pre {
    font-family: var(--font-mono);
    font-size: 13.5px;
    line-height: 1.6;
    color: #e2e8f0;
    overflow-x: auto;
    background: transparent;
}

/* Author Access Pass-Card */
.author-bio-card-dark {
    background: var(--dark2) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.author-avatar-big {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 15px rgba(184, 251, 4, 0.2);
}

.badge-clearance {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(184, 251, 4, 0.08);
    border: 1px solid rgba(184, 251, 4, 0.15);
    padding: 4px 8px;
    border-radius: 4px;
}

.author-socials a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s ease;
}

.author-socials a:hover {
    color: var(--primary);
}

/* Sidebar Widgets */
.blog-sidebar-wrap {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--dark2) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg);
    padding: 1.75rem !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

.widget-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
}

/* Category widget list */
.widget-categories-list li {
    list-style: none;
    border-bottom: 1px dashed var(--border);
}

.widget-categories-list li:last-child {
    border-bottom: none;
}

.widget-categories-list li a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.widget-categories-list li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.widget-categories-list .cat-count {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    background: var(--dark3);
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.widget-categories-list li a:hover .cat-count {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 8px rgba(184, 251, 4, 0.1);
}

/* Recent posts widget */
.recent-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--dark3);
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.08);
}

.recent-post-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.recent-post-title a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--primary) !important;
}

.recent-post-date {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-dim);
}

/* Tags widget */
.tag-link {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--dark3);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(184, 251, 4, 0.05);
    box-shadow: 0 0 8px rgba(184, 251, 4, 0.1);
}

/* ==============================
   SCROLL PERFORMANCE (HOMEPAGE)
================================ */
html.is-scrolling .scroll-left,
html.is-scrolling .scroll-right {
    animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .scroll-left,
    .scroll-right,
    .features-aurora,
    .features-grid-bg {
        animation: none !important;
    }
}

/* ==================================
   SERVICES PAGE 
==================================== */
.bento-grid-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.bento-card {
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-dark {
    background: #0e1418 !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bento-card:hover {
    will-change: transform;
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(184, 251, 4, 0.08);
}

.bento-large {
    grid-column: span 8;
}

.bento-medium {
    grid-column: span 4;
}

.bento-small {
    grid-column: span 4;
}

.bento-bg-gradient {
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 251, 4, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.bento-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--black);
    background: var(--primary);
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.bento-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.75rem;
}

.bento-large .bento-title {
    font-size: 2rem;
}

.bento-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bento-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.bento-card:hover .bento-link {
    gap: 0.85rem;
}

/* ========================
   CYBER PIPELINE
========================= */
.cyber-timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.cyber-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--secondary) 20%, var(--secondary) 80%, transparent);
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(184, 251, 4, 0.4);
}

.cyber-timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    width: 100%;
    position: relative;
}

.cyber-timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    width: 44%;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    background: var(--secondary);
}

.timeline-content:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.timeline-spacer {
    width: 44%;
}

.timeline-node {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border: 4px solid var(--secondary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(184, 251, 4, 0.5);
    transition: transform 0.3s ease, background 0.3s ease;
}

.cyber-timeline-item:hover .timeline-node {
    transform: translateX(-50%) scale(1.3);
    background: var(--secondary);
    border: 4px solid var(--primary);
}

.step-counter {
    display: block;
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    position: absolute;
    top: 15px;
    right: 20px;
    pointer-events: none;
}

.left-side .step-counter {
    right: auto;
    left: 20px;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.timeline-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.cta-banner-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.cta-banner-desc {
    color: var(--secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 500;
}

/* Black Primary Button Variation */
.btn-black-primary {
    background: var(--black) !important;
    color: var(--primary) !important;
    border-color: var(--black) !important;
}

.btn-black-primary::before {
    background: var(--white-color) !important;
}

.btn-black-primary:hover {
    color: var(--black) !important;
    border-color: var(--black) !important;
}

/* ========================
   SERVICE DETAILS PAGE
============================ */
.service-overview-section {
    background: #06090b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sd-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.sd-lead-text {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.sd-sub-text {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Feature List */
.sd-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sd-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(14, 20, 24, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.sd-feature-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.sd-f-icon {
    width: 45px;
    height: 45px;
    background: rgba(184, 251, 4, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sd-f-text h5 {
    color: var(--white-color);
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sd-f-text p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Tech Specs Terminal Card */
.tech-spec-card {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.tsc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.tsc-dots {
    display: flex;
    gap: 6px;
}

.tsc-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

.tsc-dots span:nth-child(1) {
    background: #ef4444;
}

.tsc-dots span:nth-child(2) {
    background: #eab308;
}

.tsc-dots span:nth-child(3) {
    background: #22c55e;
}

.tsc-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #64748b;
    letter-spacing: 0.1em;
}

.tsc-metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.tsc-label {
    color: #94a3b8;
}

.tsc-value {
    color: var(--white-color);
    font-weight: 600;
}

.tsc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

/* Animated Progress Bars */
.tsc-progress-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.tsc-progress-bar {
    width: 100%;
    height: 6px;
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
}

.tsc-progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 10px rgba(184, 251, 4, 0.5);
    animation: slideLoad 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform-origin: left;
    transform: scaleX(0);
}

.p-85 {
    width: 85%;
}

.p-60 {
    width: 60%;
}

.p-45 {
    width: 45%;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes slideLoad {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

/* Capabilities Cards */
.capability-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    transform: translate3d(0, 0, 0);
}

.capability-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.cap-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--black);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cap-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.cap-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==================
  PRICING PAGE
===================== */
/* Billing Toggle */
.billing-toggle-light {
    display: inline-flex;
    align-items: center;
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.15);
    box-shadow: 0 4px 15px rgba(3, 70, 81, 0.05);
    border-radius: 50px;
    padding: 8px 16px;
    gap: 15px;
}

.toggle-text-light {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: #64748b;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-text-light.active {
    color: var(--secondary);
    font-weight: 700;
}

.save-badge-light {
    background: rgba(3, 70, 81, 0.1);
    color: var(--secondary);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.toggle-switch-light {
    width: 50px;
    height: 26px;
    background: #cbd5e1;
    border-radius: 30px;
    border: none;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}

.toggle-switch-light[aria-pressed="true"] {
    background: var(--secondary);
}

.switch-knob-light {
    width: 20px;
    height: 20px;
    background: var(--white-color);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle-switch-light[aria-pressed="true"] .switch-knob-light {
    transform: translateX(24px);
}

/* Pricing Cards */
.p-card-light {
    position: relative;
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid rgba(3, 70, 81, 0.1);
    box-shadow: 0 10px 30px rgba(3, 70, 81, 0.03);
    display: flex;
    flex-direction: column;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform, box-shadow, border-color;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.p-card-light:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(3, 70, 81, 0.08);
}

.p-card-featured-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(3, 70, 81, 0.2);
    transform: scale(1.05);
}

.p-card-featured-secondary:hover {
    transform: scale(1.05) translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(3, 70, 81, 0.3);
}

.p-featured-badge-light {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--secondary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(184, 251, 4, 0.3);
}

.p-tier-name-light {
    font-family: var(--font-display);
    color: var(--secondary);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.p-tier-desc-light {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.p-tier-desc-featured {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.p-price-wrap-light {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(3, 70, 81, 0.1);
}

.border-light-alpha {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.p-currency-light {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 4px;
    color: var(--secondary);
}

.p-amount-light {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.p-duration-light {
    color: var(--secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-left: 8px;
}

.p-feature-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.p-feature-list-light li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.p-feature-list-light.text-white li {
    color: var(--white-color);
}

.p-feature-list-light li.disabled {
    opacity: 0.5;
}

/* ====================
   FEATURE COMPARISON
======================= */
.comparison-matrix-dark {
    background: rgba(14, 20, 24, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.comp-grid-dark {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.comp-grid-dark:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comp-grid-dark:last-child {
    border-bottom: none;
}

.comp-cell-dark {
    padding: 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.comp-cell-dark.text-center {
    justify-content: center;
}

.comp-header-dark .comp-cell-dark {
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #94a3b8;
    background: rgba(0, 0, 0, 0.4);
}

.icon-dimmed {
    opacity: 0.25;
}

.comp-grid-dark .text-muted {
    color: #94a3b8 !important;
}

.comp-grid-dark .icon-dimmed {
    opacity: 0.5 !important;
    color: #94a3b8 !important;
}

.comp-grid-dark .fa-check.text-muted {
    color: #94a3b8 !important;
    opacity: 0.6;
}

/* ==============================
   TEAM DETAILS PAGE
================================= */
/* Sidebar Profile Card */
.td-profile-sidebar {
    background: rgba(14, 20, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2.5rem;
    position: sticky;
    top: 110px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.td-card-corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.td-card-corners div {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--primary);
    opacity: 0.5;
}

.c-top-left {
    top: 12px;
    left: 12px;
    border-right: none !important;
    border-bottom: none !important;
}

.c-top-right {
    top: 12px;
    right: 12px;
    border-left: none !important;
    border-bottom: none !important;
}

.c-bottom-left {
    bottom: 12px;
    left: 12px;
    border-right: none !important;
    border-top: none !important;
}

.c-bottom-right {
    bottom: 12px;
    right: 12px;
    border-left: none !important;
    border-top: none !important;
}

/* Avatar & Status */
.td-avatar-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 6px;
    background: #000;
}

.td-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.td-status-indicator {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    border: 1px solid rgba(184, 251, 4, 0.3);
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.05em;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: activeDotPulse 1.5s infinite;
}

.td-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
}

.td-role {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.td-clearance-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(184, 251, 4, 0.08);
    color: var(--primary);
    border: 1px dashed rgba(184, 251, 4, 0.2);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 6px;
}

.td-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.25rem;
    border-radius: 12px;
}

.td-contact-list li {
    font-size: 0.9rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.td-contact-list i {
    width: 20px;
    text-align: center;
}

.td-social-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.td-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.td-social-btn:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 251, 4, 0.2);
}

.td-main-content {
    background: rgba(14, 20, 24, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
}

.td-block-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.td-text-muted {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Skills Bars */
.td-skills-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.td-skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #cbd5e1;
    text-transform: uppercase;
}

.td-skill-pct {
    color: var(--primary);
    font-weight: 700;
}

.td-skill-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.td-skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(184, 251, 4, 0.3);
}

/* Directive Cards */
.td-directive-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.td-directive-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 251, 4, 0.4);
}

.td-directive-icon {
    width: 40px;
    height: 40px;
    background: rgba(184, 251, 4, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.td-directive-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
}

.td-directive-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    transition: gap 0.3s;
}

.td-directive-card:hover .td-directive-link {
    gap: 10px;
}

/* Research Timeline */
.td-timeline {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.08);
}

.td-timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.td-timeline-dot {
    position: absolute;
    left: -27px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.td-timeline-year {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.td-timeline-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ============================================================
   AUTHENTICATION PAGES (LOGIN / REGISTER)
============================================================ */
.auth-aurora {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(184, 251, 4, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

/* Auth Card Container */
.auth-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.auth-card {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.auth-icon-shield {
    width: 64px;
    height: 64px;
    background: rgba(184, 251, 4, 0.1);
    color: var(--primary);
    border: 1px solid rgba(184, 251, 4, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(184, 251, 4, 0.15);
}

.auth-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Form Inputs */
.auth-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.auth-forgot-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-forgot-link:hover {
    color: var(--white-color);
}

.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 1rem;
    color: #64748b;
    font-size: 1rem;
    transition: color 0.3s ease;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    color: var(--white-color);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
}

.auth-input::placeholder {
    color: #475569;
}

.auth-input:focus {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(184, 251, 4, 0.1);
}

.auth-input:focus~.auth-input-icon,
.auth-input:not(:placeholder-shown)~.auth-input-icon {
    color: var(--primary);
}

.auth-pwd-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0;
}

.auth-pwd-toggle:hover {
    color: var(--white-color);
}

/* Custom Checkbox */
.auth-checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0.6rem;
}

.auth-checkbox {
    display: none;
}

.auth-checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.auth-checkbox:checked+.auth-checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(184, 251, 4, 0.3);
}

.auth-checkbox-custom::after {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: var(--black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.auth-checkbox:checked+.auth-checkbox-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.auth-checkbox-label {
    font-size: 0.85rem;
    color: #94a3b8;
    user-select: none;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #475569;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-divider span {
    padding: 0 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Social Buttons */
.auth-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-social i {
    font-size: 1.1rem;
}

/* Footer Register Link */
.auth-register-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.25rem;
    transition: text-shadow 0.3s ease;
}

.auth-register-link:hover {
    text-shadow: 0 0 10px var(--primary-glow);
}

.typed-cursor {
    color: var(--primary);
    animation: typed-blink 0.7s infinite;
}

@keyframes typed-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* =====================
   COMING SOON PAGE
======================== */
.cs-logo {
    max-height: 48px;
    filter: drop-shadow(0 0 12px rgba(184, 251, 4, 0.15));
    transition: all 0.3s ease;
}

.cs-logo:hover {
    filter: drop-shadow(0 0 20px rgba(184, 251, 4, 0.4));
    transform: scale(1.02);
}

.cs-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--white-color);
}

.cs-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.cs-timer-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.cs-time-box {
    width: 105px;
    height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--dark3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cs-time-box:hover {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(184, 251, 4, 0.15);
    transform: translateY(-4px);
    background: var(--surface);
}

.cs-number {
    font-family: var(--font-display);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1;
}

.cs-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-weight: 500;
}

.cs-colon {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dim);
    transform: translateY(-16px);
    animation: cs-pulse-colon 1.5s infinite;
}

@keyframes cs-pulse-colon {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.cs-notify-form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.cs-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 6px 6px 6px 18px;
    transition: all 0.3s ease;
}

.cs-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    background: rgba(255, 255, 255, 0.05);
}

.cs-prompt {
    font-family: var(--font-mono);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 10px;
    user-select: none;
}

.cs-input-group input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white-color);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    padding: 12px 0;
}

.cs-input-group input::placeholder {
    color: var(--text-dim);
}

.cs-socials {
    margin-top: 2.5rem;
}

.btn-social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
}

.btn-social-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(184, 251, 4, 0.05);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-3px);
}

body.page-coming-soon {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed;
    width: 100%;
    background-color: var(--white-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-coming-soon .aig-section {
    width: calc(100% - 80px);
    height: calc(100vh - 40px);
    margin: 20px 40px !important;
    padding: 4rem 3rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    border-radius: 25px !important;
    background-color: var(--dark) !important;
    box-shadow: none !important;
}

body.page-coming-soon .cs-content-wrapper {
    background-color: #0c1013 !important;
    border: 1.5px solid var(--primary) !important;
    border-radius: 25px !important;
    padding: 3rem 2.5rem !important;
    max-width: 680px !important;
    width: 100%;
    box-shadow: 0 0 30px rgba(184, 251, 4, 0.15), 0 30px 60px rgba(0, 0, 0, 0.8) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ====================
   404 ERROR PAGE 
======================= */
.error-aurora-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(184, 251, 4, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.error-card-light {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
    position: relative;
    z-index: 2;
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(3, 70, 81, 0.05);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.error-code-light {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.04em;
    color: var(--secondary);
    text-shadow:
        3px 3px 0px var(--primary),
        -1px -1px 0px rgba(3, 70, 81, 0.1);
    animation: floatCodeLight 5s ease-in-out infinite;
}

.error-title-light {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
}

.error-desc-light {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 500px;
}

@keyframes floatCodeLight {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ===================
   CONTACT PAGE 
======================= */
.contact-desc-light {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 90%;
}

/* Contact Info Cards */
.c-info-card-light {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #f8fafc;
    border: 2px solid rgba(3, 70, 81, 0.06);
    padding: 1.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.c-info-card-light:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(3, 70, 81, 0.05);
}

.c-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(184, 251, 4, 0.15);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.c-info-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.c-info-text,
.c-info-subtext {
    font-size: 0.95rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

.c-info-subtext {
    font-size: 0.85rem;
    color: #94a3b8;
}

.c-info-link {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.c-info-link:hover {
    color: var(--primary);
}

.glass-light-panel {
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.1);
    box-shadow: 0 20px 40px rgba(3, 70, 81, 0.04);
    border-radius: 24px;
    padding: 3rem 2.5rem;
}

/* Light Form Inputs */
.c-input-group {
    display: flex;
    flex-direction: column;
}

.c-label-light {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.c-input-light,
.c-select-light,
.c-textarea-light {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--secondary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    outline: none;
}

.c-input-light::placeholder,
.c-textarea-light::placeholder {
    color: #94a3b8;
}

.c-select-light {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23034651' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.c-input-light:focus,
.c-select-light:focus,
.c-textarea-light:focus {
    background: var(--white-color);
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(3, 70, 81, 0.08);
}

.c-textarea-light {
    resize: vertical;
    min-height: 120px;
}

/* ==============
   MAP SECTION
================= */
.map-section-light {
    border: 1px solid rgba(3, 70, 81, 0.08);
    background: var(--white-color);
    padding: 0;
    height: 450px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 60px rgba(184, 251, 4, 0.4), inset 0 0 20px rgba(184, 251, 4, 0.3);
    background: linear-gradient(135deg, rgba(184, 251, 4, 0.15) 0%, transparent 50%, rgba(184, 251, 4, 0.05) 100%);
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 2;
    border-radius: 25px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) contrast(1.1);
    transition: filter 0.4s ease;
    position: relative;
    z-index: 1;
}

.map-container:hover::after {
    box-shadow: inset 0 0 10px rgba(184, 251, 4, 0.1);
    background: transparent;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ========================
   LEGAL / PRIVACY PAGE
=========================== */
.legal-content-wrapper-light {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.1);
    border-radius: 24px;
    padding: 4rem 4.5rem;
    box-shadow: 0 20px 50px rgba(3, 70, 81, 0.05);
}

.legal-header-light {
    border-bottom: 1px dashed rgba(3, 70, 81, 0.15);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.legal-date-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--secondary);
    background: rgba(3, 70, 81, 0.05);
    padding: 6px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-main-title-light {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.legal-intro-light {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.legal-body-light h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-body-light p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.legal-body-light ul {
    margin-bottom: 2rem;
    padding-left: 1.25rem;
}

.legal-body-light li {
    font-size: 1rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0.5rem;
}

.legal-body-light li::marker {
    color: var(--secondary);
}

.legal-body-light strong {
    color: var(--secondary);
    font-weight: 700;
}

/* Contact Support Box inside Legal */
.legal-contact-box-light {
    background: #f8fafc;
    border: 1px solid rgba(3, 70, 81, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.legal-contact-box-light h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* ==================================
   AIGENIX - AI STARTUP HOMEPAGE
===================================== */
html:has(body.ai-startup-body) {
    overflow-x: clip;
    max-width: 100%;
}

body.ai-startup-body {
    background-color: #04020a !important;
    color: var(--white-color) !important;
    overflow-x: clip;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

.ais-margin-layout {
    margin: 25px 40px !important;
}

.ais-radius-25 {
    border-radius: 24px !important;
    overflow: hidden;
}

/* ===================================
   NAVIGATION HEADER (.ais-header)
======================================= */
.ais-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ais-nav-container {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 40px;
}

.ais-nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.4s ease;
}

/* Left Brand Logo */
.ais-nav-logo {
    display: flex;
    align-items: center;
}

.ais-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.ais-logo-img {
    max-height: 28px;
    transition: transform 0.3s ease;
}

.ais-logo-img:hover {
    transform: scale(1.05);
}

/* Center Links */
.ais-nav-menu {
    display: flex;
    align-items: center;
}

.ais-nav-list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ais-nav-item {
    position: relative;
}

.ais-nav-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 24px 0;
    transition: color 0.3s ease;
    cursor: pointer;
}

.ais-nav-link:hover {
    color: var(--white-color) !important;
}

.ais-nav-link i {
    font-size: 9px;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.ais-nav-item:hover .ais-nav-link i {
    transform: translateY(2px);
}

.ais-dropdown-panel {
    position: absolute;
    top: calc(100% - 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #0d0b16;
    border: 1px solid rgba(184, 251, 4, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 12px;
    padding: 0.75rem;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 1200;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ais-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #0d0b16;
    border-left: 1px solid rgba(184, 251, 4, 0.1);
    border-top: 1px solid rgba(184, 251, 4, 0.1);
}

.ais-nav-item:hover .ais-dropdown-panel,
.ais-nav-item.open .ais-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ais-dropdown-panel.ais-mega-panel {
    width: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1rem;
}

.ais-dropdown-panel li {
    list-style: none;
    position: relative;
}

.ais-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ais-dropdown-link:hover {
    color: var(--white-color) !important;
    background: rgba(184, 251, 4, 0.08);
}

.ais-dropdown-link i {
    font-size: 13px;
    width: 18px;
    text-align: center;
    opacity: 0.8;
}

.ais-dropdown-link i.fa-circle-dot {
    color: var(--primary);
}

.ais-dropdown-link i.fa-bolt {
    color: var(--secondary);
}

.ais-dropdown-link i.fa-rocket {
    color: #00f0ff;
}

.ais-dropdown-link i.fa-heartbeat {
    color: #f43f5e;
}

.ais-dropdown-link i.fa-shield-halved {
    color: #10b981;
}

/* Right Actions & Buttons */
.ais-header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1201;
}

.ais-nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ais-btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--white-color) !important;
    text-decoration: none;
    border: 1.5px solid var(--primary);
    padding: 10px 22px;
    border-radius: 6px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ais-btn-get-started:hover {
    background-color: var(--primary);
    color: #000000 !important;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(184, 251, 4, 0.35);
}

/* Hamburger toggle */
.ais-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    margin: 0;
    cursor: pointer;
    z-index: 1201;
    position: relative;
    box-sizing: border-box;
}

.ais-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--white-color);
    border-radius: 2px;
    transition: all 0.25s ease;
}

/* Header scrolled state */
.ais-header-scrolled {
    background: rgba(4, 2, 10, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ais-header-scrolled .ais-nav-shell {
    height: 80px;
}

/* ===================================
   HERO SECTION (.ais-hero-section)
====================================== */
.ais-hero-section {
    position: relative;
    background-color: #04020a;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ais-hero-aurora {
    position: absolute;
    width: 45vw;
    height: 45vw;
    max-width: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.14;
    background-color: var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ais-aurora-drift 12s ease-in-out infinite alternate;
}

@keyframes ais-aurora-drift {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-45%, -55%) scale(1.15);
    }
}

.ais-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.ais-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    padding-bottom: 90px;
}

.ais-partner-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border: 1px solid var(--primary);
    background: rgba(255, 255, 255, 0.02);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--white-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2.25rem;
    position: relative;
    border-radius: 2px;
}

.ais-partner-badge::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 15px;
    width: 0px;
    height: 1px;
    background-color: #04020a;
}

.ais-partner-badge::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 15px;
    width: 0px;
    height: 1px;
    background-color: #04020a;
}

.ais-hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 6.2vw, 4.8rem);
    line-height: 1.35;
    color: var(--white-color);
    letter-spacing: -0.01em;
}

.ais-title-highlight {
    display: inline-block;
    background-color: var(--primary);
    color: var(--black);
    padding: 4px 18px;
    border-radius: 8px;
    border: 1px solid rgba(184, 251, 4, 0.35);
    box-shadow: 0 0 20px rgba(184, 251, 4, 0.15);
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    margin-top: 6px;
    vertical-align: middle;
}

.ais-hero-sub {
    font-family: var(--font-body);
    font-size: 17.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    max-width: 680px;
    margin-top: 1.5rem;
    margin-bottom: 2.25rem;
}

.ais-hero-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: center;
}

.ais-hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><rect width='60' height='60' fill='none' stroke='rgba(184, 251, 4, 0.035)' stroke-width='1'/></svg>");
    background-size: 60px 60px;
    opacity: 0.8;
    pointer-events: none;
    animation: ais-grid-pulse 8s ease-in-out infinite alternate;
}

@keyframes ais-grid-pulse {
    0% {
        opacity: 0.45;
    }

    100% {
        opacity: 0.85;
    }
}

.ais-star-field {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><circle cx='15' cy='25' r='1' fill='white' opacity='0.35'/><circle cx='85' cy='45' r='1' fill='white' opacity='0.25'/><circle cx='45' cy='95' r='1' fill='white' opacity='0.4'/><circle cx='105' cy='15' r='1.2' fill='white' opacity='0.5'/><circle cx='25' cy='85' r='0.8' fill='white' opacity='0.3'/></svg>");
    background-size: 150px 150px;
    opacity: 0.3;
    pointer-events: none;
    animation: ais-stars-twinkle 6s ease-in-out infinite alternate;
}

@keyframes ais-stars-twinkle {
    0% {
        opacity: 0.15;
    }

    100% {
        opacity: 0.45;
    }
}

/* ============================================================
   PLANETARY HORIZON DOME (.ais-planet-horizon)
============================================================ */
.ais-planet-horizon {
    position: absolute;
    bottom: -320px;
    left: 50%;
    transform: translateX(-50%);
    width: 170vw;
    height: 520px;
    border-radius: 50%;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -20px 45px rgba(184, 251, 4, 0.15);
    z-index: 1;
    pointer-events: none;
    animation: ais-planet-float 8s ease-in-out infinite alternate, ais-eclipse-pulse 4s ease-in-out infinite alternate;
}

@keyframes ais-planet-float {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    100% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes ais-eclipse-pulse {

    0%,
    100% {
        box-shadow: 0 -20px 45px rgba(184, 251, 4, 0.14), 0 -5px 15px rgba(0, 240, 255, 0.08);
    }

    50% {
        box-shadow: 0 -26px 55px rgba(184, 251, 4, 0.24), 0 -5px 25px rgba(0, 240, 255, 0.18);
    }
}

/* ============================================================
   INFINITE PARTNER LOGOS MARQUEE (.ais-partner-marquee)
============================================================ */
.ais-partner-marquee {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    z-index: 3;
    padding: 0 20px;
}

.ais-partner-track {
    display: flex;
    width: max-content;
    flex-wrap: nowrap;
    animation: ais-marquee-scroll 24s linear infinite;
}

.ais-partner-group {
    display: flex;
    align-items: center;
    gap: 4.5rem;
    padding-right: 4.5rem;
    flex-shrink: 0;
}

.ais-partner-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    color: var(--white-color) !important;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ais-partner-item:hover {
    opacity: 1;
    transform: scale(1.02);
}

.ais-partner-item i {
    font-size: 18px;
    color: var(--primary);
}

@keyframes ais-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

/* ============================================================
   ABOUT US SECTION (.ais-about-section)
============================================================ */
.ais-about-section {
    position: relative;
    background-color: #f7f8fa;
    color: #111111;
    padding: 120px 0 110px;
    overflow: hidden;
}

.ais-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(184, 251, 4, 0.55), transparent);
    z-index: 3;
    pointer-events: none;
}

.ais-about-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.6;
    pointer-events: none;
}

.ais-about-glow {
    position: absolute;
    top: -80px;
    right: -60px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 251, 4, 0.12) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.ais-about-section .ais-container {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.ais-about-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border: 1px solid rgba(3, 70, 81, 0.2);
    background: var(--white-color);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.ais-about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f0f0f;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.ais-about-section .ais-title-highlight {
    box-shadow: 0 4px 18px rgba(184, 251, 4, 0.35);
}

.ais-about-stat-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ais-about-stat-num {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1.5px #7ab800;
    flex-shrink: 0;
}

.ais-about-stat-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 220px;
}

.ais-about-stat-label {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    letter-spacing: -0.01em;
}

.ais-about-stat-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: #6b7280;
}

.ais-about-copy {
    padding-top: 2.5rem;
}

.ais-about-copy p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.85;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.ais-about-copy p:last-of-type {
    margin-bottom: 2rem;
}

.ais-about-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ais-about-cta .btn-ghost {
    color: var(--secondary);
    border-color: rgba(3, 70, 81, 0.35);
    background: var(--white-color);
}

.ais-about-cta .btn-ghost:hover {
    color: #111111 !important;
    border-color: var(--primary);
}

.ais-about-features-head {
    margin-top: 5rem;
    padding-top: 3.5rem;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 2.5rem;
    text-align: center;
}

.ais-about-features-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: #5a8f00;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.ais-about-features-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #0f0f0f;
    letter-spacing: -0.02em;
    margin: 0;
}

.ais-about-card {
    position: relative;
    height: 100%;
    padding: 1.75rem 1.5rem;
    background: var(--white-color);
    border: 1px solid #e8eaed;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.ais-about-card:hover {
    border-color: rgba(184, 251, 4, 0.55);
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(184, 251, 4, 0.15);
}

.ais-about-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(184, 251, 4, 0.14);
    border: 1px solid rgba(184, 251, 4, 0.3);
    color: #5a8f00;
    font-size: 1.15rem;
    margin-bottom: 1.35rem;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.ais-about-card:hover .ais-about-card-icon {
    background: var(--primary);
    color: #111111;
    box-shadow: 0 6px 20px rgba(184, 251, 4, 0.35);
}

.ais-about-card-index {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 500;
    color: #c4c9d0;
    letter-spacing: 0.05em;
}

.ais-about-card:hover .ais-about-card-index {
    color: #9ca3af;
}

.ais-about-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    padding-right: 2rem;
}

.ais-about-card-text {
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
}

/* ============================================================
   WHAT WE DO SECTION (.ais-wdo-section)
============================================================ */
.ais-wdo-section {
    position: relative;
    background-color: #030109;
    color: var(--white-color);
    padding: 115px 0 120px;
    overflow: hidden;
}

.ais-wdo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(184, 251, 4, 0.35) 50%, transparent 95%);
    pointer-events: none;
    z-index: 1;
}

.ais-wdo-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(184, 251, 4, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 251, 4, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
    pointer-events: none;
}

.ais-wdo-beam {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 320px;
    background: radial-gradient(ellipse, rgba(184, 251, 4, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ais-wdo-section .ais-container {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

/* Header */
.ais-wdo-header {
    margin-bottom: 3.5rem;
}

.ais-wdo-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border: 1px solid rgba(184, 251, 4, 0.35);
    background: rgba(184, 251, 4, 0.04);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
    border-radius: 2px;
}

.ais-wdo-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--white-color);
    margin: 0;
    max-width: 580px;
}

.ais-wdo-sub {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 1.75rem;
}

.ais-wdo-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ais-wdo-stats li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ais-wdo-stats-val {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.ais-wdo-stats-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ais-wdo-bento {
    display: block;
}

.ais-wdo-grid-main {
    align-items: stretch;
}

.ais-wdo-grid-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    height: 100%;
    min-height: 0;
}

.ais-wdo-tile {
    position: relative;
    padding: 1.5rem 1.4rem 0;
    background: linear-gradient(155deg, rgba(36, 34, 52, 0.98) 0%, rgba(18, 16, 30, 0.99) 100%);
    border: 1px solid rgba(184, 251, 4, 0.22);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
        border-color 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        background 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ais-wdo-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(184, 251, 4, 0.18), transparent 45%, transparent 75%, rgba(184, 251, 4, 0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.ais-wdo-tile:hover {
    border-color: rgba(184, 251, 4, 0.4);
    background: linear-gradient(155deg, rgba(28, 26, 40, 0.98) 0%, rgba(16, 18, 28, 0.98) 100%);
    transform: translateY(-6px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(184, 251, 4, 0.12),
        0 0 40px rgba(184, 251, 4, 0.08);
}

.ais-wdo-tile:hover::after {
    opacity: 1;
}

.ais-wdo-tile--featured {
    min-height: 100%;
    padding: 1.75rem 1.6rem 0;
    background: linear-gradient(155deg, rgba(32, 30, 48, 0.99) 0%, rgba(16, 18, 30, 0.99) 100%);
    border-color: rgba(184, 251, 4, 0.28);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(184, 251, 4, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.ais-wdo-tile--featured .ais-wdo-tile_glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 251, 4, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ais-wdo-tile--cta {
    margin-top: 1.25rem;
    min-height: unset;
    padding: 0;
    background: linear-gradient(135deg, rgba(184, 251, 4, 0.1) 0%, rgba(18, 20, 30, 0.96) 45%, rgba(3, 70, 81, 0.2) 100%);
    border-color: rgba(184, 251, 4, 0.28);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(184, 251, 4, 0.12);
    transition:
        border-color 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        background 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ais-wdo-tile--cta:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 251, 4, 0.45);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.45),
        0 0 50px rgba(184, 251, 4, 0.1);
}

.ais-wdo-tile_cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.25rem;
    flex-wrap: wrap;
}

.ais-wdo-tile_cta-btns {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.ais-wdo-tile_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.ais-wdo-tile_index {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.ais-wdo-tile_icon-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    background: rgba(184, 251, 4, 0.14);
    border: 1px solid rgba(184, 251, 4, 0.4);
    position: relative;
    flex-shrink: 0;
    margin-bottom: 0;
    transition:
        box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        background-color 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ais-wdo-tile_icon-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(184, 251, 4, 0.35);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ais-wdo-tile:hover .ais-wdo-tile_icon-ring {
    background: rgba(184, 251, 4, 0.2);
    box-shadow: 0 0 28px rgba(184, 251, 4, 0.25);
    transform: scale(1.05);
}

.ais-wdo-tile:hover .ais-wdo-tile_icon-ring::before {
    transform: rotate(90deg);
}

.ais-wdo-tile--featured .ais-wdo-tile_icon-ring {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
}

.ais-wdo-tile_body {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.5rem;
}

.ais-wdo-tile_footer {
    margin-top: auto;
    padding: 1rem 0 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.ais-wdo-tile_tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    flex: 0 0 auto;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: #111111;
    background: var(--primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    padding: 4px 10px;
    border-radius: 4px;
    line-height: 1.2;
}

.ais-wdo-tile_title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-color);
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
    line-height: 1.3;
    width: 100%;
    transition: color 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ais-wdo-tile:hover .ais-wdo-tile_title {
    color: var(--primary);
}

.ais-wdo-tile--featured .ais-wdo-tile_title {
    font-size: 1.55rem;
    margin-bottom: 0.85rem;
}

.ais-wdo-tile_text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    width: 100%;
}

.ais-wdo-tile--featured .ais-wdo-tile_text {
    font-size: 16px;
    line-height: 1.8;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.78);
}

.ais-wdo-tile_list {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.ais-wdo-tile_list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.8);
}

.ais-wdo-tile_list li i {
    font-size: 10px;
    color: var(--primary);
}

.ais-wdo-tile_link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.01em;
    transition:
        color 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        gap 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ais-wdo-tile_link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 11px;
    background: rgba(184, 251, 4, 0.12);
    border: 1px solid rgba(184, 251, 4, 0.3);
    transition:
        transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        background-color 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ais-wdo-tile:hover .ais-wdo-tile_link {
    color: var(--white-color);
    gap: 0.7rem;
}

.ais-wdo-tile:hover .ais-wdo-tile_link i {
    transform: translateX(3px);
    background: var(--primary);
    border-color: var(--primary);
    color: #111111;
}

.ais-wdo-tile--featured .ais-wdo-tile_link {
    font-size: 15px;
}

/* ========================
   INDEX-1 
========================== */
body.ai-startup-body .btn-primary,
body.ai-startup-body .btn-ghost {
    font-size: 16px;
    padding: 12px 28px;
}

body.ai-startup-body .ais-nav-link {
    font-size: 14px;
}

body.ai-startup-body .ais-dropdown-link {
    font-size: 15px;
}

body.ai-startup-body .ais-about-badge,
body.ai-startup-body .ais-about-features-tag,
body.ai-startup-body .ais-wdo-badge,
body.ai-startup-body .ais-hiw-badge,
body.ai-startup-body .ais-cs-badge,
body.ai-startup-body .ais-ts-badge {
    font-size: 12px;
}

body.ai-startup-body .ais-about-features-title {
    font-size: clamp(1.65rem, 3.2vw, 2.15rem);
}

body.ai-startup-body .ais-wdo-stats-val {
    font-size: 1.85rem;
}

body.ai-startup-body .ais-wdo-stats-label {
    font-size: 11px;
}

/* ======================
   HOW IT WORKS 
========================= */
.ais-hiw-section {
    position: relative;
    background-color: #f7f8fa;
    color: #111111;
    padding: 120px 0 115px;
    overflow: hidden;
}

.ais-hiw-rails {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.65;
    pointer-events: none;
}

.ais-hiw-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(70px);
}

.ais-hiw-orb--left {
    top: 10%;
    left: -100px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(184, 251, 4, 0.14) 0%, transparent 70%);
}

.ais-hiw-orb--right {
    bottom: -60px;
    right: -40px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(3, 70, 81, 0.08) 0%, transparent 68%);
}

.ais-hiw-section .ais-container {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.ais-hiw-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.ais-hiw-aside {
    position: sticky;
    top: 110px;
}

.ais-hiw-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border: 1px solid rgba(3, 70, 81, 0.2);
    background: var(--white-color);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.ais-hiw-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f0f0f;
    margin-bottom: 1.25rem;
    max-width: 520px;
}

.ais-hiw-section .ais-title-highlight {
    box-shadow: 0 4px 18px rgba(184, 251, 4, 0.35);
}

.ais-hiw-lead {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 340px;
}

.ais-hiw-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: var(--white-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ais-hiw-metric {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.35rem 0.25rem;
    text-align: center;
}

.ais-hiw-metric:not(:last-child) {
    border-right: 1px solid #eceef1;
}

.ais-hiw-metric_val {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #5a8f00;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ais-hiw-metric_label {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9ca3af;
    line-height: 1.35;
}

.ais-hiw-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ais-hiw-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0.25rem;
}

.ais-hiw-timeline_spine {
    position: absolute;
    left: 27px;
    top: 36px;
    bottom: 36px;
    width: 2px;
    background: linear-gradient(180deg, rgba(184, 251, 4, 0.2) 0%, rgba(90, 143, 0, 0.45) 50%, rgba(184, 251, 4, 0.2) 100%);
    border-radius: 2px;
}

.ais-hiw-phase {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 1.75rem;
    align-items: start;
}

.ais-hiw-phase_node {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    width: 48px;
    height: 48px;
    margin: 1.25rem auto 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #111111;
    background: var(--primary);
    border: 3px solid #f7f8fa;
    box-shadow: 0 0 0 1px rgba(184, 251, 4, 0.45), 0 4px 16px rgba(184, 251, 4, 0.25);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.ais-hiw-phase:hover .ais-hiw-phase_node {
    transform: scale(1.06);
    box-shadow: 0 0 0 1px rgba(184, 251, 4, 0.6), 0 6px 22px rgba(184, 251, 4, 0.35);
}

.ais-hiw-phase_panel {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 1.55rem 1.45rem 1.65rem;
    border-radius: 16px;
    border: 1px solid #e8eaed;
    background: var(--white-color);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--primary);
    transition:
        border-color 0.4s ease,
        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.4s ease;
}

.ais-hiw-phase:hover .ais-hiw-phase_panel {
    border-color: rgba(184, 251, 4, 0.45);
    transform: translateX(4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(184, 251, 4, 0.12);
}

.ais-hiw-phase_ghost {
    position: absolute;
    top: 0.35rem;
    right: 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.06);
    pointer-events: none;
    user-select: none;
}

.ais-hiw-phase_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 1;
}

.ais-hiw-phase_title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f0f0f;
    letter-spacing: -0.01em;
    margin: 0;
    transition: color 0.35s ease;
}

.ais-hiw-phase:hover .ais-hiw-phase_title {
    color: #5a8f00;
}

.ais-hiw-phase_chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a8f00;
    background: rgba(184, 251, 4, 0.14);
    border: 1px solid rgba(184, 251, 4, 0.35);
    padding: 4px 9px;
    border-radius: 4px;
    line-height: 1.2;
}

.ais-hiw-phase_text {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
    max-width: 520px;
}

/* ================================
   CASE STUDIES (.ais-cs-section)
================================== */
.ais-cs-section {
    position: relative;
    background-color: #030109;
    color: var(--white-color);
    padding: 115px 0 120px;
    overflow: hidden;
}

.ais-cs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(184, 251, 4, 0.35) 50%, transparent 95%);
    pointer-events: none;
    z-index: 1;
}

.ais-cs-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(184, 251, 4, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 251, 4, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
    pointer-events: none;
}

.ais-cs-beam {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 300px;
    background: radial-gradient(ellipse, rgba(184, 251, 4, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ais-cs-section .ais-container {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.ais-cs-header {
    margin-bottom: 3.5rem;
}

.ais-cs-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border: 1px solid rgba(184, 251, 4, 0.35);
    background: rgba(184, 251, 4, 0.04);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
    border-radius: 2px;
}

.ais-cs-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--white-color);
    margin: 0;
    max-width: 640px;
}

.ais-cs-sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 1.35rem;
}

.ais-cs-header_btn {
    display: inline-flex;
}

.ais-cs-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 18px;
    border: 1px solid rgba(184, 251, 4, 0.16);
    background: linear-gradient(155deg, rgba(32, 30, 48, 0.98) 0%, rgba(14, 12, 24, 0.99) 100%);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        border-color 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ais-cs-card:hover {
    border-color: rgba(184, 251, 4, 0.38);
    transform: translateY(-6px);
    box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(184, 251, 4, 0.1),
        0 0 40px rgba(184, 251, 4, 0.07);
}

.ais-cs-card--featured {
    flex-direction: row;
    min-height: 100%;
}

.ais-cs-card_media {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.ais-cs-card:not(.ais-cs-card--featured) .ais-cs-card_media {
    height: 200px;
}

.ais-cs-card--featured .ais-cs-card_media {
    width: 46%;
    min-height: 280px;
}

.ais-cs-card_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ais-cs-card:hover .ais-cs-card_media img {
    transform: scale(1.05);
}

.ais-cs-card_media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(14, 12, 24, 0.55) 100%);
    pointer-events: none;
}

.ais-cs-card_tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: #111111;
    background: var(--primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    line-height: 1.2;
}

.ais-cs-card_body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem 1.45rem 1.4rem;
}

.ais-cs-card--featured .ais-cs-card_body {
    justify-content: center;
    padding: 1.75rem 1.65rem;
}

.ais-cs-card_client {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 0.55rem;
}

.ais-cs-card_title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-color);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 0.65rem;
    transition: color 0.35s ease;
}

.ais-cs-card--featured .ais-cs-card_title {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.ais-cs-card:hover .ais-cs-card_title {
    color: var(--primary);
}

.ais-cs-card_text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 1.15rem;
    flex: 1;
}

.ais-cs-card_stats {
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
}

.ais-cs-card_stats li {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
}

.ais-cs-card_stats strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 0.25rem;
}

.ais-cs-card_link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.35s ease, color 0.35s ease;
}

.ais-cs-card_link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 10px;
    background: rgba(184, 251, 4, 0.12);
    border: 1px solid rgba(184, 251, 4, 0.28);
    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease;
}

.ais-cs-card:hover .ais-cs-card_link {
    color: var(--white-color);
    gap: 0.7rem;
}

.ais-cs-card:hover .ais-cs-card_link i {
    transform: translateX(2px);
    background: var(--primary);
    border-color: var(--primary);
    color: #111111;
}

/* ===================================
   TESTIMONIALS (.ais-ts-section)
====================================== */
.ais-ts-section {
    position: relative;
    background-color: #f7f8fa;
    color: #111111;
    padding: 115px 0 120px;
    overflow: hidden;
}

.ais-ts-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.6;
    pointer-events: none;
}

.ais-ts-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 251, 4, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ais-ts-section .ais-container {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

/* Header */
.ais-ts-header {
    text-align: center;
    margin: 0 auto 3.25rem;
}

.ais-ts-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border: 1px solid rgba(3, 70, 81, 0.2);
    background: var(--white-color);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.ais-ts-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.ais-ts-section .ais-title-highlight {
    box-shadow: 0 4px 18px rgba(184, 251, 4, 0.35);
}

.ais-ts-sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.35rem;
}

.ais-ts-trust {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.65rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.ais-ts-trust_stars {
    display: inline-flex;
    gap: 0.15rem;
    color: var(--primary);
    font-size: 12px;
}

.ais-ts-trust_val {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f0f0f;
}

.ais-ts-trust_dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d1d5db;
}

.ais-ts-trust_label {
    font-family: var(--font-body);
    font-size: 13px;
    color: #6b7280;
}

.ais-ts-stage {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.ais-ts-stage_mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #08060f;
    background-image:
        linear-gradient(rgba(184, 251, 4, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 251, 4, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.ais-ts-stage_glow {
    position: absolute;
    bottom: -120px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 251, 4, 0.14) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.ais-ts-stage_inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: 0;
    min-height: 380px;
    background: linear-gradient(135deg, #0c0a14 0%, #12101c 55%, #0a0812 100%);
}

.ais-ts-picks {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.75rem 1.25rem 1.75rem 1.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.ais-ts-pick {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.55);
    text-align: left;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ais-ts-pick:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(184, 251, 4, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

.ais-ts-pick.is-active {
    background: rgba(184, 251, 4, 0.1);
    border-color: rgba(184, 251, 4, 0.45);
    color: var(--white-color);
    box-shadow: 0 8px 24px rgba(184, 251, 4, 0.12);
    transform: translateX(4px);
}

.ais-ts-pick_avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(184, 251, 4, 0.35);
    flex-shrink: 0;
}

.ais-ts-pick.is-active .ais-ts-pick_avatar {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 251, 4, 0.15);
}

.ais-ts-pick_body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.ais-ts-pick_name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: inherit;
    line-height: 1.3;
}

.ais-ts-pick_role {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.75;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ais-ts-pick_stat {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

/* Quote showcase */
.ais-ts-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 2.25rem 1.75rem;
    min-height: 100%;
}

.ais-ts-quote {
    flex: 1;
    display: flex;
    flex-direction: column;
    animation: ais-ts-fade-in 0.45s ease;
}

.ais-ts-quote[hidden] {
    display: none !important;
}

@keyframes ais-ts-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ais-ts-quote_mark {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.85;
    margin-bottom: 1rem;
    line-height: 1;
}

.ais-ts-quote_text {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.75;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 1.75rem;
    quotes: none;
}

.ais-ts-quote_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: auto;
}

.ais-ts-quote_chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(184, 251, 4, 0.25);
    background: rgba(184, 251, 4, 0.08);
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.ais-ts-quote_chip strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

/* Footer bar */
.ais-ts-showcase_foot {
    margin-top: 2rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ais-ts-progress {
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 1.15rem;
    overflow: hidden;
}

.ais-ts-progress_bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), #d4ff4a);
    transition: width 0.45s ease;
}

.ais-ts-showcase_actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.ais-ts-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.ais-ts-arrow:hover {
    color: #111111;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.ais-ts-more {
    margin-left: auto;
}

/* ============================================================
   FOOTER (.ais-footer) - AI Startup Homepage
============================================================ */
.ais-footer {
    position: relative;
    background-color: #04020a;
    color: var(--white-color);
    padding: 0 0 2.5rem;
    overflow: hidden;
}

.ais-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(184, 251, 4, 0.35) 50%, transparent 95%);
    pointer-events: none;
    z-index: 1;
}

.ais-footer-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(184, 251, 4, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 251, 4, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 15%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 15%, transparent 100%);
    pointer-events: none;
}

.ais-footer-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 360px;
    background: radial-gradient(ellipse, rgba(184, 251, 4, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ais-footer .ais-container {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.ais-footer-cta {
    margin-bottom: 4rem;
    padding-top: 5rem;
}

.ais-footer-cta_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 2.5rem 2.75rem;
    border-radius: 20px;
    border: 1px solid rgba(184, 251, 4, 0.22);
    background: linear-gradient(135deg, rgba(184, 251, 4, 0.08) 0%, rgba(18, 16, 30, 0.96) 42%, rgba(3, 70, 81, 0.18) 100%);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(184, 251, 4, 0.1);
}

.ais-footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border: 1px solid rgba(184, 251, 4, 0.35);
    background: rgba(184, 251, 4, 0.05);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-radius: 2px;
}

.ais-footer-cta_title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.ais-footer-cta_text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 520px;
}

.ais-footer-cta_actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.ais-footer-main {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ais-footer-logo {
    display: inline-flex;
    margin-bottom: 1.35rem;
    text-decoration: none;
}

.ais-footer-logo img {
    max-height: 30px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.ais-footer-logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 10px rgba(184, 251, 4, 0.25));
}

.ais-footer-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 1.25rem;
    max-width: 340px;
}

.ais-footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease, gap 0.3s ease;
}

.ais-footer-email:hover {
    color: var(--white-color);
    gap: 0.7rem;
}

.ais-footer-email i {
    font-size: 13px;
}

.ais-footer-socials {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.ais-footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition:
        color 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ais-footer-social:hover {
    color: #111111;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(184, 251, 4, 0.25);
}

.ais-footer-col_title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--white-color);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.ais-footer-col_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.ais-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.ais-footer-links a {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.ais-footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.ais-footer-newsletter_text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.15rem;
}

.ais-footer-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 0.75rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(184, 251, 4, 0.2);
    background: rgba(0, 0, 0, 0.35);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.ais-footer-form:focus-within {
    border-color: rgba(184, 251, 4, 0.45);
    box-shadow: 0 0 0 3px rgba(184, 251, 4, 0.08);
}

.ais-footer-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.9rem 1.1rem;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white-color);
}

.ais-footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.ais-footer-form button {
    flex-shrink: 0;
    width: 52px;
    border: none;
    background: var(--primary);
    color: #111111;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.ais-footer-form button:hover {
    background: var(--white-color);
}

.ais-footer-newsletter_note {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.04em;
    margin: 0;
}

.ais-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
}

.ais-footer-copyright {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.ais-footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ais-footer-legal a {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ais-footer-legal a:hover {
    color: var(--primary);
}

/* ===============================
   AI SAAS HOMEPAGE (index-2)
=================================== */
body.ai-saas-body {
    background-color: #f6f8fb;
    color: #111111;
    overflow-x: hidden;
    padding: 0px !important;
}

body.ai-saas-body .saas-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.saas-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    padding: 1.1rem 40px 0;
    transition: padding 0.35s ease;
}

.saas-nav-wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.65rem 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(3, 70, 81, 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.saas-header.saas-header-scrolled {
    padding-top: 0.65rem;
}

.saas-header.saas-header-scrolled .saas-nav-wrap {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e8eaed;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.saas-drawer-top,
.saas-drawer-foot {
    display: none;
}

.saas-nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.4rem 0.75rem;
    border-radius: 10px;
    background: #04020a;
    border: 1px solid rgba(184, 251, 4, 0.12);
    line-height: 0;
    position: relative;
    z-index: 4;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.saas-nav-logo:hover {
    border-color: rgba(184, 251, 4, 0.35);
    box-shadow: 0 4px 16px rgba(184, 251, 4, 0.12);
}

.saas-nav-logo_img {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
}

.saas-nav-menu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: calc(100% - 300px);
    pointer-events: none;
}

.saas-nav-menu .saas-nav-list,
.saas-nav-menu .saas-nav-item,
.saas-nav-menu .saas-nav-link {
    pointer-events: auto;
}

.saas-nav-list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.saas-nav-item {
    position: relative;
}

.saas-nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
    z-index: 11;
}

.saas-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.85rem;
    line-height: 1.2;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.saas-nav-link i {
    font-size: 9px;
    opacity: 0.55;
    transition: transform 0.25s ease;
}

.saas-nav-item:hover>.saas-nav-link {
    color: var(--secondary);
    background: rgba(3, 70, 81, 0.05);
}

.saas-nav-item:hover>.saas-nav-link i {
    transform: rotate(180deg);
}

.saas-nav-item.open>.saas-nav-link i {
    transform: rotate(180deg);
}

.saas-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 210px;
    padding: 0.5rem;
    list-style: none;
    margin: 0;
    border-radius: 12px;
    border: 1px solid #e8eaed;
    background: var(--white-color);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
    z-index: 12;
}

.saas-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--white-color);
    border-left: 1px solid #e8eaed;
    border-top: 1px solid #e8eaed;
}

.saas-dropdown--mega {
    min-width: 220px;
}

.saas-nav-item:hover>.saas-dropdown,
.saas-nav-item:focus-within>.saas-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.saas-dropdown-link {
    display: block;
    padding: 0.55rem 0.85rem;
    font-family: var(--font-body);
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    border-radius: 8px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.saas-dropdown-link:hover,
.saas-dropdown-link--active {
    color: var(--secondary);
    background: var(--primary-dim);
}

.saas-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
    position: relative;
    z-index: 4;
}

.saas-nav-login {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    padding: 0.45rem 0.65rem;
    transition: color 0.25s ease;
}

.saas-nav-login:hover {
    color: var(--secondary);
}

.saas-nav-cta {
    padding: 0.6rem 1.15rem !important;
    font-size: 14px !important;
    white-space: nowrap;
    border-radius: 10px !important;
}

.saas-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: var(--white-color);
    cursor: pointer;
}

.saas-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: #111111;
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.saas-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.saas-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.saas-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.nav-open .saas-header {
    z-index: 1252;
}

/* Hero */
.saas-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow-x: hidden;
    overflow-y: visible;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(184, 251, 4, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(3, 70, 81, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #f6f8fb 0%, var(--white-color) 100%);
}

.saas-hero_dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(3, 70, 81, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.45;
    pointer-events: none;
}

.saas-hero_orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.saas-hero_orb--1 {
    top: 10%;
    right: 5%;
    width: 320px;
    height: 320px;
    background: rgba(184, 251, 4, 0.15);
}

.saas-hero_orb--2 {
    bottom: 15%;
    left: -5%;
    width: 260px;
    height: 260px;
    background: rgba(3, 70, 81, 0.06);
}

.saas-hero .saas-container {
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}

.saas-hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(3, 70, 81, 0.15);
    background: var(--white-color);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.saas-hero_badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
    animation: saas-pulse-dot 2s ease infinite;
}

@keyframes saas-pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.saas-hero_title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.8vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    margin-bottom: 1.25rem;
    max-width: 540px;
}

.saas-hero_gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, #0a6b5c 45%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.saas-hero_sub {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: #5b6472;
    margin-bottom: 1.75rem;
    max-width: 480px;
}

.saas-hero_cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.saas-hero_btn {
    padding: 0.85rem 1.35rem !important;
}

.saas-hero_trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.saas-hero_avatars {
    display: flex;
    align-items: center;
}

.saas-hero_avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white-color);
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.saas-hero_avatars img:first-child {
    margin-left: 0;
}

.saas-hero_avatars-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: -10px;
    border-radius: 50%;
    border: 2px solid var(--white-color);
    background: var(--secondary);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.saas-hero_trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.saas-hero_trust-text strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: #111111;
}

.saas-hero_trust-text span {
    font-size: 13px;
    color: #6b7280;
}

/* Dashboard preview */
.saas-hero_preview {
    position: relative;
    padding: 1.5rem 0.75rem 1.5rem;
    max-width: 100%;
    overflow: visible;
}

.saas-preview_chrome {
    position: relative;
    border-radius: 18px;
    border: 1px solid #e2e5ea;
    background: var(--white-color);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    overflow: visible;
    max-width: 100%;
}

.saas-preview_bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1rem;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}

.saas-preview_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.saas-preview_dot:nth-child(1) {
    background: #fca5a5;
}

.saas-preview_dot:nth-child(2) {
    background: #fcd34d;
}

.saas-preview_dot:nth-child(3) {
    background: #86efac;
}

.saas-preview_url {
    margin-left: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    background: var(--white-color);
    font-family: var(--font-mono);
    font-size: 11px;
    color: #9ca3af;
}

.saas-preview_body {
    display: grid;
    grid-template-columns: 52px 1fr;
    min-height: 280px;
}

.saas-preview_sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem 0.75rem;
    background: #f9fafb;
    border-right: 1px solid #eef0f3;
}

.saas-preview_nav-item {
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
}

.saas-preview_nav-item--active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.saas-preview_main {
    padding: 1.15rem 1.25rem;
}

.saas-preview_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.saas-preview_title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: #111111;
}

.saas-preview_live {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-mono);
    font-size: 10px;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.saas-preview_live i {
    font-size: 6px;
    animation: saas-pulse-dot 1.5s ease infinite;
}

.saas-preview_stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.saas-preview_stat {
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #eef0f3;
    background: #fafbfc;
}

.saas-preview_stat-val {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.saas-preview_stat-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.saas-preview_chart {
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    height: 72px;
    padding: 0.5rem 0.25rem;
    margin-bottom: 0.85rem;
    border-radius: 10px;
    background: linear-gradient(180deg, #f9fafb 0%, var(--white-color) 100%);
    border: 1px solid #eef0f3;
}

.saas-preview_bar-col {
    flex: 1;
    height: var(--h, 50%);
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, rgba(3, 70, 81, 0.25) 0%, rgba(3, 70, 81, 0.08) 100%);
    transition: height 0.6s ease;
}

.saas-preview_bar-col--peak {
    background: linear-gradient(180deg, var(--primary) 0%, rgba(184, 251, 4, 0.35) 100%);
    box-shadow: 0 0 12px var(--primary-glow);
}

.saas-preview_feed {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.saas-preview_feed-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    background: var(--primary-dim);
    font-size: 12px;
    color: #374151;
}

.saas-preview_feed-item i {
    color: var(--secondary);
    font-size: 11px;
}

.saas-preview_float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    border-radius: 12px;
    border: 1px solid #e8eaed;
    background: var(--white-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #111111;
    white-space: nowrap;
    z-index: 5;
}

.saas-preview_float i {
    color: var(--primary);
    font-size: 13px;
}

.saas-preview_float--1 {
    top: 0px;
    right: 5px;
    animation: saas-float-y 4s ease-in-out infinite;
}

.saas-preview_float--2 {
    top: 90%;
    bottom: auto;
    left: -18px;
    animation: saas-float-y 4.5s ease-in-out infinite reverse;
}

@keyframes saas-float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Logo strip */
.saas-hero_logos {
    position: relative;
    z-index: 1;
    margin-top: 2.5rem;
    padding-top: 2.75rem;
    border-top: 1px solid #e8eaed;
    text-align: center;
}

.saas-hero_logos-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 1.15rem;
}

.saas-hero_logos-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}

.saas-hero_logo-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
    opacity: 0.85;
}

.saas-hero_logo-item i {
    font-size: 13px;
    color: var(--secondary);
    opacity: 0.5;
}

body.ai-saas-body .btn-primary,
body.ai-saas-body .btn-ghost {
    font-size: 15px;
    padding: 11px 24px;
    border-radius: 10px;
}

body.ai-saas-body .btn-primary {
    color: #111111 !important;
    background: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 14px rgba(184, 251, 4, 0.25);
}

body.ai-saas-body .btn-primary:hover {
    color: #111111 !important;
    border-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(184, 251, 4, 0.35);
}

body.ai-saas-body .btn-ghost {
    color: var(--secondary) !important;
    background: var(--white-color);
    border: 2px solid rgba(3, 70, 81, 0.22);
}

body.ai-saas-body .btn-ghost:hover {
    color: #111111 !important;
    border-color: var(--primary);
    background: var(--white-color);
}

body.ai-saas-body .saas-hero_btn.btn-primary {
    font-weight: 600;
}

body.ai-saas-body .saas-hero_btn.btn-ghost {
    border-color: #d1d5db;
    color: #374151 !important;
}

body.ai-saas-body .saas-hero_btn.btn-ghost:hover {
    color: var(--secondary) !important;
    border-color: var(--primary);
}

/* Features Section */
.saas-features {
    position: relative;
    padding: 5.5rem 0 6rem;
    background: var(--white-color);
    overflow: hidden;
}

.saas-features_mesh {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 100%);
    height: 360px;
    background: radial-gradient(ellipse at center, rgba(184, 251, 4, 0.12) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.saas-features_dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(3, 70, 81, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.saas-features .saas-container {
    position: relative;
    z-index: 1;
}

.saas-features_intro {
    max-width: 680px;
    margin: 0 auto 3.25rem;
    text-align: center;
}

.saas-features_badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(3, 70, 81, 0.12);
    background: #f6f8fb;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
}

.saas-features_title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111111;
    margin-bottom: 1rem;
}

.saas-features_sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #5b6472;
    margin-bottom: 1.75rem;
}

.saas-features_stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.saas-features_stats li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    min-width: 110px;
}

.saas-features_stats strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111111;
    line-height: 1.2;
}

.saas-features_stats span {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9ca3af;
}

/* Bento grid */
.saas-features_bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(0, auto);
    gap: 1rem;
}

.saas-features_tile {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.45rem;
    border-radius: 18px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.saas-features_tile::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(184, 251, 4, 0.35) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.saas-features_tile:hover {
    border-color: rgba(3, 70, 81, 0.18);
    box-shadow: 0 20px 48px rgba(3, 70, 81, 0.09);
    transform: translateY(-3px);
    color: inherit;
}

.saas-features_tile:hover::before {
    opacity: 1;
}

.saas-features_tile-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #c4c9d0;
}

.saas-features_tile-tag {
    display: inline-flex;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: var(--primary-dim);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
}

.saas-features_tile-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #111111;
    margin-bottom: 0.5rem;
}

.saas-features_tile-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Hero tile */
.saas-features_tile--hero {
    grid-column: 1 / 8;
    grid-row: span 2;
    padding: 1.65rem 1.75rem;
    background: linear-gradient(145deg, var(--white-color) 0%, #f9fbfb 55%, rgba(184, 251, 4, 0.06) 100%);
}

.saas-features_tile--hero .saas-features_tile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.35rem;
}

.saas-features_tile--hero .saas-features_tile-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
}

.saas-features_tile--hero .saas-features_tile-title {
    font-size: 1.45rem;
    margin-bottom: 0.65rem;
}

.saas-features_tile-list {
    list-style: none;
    margin: 1rem 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.saas-features_tile-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 13px;
    color: #5b6472;
}

.saas-features_tile-list i {
    color: var(--secondary);
    font-size: 11px;
}

.saas-features_tile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    transition: gap 0.25s ease;
}

.saas-features_tile:hover .saas-features_tile-link {
    gap: 0.65rem;
}

/* Copilot visual mock */
.saas-features_visual {
    position: relative;
    padding: 0.85rem;
    border-radius: 14px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    box-shadow: 0 8px 28px rgba(3, 70, 81, 0.06);
}

.saas-features_visual-bar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #f0f2f1;
}

.saas-features_visual-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e5e7eb;
}

.saas-features_visual-bar span:first-child {
    background: #ff5f57;
}

.saas-features_visual-bar span:nth-child(2) {
    background: #febc2e;
}

.saas-features_visual-bar span:nth-child(3) {
    background: #28c840;
}

.saas-features_visual-bar em {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 9px;
    font-style: normal;
    color: #9ca3af;
}

.saas-features_chat {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.saas-features_chat-msg {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1.5;
}

.saas-features_chat-msg p {
    margin: 0;
}

.saas-features_chat-msg i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 10px;
}

.saas-features_chat-msg--user {
    background: #f3f4f6;
    color: #374151;
}

.saas-features_chat-msg--user i {
    color: #9ca3af;
}

.saas-features_chat-msg--ai {
    background: var(--primary-dim);
    color: #111111;
    border: 1px solid rgba(184, 251, 4, 0.25);
}

.saas-features_chat-msg--ai i {
    color: var(--secondary);
}

.saas-features_visual-chip {
    position: absolute;
    right: -8px;
    bottom: -8px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: var(--primary);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111111;
    box-shadow: 0 6px 16px rgba(184, 251, 4, 0.35);
}

/* Compact tiles */
.saas-features_tile--compact {
    grid-column: 8 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem 1.4rem;
}

.saas-features_tile--compact .saas-features_tile-num {
    position: absolute;
    top: 1rem;
    right: 1.1rem;
}

.saas-features_tile-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary-dim);
    color: var(--secondary);
    font-size: 17px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.saas-features_tile:hover .saas-features_tile-icon {
    background: var(--primary);
    color: #111111;
}

.saas-features_tile-meta {
    flex: 1;
    min-width: 0;
    padding-right: 1.5rem;
}

.saas-features_tile-arrow {
    position: absolute;
    right: 1.1rem;
    bottom: 1.1rem;
    font-size: 13px;
    color: #c4c9d0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.saas-features_tile--compact:hover .saas-features_tile-arrow {
    color: var(--secondary);
    transform: translate(2px, -2px);
}

/* Small tiles */
.saas-features_tile--sm {
    grid-column: span 4;
    min-height: 148px;
}

.saas-features_tile--sm .saas-features_tile-icon {
    margin-bottom: 1rem;
}

.saas-features_tile--sm .saas-features_tile-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

/* Bottom strip */
.saas-features_strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding: 1.35rem 1.5rem;
    border-radius: 16px;
    border: 1px solid #e8ecea;
    background: linear-gradient(90deg, #f6f8fb 0%, rgba(184, 251, 4, 0.08) 100%);
}

.saas-features_strip-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.saas-features_strip-copy p {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: #111111;
    margin: 0;
}

.saas-features_strip-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* How It Works Section */
.saas-hiw {
    position: relative;
    padding: 5.5rem 0 6rem;
    background: linear-gradient(180deg, #f6f8fb 0%, var(--white-color) 100%);
    overflow: hidden;
}

.saas-hiw_glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(800px, 90vw);
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(3, 70, 81, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.saas-hiw .saas-container {
    position: relative;
    z-index: 1;
}

.saas-hiw_intro {
    max-width: 620px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.saas-hiw_badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(3, 70, 81, 0.12);
    background: var(--white-color);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.saas-hiw_title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111111;
    margin-bottom: 1rem;
}

.saas-hiw_sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #5b6472;
    margin: 0;
}

/* Step track */
.saas-hiw_track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.75rem;
}

.saas-hiw_line {
    position: absolute;
    top: 34px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(184, 251, 4, 0.35) 50%, var(--primary) 100%);
    z-index: 0;
    pointer-events: none;
}

.saas-hiw_step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.saas-hiw_step-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 1.35rem;
    border-radius: 50%;
    background: var(--white-color);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(184, 251, 4, 0.2);
}

.saas-hiw_step-num {
    position: absolute;
    top: -8px;
    right: -4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: var(--secondary);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white-color);
}

.saas-hiw_step-icon {
    font-size: 22px;
    color: var(--secondary);
    line-height: 1;
}

.saas-hiw_step-card {
    width: 100%;
    padding: 1.65rem 1.5rem;
    border-radius: 18px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    text-align: left;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.saas-hiw_step:hover .saas-hiw_step-card {
    border-color: rgba(3, 70, 81, 0.18);
    box-shadow: 0 16px 40px rgba(3, 70, 81, 0.08);
    transform: translateY(-4px);
}

.saas-hiw_step-tag {
    display: inline-flex;
    padding: 0.28rem 0.65rem;
    margin-bottom: 0.75rem;
    border-radius: 999px;
    background: var(--primary-dim);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--secondary);
}

.saas-hiw_step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #111111;
    margin-bottom: 0.6rem;
}

.saas-hiw_step-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: #6b7280;
    margin-bottom: 1rem;
}

.saas-hiw_step-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.saas-hiw_step-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.saas-hiw_step-list i {
    color: var(--secondary);
    font-size: 10px;
}

/* Bottom CTA */
.saas-hiw_foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    border-radius: 18px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    box-shadow: 0 8px 32px rgba(3, 70, 81, 0.05);
}

.saas-hiw_foot-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.saas-hiw_foot-copy strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
}

.saas-hiw_foot-copy span {
    font-family: var(--font-body);
    font-size: 14px;
    color: #6b7280;
}

.saas-hiw_foot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.saas-hiw_btn {
    white-space: nowrap;
}

body.ai-saas-body .saas-hiw_btn.btn-ghost {
    border-color: #d1d5db;
    color: #374151 !important;
    background: var(--white-color);
}

body.ai-saas-body .saas-hiw_btn.btn-ghost:hover {
    color: var(--secondary) !important;
    border-color: var(--primary);
}

/* Integrations Section */
.saas-integ {
    position: relative;
    padding: 5.5rem 0 6rem;
    background: var(--white-color);
    border-top: 1px solid #eef0f2;
    overflow: hidden;
}

.saas-integ_mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(3, 70, 81, 0.05) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.saas-integ .saas-container {
    position: relative;
    z-index: 1;
}

.saas-integ_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem 3rem;
    margin-bottom: 2rem;
}

.saas-integ_intro {
    flex: 1 1 0;
    max-width: 600px;
    min-width: 0;
}

.saas-integ_badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(3, 70, 81, 0.12);
    background: var(--white-color);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.saas-integ_title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111111;
    margin-bottom: 1rem;
}

.saas-integ_sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #5b6472;
    margin: 0;
}

.saas-integ_highlights {
    list-style: none;
    margin: 0.35rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 0 0 auto;
    width: min(100%, 240px);
}

.saas-integ_highlights li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    white-space: nowrap;
}

.saas-integ_highlights strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--secondary);
    line-height: 1;
    flex-shrink: 0;
}

.saas-integ_highlights span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.3;
}

.saas-integ_board {
    padding: 1.35rem;
    margin-bottom: 1.75rem;
    border-radius: 20px;
    border: 1px solid #e8ecea;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(6px);
}

.saas-integ_cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid #eef0f2;
}

.saas-integ_cat {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.8rem;
    border-radius: 999px;
    background: var(--primary-dim);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--secondary);
    line-height: 1;
}

.saas-integ_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    align-items: stretch;
}

.saas-integ_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    min-height: 132px;
    height: 100%;
    padding: 1.15rem 1.1rem;
    border-radius: 14px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    text-decoration: none;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.saas-integ_item:hover {
    border-color: rgba(3, 70, 81, 0.2);
    box-shadow: 0 10px 28px rgba(3, 70, 81, 0.08);
    transform: translateY(-2px);
}

.saas-integ_item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #f6f8fb;
    font-size: 20px;
    color: #374151;
    transition: background 0.3s ease, color 0.3s ease;
}

.saas-integ_item:hover .saas-integ_item-icon {
    background: var(--primary-dim);
    color: var(--secondary);
}

.saas-integ_item-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: auto;
    width: 100%;
    min-width: 0;
}

.saas-integ_item-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    line-height: 1.3;
}

.saas-integ_item-cat {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9ca3af;
    line-height: 1;
}

.saas-integ_api {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 1.35rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(3, 70, 81, 0.1);
    background: linear-gradient(135deg, rgba(3, 70, 81, 0.04) 0%, rgba(184, 251, 4, 0.08) 100%);
}

.saas-integ_api-copy {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 auto;
    min-width: 0;
}

.saas-integ_api-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--secondary);
    color: var(--white-color);
    font-size: 17px;
}

.saas-integ_api-text {
    min-width: 0;
}

.saas-integ_api-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.saas-integ_api-text p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.saas-integ_api-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.65rem;
    flex-shrink: 0;
}

.saas-integ_btn {
    white-space: nowrap;
}

body.ai-saas-body .saas-integ_btn.btn-ghost {
    border-color: #d1d5db;
    color: #374151 !important;
    background: var(--white-color);
}

body.ai-saas-body .saas-integ_btn.btn-ghost:hover {
    color: var(--secondary) !important;
    border-color: var(--primary);
}

/* Pricing Section */
.saas-price {
    position: relative;
    padding: 5.5rem 0 6rem;
    background: linear-gradient(180deg, #f6f8fb 0%, var(--white-color) 100%);
    overflow: hidden;
}

.saas-price_glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 95vw);
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(184, 251, 4, 0.1) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.saas-price .saas-container {
    position: relative;
    z-index: 1;
}

.saas-price_intro {
    max-width: 560px;
    margin: 0 auto 2rem;
    text-align: center;
}

.saas-price_badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(3, 70, 81, 0.12);
    background: var(--white-color);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.saas-price_title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111111;
    margin-bottom: 1rem;
}

.saas-price_sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #5b6472;
    margin: 0;
}

/* Billing toggle */
.saas-price_toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    margin-bottom: 2.5rem;
}

.saas-price_toggle-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    transition: color 0.25s ease;
}

.saas-price_toggle-label.active {
    color: #111111;
    font-weight: 600;
}

.saas-price_save {
    display: inline-flex;
    margin-left: 0.25rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: var(--primary-dim);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--secondary);
    vertical-align: middle;
}

.saas-price_toggle {
    position: relative;
    width: 52px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: #e5e7eb;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.saas-price_toggle.active {
    background: var(--primary);
}

.saas-price_toggle-handle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.saas-price_toggle.active .saas-price_toggle-handle {
    transform: translateX(24px);
}

/* Pricing grid */
.saas-price_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    margin-bottom: 1.75rem;
}

.saas-price_card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    box-shadow: 0 4px 20px rgba(3, 70, 81, 0.04);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.saas-price_card:hover {
    border-color: rgba(3, 70, 81, 0.15);
    box-shadow: 0 14px 40px rgba(3, 70, 81, 0.08);
}

.saas-price_card--featured {
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(184, 251, 4, 0.18);
    transform: translateY(-6px);
}

.saas-price_card--featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 52px rgba(184, 251, 4, 0.22);
}

.saas-price_popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--primary);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #111111;
    white-space: nowrap;
}

.saas-price_popular i {
    font-size: 9px;
}

.saas-price_card-head {
    margin-bottom: 1.25rem;
}

.saas-price_plan {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.4rem;
}

.saas-price_desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.saas-price_amount {
    display: flex;
    align-items: flex-start;
    gap: 0.1rem;
    margin-bottom: 1.35rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid #eef0f2;
}

.saas-price_currency {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    margin-top: 0.35rem;
}

.saas-price_val {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111111;
    line-height: 1;
}

.saas-price_period {
    align-self: flex-end;
    margin-bottom: 0.35rem;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
}

.saas-price_amount--custom {
    align-items: center;
    min-height: 72px;
}

.saas-price_custom {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111111;
    line-height: 1;
}

.saas-price_features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1 1 auto;
}

.saas-price_features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.saas-price_features i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 11px;
    color: var(--secondary);
}

.saas-price_btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.saas-price_note {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    font-family: var(--font-body);
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

.saas-price_note i {
    color: var(--secondary);
    font-size: 12px;
}

/* Testimonials Section */
.saas-ts {
    position: relative;
    padding: 5.5rem 0 6rem;
    background: var(--white-color);
    border-top: 1px solid #eef0f2;
    overflow: hidden;
}

.saas-ts_glow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: min(760px, 90vw);
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(3, 70, 81, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.saas-ts .saas-container {
    position: relative;
    z-index: 1;
}

.saas-ts_head {
    max-width: 620px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.saas-ts_badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(3, 70, 81, 0.12);
    background: var(--white-color);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.saas-ts_title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111111;
    margin-bottom: 1rem;
}

.saas-ts_sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #5b6472;
    margin: 0 0 1.35rem;
}

.saas-ts_trust {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    border: 1px solid #e8ecea;
    background: #fafbfc;
}

.saas-ts_stars {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    color: #f59e0b;
    font-size: 12px;
    line-height: 1;
}

.saas-ts_stars--sm {
    font-size: 10px;
    gap: 0.1rem;
}

.saas-ts_trust-val {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #111111;
}

.saas-ts_trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
}

.saas-ts_trust-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

/* Slider */
.saas-ts_slider {
    margin-bottom: 2rem;
}

.saas-ts_swiper {
    width: 100%;
    padding: 0.75rem 0 1.5rem;
    overflow: hidden;
}

.saas-ts_swiper .swiper-wrapper {
    align-items: stretch;
}

.saas-ts_swiper .swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
}

.saas-ts_swiper .saas-ts_card {
    width: 100%;
    height: 100%;
    opacity: 0.55;
    transform: scale(0.94);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.saas-ts_swiper .swiper-slide-active .saas-ts_card {
    opacity: 1;
    transform: scale(1);
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(184, 251, 4, 0.06) 0%, var(--white-color) 42%);
    box-shadow: 0 14px 40px rgba(184, 251, 4, 0.16);
}



.saas-ts_swiper .swiper-slide-active .saas-ts_card:hover {
    transform: scale(1);
}

.saas-ts_controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 0.25rem;
}

.saas-ts_arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    color: #374151;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.saas-ts_arrow:hover {
    border-color: var(--primary);
    color: var(--secondary);
    background: var(--primary-dim);
    box-shadow: 0 4px 14px rgba(184, 251, 4, 0.15);
}

.saas-ts_arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.saas-ts_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    min-height: 12px;
}

.saas-ts_bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: #d1d5db;
    cursor: pointer;
    opacity: 1;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.saas-ts_bullet.is-active {
    width: 24px;
    background: var(--primary);
}

.saas-ts_progress {
    max-width: 280px;
    height: 3px;
    margin: 1.15rem auto 0;
    border-radius: 999px;
    background: #eef0f2;
    overflow: hidden;
}

.saas-ts_progress-bar {
    display: block;
    height: 100%;
    width: 25%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    transition: width 0.45s ease;
}

.saas-ts_card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.35rem 1.35rem;
    border-radius: 18px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    box-shadow: 0 4px 20px rgba(3, 70, 81, 0.04);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.saas-ts_card:hover {
    border-color: rgba(3, 70, 81, 0.16);
    box-shadow: 0 14px 40px rgba(3, 70, 81, 0.08);
}



.saas-ts_card--featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(184, 251, 4, 0.06) 0%, var(--white-color) 42%);
    box-shadow: 0 12px 36px rgba(184, 251, 4, 0.14);
}

.saas-ts_card--featured:hover {
    box-shadow: 0 16px 44px rgba(184, 251, 4, 0.2);
}

.saas-ts_card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.saas-ts_chip {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: var(--primary-dim);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--secondary);
    white-space: nowrap;
}

.saas-ts_chip strong {
    font-weight: 700;
    margin-right: 0.2rem;
}

.saas-ts_quote {
    flex: 1 1 auto;
    margin: 0 0 1.35rem;
    padding: 0;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-style: normal;
    line-height: 1.75;
    color: #374151;
}

.saas-ts_author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1.15rem;
    border-top: 1px solid #eef0f2;
}

.saas-ts_avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white-color);
    box-shadow: 0 2px 10px rgba(3, 70, 81, 0.1);
}

.saas-ts_author-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.saas-ts_name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    color: #111111;
    line-height: 1.2;
}

.saas-ts_role {
    font-family: var(--font-body);
    font-size: 13px;
    color: #6b7280;
    line-height: 1.3;
}

.saas-ts_foot {
    display: flex;
    justify-content: center;
}

body.ai-saas-body .saas-ts_more.btn-ghost {
    border-color: #d1d5db;
    color: #374151 !important;
    background: var(--white-color);
}

body.ai-saas-body .saas-ts_more.btn-ghost:hover {
    color: var(--secondary) !important;
    border-color: var(--primary);
}

/* ========================
   FAQ SECTION (.saas-faq)
=========================== */
.saas-faq {
    position: relative;
    padding: 5.5rem 0 6rem;
    background: linear-gradient(180deg, var(--white-color) 0%, #f6f8fb 100%);
    border-top: 1px solid #eef0f2;
    overflow: hidden;
}

.saas-faq_glow {
    position: absolute;
    top: -60px;
    right: -120px;
    width: min(520px, 70vw);
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(184, 251, 4, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.saas-faq .saas-container {
    position: relative;
    z-index: 1;
}

.saas-faq_head {
    max-width: 620px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.saas-faq_badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(3, 70, 81, 0.12);
    background: var(--white-color);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.saas-faq_title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111111;
    margin-bottom: 1rem;
}

.saas-faq_sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #5b6472;
    margin: 0;
}

.saas-faq_grid {
    margin-bottom: 2.25rem;
}

.saas-faq_col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.saas-faq_item {
    border-radius: 16px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(3, 70, 81, 0.04);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.saas-faq_item:hover {
    border-color: rgba(3, 70, 81, 0.14);
    box-shadow: 0 10px 28px rgba(3, 70, 81, 0.07);
}

.saas-faq_item.active {
    border-color: var(--primary);
    box-shadow: 0 12px 34px rgba(184, 251, 4, 0.14);
}

.saas-faq_question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: color 0.25s ease;
}

.saas-faq_question-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #111111;
    transition: color 0.25s ease;
}

.saas-faq_question:hover .saas-faq_question-text,
.saas-faq_item.active .saas-faq_question-text {
    color: var(--secondary);
}

.saas-faq_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(3, 70, 81, 0.06);
    color: var(--secondary);
    position: relative;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.saas-faq_question:hover .saas-faq_icon {
    background: rgba(3, 70, 81, 0.1);
}

.saas-faq_item.active .saas-faq_icon {
    background: var(--primary);
    color: #111111;
    box-shadow: 0 0 12px rgba(184, 251, 4, 0.35);
}

.saas-faq_icon i {
    position: absolute;
    font-size: 12px;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.saas-faq_icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.saas-faq_item.active .saas-faq_icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.saas-faq_item.active .saas-faq_icon-minus {
    opacity: 1;
    transform: rotate(0);
}

.saas-faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.saas-faq_answer-inner {
    padding: 0 1.25rem 1.15rem;
}

.saas-faq_answer-inner p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: #5b6472;
    margin: 0;
}

.saas-faq_cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(3, 70, 81, 0.1);
    background: linear-gradient(135deg, rgba(3, 70, 81, 0.04) 0%, rgba(184, 251, 4, 0.08) 100%);
}

.saas-faq_cta-copy {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 auto;
    min-width: 0;
}

.saas-faq_cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--secondary);
    color: var(--white-color);
    font-size: 17px;
}

.saas-faq_cta-text {
    min-width: 0;
}

.saas-faq_cta-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.saas-faq_cta-text p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.saas-faq_cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.saas-faq_cta-btn {
    white-space: nowrap;
}

body.ai-saas-body .saas-faq_cta-btn.btn-ghost {
    border-color: #d1d5db;
    color: #374151 !important;
    background: var(--white-color);
}

body.ai-saas-body .saas-faq_cta-btn.btn-ghost:hover {
    color: var(--secondary) !important;
    border-color: var(--primary);
}

/* ========================
   FOOTER (.saas-footer)
=========================== */
.saas-footer {
    position: relative;
    background: var(--white-color);
    color: #374151;
    padding: 0 0 0;
    margin-top: 0;
    border-top: 1px solid #eef0f2;
    overflow: hidden;
}

.saas-ft-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 90vw);
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(184, 251, 4, 0.14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.saas-footer .saas-container {
    position: relative;
    z-index: 2;
}

/* Top contact bar */
.saas-ft-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0 2.25rem;
    border-bottom: 1px solid #e8ecea;
}

.saas-ft-contact_email,
.saas-ft-contact_phone {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111111;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.25s ease;
}

.saas-ft-contact_email {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: rgba(3, 70, 81, 0.35);
}

.saas-ft-contact_email:hover,
.saas-ft-contact_phone:hover {
    color: var(--secondary);
}

.saas-ft-contact_line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #e8ecea 0%, #d1d5db 50%, #e8ecea 100%);
    min-width: 40px;
}

/* Main columns */
.saas-ft-main {
    padding: 2.75rem 0 2.5rem;
}

.saas-ft-brand_logo {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    margin-bottom: 1.35rem;
    border-radius: 12px;
    background: #04020a;
    border: 1px solid rgba(184, 251, 4, 0.15);
    line-height: 0;
}

.saas-ft-brand_logo img {
    height: 30px;
    width: auto;
    display: block;
}

.saas-ft-brand_desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 1.5rem;
    max-width: 340px;
}

.saas-ft-brand_socials {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.saas-ft-brand_social {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #111111;
    font-size: 15px;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.saas-ft-brand_social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 251, 4, 0.35);
    background: #d4ff4a;
    color: #111111;
}

.saas-ft-col_title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #111111;
    margin-bottom: 0.55rem;
}

.saas-ft-col_bar {
    display: block;
    width: 42px;
    height: 4px;
    border-radius: 4px;
    background: var(--primary);
    margin-bottom: 1.35rem;
}

.saas-ft-col_links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.saas-ft-col_links a {
    font-family: var(--font-body);
    font-size: 15px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.25s ease;
}

.saas-ft-col_links a:hover {
    color: var(--secondary);
}

.saas-ft-col_text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: #6b7280;
    margin-bottom: 1.25rem;
    max-width: 360px;
}

/* Newsletter pill input */
.saas-ft-form {
    position: relative;
    max-width: 400px;
}

.saas-ft-form input {
    width: 100%;
    padding: 0.95rem 3.75rem 0.95rem 1.25rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-family: var(--font-body);
    font-size: 14px;
    color: #111111;
    outline: none;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.saas-ft-form input::placeholder {
    color: #9ca3af;
}

.saas-ft-form input:focus {
    border-color: rgba(3, 70, 81, 0.3);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(184, 251, 4, 0.12);
}

.saas-ft-form button {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: #111111;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.saas-ft-form button:hover {
    background: #d4ff4a;
    transform: translateY(-50%) scale(1.05);
}

/* Bottom watermark + copyright */
.saas-ft-bottom {
    position: relative;
    min-height: 130px;
    padding: 2rem 0 2.25rem;
    border-top: 1px solid #e8ecea;
    overflow: hidden;
}

.saas-ft-watermark {
    position: absolute;
    left: 0;
    bottom: 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 11vw, 7.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: rgba(3, 70, 81, 0.05);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.saas-ft-bottom_copy {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: var(--font-body);
    font-size: 13px;
    color: #9ca3af;
    text-align: right;
}

/* AI SaaS back-to-top */
.saas-ft-topbtn {
    position: fixed;
    right: 30px;
    bottom: 40px;
    z-index: 999;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: #111111;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    box-shadow: 0 8px 20px rgba(184, 251, 4, 0.28);
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.25s ease,
        box-shadow 0.25s ease;
    outline: none;
}

.saas-ft-topbtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.saas-ft-topbtn:hover {
    background: #d4ff4a;
    box-shadow: 0 12px 28px rgba(184, 251, 4, 0.38);
    color: #111111;
}

.saas-ft-topbtn i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.saas-ft-topbtn:hover i {
    transform: translateY(-2px);
}

/* ============================================================
   AIGENIX AI CHATBOT (bot- prefix) - index-3.html
============================================================ */
html:has(body.ai-chatbot-body) {
    overflow-x: clip;
    max-width: 100%;
}

body.ai-chatbot-body {
    color: #374151;
    background: var(--white-color);
    padding: 0 !important;
    overflow-x: clip;
    max-width: 100%;
}

body.ai-chatbot-body #main-content {
    overflow-x: clip;
    max-width: 100%;
}

body.ai-chatbot-body .btn-primary,
body.ai-chatbot-body .btn-ghost {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

body.ai-chatbot-body .btn-primary {
    color: #111111 !important;
    background: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 14px rgba(184, 251, 4, 0.25);
}

body.ai-chatbot-body .btn-primary:hover {
    color: #111111 !important;
    border-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(184, 251, 4, 0.35);
}

body.ai-chatbot-body .btn-ghost {
    color: var(--secondary) !important;
    background: var(--white-color);
    border: 2px solid rgba(184, 251, 4, 0.45);
}

body.ai-chatbot-body .btn-ghost:hover {
    color: var(--secondary) !important;
    border-color: var(--primary);
    background: var(--primary-dim);
}

.bot-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Top bar */
.bot-topbar {
    max-height: 52px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(3, 70, 81, 0.04) 0%, rgba(184, 251, 4, 0.05) 100%);
    border-bottom: 1px solid rgba(3, 70, 81, 0.08);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
        max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.4s ease,
        padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height, opacity, transform;
}

.bot-topbar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.625rem 0;
}

.bot-topbar_contact,
.bot-topbar_social {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bot-topbar_contact li {
    display: flex;
    align-items: center;
}

.bot-topbar_contact li+li::before {
    content: '';
    width: 1px;
    height: 14px;
    margin-right: 0.85rem;
    background: rgba(3, 70, 81, 0.15);
}

.bot-topbar_contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.bot-topbar_contact a:hover {
    color: var(--secondary);
}

.bot-topbar_contact i {
    font-size: 14px;
    color: var(--secondary);
}

.bot-topbar_social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(184, 251, 4, 0.15);
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    text-decoration: none;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.bot-topbar_social a:hover {
    color: var(--primary);
    border-color: rgba(184, 251, 4, 0.4);
    background: #02343c;
    box-shadow: 0 4px 12px rgba(3, 70, 81, 0.2);
}

/* Header */
.bot-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.35s ease;
}

.bot-header.bot-header-scrolled {
    box-shadow: 0 8px 32px rgba(3, 70, 81, 0.08);
}

.bot-header.bot-header-scrolled .bot-topbar {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    padding: 0;
    border-color: transparent;
}

.bot-header_row {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
    padding: 1.15rem 0;
    transition: padding 0.35s ease;
    justify-content: space-between;
}

.bot-header.bot-header-scrolled .bot-header_row {
    padding: 0.85rem 0;
}

@media (prefers-reduced-motion: reduce) {
    .bot-topbar {
        transition-duration: 0.01ms;
        will-change: auto;
    }
}

.bot-nav_logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.55rem 1rem;
    border-radius: 12px;
    background: var(--secondary);
    border: 1px solid rgba(184, 251, 4, 0.15);
    line-height: 0;
    grid-column: 1;
    justify-self: start;
    z-index: 4;
    text-decoration: none;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.bot-nav_logo:hover {
    border-color: rgba(184, 251, 4, 0.4);
    box-shadow: 0 6px 20px rgba(3, 70, 81, 0.25);
}

.bot-nav_logo-img {
    height: 34px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Pill navigation */
.bot-nav_menu {
    grid-column: 2;
    justify-self: center;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
}

.bot-nav_menu .bot-nav_pill,
.bot-nav_menu .bot-nav_list,
.bot-nav_menu .bot-nav_item,
.bot-nav_menu .bot-nav_link {
    pointer-events: auto;
}

.bot-nav_pill {
    padding: 0.5rem 0.65rem;
    border-radius: 999px;
    background: var(--secondary);
    border: 1px solid rgba(184, 251, 4, 0.15);
    box-shadow:
        0 10px 32px rgba(3, 70, 81, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bot-drawer_top,
.bot-drawer_foot {
    display: none;
}

.bot-drawer_logo {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 12px;
    background: var(--secondary);
    border: 1px solid rgba(184, 251, 4, 0.15);
    line-height: 0;
    text-decoration: none;
}

.bot-drawer_logo img {
    height: 30px;
    width: auto;
    display: block;
}

.bot-nav_list {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bot-nav_item {
    position: relative;
}

.bot-nav_item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
    z-index: 11;
}

.bot-nav_link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.bot-nav_link i {
    font-size: 8px;
    opacity: 0.55;
    transition: transform 0.25s ease;
}

.bot-nav_item:hover>.bot-nav_link,
.bot-nav_item.open>.bot-nav_link,
.bot-nav_item--active>.bot-nav_link {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.12);
}

.bot-nav_item--active>.bot-nav_link {
    box-shadow: inset 0 0 0 1px rgba(184, 251, 4, 0.2);
}

.bot-nav_item:hover>.bot-nav_link i,
.bot-nav_item.open>.bot-nav_link i {
    transform: rotate(180deg);
}

.bot-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    padding: 0.5rem;
    list-style: none;
    margin: 0;
    border-radius: 14px;
    border: 1px solid #e8ecea;
    background: var(--white-color);
    box-shadow: 0 18px 48px rgba(3, 70, 81, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
    z-index: 12;
    text-transform: none;
    letter-spacing: normal;
}

.bot-dropdown--mega {
    min-width: 220px;
}

.bot-nav_item:hover>.bot-dropdown,
.bot-nav_item:focus-within>.bot-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.bot-dropdown_link {
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.bot-dropdown_link:hover,
.bot-dropdown_link--active {
    color: var(--secondary);
    background: var(--primary-dim);
}

.bot-nav_actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    z-index: 3;
}

body.ai-chatbot-body .bot-nav_cta.btn-primary {
    padding: 0.75rem 1.35rem;
    font-size: 15px;
    white-space: nowrap;
}

body.ai-chatbot-body .bot-nav_cta.btn-primary i {
    font-size: 11px;
}

.bot-nav_toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(3, 70, 81, 0.15);
    border-radius: 12px;
    background: var(--secondary);
    cursor: pointer;
    flex-shrink: 0;
}

.bot-nav_toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--white-color);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.bot-nav_toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.bot-nav_toggle.active span:nth-child(2) {
    opacity: 0;
}

.bot-nav_toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.bot-hero {
    position: relative;
    padding: 188px 0 100px;
    overflow: hidden;
    background: var(--white-color);
}

.bot-hero_bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bot-hero_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.bot-hero_glow--lime {
    top: 8%;
    right: 5%;
    width: 420px;
    height: 420px;
    background: rgba(184, 251, 4, 0.22);
}

.bot-hero_glow--teal {
    top: 22%;
    right: 18%;
    width: 360px;
    height: 360px;
    background: rgba(3, 70, 81, 0.12);
}

.bot-hero_glow--soft {
    bottom: 5%;
    left: 35%;
    width: 280px;
    height: 280px;
    background: rgba(184, 251, 4, 0.1);
}

.bot-hero .bot-container {
    position: relative;
    z-index: 2;
}

.bot-hero_content {
    max-width: 580px;
}

.bot-hero_title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111111;
    margin-bottom: 1.75rem;
}

.bot-hero_word--teal {
    background: linear-gradient(135deg, var(--secondary) 0%, #0a8a7a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bot-hero_word--lime {
    background: linear-gradient(135deg, #7ab800 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bot-hero_form {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.65rem;
    max-width: 480px;
    margin-bottom: 1.15rem;
}

.bot-hero_input {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: 52px;
    padding: 0 1.25rem;
    border: none;
    border-radius: 14px;
    background: rgba(3, 70, 81, 0.05);
    font-family: var(--font-body);
    font-size: 15px;
    color: #111111;
    outline: none;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.bot-hero_input::placeholder {
    color: #9ca3af;
}

.bot-hero_input:focus {
    background: rgba(184, 251, 4, 0.08);
    box-shadow: 0 0 0 2px rgba(184, 251, 4, 0.35);
}

.bot-hero_submit {
    flex-shrink: 0;
    height: 52px;
    padding: 0 1.35rem;
    font-size: 15px;
    white-space: nowrap;
}

body.ai-chatbot-body .bot-hero_submit.btn-primary {
    width: auto;
}

body.ai-chatbot-body .bot-hero_submit.btn-primary i {
    font-size: 11px;
}

.bot-hero_perks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bot-hero_perks li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.bot-hero_perks i {
    font-size: 15px;
    color: var(--secondary);
    filter: drop-shadow(0 0 4px var(--primary-glow));
}

/* Hero robot visual */
.bot-hero_visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.bot-robot {
    position: relative;
    z-index: 2;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bot-robot-float 5s ease-in-out infinite;
}

@keyframes bot-robot-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.bot-robot_head {
    position: relative;
    width: 200px;
    height: 170px;
    border-radius: 56px 56px 48px 48px;
    background: linear-gradient(165deg, var(--white-color) 0%, #f0f4f3 55%, #e8eeec 100%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 24px 60px rgba(3, 70, 81, 0.14),
        inset 0 -6px 16px rgba(3, 70, 81, 0.04),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
}

.bot-robot_face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    width: 130px;
    height: 88px;
    border-radius: 22px;
    background: linear-gradient(180deg, #0a1a1e 0%, #040f12 100%);
    box-shadow: inset 0 2px 12px rgba(184, 251, 4, 0.08);
}

.bot-robot_eye {
    position: absolute;
    top: 26px;
    width: 22px;
    height: 24px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow:
        0 0 16px var(--primary-glow),
        0 0 32px rgba(184, 251, 4, 0.35);
    animation: bot-eye-glow 2.5s ease infinite;
}

.bot-robot_eye--l {
    left: 28px;
}

.bot-robot_eye--r {
    right: 28px;
}

@keyframes bot-eye-glow {

    0%,
    100% {
        opacity: 1;
        filter: brightness(1);
    }

    50% {
        opacity: 0.85;
        filter: brightness(1.15);
    }
}

.bot-robot_mouth {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 10px var(--primary-glow);
}

.bot-robot_body {
    width: 150px;
    height: 120px;
    margin-top: -10px;
    border-radius: 36px 36px 44px 44px;
    background: linear-gradient(180deg, var(--white-color) 0%, #eef2f0 100%);
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 16px 40px rgba(3, 70, 81, 0.12),
        inset 0 -4px 12px rgba(3, 70, 81, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-robot_core {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 0%, rgba(184, 251, 4, 0.35) 100%);
    box-shadow: 0 0 28px rgba(184, 251, 4, 0.55);
    animation: bot-core-pulse 2s ease infinite;
}

@keyframes bot-core-pulse {

    0%,
    100% {
        box-shadow: 0 0 28px rgba(184, 251, 4, 0.55);
    }

    50% {
        box-shadow: 0 0 40px rgba(184, 251, 4, 0.8);
    }
}

.bot-robot_arm {
    position: absolute;
    top: 58%;
    width: 36px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--white-color) 0%, #e8eeec 100%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(3, 70, 81, 0.08);
}

.bot-robot_arm--l {
    left: -8px;
    transform: rotate(12deg);
}

.bot-robot_arm--r {
    right: -8px;
    transform: rotate(-12deg);
}

.bot-robot_shadow {
    position: absolute;
    bottom: -24px;
    width: 180px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(3, 70, 81, 0.18) 0%, transparent 70%);
}

.bot-hero_bubble {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: 220px;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.45;
    box-shadow: 0 12px 36px rgba(3, 70, 81, 0.12);
    animation: bot-bubble-in 0.8s ease backwards;
}

.bot-hero_bubble p {
    margin: 0;
}

.bot-hero_bubble i {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
    font-size: 14px;
}

.bot-hero_bubble--1 {
    top: 12%;
    right: 4%;
    background: linear-gradient(135deg, var(--secondary) 0%, #056b7a 100%);
    color: var(--white-color);
    border-bottom-right-radius: 4px;
    animation-delay: 0.4s;
}

.bot-hero_bubble--2 {
    bottom: 18%;
    left: 2%;
    background: var(--white-color);
    color: var(--secondary);
    border: 1px solid rgba(3, 70, 81, 0.1);
    border-bottom-left-radius: 4px;
    animation-delay: 0.7s;
}

@keyframes bot-bubble-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ========================
   TRUSTED LOGOS (.bot-trust)
=========================== */
.bot-trust {
    position: relative;
    padding: 2.75rem 0 3.25rem;
    background: var(--white-color);
    overflow: hidden;
}

.bot-trust::before,
.bot-trust::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(140px, 18vw);
    z-index: 2;
    pointer-events: none;
}

.bot-trust::before {
    left: 0;
    background: linear-gradient(90deg, var(--white-color) 15%, transparent 100%);
}

.bot-trust::after {
    right: 0;
    background: linear-gradient(270deg, var(--white-color) 15%, transparent 100%);
}

.bot-trust_label {
    margin: 0;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
}

.bot-trust_marquee {
    margin-top: 1.35rem;
    overflow: hidden;
}

.bot-trust_track {
    display: flex;
    width: max-content;
    flex-wrap: nowrap;
    animation: bot-trust-scroll 30s linear infinite;
}

.bot-trust_group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-right: 1.25rem;
    flex-shrink: 0;
}

.bot-trust_logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    background: rgba(3, 70, 81, 0.04);
    border: 1px solid rgba(3, 70, 81, 0.08);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background-color 0.25s ease;
}

.bot-trust_logo i {
    font-size: 14px;
    color: var(--secondary);
    opacity: 0.75;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.bot-trust_logo:hover {
    color: var(--secondary);
    background: rgba(3, 70, 81, 0.06);
    border-color: rgba(184, 251, 4, 0.35);
}

.bot-trust_logo:hover i {
    color: var(--primary);
    opacity: 1;
}

@keyframes bot-trust-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

/* ========================
   FEATURES (.bot-features)
=========================== */
.bot-features {
    position: relative;
    padding: 100px 0 100px;
    background: #0a1214;
    overflow: hidden;
}

.bot-features_curve {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    background: var(--white-color);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(1.18);
    pointer-events: none;
    z-index: 1;
}

.bot-features .bot-container {
    position: relative;
    z-index: 2;
}

/* Intro */
.bot-features_intro {
    max-width: 680px;
    margin: 0 auto 3.5rem;
    padding-top: 3rem;
    text-align: center;
}

.bot-features_kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.bot-features_kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
    animation: bot-feat-pulse 2s ease-in-out infinite;
}

@keyframes bot-feat-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.bot-features_title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.bot-features_desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 auto;
    max-width: 520px;
}

/* Spine deck */
.bot-features_deck {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    padding-left: 2.5rem;
}

.bot-features_spine {
    position: absolute;
    left: 1.15rem;
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(184, 251, 4, 0.35) 8%,
            rgba(184, 251, 4, 0.35) 92%,
            transparent 100%);
    border-radius: 2px;
}

.bot-features_lane {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.bot-features_node {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    padding-top: 2rem;
    margin-left: -2.5rem;
}

.bot-features_node span {
    width: 2.3rem;
    height: 2.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0a1214;
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(184, 251, 4, 0.12), 0 0 20px rgba(184, 251, 4, 0.2);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

/* Tile */
.bot-features_tile {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bot-features_lane:hover .bot-features_tile {
    border-color: rgba(184, 251, 4, 0.28);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(184, 251, 4, 0.08);
    transform: translateX(6px);
}

.bot-features_lane--flip .bot-features_tile {
    grid-template-columns: 1fr 220px;
}

.bot-features_lane--flip .bot-features_art {
    order: 2;
}

.bot-features_lane--flip .bot-features_copy {
    order: 1;
}

.bot-features_lane--flip:hover .bot-features_tile {
    transform: translateX(-6px);
}

/* Art panel */
.bot-features_art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: linear-gradient(160deg, rgba(3, 70, 81, 0.45) 0%, rgba(3, 70, 81, 0.15) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.bot-features_lane--flip .bot-features_art {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.bot-features_art-core {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #111111;
    font-size: 20px;
    box-shadow: 0 0 28px rgba(184, 251, 4, 0.4);
}

.bot-features_art-core--sm {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

/* Art stage - centers orbit & docs graphics */
.bot-features_art-stage {
    position: relative;
    flex-shrink: 0;
}

.bot-features_art--orbit .bot-features_art-stage {
    width: 152px;
    height: 152px;
}

.bot-features_art--docs .bot-features_art-stage {
    width: 128px;
    height: 112px;
}

/* Radar art */
.bot-features_art--radar .bot-features_art-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(184, 251, 4, 0.25);
    animation: bot-feat-radar 3s ease-out infinite;
}

.bot-features_art-ring--1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.bot-features_art-ring--2 {
    width: 120px;
    height: 120px;
    animation-delay: 0.6s;
}

.bot-features_art-ring--3 {
    width: 160px;
    height: 160px;
    animation-delay: 1.2s;
}

@keyframes bot-feat-radar {
    0% {
        opacity: 0.8;
        transform: scale(0.6);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Orbit art */
.bot-features_art--orbit .bot-features_art-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 126px;
    height: 126px;
    margin: -63px 0 0 -63px;
    border-radius: 50%;
    border: 1px dashed rgba(184, 251, 4, 0.38);
    z-index: 1;
}

.bot-features_art--orbit .bot-features_art-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.bot-features_art--orbit .bot-features_art-sat {
    position: absolute;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--primary);
    font-size: 12px;
    z-index: 3;
}

.bot-features_art--orbit .bot-features_art-sat--1 {
    top: calc(50% - 79px);
    left: calc(50% - 16px);
}

.bot-features_art--orbit .bot-features_art-sat--2 {
    top: calc(50% - 16px);
    left: calc(50% + 47px);
}

.bot-features_art--orbit .bot-features_art-sat--3 {
    top: calc(50% + 47px);
    left: calc(50% - 16px);
}

.bot-features_art--orbit .bot-features_art-sat--4 {
    top: calc(50% - 16px);
    left: calc(50% - 79px);
}

/* Relay art */
.bot-features_art--relay {
    gap: 0;
}

.bot-features_art-agent {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 18px;
    z-index: 2;
}

.bot-features_art-agent--bot {
    background: var(--primary);
    color: #111111;
    box-shadow: 0 0 20px rgba(184, 251, 4, 0.35);
}

.bot-features_art-agent--human {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-color);
}

.bot-features_art-path {
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(255, 255, 255, 0.4));
    position: relative;
}

.bot-features_art-path::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(255, 255, 255, 0.5);
}

/* Docs art */
.bot-features_art--docs .bot-features_art-doc {
    position: absolute;
    width: 46px;
    height: 58px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    top: 50%;
    left: 50%;
}

.bot-features_art--docs .bot-features_art-doc--1 {
    z-index: 1;
    transform: translate(calc(-50% - 16px), calc(-50% - 4px)) rotate(-14deg);
}

.bot-features_art--docs .bot-features_art-doc--2 {
    z-index: 2;
    transform: translate(-50%, calc(-50% - 10px)) rotate(4deg);
    background: rgba(184, 251, 4, 0.12);
    border-color: rgba(184, 251, 4, 0.28);
    box-shadow: 0 4px 16px rgba(184, 251, 4, 0.12);
}

.bot-features_art--docs .bot-features_art-doc--3 {
    z-index: 1;
    transform: translate(calc(-50% + 14px), calc(-50% - 6px)) rotate(16deg);
}

.bot-features_art--docs .bot-features_art-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 38px;
    background: linear-gradient(180deg, var(--primary), transparent);
    transform: translate(8px, -18px) rotate(32deg);
    transform-origin: top center;
    opacity: 0.65;
    z-index: 3;
}

.bot-features_art--docs .bot-features_art-core--sm {
    position: absolute;
    top: auto;
    left: auto;
    right: 0;
    bottom: 2px;
    z-index: 4;
    transform: none;
}

/* Chart art */
.bot-features_art--chart {
    align-items: flex-end;
    gap: 6px;
    padding: 1.5rem 1.75rem 1.25rem;
}

.bot-features_art-bar {
    width: 14px;
    height: var(--h, 50%);
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(3, 70, 81, 0.8) 100%);
    animation: bot-feat-bar 2.4s ease-in-out infinite alternate;
}

.bot-features_art-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.bot-features_art-bar:nth-child(3) {
    animation-delay: 0.4s;
}

.bot-features_art-bar:nth-child(4) {
    animation-delay: 0.6s;
}

.bot-features_art-bar:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes bot-feat-bar {
    from {
        opacity: 0.65;
    }

    to {
        opacity: 1;
    }
}

.bot-features_art-chart-line {
    position: absolute;
    bottom: 1.25rem;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

/* Globe art */
.bot-features_art-globe {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(184, 251, 4, 0.3);
    background:
        radial-gradient(circle at 35% 35%, rgba(184, 251, 4, 0.15) 0%, transparent 50%),
        rgba(3, 70, 81, 0.3);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.bot-features_art-lang {
    position: absolute;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    color: var(--primary);
}

.bot-features_art-lang--1 {
    top: 20%;
    left: 22%;
}

.bot-features_art-lang--2 {
    top: 18%;
    right: 20%;
}

.bot-features_art-lang--3 {
    bottom: 22%;
    right: 22%;
}

.bot-features_art-lang--4 {
    bottom: 20%;
    left: 20%;
}

/* Copy panel */
.bot-features_copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.75rem 2rem;
}

.bot-features_copy-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white-color);
    margin-bottom: 0.55rem;
    line-height: 1.25;
}

.bot-features_copy-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
    margin: 0 0 1rem;
}

.bot-features_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bot-features_tags li {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(184, 251, 4, 0.1);
    border: 1px solid rgba(184, 251, 4, 0.22);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--primary);
}

/* Footer band */
.bot-features_foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1.35rem 1.65rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bot-features_foot-stats {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bot-features_foot-stats li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0 1.75rem;
    text-align: center;
}

.bot-features_foot-stats li:first-child {
    padding-left: 0;
}

.bot-features_foot-stats li+li {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.bot-features_foot-stats strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white-color);
    line-height: 1.1;
}

.bot-features_foot-stats span {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

body.ai-chatbot-body .bot-features_foot-btn.btn-primary {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.85rem 1.5rem;
    font-size: 14px;
}

/* ========================
   HOW IT WORKS (.bot-hiw)
=========================== */
.bot-hiw {
    position: relative;
    padding: 100px 0 96px;
    background: #f8faf9;
    overflow: hidden;
}

.bot-hiw_dots {
    position: absolute;
    width: 220px;
    height: 220px;
    pointer-events: none;
    opacity: 0.45;
    background-image: radial-gradient(rgba(3, 70, 81, 0.22) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.bot-hiw_dots--left {
    top: 8%;
    left: -4%;
}

.bot-hiw_dots--right {
    bottom: 10%;
    right: -4%;
}

.bot-hiw .bot-container {
    position: relative;
    z-index: 2;
}

/* Intro */
.bot-hiw_intro {
    max-width: 640px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.bot-hiw_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.15rem;
    border-radius: 999px;
    background: var(--white-color);
    border: 1px solid rgba(184, 251, 4, 0.55);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    box-shadow: 0 4px 16px rgba(3, 70, 81, 0.06);
}

.bot-hiw_badge i {
    font-size: 10px;
    color: var(--primary);
}

.bot-hiw_title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #111111;
    margin-bottom: 1rem;
}

.bot-hiw_desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
}

/* Cards grid */
.bot-hiw_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: end;
    padding-bottom: 1.75rem;
    margin-bottom: 2.25rem;
}

.bot-hiw_card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 2.5rem 1.65rem 3.25rem;
    border-radius: 24px;
    background: linear-gradient(165deg, #056b7a 0%, var(--secondary) 48%, #02343c 100%);
    border: 1px solid rgba(184, 251, 4, 0.14);
    box-shadow:
        0 16px 40px rgba(3, 70, 81, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: visible;
    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.bot-hiw_card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at 50% 0%, rgba(184, 251, 4, 0.1) 0%, transparent 58%);
    pointer-events: none;
}

.bot-hiw_card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 251, 4, 0.32);
    box-shadow:
        0 24px 52px rgba(3, 70, 81, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bot-hiw_card--featured {
    min-height: 400px;
    padding: 2.85rem 1.75rem 3.5rem;
    transform: translateY(-32px);
    border-color: rgba(184, 251, 4, 0.38);
    box-shadow:
        0 28px 64px rgba(3, 70, 81, 0.32),
        0 0 0 1px rgba(184, 251, 4, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bot-hiw_card--featured::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(184, 251, 4, 0.16) 0%, transparent 62%);
}

.bot-hiw_card--featured:hover {
    transform: translateY(-40px);
}

.bot-hiw_card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.bot-hiw_card-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 26px;
    box-shadow: 0 0 24px rgba(184, 251, 4, 0.18);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.bot-hiw_card:hover .bot-hiw_card-icon {
    background: rgba(184, 251, 4, 0.08);
    box-shadow: 0 0 32px rgba(184, 251, 4, 0.28);
    transform: translateY(-2px);
}

.bot-hiw_card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.bot-hiw_card--featured .bot-hiw_card-title {
    font-size: 1.35rem;
}

.bot-hiw_card-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
    max-width: 280px;
}

.bot-hiw_card-step {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #081014;
    border: 2px solid rgba(255, 255, 255, 0.28);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--white-color);
    transform: translate(-50%, 50%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.bot-hiw_card:hover .bot-hiw_card-step,
.bot-hiw_card--featured .bot-hiw_card-step {
    border-color: rgba(184, 251, 4, 0.55);
    background: #0a1214;
    box-shadow: 0 8px 24px rgba(184, 251, 4, 0.2);
}

/* Footer CTA line */
.bot-hiw_foot {
    text-align: center;
    padding-top: 0.5rem;
}

.bot-hiw_foot p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

.bot-hiw_foot a {
    font-weight: 600;
    color: #5a7a00;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--primary);
    transition: color 0.25s ease;
}

.bot-hiw_foot a:hover {
    color: var(--secondary);
}

/* ========================
   INTEGRATIONS (.bot-integ)
=========================== */
.bot-integ {
    position: relative;
    padding: 100px 0 96px;
    background: var(--white-color);
    overflow: hidden;
}

.bot-integ_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.bot-integ_glow--lime {
    top: -10%;
    right: -8%;
    width: 420px;
    height: 420px;
    background: rgba(184, 251, 4, 0.1);
}

.bot-integ_glow--teal {
    bottom: -15%;
    left: -10%;
    width: 460px;
    height: 460px;
    background: rgba(3, 70, 81, 0.08);
}

.bot-integ .bot-container {
    position: relative;
    z-index: 2;
}

/* Header */
.bot-integ_head {
    max-width: 620px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.bot-integ_kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.15rem;
    border-radius: 999px;
    background: rgba(3, 70, 81, 0.05);
    border: 1px solid rgba(3, 70, 81, 0.1);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
}

.bot-integ_kicker i {
    font-size: 10px;
    color: var(--primary);
}

.bot-integ_title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111111;
    margin-bottom: 1rem;
}

.bot-integ_desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
}

/* Hub bridge layout */
.bot-integ_bridge-wrap {
    position: relative;
    margin-bottom: 2.5rem;
}

.bot-integ_flow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
}

.bot-integ_flow-lines {
    opacity: 0;
    transition: opacity 0.45s ease;
}

.bot-integ_bridge-wrap--flow .bot-integ_flow-lines {
    opacity: 0;
}

.bot-integ_bridge-wrap--flow-ready .bot-integ_flow-lines {
    opacity: 1;
}

.bot-integ_flow-track {
    fill: none;
    stroke: rgba(3, 70, 81, 0.14);
    stroke-width: 1.5;
    stroke-linecap: round;
}

.bot-integ_flow-pulse {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 5 18;
    animation: bot-integ-flow-dash 1.6s linear infinite;
    animation-delay: var(--flow-delay, 0s);
}

.bot-integ_flow-dot {
    fill: var(--primary);
    filter: drop-shadow(0 0 5px rgba(184, 251, 4, 0.85));
}

.bot-integ_flow-dot--soft {
    fill: rgba(184, 251, 4, 0.45);
    filter: none;
}

@keyframes bot-integ-flow-dash {
    to {
        stroke-dashoffset: -23;
    }
}

.bot-integ_bridge {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1.5rem 2rem;
    align-items: center;
    margin-bottom: 0;
}

.bot-integ_side {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.bot-integ_side--left {
    align-items: flex-end;
}

.bot-integ_side--right {
    align-items: flex-start;
}

.bot-integ_link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 240px;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: #f8faf9;
    border: 1px solid rgba(3, 70, 81, 0.08);
    text-decoration: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.bot-integ_side--left .bot-integ_link {
    flex-direction: row-reverse;
    text-align: right;
}

.bot-integ_bridge-wrap--flow .bot-integ_link::after {
    display: none;
}

.bot-integ_side--left .bot-integ_link::after,
.bot-integ_side--right .bot-integ_link::after {
    content: "";
    position: absolute;
    top: 50%;
    width: clamp(12px, 2.5vw, 28px);
    height: 1px;
    background: linear-gradient(90deg, rgba(3, 70, 81, 0.08), rgba(184, 251, 4, 0.55));
    pointer-events: none;
}

.bot-integ_side--left .bot-integ_link::after {
    right: calc(-1 * clamp(12px, 2.5vw, 28px));
}

.bot-integ_side--right .bot-integ_link::after {
    left: calc(-1 * clamp(12px, 2.5vw, 28px));
    background: linear-gradient(270deg, rgba(3, 70, 81, 0.08), rgba(184, 251, 4, 0.55));
}

.bot-integ_link:hover {
    transform: translateY(-3px);
    background: var(--white-color);
    border-color: rgba(184, 251, 4, 0.45);
    box-shadow: 0 12px 32px rgba(3, 70, 81, 0.08);
}

.bot-integ_link-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.1);
    color: var(--secondary);
    font-size: 18px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.bot-integ_link:hover .bot-integ_link-icon {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white-color);
}

.bot-integ_link-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.bot-integ_link-meta strong {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
}

.bot-integ_link-meta span {
    font-family: var(--font-body);
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Central hub */
.bot-integ_hub {
    position: relative;
    width: 196px;
    height: 196px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-integ_hub-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(184, 251, 4, 0.2);
    animation: bot-integ-pulse 3s ease-out infinite;
}

.bot-integ_hub-ring--1 {
    inset: 0;
    animation-delay: 0s;
}

.bot-integ_hub-ring--2 {
    inset: -14px;
    animation-delay: 0.8s;
}

@keyframes bot-integ-pulse {
    0% {
        opacity: 0.7;
        transform: scale(0.92);
    }

    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

.bot-integ_hub-core {
    position: relative;
    z-index: 2;
    width: 132px;
    height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 28px;
    background: linear-gradient(145deg, #056b7a 0%, var(--secondary) 55%, #02343c 100%);
    border: 1px solid rgba(184, 251, 4, 0.25);
    box-shadow:
        0 20px 48px rgba(3, 70, 81, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: center;
}

.bot-integ_hub-core i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.bot-integ_hub-core strong {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.2;
}

.bot-integ_hub-core span {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* Belt row */
.bot-integ_belt {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 2.5rem;
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(3, 70, 81, 0.04) 0%, rgba(184, 251, 4, 0.06) 100%);
    border: 1px solid rgba(3, 70, 81, 0.08);
}

.bot-integ_belt-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    white-space: nowrap;
}

.bot-integ_belt-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bot-integ_belt-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: var(--white-color);
    border: 1px solid rgba(3, 70, 81, 0.08);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.bot-integ_belt-list a i {
    font-size: 13px;
    color: var(--secondary);
}

.bot-integ_belt-list a:hover {
    border-color: rgba(184, 251, 4, 0.5);
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Dev / API strip */
.bot-integ_dev {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 22px;
    background: #0a1214;
    border: 1px solid rgba(184, 251, 4, 0.12);
}

.bot-integ_dev-code {
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.bot-integ_dev-bar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bot-integ_dev-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.bot-integ_dev-bar span:first-child {
    background: #ff5f57;
}

.bot-integ_dev-bar span:nth-child(2) {
    background: #febc2e;
}

.bot-integ_dev-bar span:nth-child(3) {
    background: #28c840;
}

.bot-integ_dev-bar em {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 10px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.4);
}

.bot-integ_dev-code pre {
    margin: 0;
    padding: 1rem 1.1rem 1.15rem;
    overflow-x: auto;
}

.bot-integ_dev-code code {
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    white-space: pre;
}

.bot-integ_dev-method {
    color: var(--primary);
    font-weight: 600;
}

.bot-integ_dev-key {
    color: #7dd3fc;
}

.bot-integ_dev-str {
    color: #fbbf24;
}

.bot-integ_dev-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white-color);
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.bot-integ_dev-copy p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
    margin: 0 0 1.35rem;
}

.bot-integ_dev-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

body.ai-chatbot-body .bot-integ_dev-btn.btn-primary,
body.ai-chatbot-body .bot-integ_dev-btn.btn-ghost {
    font-size: 14px;
    padding: 0.8rem 1.25rem;
}

body.ai-chatbot-body .bot-integ_dev-btn.btn-ghost {
    color: var(--white-color) !important;
    border-color: rgba(255, 255, 255, 0.22);
    background: transparent;
}

body.ai-chatbot-body .bot-integ_dev-btn.btn-ghost:hover {
    border-color: var(--primary);
    background: rgba(184, 251, 4, 0.08);
    color: var(--black) !important;
}

/* ========================
   PRICING (.bot-price)
=========================== */
.bot-price {
    position: relative;
    padding: 120px 0 120px;
    background: #0a1214;
    overflow: hidden;
}

.bot-price_curve {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 96px;
    background: var(--white-color);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(1.18);
    pointer-events: none;
    z-index: 1;
}

.bot-price_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.bot-price_glow--lime {
    top: 8%;
    right: -6%;
    width: 380px;
    height: 380px;
    background: rgba(184, 251, 4, 0.07);
}

.bot-price_glow--teal {
    bottom: -8%;
    left: -8%;
    width: 420px;
    height: 420px;
    background: rgba(3, 70, 81, 0.22);
}

.bot-price .bot-container {
    position: relative;
    z-index: 2;
}

.bot-price_layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3.5rem 4rem;
    align-items: start;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

/* Intro column */
.bot-price_intro {
    max-width: 420px;
    padding-top: 0.25rem;
}

.bot-price_kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.15rem;
    border-radius: 999px;
    background: rgba(184, 251, 4, 0.08);
    border: 1px solid rgba(184, 251, 4, 0.18);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.bot-price_kicker i {
    font-size: 10px;
    color: var(--primary);
}

.bot-price_title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 2.65rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--white-color);
    margin-bottom: 1.35rem;
}

.bot-price_desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
    margin: 0 0 1rem;
}

.bot-price_desc:last-of-type {
    margin-bottom: 1.75rem;
}

.bot-price_highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.bot-price_highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
}

.bot-price_check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(184, 251, 4, 0.12);
    border: 1px solid rgba(184, 251, 4, 0.28);
    color: var(--primary);
    font-size: 10px;
}

/* Tier rows */
.bot-price_tiers {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.bot-price_tier {
    position: relative;
    display: grid;
    grid-template-columns: minmax(140px, 0.9fr) minmax(0, 1.4fr) minmax(130px, 0.75fr);
    gap: 1.25rem 1.5rem;
    align-items: center;
    padding: 1.35rem 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.bot-price_tier:hover {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(184, 251, 4, 0.22);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.bot-price_tier--featured {
    background: linear-gradient(135deg, rgba(3, 70, 81, 0.35) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(184, 251, 4, 0.35);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(184, 251, 4, 0.12);
}

.bot-price_tier--featured:hover {
    border-color: rgba(184, 251, 4, 0.5);
    box-shadow:
        0 16px 48px rgba(3, 70, 81, 0.28),
        inset 0 1px 0 rgba(184, 251, 4, 0.18);
}

.bot-price_badge {
    position: absolute;
    top: -0.55rem;
    right: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--primary);
    color: #111111;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bot-price_badge i {
    font-size: 8px;
}

.bot-price_plan {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white-color);
    margin: 0 0 0.35rem;
    line-height: 1.25;
}

.bot-price_plan-note {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.bot-price_tier-feats {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.15rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.bot-price_tier-feats li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 0.35rem;
}

.bot-price_tier-feats li:last-child {
    margin-bottom: 0;
}

.bot-price_tier-feats li i {
    flex-shrink: 0;
    margin-top: 0.2em;
    font-size: 12px;
    color: var(--primary);
    opacity: 0.85;
}

.bot-price_tier-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.85rem;
    text-align: right;
}

.bot-price_amount {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white-color);
    margin: 0;
    line-height: 1.1;
    white-space: nowrap;
}

.bot-price_tier--featured .bot-price_amount {
    color: var(--primary);
}

.bot-price_currency {
    font-size: 0.72em;
    vertical-align: top;
    margin-right: 0.05em;
    color: rgba(255, 255, 255, 0.75);
}

.bot-price_tier--featured .bot-price_currency {
    color: rgba(184, 251, 4, 0.75);
}

.bot-price_period {
    font-size: 0.48em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0;
}

.bot-price_tier--featured .bot-price_period {
    color: rgba(184, 251, 4, 0.55);
}

.bot-price_amount--custom {
    font-size: clamp(1.45rem, 2.2vw, 1.75rem);
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.92);
}

body.ai-chatbot-body .bot-price_btn.btn-primary,
body.ai-chatbot-body .bot-price_btn.btn-ghost {
    font-size: 14px;
    padding: 0.72rem 1.15rem;
    white-space: nowrap;
}

body.ai-chatbot-body .bot-price_tier .bot-price_btn.btn-ghost {
    color: var(--white-color) !important;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
}

body.ai-chatbot-body .bot-price_tier .bot-price_btn.btn-ghost:hover {
    border-color: var(--primary);
    background: rgba(184, 251, 4, 0.08);
    color: var(--black) !important;
}

body.ai-chatbot-body .bot-price_tier--featured .bot-price_btn.btn-primary {
    color: #111111 !important;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 18px rgba(184, 251, 4, 0.28);
}

body.ai-chatbot-body .bot-price_tier--featured .bot-price_btn.btn-primary:hover {
    border-color: var(--white-color);
    color: #111111 !important;
    box-shadow: 0 6px 24px rgba(184, 251, 4, 0.38);
}

.bot-price_exit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 88px;
    background: var(--white-color);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scaleX(1.18);
    pointer-events: none;
    z-index: 1;
}

/* ========================
   TESTIMONIALS (.bot-ts)
=========================== */
.bot-ts {
    position: relative;
    padding: 88px clamp(1rem, 3vw, 2rem) 110px;
    background: var(--white-color);
    overflow: visible;
}

.bot-ts_grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(3, 70, 81, 0.11) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.55;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 85% 70% at 50% 42%, #000 25%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 42%, #000 25%, transparent 78%);
}

.bot-ts_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.bot-ts_glow--lime {
    top: 10%;
    left: -8%;
    width: 320px;
    height: 320px;
    background: rgba(184, 251, 4, 0.12);
}

.bot-ts_glow--teal {
    bottom: 8%;
    right: -6%;
    width: 340px;
    height: 340px;
    background: rgba(3, 70, 81, 0.07);
}

.bot-ts .bot-container {
    position: relative;
    z-index: 2;
    overflow: visible;
}

.bot-ts_head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.bot-ts_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.15rem;
    border-radius: 999px;
    background: rgba(3, 70, 81, 0.04);
    border: 1px solid rgba(3, 70, 81, 0.22);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
}

.bot-ts_badge i {
    font-size: 10px;
    color: var(--secondary);
}

.bot-ts_title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #111111;
    margin: 0;
}

.bot-ts_stage {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 5vw, 4.5rem);
    overflow: visible;
}

.bot-ts_swiper.swiper {
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
}

.bot-ts_swiper {
    width: 100%;
    padding: 2.75rem 0 1.25rem;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.bot-ts_swiper.bot-ts_swiper--ready {
    opacity: 1;
    visibility: visible;
}

.bot-ts_swiper .swiper-wrapper {
    align-items: stretch;
}

.bot-ts_swiper .swiper-slide {
    width: clamp(252px, calc((100vw - 15rem) / 2.85), 330px);
    max-width: calc(100vw - 4rem);
    height: auto;
    display: flex;
    box-sizing: border-box;
    padding: 1rem 0.35rem;
    overflow: visible;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.bot-ts_swiper .swiper-slide-prev,
.bot-ts_swiper .swiper-slide-next {
    opacity: 0.92;
}

.bot-ts_swiper .swiper-slide-active {
    opacity: 1;
}

.bot-ts_card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 288px;
    padding: 1.85rem 1.75rem 1.65rem;
    border-radius: 20px;
    background: linear-gradient(145deg, #045a66 0%, var(--secondary) 52%, #023840 100%);
    border: 1px solid rgba(3, 70, 81, 0.45);
    box-shadow: 0 20px 48px rgba(3, 70, 81, 0.22);
    transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.45s ease, opacity 0.4s ease;
    transform-origin: center center;
}

.bot-ts_swiper .swiper-slide-prev .bot-ts_card,
.bot-ts_swiper .swiper-slide-next .bot-ts_card {
    opacity: 0.9;
}

.bot-ts_swiper .swiper-slide-prev .bot-ts_card {
    transform: rotate(-5deg) scale(0.94);
    transform-origin: right center;
}

.bot-ts_swiper .swiper-slide-next .bot-ts_card {
    transform: rotate(5deg) scale(0.94);
    transform-origin: left center;
}

.bot-ts_swiper .swiper-slide-active .bot-ts_card {
    opacity: 1;
    border-color: rgba(184, 251, 4, 0.28);
    box-shadow:
        0 28px 56px rgba(3, 70, 81, 0.32),
        0 0 0 1px rgba(184, 251, 4, 0.16);
    transform: rotate(0deg) scale(1);
}

.bot-ts_quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1.35rem;
    border-radius: 50%;
    border: 1.5px solid rgba(184, 251, 4, 0.45);
    background: rgba(184, 251, 4, 0.1);
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.bot-ts_swiper .swiper-slide-active .bot-ts_quote {
    border-color: rgba(184, 251, 4, 0.7);
    background: rgba(184, 251, 4, 0.16);
}

.bot-ts_text {
    flex: 1;
    margin: 0 0 1.65rem;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.88);
}

.bot-ts_author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: auto;
}

.bot-ts_name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.02em;
    color: var(--white-color);
}

.bot-ts_role {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
}

.bot-ts_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    margin-top: 2.35rem;
}

.bot-ts_bullet {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(3, 70, 81, 0.16);
    cursor: default;
    pointer-events: none;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bot-ts_bullet.is-active {
    width: 11px;
    height: 11px;
    background: transparent;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 0 3px rgba(3, 70, 81, 0.14);
}

/* ========================
   FOOTER (.bot-footer)
=========================== */
.bot-footer {
    position: relative;
    background: #12151a;
    color: rgba(255, 255, 255, 0.72);
    padding: 0;
    margin-top: 0;
    overflow: hidden;
}

.bot-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 100%);
    height: 280px;
    background: radial-gradient(ellipse at center top, rgba(3, 70, 81, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.bot-footer .bot-container {
    position: relative;
    z-index: 2;
}

/* Top bar - logo + contact blocks */
.bot-ft_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3.5rem 0 2.75rem;
}

.bot-ft_logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.45rem 0.85rem;
    border-radius: 12px;
    background: var(--secondary);
    border: 1px solid rgba(184, 251, 4, 0.12);
    line-height: 0;
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.bot-ft_logo:hover {
    border-color: rgba(184, 251, 4, 0.28);
    box-shadow: 0 8px 24px rgba(3, 70, 81, 0.35);
}

.bot-ft_logo img {
    height: 30px;
    width: auto;
    display: block;
}

.bot-ft_contacts {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.bot-ft_contact {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.25s ease;
}

.bot-ft_contact:hover {
    opacity: 0.88;
}

.bot-ft_contact-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white-color);
    font-size: 18px;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.bot-ft_contact:hover .bot-ft_contact-icon {
    border-color: var(--primary);
    background: rgba(184, 251, 4, 0.08);
    color: var(--primary);
}

.bot-ft_contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bot-ft_contact-text strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--white-color);
    line-height: 1.3;
}

.bot-ft_contact-text span {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* Dividers */
.bot-ft_divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.bot-ft_divider--bottom {
    margin-bottom: 0;
}

/* Main section */
.bot-ft_main {
    padding: 3rem 0 3.25rem;
}

.bot-ft_newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.25;
    color: var(--white-color);
    margin-bottom: 0.85rem;
    max-width: 420px;
}

.bot-ft_newsletter-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.75rem;
    max-width: 400px;
}

.bot-ft_newsletter {
    min-width: 0;
}

/* Newsletter form */
.bot-ft_form {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 460px;
    margin-bottom: 2rem;
    border-radius: 999px;
    background: var(--white-color);
    padding: 5px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.bot-ft_form input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 0.85rem 1.15rem;
    font-family: var(--font-body);
    font-size: 14px;
    color: #111111;
    outline: none;
    border-radius: 999px 0 0 999px;
}

.bot-ft_form input::placeholder {
    color: #9ca3af;
}

body.ai-chatbot-body .bot-ft_submit.btn-primary {
    flex-shrink: 0;
    border-radius: 999px;
    padding: 0.85rem 1.65rem;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: none;
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

/* Social row */
.bot-ft_socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
}

.bot-ft_socials-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.bot-ft_socials-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.bot-ft_socials-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.bot-ft_socials-list a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Nav columns */
.bot-ft_nav {
    padding-left: 2.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 100%;
}

.bot-ft_col-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.35rem;
    text-transform: capitalize;
}

.bot-ft_col-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bot-ft_col-links a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.25s ease;
}

.bot-ft_col-links a:hover {
    color: var(--primary);
}

/* Bottom bar */
.bot-ft_bottom {
    position: relative;
    padding: 2rem;
    text-align: center;
}

.bot-ft_copy {
    margin: 0;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* Back to top */
.bot-ft_topbtn {
    position: fixed;
    right: 30px;
    bottom: 40px;
    z-index: 999;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: #111111;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    box-shadow: 0 8px 20px rgba(184, 251, 4, 0.28);
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.25s ease,
        box-shadow 0.25s ease;
    outline: none;
}

.bot-ft_topbtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.bot-ft_topbtn:hover {
    background: #d4ff4a;
    box-shadow: 0 12px 28px rgba(184, 251, 4, 0.38);
    color: #111111;
}

.bot-ft_topbtn i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bot-ft_topbtn:hover i {
    transform: translateY(-2px);
}