/* Font Face - Nasalization (Logo) */
@font-face {
    font-family: 'Nasalization';
    src: url('assets/logos/Nasalization Rg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Font Face - Sharp Grotesk */
@font-face {
    font-family: 'Sharp Grotesk';
    src: url('assets/fonts/SharpGrotesk-Medium20.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Sharp Grotesk';
    src: url('assets/fonts/SharpGrotesk-Book20.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Sharp Grotesk';
    src: url('assets/fonts/SharpGrotesk-Bold20.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Variables */
:root {
    --font-heading: 'Sharp Grotesk', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;

    --color-bg: #F8F7F5;
    --color-text-main: #111111;
    --color-text-sub: #64748b;
    --color-primary: #111111;
    --color-primary-hover: #333333;
    --color-accent: #c5ed36;
    --color-accent-hover: #b3d82f;
    --color-border: #e5e5e5;

    --radius-sm: 12px;
    --radius-md: 14px;
    --radius-lg: 24px;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text-main);
}

a {
    text-decoration: none;
    color: inherit;
}

strong,
b {
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   CUSTOM SCROLLBAR
   ============================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-hover);
}

/* Selection */
::selection {
    background: rgba(197, 237, 54, 0.3);
    color: var(--color-text-main);
}

/* =============================================
   GRADIENT TEXT
   ============================================= */
.gradient-text {
    background: linear-gradient(135deg, var(--color-text-main) 0%, var(--color-accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   ANIMATED BACKGROUND
   ============================================= */
.animated-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(197, 237, 54, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: bgFloat 20s ease-in-out infinite;
}

.animated-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(197, 237, 54, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
    animation: bgFloat 25s ease-in-out infinite reverse;
}

@keyframes bgFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Grid Pattern Overlay */
.grid-pattern-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    padding: 8px 0;
    position: sticky;
    top: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: justify-content 0s, gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
    height: 28px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05) rotate(2deg);
}

.logo-text {
    font-family: 'Nasalization', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-main);
    letter-spacing: 0.02em;
    display: inline-block;
    max-width: 120px;
    overflow: hidden;
    opacity: 1;
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                margin 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-cta {
    display: none;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
    font-family: var(--font-heading);
    border: none;
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-sub);
    position: relative;
}

.btn-ghost::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-accent-hover);
    transition: all 0.3s var(--ease-out-expo);
    transform: translateX(-50%);
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-main);
}

.btn-ghost:hover::after {
    width: 60%;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-main);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 237, 54, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-main);
    border: 1.5px solid #222;
    font-weight: 500;
}

.btn-outline:hover {
    background: var(--color-text-main);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Shine effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.btn-shine:hover::after {
    transform: translateX(100%);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.hero-title-line {
    display: block;
}

.hero-text p {
    font-size: 18px;
    color: var(--color-text-sub);
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.7;
}

/* Trust strip below form */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #8891a5;
}

.trust-item svg {
    color: var(--color-accent-hover);
    flex-shrink: 0;
}

.trust-divider {
    color: #ccc;
    font-size: 14px;
    line-height: 1;
}

.new-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-text-main);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.new-badge::after {
    content: '\2192';
    font-size: 14px;
    transition: transform 0.3s ease;
}

.new-badge:hover {
    background: var(--color-primary-hover);
}

.new-badge:hover::after {
    transform: translateX(4px);
}

.hero-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-form input {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    flex: 1;
    min-width: 240px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.hero-form input:focus {
    outline: none;
    border-color: var(--color-accent-hover);
    box-shadow: 0 0 0 3px rgba(197, 237, 54, 0.15);
}

.small-text {
    font-size: 14px;
    color: #8891a5;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

/* tool-icon kept for reuse in infra-section */
.tool-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}

/* =============================================
   FOOTER - DARK THEME
   ============================================= */
.footer {
    background: #111111;
    color: #e5e5e5;
    padding: 40px 0 24px;
    border-top: 1px solid rgba(197, 237, 54, 0.15);
}

/* Top row: logo + tagline left, social right */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #222;
    margin-bottom: 24px;
}

.footer-brand-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 28px;
    width: auto;
}

.footer-tagline {
    color: #8891a5;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: #111;
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

/* Link columns: 4 equal columns */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 24px;
}

.footer-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a,
.footer-col .footer-address {
    display: block;
    color: #8891a5;
    margin-bottom: 8px;
    font-size: 13px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-address {
    line-height: 1.5;
}

/* Bottom bar */
.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   SECTION UTILITIES
   ============================================= */
.section-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-accent-hover);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-align: center;
}

.section-desc {
    color: var(--color-text-sub);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.7;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.features h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 40px);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

/* Gradient overlay on hover */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card[data-color="lime"]::before,
.feature-card[data-color="purple"]::before,
.feature-card[data-color="blue"]::before {
    background: linear-gradient(135deg, rgba(197, 237, 54, 0.08) 0%, transparent 100%);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Border glow on hover — all unified to brand lime */
.feature-card[data-color="lime"]:hover,
.feature-card[data-color="purple"]:hover,
.feature-card[data-color="blue"]:hover {
    border-color: rgba(197, 237, 54, 0.4);
}

/* Feature icon containers */
.feature-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-icon-container.lime {
    background: rgba(197, 237, 54, 0.15);
}

.feature-icon-container.purple {
    background: rgba(168, 85, 247, 0.12);
}

.feature-icon-container.blue {
    background: rgba(59, 130, 246, 0.12);
}

.feature-icon-container svg {
    width: 24px;
    height: 24px;
}

.feature-icon-container.lime svg {
    color: #8cb320;
}

.feature-icon-container.purple svg {
    color: #a855f7;
}

.feature-icon-container.blue svg {
    color: #3b82f6;
}

.feature-card:hover .feature-icon-container {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--color-text-main);
}

.feature-card p {
    color: var(--color-text-sub);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Feature stats */
.feature-stats {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.feature-stats .stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-main);
    font-family: var(--font-heading);
}

.feature-stats .stat-label {
    font-size: 12px;
    color: var(--color-text-sub);
}

/* Hover arrow */
.hover-arrow {
    position: absolute;
    top: 28px;
    right: 28px;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s ease;
    z-index: 1;
}

.hover-arrow svg {
    width: 20px;
    height: 20px;
}

.feature-card .hover-arrow svg {
    color: var(--color-accent-hover);
}

.feature-card:hover .hover-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Additional features row */
.additional-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.additional-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.additional-feature:hover {
    border-color: rgba(197, 237, 54, 0.5);
    transform: translateY(-2px);
}

.af-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(197, 237, 54, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.af-icon svg {
    width: 20px;
    height: 20px;
    color: #8cb320;
}

.additional-feature h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.additional-feature p {
    font-size: 12px;
    color: var(--color-text-sub);
    margin: 0;
    line-height: 1.4;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 100px 0;
    background: var(--color-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(197, 237, 54, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 237, 54, 0.15);
    color: var(--color-accent);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(197, 237, 54, 0.2);
}

.cta-section h2 {
    color: white;
    font-size: clamp(32px, 4vw, 40px);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: var(--color-accent);
    color: var(--color-text-main);
}

.cta-section .btn-primary:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 0 40px rgba(197, 237, 54, 0.4);
    transform: translateY(-3px);
}

/* CTA Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cta-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(197, 237, 54, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.cta-stat-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.cta-stat .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.cta-stat .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}



/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 16px 24px;
    background: #111;
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 400px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    background: #10b981;
}

.toast-error {
    background: #ef4444;
}

.toast-info {
    background: #3b82f6;
}

.toast-icon {
    font-size: 18px;
    font-weight: 500;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
}

/* =============================================
   LOADING SPINNER
   ============================================= */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =============================================
   MODAL
   ============================================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: #e0e0e0;
}

.modal-content h2 {
    margin-bottom: 8px;
}

.modal-content>p {
    color: var(--color-text-sub);
    margin-bottom: 24px;
}

/* =============================================
   FORMS
   ============================================= */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-hover);
    box-shadow: 0 0 0 3px rgba(197, 237, 54, 0.15);
}

.btn-full {
    width: 100%;
}

.hero-form.submitted input {
    border-color: #10b981;
    background: #f0fdf4;
}

/* =============================================
   REVEAL ANIMATION CLASSES (GSAP targets)
   ============================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .hero-text p {
        max-width: 100%;
    }

    .features h2 {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .additional-features {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar>.container>.btn-primary {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 200;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links .mobile-cta {
        display: inline-flex;
        margin-top: 24px;
        text-align: center;
        border-bottom: none;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 150;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.open {
        opacity: 1;
        visibility: visible;
    }

}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-form {
        flex-direction: column;
    }

    .hero-form input {
        min-width: 100%;
    }

    .toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =============================================
   INFRASTRUCTURE DIAGRAM (CÓMO FUNCIONA)
   ============================================= */

.infra-section {
    padding: 100px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.infra-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    pointer-events: none;
}

.section-title.center {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
    color: var(--color-text-sub);
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.infra-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.infra-layer {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: var(--layer-delay, 0s);
}

.infra-layer:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(197, 237, 54, 0.5);
}

.layer-content {
    flex: 1;
}

.layer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.layer-number {
    font-family: 'JetBrains Mono', 'Nasalization', monospace;
    font-size: 12px;
    color: #94a3b8;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.layer-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    color: var(--color-text-main);
}

.layer-description {
    font-size: 15px;
    color: var(--color-text-sub);
    margin: 0;
    line-height: 1.4;
}

.layer-tools {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 280px;
}

.tool-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 8px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: #444;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.tool-pill:hover {
    background: #fff;
    border-color: #ddd;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tool-icon-sm {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Sisteco Core Layer */
.layer-core {
    background: #1a1a1a;
    border-color: #333;
    color: #fff;
    overflow: hidden;
}

.layer-core::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.5;
}

.layer-core .layer-title {
    color: #fff;
}

.layer-core .layer-description {
    color: #aaa;
}

.layer-core:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 30px rgba(197, 237, 54, 0.15);
}

.layer-core .layer-number {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

.core-pill {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.core-pill:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--color-accent) !important;
}

/* Connector Arrows */
.infra-connector {
    color: #ccc;
    display: flex;
    justify-content: center;
    height: 28px;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .infra-layer {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .layer-tools {
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
        margin-top: 12px;
    }

    .section-title.center {
        font-size: 32px;
    }
}

/* =============================================
   MICRO-DIAGRAMS (FEATURES)
   ============================================= */
.micro-diagram {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    height: 48px;
    padding: 4px;
    border-radius: 12px;
    background: #f9f9f9;
    width: fit-content;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.feature-card:hover .micro-diagram.lime {
    background: rgba(197, 237, 54, 0.1);
    border-color: rgba(197, 237, 54, 0.3);
}

.feature-card:hover .micro-diagram.purple {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

.feature-card:hover .micro-diagram.blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.md-node {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.md-node svg {
    width: 16px;
    height: 16px;
}

.md-node.highlight {
    background: #111;
    border-color: #111;
    color: #fff;
}

.feature-card:hover .md-node {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover .md-node.highlight {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #111;
}

.md-arrow {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
}

.md-group {
    display: flex;
    gap: 4px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 8px;
    height: 32px;
    align-items: center;
}

.md-group svg {
    width: 14px;
    height: 14px;
    color: #8891a5;
}

.feature-card:hover .md-group {
    border-color: #bbb;
}


/* Floating badges */
.hero-float-1,
.hero-float-2 {
    position: absolute;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #111;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 10;
}

.hero-float-1 {
    top: -16px;
    right: -12px;
    animation: floatUp 3.5s ease-in-out infinite alternate;
}

.hero-float-2 {
    bottom: -16px;
    left: -12px;
    animation: floatUp 3.5s ease-in-out infinite alternate-reverse;
}

@keyframes floatUp {
    from { transform: translateY(0px); }
    to { transform: translateY(-8px); }
}

/* Responsive: hero adjustments below 1024px */
@media (max-width: 1024px) {
    .hero-text {
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
        max-width: 560px;
    }

    .hero-form {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .new-badge.hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero--immersive #sisteco-globe {
        width: 600px;
        height: 600px;
    }
}

/* =============================================
   LOGOS / INTEGRATIONS BAR
   ============================================= */

.logos-bar {
    padding: 36px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
    position: relative;
    z-index: 1;
}

.logos-label {
    text-align: center;
    font-size: 11px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 20px;
}

.logos-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px 32px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #bbb;
    font-size: 13px;
    font-weight: 500;
    filter: grayscale(1);
    opacity: 0.55;
    transition: all 0.3s ease;
    cursor: default;
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
    color: #444;
}

.integration-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.logo-sep {
    width: 1px;
    height: 24px;
    background: var(--color-border);
    margin: 0 8px;
}

@media (max-width: 768px) {
    .logos-track {
        gap: 12px 24px;
    }

    .logo-sep {
        display: none;
    }
}


/* =============================================
   NEW-BADGE left-align fix
   ============================================= */

.new-badge {
    width: fit-content;
}

/* =============================================
   SMALL-TEXT compatibility (legacy)
   ============================================= */

.small-text {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

/* =============================================
   PHASE 7: BRUTALIST VISUAL EVOLUTION
   Modern Brutalism + Neo-Grunge + Swiss Technical
   ============================================= */

/* 7.1 — Halftone / Dithered Textures */
.animated-bg::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(197, 237, 54, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(197, 237, 54, 0.04) 0%, transparent 50%);
    mix-blend-mode: multiply;
}

/* Halftone dot pattern overlay — very subtle */
.grid-pattern-overlay {
    background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
    background-size: 20px 20px, 60px 60px, 60px 60px;
}

/* Noise texture on dark surfaces */
.cta-section::before,
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.footer::before {
    z-index: 0;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.cta-section > .container {
    position: relative;
    z-index: 1;
}

/* 7.2 — Technical Diagram Decorations */

/* Blueprint measurement lines on sections */
.infra-section::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 24px;
    width: 1px;
    height: calc(100% - 80px);
    background: repeating-linear-gradient(
        to bottom,
        rgba(197, 237, 54, 0.15) 0px,
        rgba(197, 237, 54, 0.15) 4px,
        transparent 4px,
        transparent 12px
    );
    z-index: 0;
}

/* Grid reference coordinates */
.infra-section .section-label::before {
    content: '[01.x] ';
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(197, 237, 54, 0.4);
    letter-spacing: 0.05em;
}

.features .section-label::before {
    content: '[02.x] ';
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(197, 237, 54, 0.4);
    letter-spacing: 0.05em;
}


/* Concentric circles SVG as background decoration */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 600px;
    height: 600px;
    transform: translateY(-50%);
    background: repeating-radial-gradient(
        circle at center,
        transparent 0px,
        transparent 38px,
        rgba(0, 0, 0, 0.02) 38px,
        rgba(0, 0, 0, 0.02) 40px
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* 7.3 — Swiss Punk Typography */

/* Monospace accents for technical labels */
.layer-number,
.trust-item span,
.cta-stat .stat-label,
.feature-stats .stat-label {
    font-family: 'JetBrains Mono', 'Nasalization', monospace;
}

/* Terminal-style badges */
.new-badge {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.03em;
    border: 1px solid rgba(197, 237, 54, 0.3);
}

.cta-badge {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.03em;
}

/* 7.4 — Micro-interactions Brutalist */

/* Custom cursor */
body {
    cursor: default;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--color-accent);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(197, 237, 54, 0.5);
}

/* Section tick marks on scroll progress */
.scroll-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateX(50%) translateY(-25%);
}

/* Glitch hover on feature cards */
.feature-card:hover {
    animation: glitchShift 0.15s ease-out;
}

@keyframes glitchShift {
    0% { transform: translateY(-4px); }
    25% { transform: translateY(-4px) translateX(1px); }
    50% { transform: translateY(-4px) translateX(-1px); }
    75% { transform: translateY(-4px) translateX(0.5px); }
    100% { transform: translateY(-4px) translateX(0); }
}

/* Visible 1px borders on section grids (blueprint feel) */
.features-grid {
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    padding: 1px;
}

/* 7.5 — Acid Graphics / Organic shapes */

/* Fluid SVG decoration behind CTA */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(197, 237, 54, 0.06) 0%, transparent 70%);
    border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
    animation: blobMorph 15s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        border-radius: 55% 45% 40% 60% / 55% 60% 40% 45%;
        transform: translate(20px, -10px) rotate(5deg);
    }
    66% {
        border-radius: 45% 55% 55% 45% / 60% 40% 60% 40%;
        transform: translate(-10px, 15px) rotate(-3deg);
    }
}

/* 7.6 — Enhanced Sisteco Elements */

/* Navbar: transparent at top, pill on scroll */
.navbar {
    border-bottom: 1px solid transparent;
}

/* 7.7 — Floating Pill Navbar on Scroll */
.navbar .container {
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 3px 0;
    background: transparent;
    border-bottom: none;
}

.navbar.scrolled .container {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(248, 247, 245, 0.65);
    border-radius: 50px;
    border: 1px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 3px 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    gap: 6px;
}

.navbar.scrolled .logo-text {
    max-width: 0;
    opacity: 0;
    margin: 0;
}

.navbar.scrolled .logo {
    gap: 0;
    margin-right: 0;
}

.navbar.scrolled .nav-links {
    gap: 0;
}

.navbar.scrolled .btn-ghost {
    padding: 7px 12px;
    font-size: 13px;
}

.navbar.scrolled .btn-primary {
    padding: 7px 16px;
    font-size: 13px;
    margin-left: 0;
}

@media (max-width: 768px) {
    .navbar.scrolled .container {
        border-radius: 0;
        max-width: 100%;
        padding: 8px 16px;
        border: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .navbar .container {
        transition: none;
    }
}

/* Brusque GSAP animation override hints (elastic/back ease) */
.feature-card {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.additional-feature {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* CTA section glow: bigger, more dramatic */
.cta-glow {
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse at center,
        rgba(197, 237, 54, 0.15) 0%,
        rgba(197, 237, 54, 0.05) 40%,
        transparent 70%);
}

/* Feature card border on hover: double line effect */
.feature-card:hover {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(197, 237, 54, 0.15);
}

/* Floating badges: technical border */
.hero-float-1,
.hero-float-2 {
    border: 1px solid rgba(197, 237, 54, 0.2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.02em;
}

/* Metric values: monospace for data feel */
.feature-stats .stat-value,
.cta-stat .stat-value {
    font-family: 'JetBrains Mono', var(--font-heading), monospace;
}

/* Footer: measurement ticks along top border */
.footer {
    border-top: 1px solid rgba(197, 237, 54, 0.2);
    background-image:
        repeating-linear-gradient(
            90deg,
            rgba(197, 237, 54, 0.08) 0px,
            rgba(197, 237, 54, 0.08) 1px,
            transparent 1px,
            transparent 120px
        );
    background-size: 100% 8px;
    background-repeat: no-repeat;
    background-position: top;
}

/* Logo bar: technical separator */
.logos-bar {
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

/* Respect reduced motion for brutalist animations too */
@media (prefers-reduced-motion: reduce) {
    .feature-card:hover {
        animation: none;
    }
    .cta-section::after {
        animation: none;
    }
}

/* =============================================
   BENTO GRID
   ============================================= */

.bento-section {
    background: var(--color-bg);
    color: var(--color-text-main);
    padding: 100px 0;
}

.bento-section .section-label {
    color: var(--color-accent-hover);
}

.bento-section .section-title {
    color: var(--color-text-main);
}

.bento-section .section-desc {
    color: var(--color-text-sub);
}

.bento-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
}

.bento-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bento-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 28px;
    text-decoration: none;
    color: var(--color-text-main);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
    opacity: 0;
}

.bento-card--hero {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
}

.bento-card--hero .bento-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bento-card--hero .bento-hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.bento-card:hover {
    border-color: rgba(197, 237, 54, 0.6);
    transform: translateY(-2px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(197, 237, 54, 0.2);
}

.bento-card:focus-visible {
    outline: 2px solid #c5ed36;
    outline-offset: 2px;
}

/* Card header */
.bento-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bento-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(197, 237, 54, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-hover);
    flex-shrink: 0;
}

.bento-card-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'JetBrains Mono', monospace;
    color: var(--color-accent-hover);
}

/* Card content */
.bento-card h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.bento-card h4 {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 6px;
    line-height: 1.3;
}

.bento-card > p,
.bento-hero-left > p {
    font-size: 15px;
    color: var(--color-text-sub);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Features */
.bento-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.bento-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-sub);
}

.bento-feature i {
    color: var(--color-accent-hover);
    flex-shrink: 0;
}

/* Stats */
.bento-stats {
    display: flex;
    gap: 24px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.bento-stat .stat-value {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text-main);
    font-family: 'JetBrains Mono', var(--font-heading), monospace;
}

.bento-stat .stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-sub);
    margin-top: 2px;
}

/* Arrow indicator */
.bento-arrow {
    position: absolute;
    top: 28px;
    right: 28px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: var(--color-accent-hover);
}

.bento-card:hover .bento-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   BENTO FLOW DIAGRAM (Hero card mini visualization)
   ============================================= */

.bento-flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: rgba(17, 17, 17, 0.03);
    border-radius: 12px;
    width: 100%;
}

.bento-flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bento-flow-node span {
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--color-text-sub);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bento-flow-node-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-flow-node--linkedin .bento-flow-node-icon {
    background: rgba(10, 102, 194, 0.1);
    color: #0A66C2;
}

.bento-flow-node--ai .bento-flow-node-icon {
    background: rgba(197, 237, 54, 0.12);
    color: var(--color-accent-hover);
}

/* Connectors */
.bento-flow-connector {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(179, 216, 47, 0.3), rgba(179, 216, 47, 0.6));
    position: relative;
}

.bento-flow-dot {
    position: absolute;
    top: -3px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-hover);
    animation: flowPulse 2s ease-in-out infinite;
}

@keyframes flowPulse {
    0%, 100% { left: 0; opacity: 0.4; }
    50% { left: calc(100% - 8px); opacity: 1; }
}

/* Label pills */
.bento-flow-labels {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bento-flow-pill {
    font-size: 10px;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.bento-flow-pill--hot {
    background: rgba(179, 216, 47, 0.15);
    color: var(--color-accent-hover);
}

.bento-flow-pill--warm {
    background: rgba(245, 197, 66, 0.15);
    color: #d4a520;
}

.bento-flow-pill--skip {
    background: rgba(17, 17, 17, 0.05);
    color: var(--color-text-sub);
}

/* =============================================
   BENTO GRID RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .bento-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card--hero {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .bento-grid-row {
        grid-template-columns: 1fr;
    }
    .bento-section {
        padding: 60px 0;
    }
}

/* Reduced motion: show cards immediately, disable flow animation */
@media (prefers-reduced-motion: reduce) {
    .bento-card {
        opacity: 1 !important;
    }
    .bento-flow-dot {
        animation: none;
    }
}

/* =============================================
   HERO GRADIENT ORBS
   ============================================= */

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}

/* Immersive hero: don't clip centered orbs */
.hero--immersive .hero-orbs {
    overflow: visible;
}

/* Immersive hero: center lime glow on the globe */
.hero--immersive .hero-orb-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(197, 237, 54, 0.10), rgba(197, 237, 54, 0.04) 50%, transparent 75%);
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    animation: orbPulseCenter 12s ease-in-out infinite;
}

.hero--immersive .hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 237, 54, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    animation: orbPulseCenter 18s ease-in-out infinite reverse;
}

.hero--immersive .hero-orb-3 {
    display: none;
}

@keyframes orbPulseCenter {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.12); }
}

/* Default orb positions (non-immersive pages) */
.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 237, 54, 0.15), transparent 70%);
    top: -100px;
    right: -100px;
    animation: orbFloat1 18s ease-in-out infinite;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 237, 54, 0.08) 0%, rgba(180, 220, 40, 0.05) 50%, transparent 70%);
    bottom: -50px;
    left: 5%;
    animation: orbFloat2 22s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(197, 237, 54, 0.06), transparent 70%);
    top: 30%;
    left: 40%;
    animation: orbFloat3 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.08); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 25px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb {
        animation: none;
    }
}

/* =============================================
   CARD HOVER GLOW
   ============================================= */

.feature-card:hover {
    border-color: rgba(197, 237, 54, 0.5);
    box-shadow:
        0 0 0 1px rgba(197, 237, 54, 0.2),
        0 8px 32px rgba(197, 237, 54, 0.12);
}

/* =============================================
   CURSOR GLOW
   ============================================= */

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 237, 54, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .cursor-glow {
        display: none;
    }
}

/* =============================================
   COMPARISON TABLE
   ============================================= */

.comparison-section {
    background: #111;
    color: #fff;
    padding: 100px 0;
}

.comparison-section .section-label {
    color: #c5ed36;
}

.comparison-section .section-title {
    color: #fff;
}

.comparison-section .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 48px;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* Scroll shadow hint on right edge */
.comparison-table-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.8));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .comparison-table-wrapper::after {
        opacity: 1;
    }
}

.comparison-table {
    display: grid;
    grid-template-columns: 180px repeat(3, 1fr);
    gap: 0;
    min-width: 700px;
}

.comparison-row {
    display: contents;
}

.comparison-cell {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-cell.label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 13px;
}

.comparison-cell.featured {
    background: rgba(197, 237, 54, 0.04);
}

/* Header row */
.comparison-header .comparison-cell {
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    padding-bottom: 20px;
}

.comparison-header .comparison-cell.featured {
    background: rgba(197, 237, 54, 0.08);
    border-radius: 12px 12px 0 0;
    color: #fff;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #c5ed36;
    color: #111;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Icon colors */
.icon-positive {
    color: #c5ed36;
    flex-shrink: 0;
}

.icon-negative {
    color: #ef4444;
    flex-shrink: 0;
}

.icon-neutral {
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* Last row: round bottom corners on featured column */
.comparison-row:last-child .comparison-cell.featured {
    border-radius: 0 0 12px 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }
}

/* =============================================
   VISION TEASER
   ============================================= */

.vision-teaser-section {
    background: #F8F7F5;
    padding: 100px 0;
}

.vision-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    flex-wrap: wrap;
}

.timeline-step {
    text-align: center;
    padding: 24px 20px;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.timeline-year {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #c5ed36;
    background: rgba(197, 237, 54, 0.1);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: 'JetBrains Mono', monospace;
}

.timeline-step h4 {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    margin: 0 0 6px;
}

.timeline-step p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.timeline-step--featured {
    background: rgba(197, 237, 54, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(197, 237, 54, 0.2);
}

.timeline-step--featured .timeline-year {
    background: #c5ed36;
    color: #111;
}

.timeline-connector {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #e0e0e0, rgba(197, 237, 54, 0.4));
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .vision-teaser-section {
        padding: 60px 0;
    }

    .vision-timeline {
        flex-direction: column;
    }

    .timeline-connector {
        width: 2px;
        height: 24px;
    }

    .timeline-step {
        max-width: 100%;
    }
}



/* =============================================================
   DARK HERO — Inspiración Novena · full-bleed dark, serif H1
   ============================================================= */

/* =============================================================
   IMMERSIVE HERO — globe background, text overlay, floating KPIs
   ============================================================= */

.hero--immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

/* Globe as centered background layer */
.hero-globe-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: auto;
    opacity: 0.25;
}

.hero--immersive #sisteco-globe {
    width: 700px;
    height: 700px;
    max-width: 90vw;
    max-height: 90vw;
}

/* Text content overlaid on globe */
.hero-overlay-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    padding: 60px 24px 0;
}

.hero-overlay-content .hero-badge {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.hero-overlay-content .hero-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
}

/* CTA block at bottom of hero */
.hero-cta-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
}

.hero-cta-bottom .hero-form {
    justify-content: center;
}

.hero-cta-bottom .hero-trust {
    justify-content: center;
}

/* Serif display heading */
.hero-h1-serif {
    font-family: 'Sharp Grotesk', sans-serif;
    font-size: clamp(36px, 3.8vw, 56px);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: #111;
    margin-bottom: 16px;
}

/* "Sisteco" in Nasalization (same as logo) */
.hero-brand {
    font-family: 'Nasalization', sans-serif;
}

/* "AGENTICA" — DM Serif Display for elegant tech contrast */
.hero-h1-serif em {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #6b8c1a;
    -webkit-text-fill-color: #6b8c1a;
    display: inline;
    padding-right: 0.05em;
}

/* =============================================================
   ORBITAL RINGS — decorative concentric circles on both sides
   ============================================================= */

.hero-orbital {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    width: 500px;
    height: 500px;
}

.hero-orbital--left {
    left: 4%;
}

.hero-orbital--right {
    right: -8%;
}

.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transform: translate(-50%, -50%);
}

.orbital-ring--1 {
    width: 280px;
    height: 280px;
    border-color: rgba(0, 0, 0, 0.06);
    animation: orbitalPulse 8s ease-in-out infinite;
}

.orbital-ring--2 {
    width: 400px;
    height: 400px;
    border-color: rgba(0, 0, 0, 0.04);
    animation: orbitalPulse 8s ease-in-out infinite 2s;
}

.orbital-ring--3 {
    width: 500px;
    height: 500px;
    border-color: rgba(0, 0, 0, 0.025);
    animation: orbitalPulse 8s ease-in-out infinite 4s;
}

@keyframes orbitalPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.5; }
}

@media (max-width: 900px) {
    .hero-orbital {
        width: 350px;
        height: 350px;
    }
    .orbital-ring--1 { width: 180px; height: 180px; }
    .orbital-ring--2 { width: 270px; height: 270px; }
    .orbital-ring--3 { width: 350px; height: 350px; }
}

@media (max-width: 600px) {
    .hero-orbital { display: none; }
}

/* =============================================================
   FLOATING KPI CARDS — dashboard metrics around globe
   ============================================================= */

.hero-kpis {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-kpi {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 237, 54, 0.25);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    pointer-events: auto;
    white-space: nowrap;
}

.hero-kpi__label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
}

.hero-kpi__value {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    font-family: 'JetBrains Mono', var(--font-heading), monospace;
    line-height: 1.1;
}

.hero-kpi__delta {
    font-size: 11px;
    font-weight: 500;
}

.hero-kpi__delta.positive {
    color: #16a34a;
}

.hero-kpi__badge-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 500;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* KPI positions — scattered around globe */
.hero-kpi--1 {
    top: 22%;
    left: 8%;
    animation: kpiFloat 4s ease-in-out infinite alternate;
}

.hero-kpi--2 {
    top: 18%;
    right: 8%;
    animation: kpiFloat 4.5s ease-in-out infinite alternate-reverse;
    animation-delay: 0.5s;
}

.hero-kpi--3 {
    bottom: 28%;
    left: 6%;
    animation: kpiFloat 3.8s ease-in-out infinite alternate;
    animation-delay: 1s;
}

.hero-kpi--4 {
    bottom: 22%;
    right: 7%;
    animation: kpiFloat 4.2s ease-in-out infinite alternate-reverse;
    animation-delay: 0.3s;
}

.hero-kpi--5 {
    top: 48%;
    right: 4%;
}

@keyframes kpiFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* KPI entrance + float combined */
.hero-kpi {
    opacity: 0;
    animation:
        kpiAppear 0.6s ease forwards,
        kpiFloat 4s ease-in-out 0.6s infinite;
}

.hero-kpi--1 { animation-delay: 0.3s, 0.9s; }
.hero-kpi--2 { animation-delay: 0.5s, 1.1s; }
.hero-kpi--3 { animation-delay: 0.7s, 1.3s; }
.hero-kpi--4 { animation-delay: 0.9s, 1.5s; }
.hero-kpi--5 { animation-delay: 1.1s, 1.7s; }

@keyframes kpiAppear {
    from { opacity: 0; transform: translateY(20px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}


/* Globe canvas — sized by .hero--immersive #sisteco-globe or fallback */
#sisteco-globe {
    display: block;
}

/* =============================================================
   NAVBAR — Dark hero variant (navbar--dark-hero)
   ============================================================= */

/* At top of page: fully transparent, white text */
.navbar--dark-hero {
    background: transparent;
    border-bottom: none;
}

.navbar--dark-hero .logo-text {
    color: rgba(248, 247, 245, 0.92);
}

.navbar--dark-hero .btn-ghost {
    color: rgba(248, 247, 245, 0.68);
}

.navbar--dark-hero .btn-ghost:hover {
    color: #f8f7f5;
    background: rgba(255, 255, 255, 0.08);
}

.navbar--dark-hero .btn-ghost::after {
    background: rgba(197, 237, 54, 0.7);
}

.navbar--dark-hero .hamburger span {
    background: rgba(248, 247, 245, 0.9);
}

/* Scrolled: dark glass pill */
.navbar--dark-hero.scrolled {
    background: transparent;
    border-bottom: none;
}

.navbar--dark-hero.scrolled .container {
    background: rgba(10, 10, 10, 0.80);
    border-color: rgba(197, 237, 54, 0.18);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.55),
        0 0 0 0.5px rgba(197, 237, 54, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.navbar--dark-hero.scrolled .btn-ghost {
    color: rgba(248, 247, 245, 0.78);
}

.navbar--dark-hero.scrolled .btn-ghost:hover {
    color: #f8f7f5;
    background: rgba(255, 255, 255, 0.06);
}

/* =============================================================
   RESPONSIVE — Immersive hero + KPIs
   ============================================================= */

@media (max-width: 900px) {
    .hero--immersive #sisteco-globe {
        width: 500px;
        height: 500px;
    }

    .hero-kpi--1 { left: 2%; }
    .hero-kpi--3 { left: 2%; }
    .hero-kpi--2 { right: 2%; }
    .hero-kpi--4 { right: 2%; }
    .hero-kpi--5 { right: 1%; }

    .hero-kpi__value { font-size: 18px; }
    .hero-kpi { padding: 8px 12px; }
}

@media (max-width: 600px) {
    .hero--immersive #sisteco-globe {
        width: 360px;
        height: 360px;
    }

    .hero-kpis {
        display: none;
    }

    .hero-h1-serif {
        font-size: clamp(32px, 9vw, 48px);
        white-space: normal;
    }

    .hero-overlay-content {
        padding: 100px 16px 0;
    }
}

@media (max-width: 480px) {
    .hero-h1-serif {
        font-size: clamp(28px, 8.5vw, 42px);
    }
}
