/* ============================================
   YILICK FOR BUSINESS — DESIGN SYSTEM
   ============================================ */
:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --navy: #1a1c1e;
    --navy-light: #18181b;
    --navy-lighter: #27272a;
    --surface: #ffffff;
    --surface-dim: #f8fafc;
    --surface-border: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.15);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--surface);
    line-height: 1.6;
    width: 100%;
}

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

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 28, 30, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-utility {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 40px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-utility .nav-container {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.nav-utility-left,
.nav-utility-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-utility-link {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-utility-link i {
    font-size: 10px;
    opacity: 0.8;
}

.nav-utility-link:hover {
    color: var(--primary-light);
    transform: translateX(-2px);
}

.nav-utility-text {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.navbar-scrolled .nav-utility {
    height: 0;
    opacity: 0;
    overflow: hidden;
    border: none;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--surface-border);
    box-shadow: var(--shadow-md);
}

.navbar-scrolled .nav-link,
.navbar-scrolled .nav-logo-text {
    color: var(--text-primary);
}

.navbar-scrolled .nav-link:hover {
    color: var(--primary);
}

.navbar-scrolled .nav-btn-ghost {
    color: var(--text-primary);
    border-color: var(--surface-border);
}

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

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

.nav-logo-img {
    height: 36px;
    width: auto;
}

.nav-logo-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.navbar-scrolled .nav-logo-divider {
    background: var(--surface-border);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn-ghost {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    padding: 9px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.nav-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.navbar-scrolled .nav-btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
}

.nav-btn-primary {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    padding: 10px 26px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    background: var(--primary-dark);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    cursor: pointer;
}

.navbar-scrolled .nav-mobile-toggle {
    color: var(--text-primary);
}

.nav-mobile-menu {
    display: none;
    padding: 16px 24px 24px;
}

.nav-mobile-menu.active {
    display: block;
}

.nav-mobile-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-scrolled .nav-mobile-link {
    color: var(--text-primary);
    border-bottom-color: var(--surface-border);
}

.nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .nav-utility {
        display: none;
    }

    .nav-container {
        height: 60px;
        padding: 0 20px;
    }

    .nav-logo-img {
        height: 28px;
    }

    .nav-logo-text {
        font-size: 11px;
    }

    .nav-logo-divider {
        height: 16px;
        margin: 0 8px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #1a1c1e;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    opacity: 0.05;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    opacity: 0.03;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 11px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-gradient-text {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35);
    transition: all 0.3s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.45);
    background: var(--primary-dark);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float 6s ease-in-out infinite;
}

.fc-1 {
    bottom: 20%;
    left: -30px;
    animation-delay: 0s;
}

.fc-2 {
    top: 15%;
    right: -20px;
    animation-delay: 3s;
}

.fc-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.fc-icon-green {
    background: var(--primary);
}

.fc-icon-orange {
    background: var(--accent);
}

.fc-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.fc-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-display);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 550px;
        margin: 0 auto;
    }

    .fc-1 {
        left: 0;
    }

    .fc-2 {
        right: 0;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .fc-1,
    .fc-2 {
        display: none;
    }
}

/* ============================================
   TRUSTED BY
   ============================================ */
.trusted-section {
    background: #ffffff;
    padding: 80px 0;
    border-bottom: 1px solid var(--surface-border);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.trusted-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trusted-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 48px;
    opacity: 0.7;
}

.trusted-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.trusted-marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

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

.trusted-logo-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: var(--surface-dim);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    filter: grayscale(100%);
    opacity: 0.6;
}

.trusted-logo-item i {
    font-size: 32px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.trusted-logo-item span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    font-family: var(--font-display);
}

.trusted-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
    background: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.trusted-logo-item:hover i,
.trusted-logo-item:hover span {
    color: var(--primary);
}

.trusted-mask-left,
.trusted-mask-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.trusted-mask-left {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.trusted-mask-right {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }

    /* Adjust based on gap */
}

@media (max-width: 768px) {
    .trusted-section {
        padding: 60px 0;
    }

    .trusted-marquee-track {
        gap: 20px;
    }

    .trusted-logo-item {
        padding: 12px 20px;
    }

    .trusted-logo-item i {
        font-size: 24px;
    }

    .trusted-logo-item span {
        font-size: 14px;
    }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.08);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-primary);
}

.text-gradient {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: initial;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-areas:
        "pos pos inv"
        "ana momo team"
        "ai . .";
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.feature-card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.5;
    pointer-events: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.feature-card-highlight {
    grid-area: pos;
    background: #1a1c1e;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 32px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
}

.feature-card-highlight::before {
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.feature-card-highlight .feature-title,
.feature-card-highlight .feature-desc {
    color: #fff;
}

.feature-card-highlight .feature-desc {
    opacity: 0.6;
    margin-bottom: 0;
}

.feature-card-inv {
    grid-area: inv;
}

.feature-card-ana {
    grid-area: ana;
}

.feature-card-momo {
    grid-area: momo;
}

.feature-card-team {
    grid-area: team;
}

.feature-card-ai {
    grid-area: ai;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-card-highlight:hover {
    background: #1f2124;
}

.feature-card-highlight .feature-title {
    font-size: 24px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.feature-card-highlight .feature-desc {
    font-size: 14px;
    max-width: none;
}

.feature-card-highlight .feature-icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin-bottom: 0;
}

.feature-card-highlight .feature-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-light);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 16px;
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.feature-card-highlight:hover {
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.12);
}

.feature-card-inv:hover {
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.1);
}

.feature-card-ana:hover {
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.1);
}

.feature-card-momo:hover {
    box-shadow: 0 30px 60px rgba(20, 184, 166, 0.1);
}

.feature-card-team:hover {
    box-shadow: 0 30px 60px rgba(249, 115, 22, 0.1);
}

.feature-card-ai:hover {
    box-shadow: 0 30px 60px rgba(244, 63, 94, 0.1);
}

.icon-emerald {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.icon-purple {
    background: rgba(139, 92, 246, 0.15);
    color: #7c3aed;
}

.icon-orange {
    background: rgba(249, 115, 22, 0.15);
    color: #ea580c;
}

.icon-teal {
    background: rgba(20, 184, 166, 0.15);
    color: #0d9488;
}

.icon-rose {
    background: rgba(244, 63, 94, 0.15);
    color: #e11d48;
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.feature-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.feature-link:hover {
    gap: 12px;
}

@media (max-width: 1024px) {
    .features-grid {
        display: grid;
        grid-template-areas: none !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .feature-card {
        grid-area: auto !important;
        padding: 24px;
    }

    .feature-card-highlight {
        grid-column: span 2 !important;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px;
    }

    .feature-card {
        grid-area: auto !important;
        width: 100% !important;
        text-align: center;
        padding: 24px;
    }

    .feature-card-highlight {
        display: block !important;
        padding: 32px 24px;
    }

    .feature-card-content,
    .feature-card-visual {
        display: block !important;
        width: 100% !important;
    }

    .feature-card-highlight .feature-icon-wrap {
        margin: 0 auto 20px;
    }

    .feature-card-highlight .feature-badge {
        margin-bottom: 12px;
    }

    .feature-card-highlight .feature-title {
        font-size: 20px;
    }

    .feature-icon-wrap {
        margin: 0 auto 16px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 60px 0;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card-highlight {
        padding: 32px 20px;
    }
}

/* ============================================
   POS SECTION
   ============================================ */
.pos-section {
    padding: 120px 0;
    background: var(--surface-dim);
    position: relative;
    overflow: hidden;
}

.pos-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.pos-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.pos-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pos-check {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pos-feature-item strong {
    font-size: 16px;
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.pos-feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* POS Mockup - Enterprise Dashboard */
.pos-mockup {
    perspective: 2000px;
    position: relative;
}

.pos-screen {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12), 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 8px solid #1a1c1e;
    transform: rotateY(-8deg) rotateX(4deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pos-screen:hover {
    transform: rotateY(0) rotateX(0);
}

.pos-screen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #1a1c1e;
    color: #fff;
}

.pos-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pos-screen-body {
    padding: 24px;
    background: #fbfcfd;
}

.pos-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.pos-kpi {
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pos-kpi-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.pos-kpi-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.pos-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 16px;
}

.pos-table th {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pos-table td {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

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

.pos-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.pos-badge-paid {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.pos-badge-pending {
    background: rgba(249, 115, 22, 0.1);
    color: #ea580c;
}

.pos-item-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.pos-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.pos-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.pos-total-final {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    font-family: var(--font-display);
}

.pos-pay-buttons {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.pos-pay-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
}

.pos-pay-cash {
    background: var(--primary);
    color: #fff;
}

.pos-pay-momo {
    background: #eab308;
    color: #000;
}

.pos-pay-card {
    background: #3b82f6;
    color: #fff;
}


@media (max-width: 1024px) {
    .pos-layout {
        grid-template-columns: 1fr;
    }

    .pos-screen {
        transform: none;
    }
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
    padding: 120px 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
    margin-top: 60px;
}

/* Pricing Toggle */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-toggle {
    width: 64px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
}

.pricing-toggle::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-toggle-active::after {
    left: 36px;
}

.pricing-save-badge {
    background: #fef3c7;
    color: #d97706;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s;
    position: relative;
    border-width: 1px !important;
}

.pricing-card-featured {
    background: #1a1c1e;
    border-color: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.pricing-card-featured .pricing-name,
.pricing-card-featured .pricing-amount,
.pricing-card-featured .pricing-features li {
    color: #fff;
}

.pricing-card-featured .pricing-desc,
.pricing-card-featured .pricing-period {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card-featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.pricing-popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-light);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-header {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--surface-border);
    margin-bottom: 32px;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-currency {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-muted);
    align-self: flex-start;
    margin-top: 4px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.pricing-period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-primary);
}

.pricing-features li i {
    color: var(--primary);
    font-size: 14px;
}

.pricing-feature-disabled {
    opacity: 40%;
}

.pricing-feature-disabled i {
    color: var(--text-muted) !important;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.3s;
    margin-bottom: 12px;
}

.pricing-btn-outline {
    border: 1px solid var(--surface-border);
    color: var(--text-primary);
}

.pricing-btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.pricing-card-featured .pricing-btn-outline {
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.pricing-micro {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TESTIMONIALS & TRUST BAR
   ============================================ */
.testimonials-section {
    padding: 120px 0;
    background: var(--surface-dim);
    border-top: 1px solid var(--surface-border);
}

.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 24px 40px;
    background: #fff;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-xl);
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-stat span:first-child {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.trust-stat span:last-child {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-masonry {
    column-count: 3;
    column-gap: 32px;
    width: 100%;
}

.testimonial-card-wrap {
    break-inside: avoid;
    margin-bottom: 32px;
}

.testimonial-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--surface-border);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    font-family: serif;
    color: rgba(16, 185, 129, 0.05);
    pointer-events: none;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--surface-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--text-primary);
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.ta-1 {
    background: #e0f2fe;
    color: #0369a1;
}

.ta-2 {
    background: #fef3c7;
    color: #b45309;
}

.ta-3 {
    background: #dcfce7;
    color: #15803d;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-name {
    font-weight: 800;
    font-size: 15px;
    color: var(--text-primary);
}

.verified-icon {
    color: var(--primary);
    font-size: 12px;
}

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

.category-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--surface-dim);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .testimonial-masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .testimonial-masonry {
        column-count: 1;
    }

    .trust-bar {
        flex-direction: column;
        gap: 32px;
        padding: 40px;
    }
}

/* ============================================
   CTA SECTION - FLOATING CARD
   ============================================ */
.cta-section {
    padding: 120px 24px;
    background: var(--surface-dim);
    position: relative;
}

.cta-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #1a1c1e;
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-2xl);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.cta-bg-glow {
    position: absolute;
    width: 600px;
    height: 300px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-node-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-image: radial-gradient(circle, rgba(16, 185, 129, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.45);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cta-card {
        padding: 60px 24px;
    }

    .cta-title {
        font-size: 32px;
    }
}


/* ============================================
   FOOTER - ENTERPRISE INFORMATION HUB
   ============================================ */
.footer {
    background: #111111;
    color: rgba(255, 255, 255, 0.5);
    padding: 100px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 32px;
}

.header-logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 24px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

/* Payment Partners Bar */
.footer-partners {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.3;
    filter: grayscale(1);
}

.footer-partners span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-partners i {
    font-size: 24px;
}

/* Bottom Bar & Selectors */
.footer-bottom {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-selectors {
    display: flex;
    gap: 16px;
}

.footer-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-select:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-partners {
        gap: 32px;
    }
}


/* ============================================
   DEEP DIVE FEATURE LAYOUTS
   ============================================ */
.feature-show .hero { min-height: 80vh; padding-top: 140px; }
.feature-show .features-grid { grid-template-columns: repeat(2, 1fr) !important; grid-template-areas: none !important; }

/* Mobile Money CSS Mockup */
.momo-mockup {
    width: 280px; height: 560px; background: #000; border-radius: 40px;
    margin: 0 auto; border: 8px solid #1a1c1e; position: relative;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 0 50px rgba(16,185,129,0.1);
    overflow: hidden;
}
.momo-screen {
    width: 100%; height: 100%; background: #1a1c1e; padding: 40px 20px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.momo-prompt {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 24px; text-align: center; width: 100%;
}
.momo-prompt h4 { color: #fff; font-size: 14px; margin-bottom: 8px; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.05em; }
.momo-amount { color: var(--primary-light); font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 24px; }
.momo-btns { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.momo-btn { padding: 14px; border-radius: 12px; font-size: 13px; font-weight: 700; text-align: center; }
.momo-mtn { background: #ffcc00; color: #000; }
.momo-airtel { background: #ff0000; color: #fff; }

/* AI Advisor Neural Mockup */
.ai-system-mockup {
    width: 100%; height: clamp(300px, 50vh, 450px); position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.ai-core {
    width: clamp(60px, 10vw, 80px); height: clamp(60px, 10vw, 80px); background: var(--primary); border-radius: 50%;
    box-shadow: 0 0 80px var(--primary); animation: ai-pulse 4s infinite ease-in-out;
    position: relative; z-index: 2;
}
.ai-node {
    position: absolute; width: clamp(8px, 1.5vw, 12px); height: clamp(8px, 1.5vw, 12px); background: rgba(16,185,129,0.3);
    border-radius: 50%; border: 1px solid var(--primary-light);
}
.ai-node::after {
    content: ''; position: absolute; width: clamp(60px, 15vw, 120px); height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
    top: 50%; left: 50%; transform-origin: left;
}
.node-1 { top: 25%; left: 25%; transform: rotate(45deg); }
.node-2 { bottom: 20%; right: 20%; transform: rotate(-135deg); }
.insight-card {
    position: absolute; background: rgba(255,255,255,0.05); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); animation: float 6s infinite;
    z-index: 3; min-width: 140px;
}
.ic-1 { top: 15%; right: 10%; animation-delay: 0s; }
.ic-2 { bottom: 10%; left: 10%; animation-delay: 3s; }
.ic-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; font-weight: 700; display: block; }
.ic-value { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: #fff; }

@media (max-width: 480px) {
    .ai-system-mockup { height: 320px; }
    .node-1 { top: 20%; left: 15%; }
    .node-2 { bottom: 15%; right: 10%; }
    .ic-1 { top: 5%; right: 5%; }
    .ic-2 { bottom: 5%; left: 5%; }
    .ic-value { font-size: 13px; }
}

/* Expanded Feature Detail Grid */
.expanded-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    grid-template-areas: none !important;
}

/* Technical Specifications */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.spec-item {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(15,23,42,0.1);
}
.spec-label {
    font-size: 12px; font-weight: 700; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.spec-value {
    font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text-primary);
}

@keyframes ai-pulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.2); opacity: 1; } }

@media (max-width: 1024px) {
    .expanded-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ai-system-mockup, .hide-ai-mobile { display: none !important; }
    .feature-show-hero .hero-container { grid-template-columns: 1fr !important; text-align: center; }
    .feature-show-hero .hero-content { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .feature-show-hero .hero-cta { justify-content: center; }
    .expanded-grid, .specs-grid { grid-template-columns: 1fr !important; }
    .specs-grid { gap: 20px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}
/* User Profile Styles */
.nav-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(15, 23, 42, 0.03);
    border-radius: 100px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.nav-user:hover {
    background: rgba(15, 23, 42, 0.05);
    border-color: var(--primary);
}

.nav-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--primary);
}

.nav-user-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--slate-900);
}

.nav-mobile-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.nav-mobile-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.nav-mobile-user span {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--slate-900);
}
