/*
Theme Name: F2J
Theme URI: https://f2jsolucoes.com.br
Author: F2J
Author URI: https://f2jsolucoes.com.br
Description: Tema WordPress da F2J adaptado do projeto original em Next.js.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: f2j
*/

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


:root {
  --background: #ffffff;
  --foreground: #171717;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}
/* ============================================
   F2J â€” DESIGN SYSTEM
   Dark Mode | Orange + Black + White
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Brand Colors */
    --orange-50: #FFF7ED;
    --orange-100: #FFEDD5;
    --orange-200: #FED7AA;
    --orange-300: #FDBA74;
    --orange-400: #FB923C;
    --orange-500: #F97316;
    --orange-600: #EA580C;
    --orange-700: #C2410C;
    --orange-800: #9A3412;

    /* Neutrals */
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F5;
    --gray-200: #E4E4E7;
    --gray-300: #D4D4D8;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #18181B;
    --gray-950: #09090B;

    /* Semantic */
    --bg-primary: #0A0A0B;
    --bg-secondary: #111113;
    --bg-tertiary: #18181B;
    --bg-card: rgba(24, 24, 27, 0.6);
    --bg-card-hover: rgba(39, 39, 42, 0.8);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(249, 115, 22, 0.3);

    --text-primary: #FAFAFA;
    --text-secondary: #A1A1AA;
    --text-tertiary: #71717A;
    --text-accent: #FB923C;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #FF6A00 0%, #FF9500 50%, #FFB347 100%);
    --gradient-brand-subtle: linear-gradient(135deg, rgba(255, 106, 0, 0.15) 0%, rgba(255, 149, 0, 0.05) 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0B 0%, #111113 100%);
    --gradient-card: linear-gradient(145deg, rgba(24, 24, 27, 0.8) 0%, rgba(9, 9, 11, 0.9) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.15) 0%, transparent 70%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.2);
    --shadow-glow-strong: 0 0 80px rgba(249, 115, 22, 0.3);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --container-padding: 24px;
    --section-padding: 120px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 150ms var(--ease-out-expo);
    --transition-base: 300ms var(--ease-out-expo);
    --transition-slow: 500ms var(--ease-out-expo);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-color: #0A0A0B; 
}

/* Base Cyber Grid */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    pointer-events: none;
}

/* Ambient Light (Nebula effect) */
body::after {
    content: '';
    position: fixed;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 201, 200, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(26, 82, 237, 0.05) 0%, transparent 40%);
    pointer-events: none;
    animation: nebulaDrift 25s ease-in-out infinite alternate;
}

@keyframes nebulaDrift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, 3%); }
}

/* ============================================
   ANIMATED CYBER LINES (BEAMS)
   ============================================ */
.cyber-lines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.cyber-lines .line {
    position: absolute;
    opacity: 0.8;
}

.cyber-lines .vertical { 
    width: 1px; 
    height: 35vh; 
}

.cyber-lines .horizontal { 
    width: 25vw; 
    height: 1px; 
}

/* 180px, 600px, 1200px perfectly align with the 60px grid */
.line-1 { 
    left: 180px; 
    background: linear-gradient(to bottom, transparent, var(--orange-500), transparent); 
    box-shadow: 0 0 15px var(--orange-500);
    animation: dropLine 7s linear infinite; 
}
.line-2 { 
    left: 600px; 
    background: linear-gradient(to bottom, transparent, #00C9C8, transparent); 
    box-shadow: 0 0 15px #00C9C8;
    animation: dropLine 11s linear infinite 4s; 
}
.line-3 { 
    left: 1200px; 
    background: linear-gradient(to bottom, transparent, #1A52ED, transparent); 
    box-shadow: 0 0 15px #1A52ED;
    animation: dropLine 8s linear infinite 1s; 
}
.line-4 { 
    top: 360px; 
    background: linear-gradient(to right, transparent, var(--orange-500), transparent); 
    box-shadow: 0 0 15px var(--orange-500);
    animation: passLine 14s linear infinite 2s; 
}
.line-5 { 
    top: 720px; 
    background: linear-gradient(to right, transparent, #00C9C8, transparent); 
    box-shadow: 0 0 15px #00C9C8;
    animation: passLine 10s linear infinite 6s; 
}

@keyframes dropLine {
    0% { top: -40vh; }
    100% { top: 110vh; }
}

@keyframes passLine {
    0% { left: -30vw; }
    100% { left: 110vw; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* --- Utility Classes --- */
.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--gradient-brand-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-family: var(--font-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-accent);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* --- Container --- */
.header__container,
.hero__container,
.solutions__container,
.differentials__container,
.sectors__container,
.cta-section__container,
.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   PRELOADER ANIMATION
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.loaded {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
}

.preloader__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

.preloader__logo {
    width: 140px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.5));
}

.preloader__glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.6) 0%, transparent 60%);
    filter: blur(25px);
    z-index: 1;
    animation: rotateGlow 3s linear infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes rotateGlow {
    from { transform: rotate(0deg) scale(1.2); }
    to { transform: rotate(360deg) scale(1.2); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 11, 0.3);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 11, 0.5);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.header__logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-fast);
}

.header__logo:hover .header__logo-img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.footer__logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.header__nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.header__nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.07);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 1px;
    transition: transform var(--transition-base);
}

.header__nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.header__nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.header__cta {
    padding: 10px 24px;
    background: var(--gradient-brand);
    color: #000;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.25);
}

.header__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.header__menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION â€” Fullscreen Scroll-Locked
   ============================================ */

/* Scroll spacer creates the distance needed for frame animation */
.hero-scroll-spacer {
    position: relative;
    height: 200vh;
}

.hero {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

/* Fullscreen Robot Background */
.hero__robot-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__robot-bg canvas {
    display: block;
}

/* Gradient refinado â€” cobre a Ã¡rea do texto sem esconder o robÃ´ */
.hero__robot-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            105deg,
            rgba(8, 8, 10, 0.97) 0%,
            rgba(8, 8, 10, 0.88) 25%,
            rgba(8, 8, 10, 0.55) 45%,
            rgba(8, 8, 10, 0.10) 65%,
            transparent 80%
        ),
        linear-gradient(
            180deg,
            rgba(8, 8, 10, 0.35) 0%,
            transparent 30%,
            transparent 70%,
            rgba(8, 8, 10, 0.6) 100%
        );
    z-index: 1;
    pointer-events: none;
}

.hero__bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero__container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.hero__content {
    max-width: 680px;
    padding-left: 20px;
}

/* ============================================
   HERO BRAND INTRO
   ============================================ */
.hero__brand-intro {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: clamp(24px, 5vw, 80px);
    pointer-events: none;
    will-change: opacity;
    gap: 16px;
}

.hero__brand-intro-glow {
    display: none;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%       { transform: scale(1.15); opacity: 1; }
}

.hero__brand-intro-logo {
    width: min(360px, 58vw);
    height: auto;
    position: relative;
    z-index: 1;
    animation: brandFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(249, 115, 22, 0.45))
            drop-shadow(0 0 120px rgba(249, 115, 22, 0.2));
}

@keyframes brandFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

.hero__brand-intro-tagline {
    font-family: var(--font-primary);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    z-index: 1;
    animation: taglineFadeIn 1.4s var(--ease-out-expo) 0.6s both;
}

@keyframes taglineFadeIn {
    from { opacity: 0; transform: translateY(12px) letterSpacing(0.05em); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__brand-intro-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: clamp(24px, 5vw, 80px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 1;
    animation: taglineFadeIn 1.2s var(--ease-out-expo) 1.2s both;
}

.hero__brand-intro-scroll-hint span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.hero__brand-intro-arrow {
    color: rgba(255, 255, 255, 0.5);
    display: block;
    flex-shrink: 0;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50%       { opacity: 0.9; transform: translateX(4px); }
}

/* ============================================
   HERO SCROLL REVEAL SYSTEM
   ============================================ */
.hero-fade-out {
    will-change: opacity, transform, filter;
}

.hero-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.75s var(--ease-out-expo),
        transform 0.75s var(--ease-out-expo);
    will-change: opacity, transform;
}

.hero-reveal.from-left {
    transform: translateX(-40px);
}

.hero-reveal.from-right {
    transform: translateX(40px);
}

.hero-reveal.scale-in {
    transform: scale(0.85) translateY(20px);
}

.hero-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger fino (sem delay fixo â€” timing controlado pelo scroll progress no JS) */
.hero-reveal[data-delay="1"],
.hero-reveal[data-delay="2"],
.hero-reveal[data-delay="3"],
.hero-reveal[data-delay="4"],
.hero-reveal[data-delay="5"] { transition-delay: 0ms; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--orange-400);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero__title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero__title-highlight {
    display: inline;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 520px;
    text-shadow: 0 1px 20px rgba(0,0,0,0.4);
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 56px;
}

.hero__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-brand);
    color: #000;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.hero__cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.hero__cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.hero__cta-primary:hover::before {
    opacity: 1;
}

.hero__cta-secondary {
    padding: 16px 28px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    backdrop-filter: blur(8px);
}

.hero__cta-secondary:hover {
    color: var(--text-primary);
    border-color: var(--text-tertiary);
    background: rgba(255, 255, 255, 0.08);
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__stat-plus {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Progress bar at the bottom of hero */
.hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 10;
}

.hero__progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-brand);
    border-radius: 0 2px 2px 0;
    transition: width 60ms linear;
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
}

/* Scroll Indicator â€” substituÃ­do pelo hint da brand intro */
.hero__scroll-indicator {
    display: none;
}

.hero__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--orange-500);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

.hero__scroll-indicator span {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.solutions__header,
.differentials__header,
.sectors__header {
    text-align: center;
    margin-bottom: 64px;
}

.solutions__title,
.differentials__title,
.sectors__title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.solutions__description,
.sectors__description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
        "a a b"
        "c d e"
        "c f f";
    gap: 20px;
}

/* ============================================
   STORYTELLING REVEAL SYSTEM
   ============================================ */
.story-item {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition:
        opacity 0.85s var(--ease-out-expo),
        transform 0.85s var(--ease-out-expo);
    will-change: opacity, transform;
}

.story-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Solution Cards */
.solution-card {
    position: relative;
    padding: 36px 28px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-slow), box-shadow var(--transition-slow), transform 0.4s var(--ease-out-expo);
    overflow: hidden;
    cursor: default;
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.solution-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover::after {
    transform: scaleX(1);
}

.solution-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--orange-400);
    transition: all var(--transition-base);
}

.solution-card:hover .solution-card__icon {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
    transform: scale(1.05);
}

.solution-card__title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.solution-card__text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.solution-card__tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange-400);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   DIFFERENTIALS SECTION
   ============================================ */
.differentials {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

.differentials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.differential-item {
    display: flex;
    gap: 24px;
    padding: 32px 28px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
}

.differential-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.differential-item:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.differential-item__icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: var(--radius-md);
    color: var(--orange-400);
    transition: all var(--transition-base);
}

.differential-item:hover .differential-item__icon-wrapper {
    background: rgba(249, 115, 22, 0.15);
    transform: scale(1.05);
}

.differential-item__content h3 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.differential-item__content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   SECTORS SECTION
   ============================================ */
.sectors {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.sectors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.sectors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sector-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
}

.sector-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.sector-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    /* transform handled by JS 3D tilt */
}

.sector-card__icon-ring {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(249, 115, 22, 0.08);
    border: 2px solid rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    color: var(--orange-400);
    transition: all var(--transition-base);
}

.sector-card:hover .sector-card__icon-ring {
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.35);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.15);
}

.sector-card__title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.sector-card__subtitle {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--orange-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.sector-card__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-section__container {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-section__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center top, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section__title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.cta-section__text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-section__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gradient-brand);
    color: #000;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
    position: relative;
}

.cta-section__button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    color: var(--orange-400);
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

.footer__col-title {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--orange-400);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--text-secondary);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Particle animation */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--orange-500);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        transform: translateY(-800px) scale(0);
    }
}

/* ============================================
   HERO ORBIT 3D (TÃ­tulo)
   ============================================ */
.hero__title-c-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero__c-letter {
    position: relative;
    z-index: 5;
}

.hero__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Diminui o tamanho do anel para abraÃ§ar bem justinho o C */
    width: 110px; 
    height: 110px;
    margin-left: -55px;
    margin-top: -55px;
    pointer-events: none;
    transform: rotateX(65deg) rotateY(-15deg);
    transform-style: preserve-3d;
}

.hero__orbit svg {
    width: 100%;
    height: 100%;
}

.hero__orbit--back {
    z-index: 1;
    opacity: 0.3;
}

.hero__orbit--front {
    z-index: 10;
    opacity: 1;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,1));
}

.hero__orbit-svg {
    transform-origin: center;
    animation: rotateOrbit 12s linear infinite;
}

@keyframes rotateOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   SAAS SHOWCASE (Isometric scroll-locked)
   ============================================ */
.saas-scroll-spacer {
    position: relative;
    height: 400vh;
}

.saas-showcase {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(15, 10, 8, 1) 0%, rgba(5, 4, 3, 1) 100%);
}

.saas__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
}

.saas__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    padding: 0 var(--container-padding);
}

/* --- LEFTSIDE TEXT --- */
.saas__text-col {
    flex: 1;
    position: relative;
    height: 300px; /* enough to hold the text */
}

.saas__text-item {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    max-width: 450px;
    transform: translateY(-50%) translateY(40px); /* Vem de baixo */
    opacity: 0;
    pointer-events: none;
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.saas__text-item.active {
    opacity: 1;
    transform: translateY(-50%) translateY(0); /* Fica no centro */
    filter: blur(0px);
    pointer-events: auto;
}

.saas__text-item.past {
    opacity: 0;
    transform: translateY(-50%) translateY(-40px); /* Vai para cima */
    filter: blur(10px);
}

.saas__step-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.saas__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.1;
}

.saas__desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- RIGHTSIDE VISUAL (Isometrics) --- */
.saas__visual-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    perspective: 1500px;
}

.saas__isobox {
    position: relative;
    width: 400px;
    height: 400px;
    /* Basic isometric rotation */
    transform: rotateX(60deg) rotateZ(-45deg);
    transform-style: preserve-3d;
    transition: transform 1s ease;
}

.iso-layer {
    position: absolute;
    inset: 0;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Will be positioned dynamically via CSS vars or JS */
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.25;
    border: 1.5px dashed rgba(249, 115, 22, 0.4); /* Linhas futuras com mais destaque laranja */
    /* By default future items are flattened slightly above each other */
}

/* Layer specific transforms applied in base. The Z distance grows. */
.iso-layer[data-layer="0"] { transform: translateZ(0px); }
.iso-layer[data-layer="1"] { transform: translateZ(40px); }
.iso-layer[data-layer="2"] { transform: translateZ(80px); }
.iso-layer[data-layer="3"] { transform: translateZ(120px); }

/* PAST STATE -> Base Layers */
.iso-layer.past {
    opacity: 0.8; /* Aumentado para ficarem bem aparentes na parte inferior */
    border-style: solid;
    border-color: rgba(249, 115, 22, 0.5); /* Borda solida laranja para simular placa empilhada e acesa */
    background: rgba(10, 10, 11, 0.6);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 20px rgba(249, 115, 22, 0.2); /* Camadas empilhadas lanÃ§am sombra e leve brilho refletido laranja */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.iso-layer.past .iso-layer__content {
    opacity: 0.15;
}

/* ACTIVE STATE -> Top most layer glowing */
.iso-layer.active {
    opacity: 1;
    border: 2px solid rgba(249, 115, 22, 0.85); /* F2J Orange Neon */
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(10, 10, 11, 0.5) 100%);
    box-shadow: inset 0 0 35px rgba(249, 115, 22, 0.4), 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 60px rgba(249, 115, 22, 0.4); /* Brilho Neon F2J */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.iso-layer.active .iso-layer__content {
    opacity: 1;
    transform: rotateZ(45deg) rotateX(-60deg) translateY(-20px); /* Un-rotate content partially to face user */
    filter: drop-shadow(0 0 25px rgba(249, 115, 22, 0.9));
}

.iso-layer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0; /* Hidden on future items */
    transition: all 0.8s ease;
    /* Reverting isometric container rotations so text is upright */
    transform: rotateZ(45deg) rotateX(-60deg);
}

.iso-layer__label {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-scroll-spacer {
        height: 150vh;
    }

    .hero__container {
        justify-content: center;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .solutions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectors__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
        --section-padding: 64px;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(17, 17, 19, 0.98);
        backdrop-filter: blur(30px);
        padding: 100px 32px 40px;
        border-left: 1px solid var(--border-subtle);
        transition: right var(--transition-slow);
        z-index: 5;
    }

    .header__nav.open {
        right: 0;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .header__nav-link {
        display: block;
        padding: 14px 16px;
        font-size: 1.1rem;
        border-radius: var(--radius-sm);
    }

    .header__cta {
        display: none;
    }

    .header__menu-toggle {
        display: flex;
    }

    .header__menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header__menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .header__menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-scroll-spacer {
        height: 300vh;
    }

    .hero__robot-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 11, 0.72) 0%,
            rgba(10, 10, 11, 0.46) 40%,
            rgba(10, 10, 11, 0.24) 100%
        );
    }

    .hero__container {
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 108px;
    }

    .hero__content {
        width: 100%;
        align-items: flex-start;
        text-align: left;
        padding-right: 24px;
    }

    .hero__title {
        font-size: clamp(2rem, 7vw, 3rem);
        max-width: 320px;
        line-height: 1.06;
    }

    .hero__subtitle {
        max-width: 340px;
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero__cta-primary,
    .hero__cta-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero__stats {
        gap: 24px;
    }

    .hero__stat-number {
        font-size: 1.5rem;
    }

    .solutions__grid {
        grid-template-columns: 1fr;
    }

    .differentials__grid {
        grid-template-columns: 1fr;
    }

    .sectors__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Saas Mobile */
    .saas__container {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px; /* Space for header */
    }

    .saas__text-col, .saas__visual-col {
        flex: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .saas__text-col {
        height: 220px;
    }

    .saas__text-item {
        position: absolute;
        top: 0;
        left: 0;
        text-align: center;
        max-width: 100%;
        transform: translateY(30px);
    }

    .saas__text-item.active {
        transform: translateY(0);
    }

    .saas__text-item.past {
        transform: translateY(-30px);
    }
    
    .saas__visual-col {
        margin-top: 40px;
        perspective: 1000px;
    }
    
    .saas__isobox {
        transform: scale(0.7) rotateX(60deg) rotateZ(-45deg); /* Scale down */
    }
}

@media (max-width: 480px) {
    .hero__stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero__stat {
        align-items: center;
        text-align: center;
    }

    .cta-section__container {
        padding: 48px 24px;
    }
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
    padding: 72px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.stats-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0.4;
    pointer-events: none;
}

.stats-strip__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.stat-item {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) { transition-delay: 0ms; }
.stat-item:nth-child(3) { transition-delay: 120ms; }
.stat-item:nth-child(5) { transition-delay: 240ms; }
.stat-item:nth-child(7) { transition-delay: 360ms; }

.stat-item__number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-family: var(--font-primary);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-suffix {
    font-size: 0.55em;
    font-weight: 800;
}

.stat-item__label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 64px;
    background: linear-gradient(180deg, transparent, var(--border-medium), transparent);
    flex-shrink: 0;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
    padding: 18px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    position: relative;
}

.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-primary), transparent);
}

.marquee-strip::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-primary), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

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

.marquee-content {
    display: flex;
    align-items: center;
}

.marquee-item {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding: 0 28px;
    transition: color var(--transition-fast);
}

.marquee-item:hover {
    color: var(--orange-400);
}

.marquee-sep {
    color: var(--orange-500);
    font-size: 0.4rem;
    opacity: 0.5;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   SOLUTION CARD SPOTLIGHT + BENTO
   ============================================ */
.card-spotlight {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

/* Ensure card content sits above spotlight */
.solution-card > *:not(.card-spotlight) {
    position: relative;
    z-index: 1;
}

/* Bento grid area assignments */
.solution-card:nth-child(1) { grid-area: a; }
.solution-card:nth-child(2) { grid-area: b; }
.solution-card:nth-child(3) { grid-area: c; }
.solution-card:nth-child(4) { grid-area: d; }
.solution-card:nth-child(5) { grid-area: e; }
.solution-card:nth-child(6) {
    grid-area: f;
    display: flex;
    align-items: center;
    gap: 36px;
    flex-direction: row;
}

.solution-card:nth-child(6) .solution-card__title,
.solution-card:nth-child(6) .solution-card__text {
    margin-bottom: 8px;
}

/* Tall card (area c) â€” flex column filling height */
.solution-card:nth-child(3) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ============================================
   DIFFERENTIAL NUMBER OVERLAY
   ============================================ */
.differential-item {
    position: relative;
    overflow: hidden;
}

.diff-number {
    position: absolute;
    top: 8px;
    right: 16px;
    font-family: var(--font-primary);
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(249, 115, 22, 0.04);
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    transition: color var(--transition-slow);
    user-select: none;
}

.differential-item:hover .diff-number {
    color: rgba(249, 115, 22, 0.09);
}

/* Left accent bar reveal */
.differential-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 3px;
    background: var(--gradient-brand);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-slow);
    border-radius: 0 2px 2px 0;
}

.differential-item:hover::before {
    transform: scaleY(1);
}

/* ============================================
   SECTOR CARDS â€” 3D TILT
   ============================================ */
.sectors__grid {
    perspective: 1200px;
}

.sector-card {
    will-change: transform;
    transition: border-color var(--transition-slow), box-shadow var(--transition-slow), transform 0.08s ease;
}

/* ============================================
   CTA SECTION â€” BEAM ANIMATION
   ============================================ */
.cta-section__container {
    animation: pulseGlowBorder 3.5s ease-in-out infinite;
}

@keyframes pulseGlowBorder {
    0%, 100% {
        border-color: rgba(249, 115, 22, 0.12);
        box-shadow: none;
    }
    50% {
        border-color: rgba(249, 115, 22, 0.38);
        box-shadow: 0 0 80px rgba(249, 115, 22, 0.1), inset 0 0 60px rgba(249, 115, 22, 0.03);
    }
}

.cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    border-radius: inherit;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.cta-beam {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(249, 115, 22, 0.55) 50%, transparent 100%);
    animation: beamSlide 4s ease-in-out infinite;
    opacity: 0;
    pointer-events: none;
}

.cta-beam--1 { left: 18%; animation-delay: 0s; }
.cta-beam--2 { left: 52%; animation-delay: 1.6s; }
.cta-beam--3 { left: 83%; animation-delay: 3.1s; }

@keyframes beamSlide {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    25%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
    75%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* Magnetic button */
.magnetic-btn {
    transition: transform 0.25s var(--ease-out-expo), box-shadow var(--transition-base);
}

/* ============================================
   FOOTER â€” GLOW ACCENT TOP
   ============================================ */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.45), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 80px;
    background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   RESPONSIVE â€” NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .solutions__grid {
        grid-template-areas:
            "a a"
            "b c"
            "d e"
            "f f";
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-card:nth-child(6) {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .stats-strip__container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 20px;
    }

    .stat-item {
        flex: 1 1 42%;
    }

    .stat-divider {
        display: none;
    }

    .solutions__grid {
        grid-template-areas: none;
        grid-template-columns: 1fr;
    }

    .solution-card:nth-child(n) {
        grid-area: auto;
    }

    .solution-card:nth-child(6) {
        flex-direction: column;
        align-items: flex-start;
    }

    .diff-number {
        font-size: 4rem;
    }

    .sectors__grid {
        perspective: none;
    }
}

/* ============================================
   MODERN SECTIONS EXPERIMENTAL DESIGN
   ============================================ */

.modern-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4vw;
}

.modern-section-heading {
    margin-bottom: 5vw;
}

.modern-section-heading.center {
    text-align: center;
}

.modern-heading {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.modern-heading span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-subheading {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
}

/* ============================================
   BLOG
   ============================================ */

.blog-page {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 18%, rgba(249, 115, 22, 0.14), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.08), transparent 28%),
        #000;
    overflow: hidden;
}

.blog-hero {
    position: relative;
    padding: 168px 0 72px;
}

.blog-hero__content {
    max-width: 780px;
}

.blog-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-posts-section {
    position: relative;
    padding: 0 0 112px;
}

.blog-posts-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-posts-section__header span {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.blog-posts-section__header p {
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.9rem;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-post-card {
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.045);
    overflow: hidden;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.blog-post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.34);
    background: rgba(255, 255, 255, 0.07);
}

.blog-post-card__link {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
}

.blog-post-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.blog-post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-card__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(255, 255, 255, 0.04)),
        #090909;
}

.blog-post-card__placeholder span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 800;
}

.blog-post-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
}

.blog-post-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-post-card__meta span + span::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 10px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.8);
    vertical-align: middle;
}

.blog-post-card__body h2 {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.25;
}

.blog-post-card__body p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-post-card__read-more {
    margin-top: auto;
    color: var(--orange-500);
    font-size: 0.9rem;
    font-weight: 700;
}

.blog-empty-state {
    display: grid;
    justify-items: start;
    gap: 16px;
    max-width: 680px;
    min-height: 280px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.045);
}

.blog-empty-state__marker {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: var(--gradient-brand);
}

.blog-empty-state h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.1;
}

.blog-empty-state p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1rem;
    line-height: 1.7;
}

.blog-article-page {
    overflow: visible;
}

.blog-article {
    padding: 148px 0 112px;
}

.blog-article__header {
    max-width: 880px;
    margin-bottom: 40px;
}

.blog-article__back {
    display: inline-flex;
    margin-bottom: 32px;
    color: var(--orange-500);
    font-size: 0.92rem;
    font-weight: 700;
}

.blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-article__meta span + span::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 12px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.8);
    vertical-align: middle;
}

.blog-article__header h1 {
    color: #fff;
    font-family: var(--font-primary);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
}

.blog-article__header p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.65;
}

.blog-article__cover {
    max-width: 1040px;
    margin-bottom: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
}

.blog-article__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-article__content {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.85;
}

.blog-article__content > * + * {
    margin-top: 1.25em;
}

.blog-article__content h2,
.blog-article__content h3,
.blog-article__content h4 {
    color: #fff;
    line-height: 1.2;
}

.blog-article__content h2 {
    font-size: 2rem;
}

.blog-article__content h3 {
    font-size: 1.55rem;
}

.blog-article__content a {
    color: var(--orange-500);
    font-weight: 700;
}

.blog-article__content ul,
.blog-article__content ol {
    padding-left: 1.25rem;
}

.blog-article__content blockquote {
    padding-left: 20px;
    border-left: 3px solid var(--orange-500);
    color: rgba(255, 255, 255, 0.9);
}

.blog-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

/* --- Global Glow --- */
.modern-global-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* --- Modern Stats Section (with CTA headline + value props) --- */
.modern-stats-section {
    padding: 8vw 0 4vw 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stats-headline {
    text-align: center;
    margin-bottom: 60px;
}

.stats-headline h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 16px;
}

.stats-headline h2 span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-headline p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.modern-stats__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

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

.modern-stat__value {
    font-family: var(--font-primary);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #fff;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-stat__suffix {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--orange-500);
    -webkit-text-fill-color: var(--orange-500);
}

.modern-stat__label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-top: 10px;
    font-weight: 600;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.value-prop-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    background: rgba(20, 20, 22, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    transition: all 0.4s ease;
}

.value-prop-item:hover {
    border-color: rgba(249, 115, 22, 0.25);
    background: rgba(30, 30, 34, 0.6);
    transform: translateY(-3px);
}

.value-prop-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    color: var(--orange-400);
}

.value-prop-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
}

.value-prop-item p strong {
    color: var(--orange-400);
    font-weight: 700;
}

/* --- Bento Grid Solutions (Simplified 3-card) --- */
.modern-solutions {
    padding: 4vw 0;
    position: relative;
    z-index: 2;
}

.bento-split-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(520px, 1.15fr);
    gap: 32px;
    align-items: stretch;
}

.bento-grid-simple {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-card-simple {
    background: rgba(20, 20, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    backdrop-filter: blur(20px);
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease;
}

.bento-card-simple:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
}

.bento-card-simple .bento-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-400);
    transition: transform 0.4s ease, color 0.4s ease, background 0.4s ease;
}

.bento-card-simple .bento-icon svg {
    width: 32px;
    height: 32px;
}

.bento-card-simple:hover .bento-icon {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
    background: var(--orange-500);
    border-color: var(--orange-400);
}

.bento-card-simple h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.bento-video-card {
    position: relative;
    min-height: 100%;
    background: rgba(20, 20, 22, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.bento-video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.12), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%);
    pointer-events: none;
}

.bento-video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: contain;
    border-radius: 20px;
    background: #050505;
    display: block;
}

.section-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.section-cta-button {
    padding: 16px 32px;
    background: var(--gradient-brand);
    color: #000;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.25);
}

.section-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
}

/* --- Slanted Marquee --- */
.modern-marquee-wrapper {
    padding: 6vw 0;
    transform: rotate(3deg) scale(1.1);
    background: var(--orange-500);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.modern-marquee-track {
    display: flex;
    white-space: nowrap;
}

.modern-marquee-scroller {
    display: flex;
    animation: scrollTextLeft 30s linear infinite;
}

.modern-marquee-scroller span {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    padding: 0 2vw;
}

@keyframes scrollTextLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Sector Cards Grid --- */
.modern-sectors {
    padding: 5vw 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.sector-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.sectors__cta {
    margin-top: 24px;
    padding: 14px 28px;
    background: var(--gradient-brand);
    color: #000;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.25);
}

.sectors__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
}

.sector-card-compact {
    background: rgba(20, 20, 22, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(16px);
    transition: all 0.4s ease;
    cursor: default;
}

.sector-card-compact:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(30, 30, 34, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.08);
}

.sector-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 14px;
    color: var(--orange-400);
    transition: all 0.3s ease;
}

.sector-card-compact:hover .sector-card-icon {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.35);
    transform: scale(1.08);
}

.sector-card-compact h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.sector-card-compact p {
    font-size: 0.8rem;
    color: var(--orange-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Testimonials --- */
.modern-testimonials {
    padding: 6vw 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(20, 20, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    backdrop-filter: blur(16px);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: rgba(249, 115, 22, 0.2);
    background: rgba(30, 30, 34, 0.5);
    transform: translateY(-4px);
}

.quote-icon {
    color: var(--orange-500);
    opacity: 0.4;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    flex-grow: 1;
    text-align: justify;
    text-justify: inter-word;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    margin-top: auto;
}

.author-info h4 {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--orange-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Magnetic CTA --- */
.modern-cta {
    padding: 5vw 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.modern-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

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

.modern-cta-title {
    font-family: var(--font-primary);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 60px;
}

.modern-cta-title span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.magnetic-wrap {
    display: inline-block;
}

.btn-magnetic-massive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: rgba(20, 20, 22, 0.6);
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 20px rgba(249, 115, 22, 0.1), 0 0 40px rgba(249, 115, 22, 0.1);
}

.btn-magnetic-massive::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(249, 115, 22, 0.8), transparent 40%);
    animation: rotateGlow 4s linear infinite;
    z-index: 0;
}

.btn-magnetic-massive::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #000;
    border-radius: 50%;
    z-index: 1;
    transition: background 0.4s ease;
}

.btn-text {
    position: relative;
    z-index: 3;
    text-align: center;
    transition: color 0.4s ease, transform 0.4s ease;
}

.btn-magnetic-massive:hover {
    box-shadow: inset 0 0 40px rgba(249, 115, 22, 0.3), 0 0 100px rgba(249, 115, 22, 0.5);
    border-color: rgba(249, 115, 22, 0.5);
}

.btn-magnetic-massive:hover::after {
    background: rgba(249, 115, 22, 0.1);
}

.btn-magnetic-massive:hover .btn-text {
    color: var(--orange-500);
    transform: scale(1.1);
}

.btn-flare {
    display: none;
}

/* --- SaaS Solutions Section --- */
.saas-solutions-section {
    padding: 4vw 0 3vw;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.saas-section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.saas-section-title span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.saas-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.saas-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 48px 32px;
    background: rgba(20, 20, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    transition: all 0.4s ease;
    text-decoration: none;
}

.saas-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(30, 30, 34, 0.5);
    transform: translateY(-3px);
}

.saas-card-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saas-card-logo img {
    max-height: 70px;
    width: auto;
}

.saas-card-logo.elo-logo img {
    transform: scale(1.6);
}

.saas-card-name {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.saas-card:hover .saas-card-name {
    color: rgba(255, 255, 255, 0.8);
}

/* --- Compact Footer --- */
.modern-footer.modern-footer--compact {
    padding: 2.5vw 0 1.5vw;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #000;
}

.footer-top--compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand--compact .footer-logo {
    height: 30px;
    margin-bottom: 0;
}

.footer-links--compact {
    display: flex;
    gap: 48px;
}

.link-col--compact h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 10px;
}

.link-col--compact a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.link-col--compact a:hover {
    color: var(--orange-500);
}

.modern-footer--compact .footer-bottom {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.modern-footer--compact .legal-links a {
    margin-left: 20px;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

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

/* --- Scroll Reveal Utilities --- */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .bento-split-layout {
        grid-template-columns: 1fr;
    }
    .bento-video {
        min-height: 500px;
    }
    .sector-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .value-props {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top--compact {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 112px;
    }

    .header {
        padding: 12px 0;
    }

    .header__container {
        min-height: 64px;
    }

    .header__logo-img {
        height: 34px;
    }

    .bento-split-layout {
        gap: 24px;
    }

    .modern-section-heading {
        margin-bottom: 32px;
    }

    .modern-heading,
    .saas-section-title {
        line-height: 1.08;
    }

    .modern-subheading {
        font-size: 1rem;
        line-height: 1.6;
    }

    .stats-headline {
        margin-bottom: 40px;
    }

    .stats-headline h2 {
        font-size: clamp(1.55rem, 7vw, 2.3rem);
        line-height: 1.18;
    }

    .stats-headline p {
        font-size: 0.98rem;
    }

    .modern-stats__inner {
        gap: 36px;
    }

    .bento-video-card {
        padding: 12px;
        border-radius: 20px;
    }
    .bento-video {
        min-height: 320px;
        border-radius: 14px;
    }
    .sector-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .value-props {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .saas-cards-grid {
        grid-template-columns: 1fr;
        max-width: none;
        width: 100%;
        gap: 20px;
    }

    .saas-card {
        padding: 36px 24px;
    }

    .testimonial-card {
        padding: 30px 24px;
    }

    .testimonial-author {
        align-items: flex-start;
    }

    .modern-stat__value {
        font-size: 3rem;
    }

    .modern-cta {
        padding: 72px 0;
    }

    .modern-cta-title {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
        margin-bottom: 32px;
    }

    .magnetic-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .btn-magnetic-massive {
        width: 190px;
        height: 190px;
        min-height: 190px;
        border-radius: 50%;
        padding: 20px;
        font-size: 0.9rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .btn-magnetic-massive::before {
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
    }

    .btn-magnetic-massive::after {
        border-radius: 50%;
    }

    .btn-text {
        width: 100%;
        max-width: 132px;
        margin: 0 auto;
        font-size: 0.9rem;
        line-height: 1.5;
        letter-spacing: 0.12em;
        word-break: normal;
        overflow-wrap: break-word;
        text-wrap: balance;
    }

    .section-cta-wrap {
        margin-top: 28px;
    }

    .section-cta-button,
    .sectors__cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
        padding: 15px 22px;
    }

    .modern-footer--compact .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .modern-footer.modern-footer--compact {
        padding: 32px 0 20px;
    }

    .footer-top--compact {
        align-items: stretch;
        gap: 28px;
        margin-bottom: 20px;
    }

    .footer-brand--compact {
        display: flex;
        justify-content: flex-start;
    }

    .footer-brand--compact .footer-logo {
        height: 28px;
    }

    .footer-links--compact {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .link-col--compact {
        min-width: 0;
    }

    .link-col--compact a {
        overflow-wrap: anywhere;
    }

    .modern-footer--compact .footer-bottom {
        width: 100%;
        align-items: center;
    }

    .modern-footer--compact .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .modern-footer--compact .legal-links a {
        margin-left: 0;
    }
}

/* ============================================
   CHAT WIDGET — JUNINHO
   ============================================ */
.chat-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.chat-panel {
    width: min(380px, calc(100vw - 32px));
    height: min(620px, calc(100vh - 120px));
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(17, 17, 19, 0.96) 0%, rgba(9, 9, 11, 0.98) 100%);
    border: 1px solid rgba(249, 115, 22, 0.22);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 0 40px rgba(249, 115, 22, 0.12);
    overflow: hidden;
    backdrop-filter: blur(22px);
}

.chat-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0.03) 45%, transparent 100%);
}

.chat-panel__identity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 46px;
    height: 46px;
    position: relative;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 22px rgba(249, 115, 22, 0.25);
}

.chat-avatar__image {
    object-fit: cover;
}

.chat-panel__identity h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.chat-panel__identity p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.chat-panel__close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: all var(--transition-fast);
}

.chat-panel__close:hover {
    color: #fff;
    border-color: rgba(249, 115, 22, 0.24);
    background: rgba(249, 115, 22, 0.1);
}

.chat-panel__messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.06), transparent 35%), linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
}

.chat-panel__messages::-webkit-scrollbar {
    width: 8px;
}

.chat-panel__messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.chat-bubble {
    max-width: 88%;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
}

.chat-bubble--assistant {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    border-top-left-radius: 6px;
}

.chat-bubble--user {
    align-self: flex-end;
    background: var(--gradient-brand);
    color: #000;
    font-weight: 600;
    border-top-right-radius: 6px;
}

.chat-bubble--typing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: auto;
}

.chat-bubble--typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: chatTyping 1.1s infinite ease-in-out;
}

.chat-bubble--typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.chat-bubble--typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes chatTyping {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.35; }
    40% { transform: translateY(-4px); opacity: 1; }
}

.chat-panel__composer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 6, 8, 0.85);
}

.chat-panel__composer input {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.chat-panel__composer input:focus {
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.chat-panel__composer button {
    padding: 0 18px;
    border: none;
    border-radius: 16px;
    background: var(--gradient-brand);
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
}

.chat-panel__composer button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(249, 115, 22, 0.32);
}

.chat-panel__composer button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.chat-launcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 12px;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    background: rgba(12, 12, 14, 0.88);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.chat-launcher:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42), 0 0 32px rgba(249, 115, 22, 0.16);
}

.chat-launcher__icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.chat-launcher__pulse {
    position: absolute;
    left: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.25);
    animation: chatPulse 2.4s infinite;
}

@keyframes chatPulse {
    0% { transform: scale(0.9); opacity: 0.9; }
    70% { transform: scale(1.7); opacity: 0; }
    100% { transform: scale(1.7); opacity: 0; }
}

.chat-launcher__label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .chat-widget {
        right: 14px;
        left: 14px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
        align-items: stretch;
        pointer-events: none;
    }

    .chat-panel {
        width: 100%;
        height: min(68vh, 540px);
        pointer-events: auto;
    }

    .chat-launcher {
        width: 68px;
        height: 68px;
        padding: 0;
        border-radius: 50%;
        align-self: flex-end;
        justify-content: center;
        pointer-events: auto;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
    }

    .chat-launcher__pulse {
        left: 16px;
    }

    .chat-launcher__label {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
    }

    body {
        padding-bottom: 96px;
    }

    .header__container {
        min-height: 60px;
    }

    .header__logo-img {
        height: 30px;
    }

    .header__nav {
        width: calc(100vw - 24px);
        max-width: none;
        padding: 88px 22px 32px;
    }

    .hero-scroll-spacer {
        height: 260vh;
    }

    .hero__container {
        padding-top: 92px;
    }

    .hero__content {
        padding-right: 8px;
    }

    .hero__title {
        max-width: 280px;
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        line-height: 1.04;
    }

    .hero__orbit-svg {
        width: 126px;
        height: 126px;
    }

    .hero__subtitle {
        max-width: 280px;
        font-size: 0.95rem;
    }

    .hero__cta-primary,
    .hero__cta-secondary {
        font-size: 0.95rem;
        padding: 14px 18px;
    }

    .hero__progress {
        height: 2px;
    }

    .modern-heading,
    .saas-section-title {
        font-size: clamp(1.9rem, 10vw, 2.5rem);
        line-height: 1.02;
    }

    .modern-subheading {
        font-size: 0.95rem;
    }

    .modern-stats-section,
    .modern-solutions,
    .modern-sectors,
    .modern-testimonials,
    .saas-solutions-section {
        padding-top: 56px;
        padding-bottom: 40px;
    }

    .modern-stat {
        width: 100%;
    }

    .modern-stat__value {
        font-size: 2.6rem;
    }

    .modern-stat__label {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
    }

    .value-prop-item {
        padding: 20px 18px;
        gap: 12px;
    }

    .bento-card-simple {
        padding: 28px 22px;
        gap: 16px;
    }

    .bento-card-simple h3 {
        font-size: 1.08rem;
    }

    .bento-video {
        min-height: 240px;
    }

    .modern-marquee-wrapper {
        padding: 22px 0;
        transform: rotate(2deg) scale(1.03);
    }

    .modern-marquee-scroller span {
        font-size: clamp(2rem, 10vw, 3rem);
        padding: 0 4vw;
    }

    .sector-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sector-card-compact {
        padding: 22px 18px;
    }

    .testimonials-grid {
        gap: 20px;
        margin-top: 36px;
    }

    .testimonial-card {
        padding: 24px 18px;
        gap: 18px;
    }

    .testimonial-text {
        font-size: 0.96rem;
    }

    .section-cta-button,
    .sectors__cta {
        max-width: none;
        width: 100%;
        font-size: 0.95rem;
    }

    .modern-cta {
        padding: 56px 0;
    }

    .modern-cta-title {
        font-size: clamp(1.95rem, 11vw, 2.8rem);
        margin-bottom: 26px;
    }

    .btn-magnetic-massive {
        width: 176px;
        height: 176px;
        min-height: 176px;
    }

    .btn-text {
        max-width: 124px;
        font-size: 0.84rem;
    }

    .saas-card {
        padding: 30px 18px;
    }

    .saas-card-logo {
        height: 68px;
    }

    .saas-card-logo img {
        max-height: 58px;
    }

    .footer-top--compact {
        gap: 22px;
    }

    .link-col--compact h4 {
        margin-bottom: 8px;
    }

    .link-col--compact a {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .modern-footer--compact .footer-bottom {
        font-size: 0.76rem;
    }

    .chat-panel {
        height: min(62vh, 500px);
    }

    .chat-panel__messages {
        padding: 14px;
    }

    .chat-panel__composer {
        grid-template-columns: 1fr;
    }

    .chat-panel__composer button {
        min-height: 48px;
    }
}

@media (max-width: 390px) {
    .hero__title {
        max-width: 250px;
        font-size: clamp(1.65rem, 10.5vw, 2.25rem);
    }

    .hero__orbit-svg {
        width: 110px;
        height: 110px;
    }

    .hero__subtitle {
        max-width: 250px;
        font-size: 0.92rem;
    }

    .btn-magnetic-massive {
        width: 164px;
        height: 164px;
        min-height: 164px;
    }

    .btn-text {
        max-width: 114px;
        font-size: 0.78rem;
        letter-spacing: 0.1em;
    }

    .chat-launcher {
        width: 60px;
        height: 60px;
    }

    .chat-launcher__icon {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 132px 0 56px;
    }

    .blog-posts-section {
        padding-bottom: 80px;
    }

    .blog-posts-section__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-empty-state {
        padding: 28px;
    }

    .blog-article {
        padding: 128px 0 80px;
    }

    .blog-article__cover {
        aspect-ratio: 16 / 11;
    }
}

@media (max-width: 480px) {
    .blog-hero__eyebrow {
        font-size: 0.72rem;
    }

    .blog-post-card__body {
        padding: 18px;
    }

    .blog-empty-state {
        padding: 24px;
    }

    .blog-article__meta {
        font-size: 0.78rem;
    }
}

.lead-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead-modal-overlay[hidden] {
    display: none !important;
}
.lead-modal-content {
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.95) 0%, rgba(9, 9, 11, 0.98) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    width: 100%;
    max-width: 520px;
    padding: 24px 32px;
    position: relative;
    max-height: 98vh;
    overflow-y: hidden;
}
.lead-modal-close {
    position: absolute;
    top: 14px; right: 20px;
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.lead-modal-close:hover { color: #f97316; }

.lead-form .form-group {
    margin-bottom: 12px;
}
.lead-form .form-row {
    display: flex;
    gap: 12px;
}
.lead-form .form-group.half {
    flex: 1;
}
.lead-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: #a1a1aa;
    font-weight: 500;
}
.lead-form input, .lead-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 0.9rem;
}
.lead-form input:focus, .lead-form textarea:focus {
    border-color: #f97316;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.1);
}

.lead-submit-simple {
    width: 100%;
    margin-top: 8px;
    background-color: #f97316;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.lead-submit-simple:hover {
    background-color: #ea580c;
}
.lead-submit-simple:active {
    transform: scale(0.98);
}
.lead-submit-simple:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}
