/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* ============================================================
   KAYROS — CSS del sitio (bundle completo, sin modificar)
   ============================================================ */
/* ======================= styles.css (GLOBAL BASE) ======================= */
﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap');

/* ============================================================
   KAYROS AI TECHNOLOGIES — Shared Stylesheet
   Light theme (single theme, no dark mode)
   ============================================================ */

/* Títulos: Century Gothic | Subtítulos y texto: Avenir */
@font-face {
    font-family: 'Century Gothic';
    src: url('../assets/fonts/century_gothic/centurygothic.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../assets/fonts/century_gothic/centurygothic_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../assets/fonts/avenir/avenir_light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../assets/fonts/avenir/avenir_regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../assets/fonts/avenir/avenir_heavy.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ─── CSS Variables ────────────────────────────────────────── */
:root {
    /* Backgrounds */
    --bg-page: #F5F7FA;
    --bg-card: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-section: #EEF1F6;

    /* Brand */
    --primary-red: #FF4438;
    --primary-red-2: #FF6B5B;
    --primary-blue: #070034;
    --primary-blue-2: #070034;

    /* Text */
    --text-main: #111827;
    --text-muted: #475569;
    --text-dim: #94A3B8;
    --text-white: #FFFFFF;

    /* Borders */
    --border: rgba(0, 0, 0, 0.08);
    --border-h: rgba(255, 68, 56, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);

    /* Glows */
    --glow-red: rgba(255, 68, 56, 0.45);
    --glow-blue: rgba(7, 0, 52, 0.7);

    /* Glass */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-h: rgba(255, 68, 56, 0.5);

    /* Radius */
    --radius-card: 20px;
    --radius-btn: 50px;

    /* Header height */
    --header-h: 70px;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── Shared Utility Classes ───────────────────────────────── */
.text-brand-red {
    color: var(--primary-red);
}

.text-white,
.text-white-strong {
    color: white;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.section-title--white {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.modal-box--relative {
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Avenir', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    line-height: 1.6;
    padding-top: var(--header-h);
}

h1,
h2,
h3,
h4 {
    font-family: 'Century Gothic', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ─── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 3px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Home Transparent Header State */
body.home-transparent-header {
    padding-top: 0;
}

body.home-transparent-header .site-header {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

body.home-transparent-header .site-header .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

body.home-transparent-header .site-header .nav-link:hover,
body.home-transparent-header .site-header .nav-link.active {
    color: #fff;
}

body.home-transparent-header .site-header .header-logo img {
    filter: brightness(0) invert(1);
}

body.home-transparent-header .site-header .mobile-menu-btn span {
    background: #fff;
}

/* Scrolled State for Home Header */
body.home-transparent-header .site-header.scrolled {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

body.home-transparent-header .site-header.scrolled .nav-link {
    color: var(--text-muted);
}

body.home-transparent-header .site-header.scrolled .nav-link:hover {
    color: var(--text-main);
}

body.home-transparent-header .site-header.scrolled .header-logo img {
    filter: none;
}

body.home-transparent-header .site-header.scrolled .mobile-menu-btn span {
    background: var(--text-main);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    gap: 24px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.header-logo img {
    height: 32px;
    width: auto;
    max-width: 200px;
}

.header-assist-badge img {
    height: 28px;
    width: auto;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.header-logo-name {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--primary-blue);
}

.header-logo-sub {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-red);
    text-transform: uppercase;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    opacity: 0;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.nav-link.active {
    color: var(--text-main);
}

.nav-link.active::after {
    transform: scaleX(1) !important;
    opacity: 1 !important;
    bottom: -6px !important;
}

/* Assist Badge */
.header-assist-badge {
    display: inline-flex;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-assist-badge .cs-accent-layer--red {
    border-radius: 12px;
    border-bottom-right-radius: 0;
}

.header-assist-badge__panel {
    position: relative;
    z-index: 1;
    background: var(--primary-blue);
    border-radius: 10px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header-assist-badge__panel img {
    display: block;
}

.header-assist-badge__panel {
    transition: background 0.25s ease;
}

.header-assist-badge .cs-accent-layer--red {
    transition: background 0.25s ease;
}

.header-assist-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 68, 56, 0.35);
}

.header-assist-badge:hover .header-assist-badge__panel {
    background: var(--primary-red);
}

.header-assist-badge:hover .cs-accent-layer--red {
    background: var(--primary-blue);
}

.header-assist-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-red);
    animation: blink 1.5s ease-in-out infinite;
    flex-shrink: 0;
}


/* ─── Brand accent layers (global) ─────────────────────────── */
.cs-accent-layer--red {
    position: absolute;
    inset: 0;
    background: var(--primary-red);
    border-radius: 36px;
    border-bottom-right-radius: 0;
    z-index: 0;
}

.cs-accent-layer--blue {
    position: absolute;
    inset: 0;
    background: var(--primary-blue);
    border-radius: 42px;
    border-bottom-right-radius: 0;
    z-index: 0;
}

/* Header right controls */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile menu toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-h));
    background: #FDFDFD;
    z-index: 999;
    padding: 30px;
    overflow: hidden;
    border-top: 1px solid var(--border);
    
    /* Smooth Transition */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav-bg-k {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 450px;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: all 0.8s ease 0.2s;
    transform: scale(0.9) rotate(5deg);
}

.mobile-nav.open .mobile-nav-bg-k {
    opacity: 0.05;
    transform: scale(1) rotate(0deg);
}

.mobile-nav-content {
    position: relative;
    z-index: 10;
    padding-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-nav li {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    
    /* Stagger Start State */
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-nav.open li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.mobile-nav.open li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.open li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open li:nth-child(6) { transition-delay: 0.35s; }

/* K isotipo bullet */
.mobile-nav li::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url('../assets/logos/iso/iso-red.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.mobile-nav .nav-link {
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 0;
    border-bottom: none;
    letter-spacing: -0.1px;
}

.mobile-nav .nav-link.active {
    font-weight: 800;
    color: var(--primary-red);
}

.mobile-nav .nav-link::after {
    display: none;
}

.mobile-assist-item {
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 60px;
    border-top: 1px solid var(--border);
}

.mobile-assist-badge {
    display: flex !important;
    width: 100%;
    justify-content: center;
    border-radius: 12px !important;
}

.mobile-assist-badge .header-assist-badge__panel {
    width: 100%;
    justify-content: center;
    padding: 16px !important;
    border-radius: 10px !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #111827;
    color: #FFFFFF;
    padding: 48px 32px 0;
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo img {
    height: 35px;
    width: auto;
    max-width: 180px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-name {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.footer-logo-sub {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-red);
    text-transform: uppercase;
}

/* Footer Nav */
.footer-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

.footer-nav a {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

.footer-nav a.footer-contact-link {
    color: var(--primary-red);
}

.footer-nav a.footer-contact-link:hover {
    color: #FF6B5B;
}

/* Footer Right */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-link:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary-red);
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-btn);
    font-family: 'Avenir', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-red);
    color: #FFFFFF;
    box-shadow: 0 4px 16px var(--glow-red);
}

.btn-primary:hover {
    background: var(--primary-red-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--glow-red);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--primary-blue);
    color: #FFFFFF;
}

.btn-blue:hover {
    background: var(--primary-blue-2);
    transform: translateY(-2px);
}

.btn-green {
    background: #16a34a;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.25);
}

.btn-green:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

.btn-outline-white {
    background: transparent;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Hero CTA outlined style (from reference image) */
.btn-hero-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 11px 24px;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-badge {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-primary .btn-badge {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
    padding: 40px 32px;
}

.section-sm {
    padding: 48px 32px;
}

.section-lg {
    padding: 120px 32px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.container-sm {
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 68, 56, 0.08);
    border: 1px solid rgba(255, 68, 56, 0.2);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-red);
    animation: blink 1.5s ease-in-out infinite;
}

.section-title {
    font-family: 'Century Gothic', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    font-family: 'Avenir', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================
   TECH BANNER DARK
   ============================================================ */
.tech-banner-dark {
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 40px;
    padding: 48px;
    background-color: #0A0919;
    background-image:
        linear-gradient(rgba(0, 168, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 255, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: white;
}

.tech-banner-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 50% 50%, rgba(74, 122, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 35% 45% at 15% 80%, rgba(120, 80, 255, 0.07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.tech-banner-dark p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.tech-banner-dark-decor-left,
.tech-banner-dark-decor-right,
.tech-banner-dark-decor-center {
    display: none;
}

@media (max-width: 768px) {
    .tech-banner-dark {
        padding: 32px 20px;
    }

    .tech-banner-dark p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-h);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 68, 56, 0.08);
    border: 1px solid rgba(255, 68, 56, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================================
   EXPANDABLE PANELS
   ============================================================ */
.expandable-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-panel.open {
    max-height: 2000px;
}

.expand-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-red);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
    transition: opacity 0.2s ease;
}

.expand-trigger:hover {
    opacity: 0.75;
}

.expand-trigger .expand-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.expand-trigger.open .expand-arrow {
    transform: rotate(180deg);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 10, 0.1);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    width: 95%;
    max-width: 780px;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    box-shadow: var(--shadow-lg);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-red);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 68, 56, 0.3);
}

.modal-close:hover {
    background: var(--primary-red-2);
    transform: rotate(90deg) scale(1.1);
}

.modal-close:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.modal-left {
    background: linear-gradient(160deg, var(--primary-blue-2) 0%, #000 100%);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.modal-left::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-red);
    filter: blur(80px);
    opacity: 0.15;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.modal-logo-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
}

.modal-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-qr {
    width: 90px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.modal-media-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.modal-qr-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.modal-scan-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

.modal-right {
    padding: 28px;
    overflow-y: auto;
    max-height: 90vh;
    position: relative;
}

.modal-right h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.modal-right h2 span {
    color: var(--primary-red);
}

.modal-right>p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 16px;
}

/* Form */
.demo-form {
    display: grid;
    gap: 12px;
}

.form-group label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg-section);
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-main);
    font-family: 'Avenir', sans-serif;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(255, 68, 56, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-btn);
    background: var(--primary-red);
    border: none;
    color: white;
    font-family: 'Avenir', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.25s ease;
}

.form-submit:hover {
    background: var(--primary-red-2);
    transform: translateY(-2px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease both;
}

/* ============================================================
   VIEWPORT SECTIONS (index.html: hero + Who We Are + Core Capabilities only)
   ============================================================ */
.viewport-sections {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.viewport-sections .hero-banner {
    min-height: 0;
    flex: 0.75;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.viewport-sections .hero-banner-inner {
    flex: 1;
    min-height: 0;
    padding: 32px 24px 0px;
    gap: 32px;
}

.viewport-sections .hero-banner-text h1 {
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.viewport-sections .hero-banner-text p {
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.viewport-sections .hero-banner-visual img {
    max-height: 200px;
    max-width: min(200px, 100%);
}

.viewport-sections .who-capabilities-section {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
}

.viewport-sections .who-capabilities-inner {
    gap: 32px;
}

.viewport-sections .who-col h2,
.viewport-sections .cap-col h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.viewport-sections .who-col>p {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.viewport-sections .capability-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.viewport-sections .capability-checklist li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(241, 245, 249, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    z-index: 1;
}

.viewport-sections .capability-checklist li::before {
    content: none;
}

.viewport-sections .capability-checklist li:hover {
    background: #fff;
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.cap-item-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.25px;
    white-space: normal;
    word-break: break-word;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cap-check {
    width: 24px;
    height: 24px;
    background: #e9f9ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cap-item-desc {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 8px;
}

/* cap-tooltip: oculto siempre — contenido accesible via modal */
.cap-tooltip {
    display: none;
}


.cap-tooltip p {
    font-size: 0.78rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 12px;
    font-weight: 500;
}

.cap-tooltip p:last-child {
    margin-bottom: 0;
}

.cap-tooltip p.italic {
    font-style: italic;
    color: var(--text-muted);
}

/* Who We Are Card Hover */
.who-card {
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    cursor: default;
}

.who-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-blue);
    border-radius: 42px;
    border-bottom-right-radius: 0px;
    z-index: 0;
}

.who-card-inner {
    position: relative;
    background: var(--bg-section);
    border-radius: 36px;
    border: 1px solid var(--border);
    padding: 32px 28px;
    overflow: hidden;
    z-index: 1;
    flex: 1;
    height: 100%;
    transition: all 0.3s ease;
}

.who-card h2 {
    margin-bottom: 16px;
}

/* who-tooltip: hidden always — content now accessed via modal */
.who-tooltip {
    display: none;
}

.who-tooltip p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.who-tooltip p:last-child {
    margin-bottom: 0;
}

/* Mosaic Backgrounds — disabled, replaced by grid patterns */
.bg-mosaic-light,
.bg-mosaic-strong {
    display: none;
}

/* Brand Background Utilities */
.bg-brand-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-2) 100%);
    color: var(--text-white) !important;
}

.bg-dark-glow {
    background: #0A0919;
    color: var(--text-white) !important;
    position: relative;
    overflow: hidden;
}

.bg-dark-glow>.container {
    position: relative;
    z-index: 1;
}

/* Fondo holográfico reutilizable — navy oscuro + cuadrícula azul eléctrica */
.bg-holographic-grid {
    background-color: #111827;
    background-image:
        linear-gradient(rgba(0, 168, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.info-modal-content {
    position: relative;
    z-index: 1;
}

/* ============================================================
   HERO BANNER (Home — new design matching reference image)
   ============================================================ */
.hero-banner {
    min-height: calc(100vh - var(--header-h));
    background-color: #111827;
    background-image:
        linear-gradient(rgba(0, 168, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 255, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Video background properties */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Hide native browser play buttons that can show on mobile when autoplay is blocked */
.hero-bg-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

.hero-bg-video::-webkit-media-controls {
    display: none !important;
}

.hero-bg-video::--video-controls {
    display: none !important;
}

.hero-bg-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-bg-video::-webkit-media-controls-play-button {
    display: none !important;
}

/* Overlay: dark base + atmospheric radial glows (home2.html kx-hero style) */
.hero-bg-overlay {
    position: absolute;
    inset: -10%;
    z-index: 1;
    pointer-events: none;
    background-color: rgba(8, 10, 32, 0.87);
    background-image:
        radial-gradient(ellipse 32% 40% at 78% 32%, rgba(74, 122, 255, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse 28% 36% at 12% 78%, rgba(120, 80, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 24% 30% at 85% 85%, rgba(250, 66, 56, 0.08) 0%, transparent 60%);
}

/* Grain texture */
.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* Radial glow accent — right side */
.hero-banner::after {
    content: '';
    position: absolute;
    right: -10%;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(74, 122, 255, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.hero-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-banner-text {
    color: white;
}

.hero-banner-text h1 {
    font-size: clamp(1.8rem, 3.5vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.hero-banner-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-banner-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero CTAs: pill buttons with colored badge (TALK / MAIL) */
.btn-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #EAEAEA;
    color: #333;
    border: none;
    padding: 3px 14px 3px 3px;
    border-radius: 50px;
    font-family: 'Avenir', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.25px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.btn-hero-pill:hover {
    background: #E0E0E0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.btn-hero-talk .hero-pill-badge {
    background: #FF4B3A;
}

.btn-hero-mail .hero-pill-badge {
    background: #6A3CEF;
}

.hero-pill-arrow {
    margin-left: 1px;
    font-weight: 700;
    font-size: 0.85em;
}

/* "KEEP ME INFORMED" box style from reference */
.btn-inform-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Avenir', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    line-height: 1.2;
}

.btn-inform-box span {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
    opacity: 0.85;
}

.btn-inform-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Hero visual panel (right side) */
.hero-banner-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 40px;
}

.logo-system-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-system {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-pulse-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 40px var(--glow-red);
    position: relative;
    z-index: 11;
    background: var(--primary-blue);
}

/* Orbit rings */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    pointer-events: none;
}

.orbit-ring-1 {
    width: 160px;
    height: 160px;
    border-color: rgba(255, 68, 56, 0.25);
}

.orbit-ring-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(7, 0, 52, 0.2);
    border-width: 1.5px;
}

.orbit-ring-3 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 0, 0, 0.05);
}

/* Satellites */
.satellite {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: 5;
}

.sat-1 {
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    box-shadow: 0 0 15px var(--glow-red);
}

.sat-2 {
    width: 8px;
    height: 8px;
    background: var(--primary-blue-2);
    box-shadow: 0 0 12px var(--primary-blue-2);
}

.sat-3 {
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Pulse rings */
.pulse-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--primary-red);
    opacity: 0;
    pointer-events: none;
}

.pulse-1 {
    animation: ringPulse 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.pulse-2 {
    animation: ringPulse 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite 2s;
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

/* ============================================================
   PAGE HERO (non-home pages)
   ============================================================ */
.page-hero {
    padding: 64px 32px 48px;
    background-color: #111827;
    background-image:
        linear-gradient(rgba(0, 168, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 255, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    border-bottom: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Grain texture */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* Radial glow accent — centered */
.page-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(74, 122, 255, 0.14) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero .hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-hero .hero-bg-overlay {
    position: absolute;
    inset: -10%;
    z-index: 1;
    pointer-events: none;
    background-color: rgba(8, 10, 32, 0.87);
    background-image:
        radial-gradient(ellipse 50% 60% at 70% 20%, rgba(74, 122, 255, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(120, 80, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 30% 40% at 90% 90%, rgba(250, 66, 56, 0.07) 0%, transparent 60%);
}

.page-hero .container-sm {
    position: relative;
    z-index: 5;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 68, 56, 0.08);
    border: 1px solid rgba(255, 68, 56, 0.2);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.page-hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-red);
    animation: blink 1.5s ease-in-out infinite;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-hero h1 span {
    color: var(--primary-red);
}

.page-hero p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 730px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

/* Override: light text when page-hero has video background */
.page-hero .page-hero-eyebrow {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}


.page-hero h1 {
    color: #fff;
}

.page-hero h1 span {
    color: rgba(255, 255, 255, 0.9);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.88);
}

/* Override: buttons in dark hero */
.page-hero .btn-secondary {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
}

.page-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #FFFFFF;
}

/* ============================================================
   WHO WE ARE + CORE CAPABILITIES (two-column, Home)
   ============================================================ */
.who-capabilities-section {
    padding: 72px 32px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.who-capabilities-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left column — Who We Are */
.who-col h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.who-col>p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 20px;
}

.who-extended-content {
    text-align: left;
    padding: 24px;
    background: var(--bg-section);
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-top: 16px;
}

.who-extended-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 12px;
}

.who-extended-content p:last-child {
    margin-bottom: 0;
}

/* Divider between columns */
.who-capabilities-inner .col-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
    display: none;
}

/* Right column — Core Capabilities */
.cap-col h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
}

.capability-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.capability-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.capability-checklist li:last-child {
    border-bottom: none;
}

.capability-checklist li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}

.modal-cap-list li {
    padding: 0 !important;
    border: none !important;
    margin-bottom: 24px !important;
}

.modal-cap-list li::before {
    content: none !important;
}

/* Expanded capabilities grid */
.cap-extended-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.cap-extended-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.cap-extended-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cap-extended-card h4::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-red);
    flex-shrink: 0;
}

.cap-extended-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   CAPABILITY PILLS (kept for other pages)
   ============================================================ */
.pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.pill:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pill.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.news-filters-scroll {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .news-filters-scroll {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap !important;
        padding: 5px 20px 15px;
        margin: 0 -16px 25px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .news-filters-scroll::-webkit-scrollbar {
        display: none;
    }
    .news-filters-scroll .pill {
        flex-shrink: 0;
    }
}

.pill svg {
    flex-shrink: 0;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-section {
    padding: 48px 32px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 600;
}

/* ============================================================
   FIXED SOCIAL SIDEBAR
   ============================================================ */
.fixed-socials {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 900;
    transition: opacity 0.3s ease;
}

.fixed-socials.hidden {
    opacity: 0;
    pointer-events: none;
}

.social-fixed-link {
    width: 34px;
    height: 34px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.social-fixed-link:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transform: translateX(3px);
}

.social-fixed-link svg {
    width: 15px;
    height: 15px;
}

/* ============================================================
   ASSIST BANNER (Home — blue banner style from reference)
   ============================================================ */
.assist-banner {
    background: linear-gradient(135deg, #0d2b5e 0%, #1a4a8a 50%, #1e5fa0 100%);
    position: relative;
    overflow: hidden;
}

.assist-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    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: 50px 50px;
    pointer-events: none;
}

.assist-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.assist-banner-text .overline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.assist-banner-text .product-name {
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.assist-banner-text h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    line-height: 1.35;
}

.assist-banner-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 440px;
}

.assist-banner-img img {
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

/* ============================================================
   AI SOLUTIONS PAGE
   ============================================================ */
.challenge-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.cs-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
}

.cs-box h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-box h3 .cs-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cs-box.challenge h3 .cs-icon {
    background: rgba(255, 68, 56, 0.1);
    color: var(--primary-red);
}

.cs-box.solution h3 .cs-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.cs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cs-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.cs-box.challenge .cs-list li::before {
    background: var(--primary-red);
}

.cs-box.solution .cs-list li::before {
    background: #22c55e;
}

/* Healthcare orgs */
.org-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.org-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(241, 245, 249, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.org-item svg {
    flex-shrink: 0;
}

.org-item:hover {
    background: var(--bg-card);
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Impact list */
.impact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(241, 245, 249, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.impact-item svg {
    flex-shrink: 0;
}

.impact-item:hover {
    background: var(--bg-card);
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   COMPANY PAGE
   ============================================================ */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.mv-box {
    background: var(--primary-red);
    border: none;
    border-radius: 32px 32px 0 32px;
    padding: 32px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.mv-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0B1120;
    background-image:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(250, 66, 56, 0.09) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(26, 5, 128, 0.5) 0%, transparent 60%);
    border-radius: 32px;
    z-index: -2;
}

.mv-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-red), transparent);
    border-radius: 0;
    z-index: -1;
}

.mv-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.mv-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Leadership */
/* Leadership — Re-architected for a more premium, card-based look */
.leadership-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 48px;
}

.leader-profile-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    background: #fff;
    border-radius: 36px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    height: 100%;
}

.leader-card-wrapper {
    position: relative;
    padding: 0;
    margin-bottom: 24px;
}

.leader-card-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-blue);
    border-radius: 42px;
    z-index: 0;
}

/* Michael (Visual on Left) — Corner on Bottom Left */
.leader-card-wrapper:not(.reverse-wrapper)::before {
    border-bottom-left-radius: 0px;
}

/* Aileen (Visual on Right) — Corner on Bottom Right */
.leader-card-wrapper.reverse-wrapper::before {
    border-bottom-right-radius: 0px;
}

.leader-profile-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 68, 56, 0.3);
    transform: translateY(-4px);
}

.leader-visual {
    background: linear-gradient(135deg, #F0F2F5 0%, #D8DEE9 100%);
    position: relative;
    display: flex;
    align-items: flex-end; /* Cut-off at bottom */
    justify-content: center;
    overflow: hidden;
    padding-top: 40px;
}

/* Decorative background for the visual side */
.leader-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/logos/iso/iso-blue.svg');
    background-size: 100px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    transform: scale(3) rotate(-15deg);
    pointer-events: none;
}

.leader-photo-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.leader-photo-wrap img {
    max-width: 80%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.leader-profile-card:hover .leader-photo-wrap img {
    transform: scale(1.03);
}

.leader-content {
    padding: 24px 36px;
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
}

.leader-header {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.leader-bio-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.leader-bio-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Subtle corner decoration */
.leader-content::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: var(--primary-red);
    opacity: 0.02;
    border-radius: 50%;
    pointer-events: none;
}

.leader-role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 20px;
    background: rgba(255, 68, 56, 0.05);
    padding: 6px 16px;
    border-radius: 50px;
    width: fit-content;
}

.leader-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.leader-intro-text {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 0;
}

.leader-bio p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.leader-bio p:last-child {
    margin-bottom: 0;
}

.leader-bio p strong {
    color: var(--text-main);
    font-weight: 700;
}

/* Reverse layout for variety */
.leader-profile-card.reverse {
    grid-template-columns: 1fr 320px;
}

.leader-profile-card.reverse .leader-visual {
    order: 2;
}

.leader-profile-card.reverse .leader-content {
    order: 1;
    padding: 24px 36px;
}

/* Responsive Leadership */
@media (max-width: 1200px) {
    .leader-profile-card {
        grid-template-columns: 320px 1fr;
    }
}

@media (max-width: 1024px) {
    .leader-profile-card, 
    .leader-profile-card.reverse {
        grid-template-columns: 1fr;
        border-radius: 32px;
    }

    .leader-visual,
    .leader-profile-card.reverse .leader-visual {
        order: 1;
        height: 420px; /* Taller area for better framing */
        padding: 30px 20px 0;
    }

    .leader-content,
    .leader-profile-card.reverse .leader-content {
        order: 2;
        padding: 40px 32px;
    }

    .leader-bio-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .leader-name {
        font-size: 1.75rem;
    }
}

/* Core Values Wheel */
.values-wheel-section {
    padding: 80px 32px;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.values-wheel-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 64px;
    align-items: center;
}

.values-wheel {
    position: relative;
    width: 440px;
    height: 440px;
    margin: 0 auto;
}

.values-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 0 10px rgba(7, 0, 52, 0.08);
}

.values-center span {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}

.value-node {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    z-index: 5;
}

.value-node span {
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: block;
}

.value-node:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 15px rgba(7, 0, 52, 0.2);
}

.value-node.active {
    background: var(--bg-card);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(255, 68, 56, 0.1), var(--shadow-md);
    z-index: 12;
}

.value-node.active span {
    color: var(--primary-blue);
}

.connector-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connector-lines line {
    transition: all 0.3s ease;
}

.connector-lines line.active {
    stroke: var(--primary-red);
    stroke-width: 2px;
    opacity: 1;
}

.value-detail {
    padding: 32px;
    background: var(--bg-card);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-detail h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 16px;
    animation: valueFadeIn 0.5s ease both;
}

.value-detail p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    animation: valueFadeIn 0.5s ease 0.1s both;
}

@keyframes valueFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Dark Card System */
.premium-dark-card {
    position: relative;
    overflow: hidden;
    padding: 48px;
    background: linear-gradient(135deg, #111827 0%, #111827 100%);
    border-radius: var(--radius-card);
    text-align: center;
    color: white;
}

.premium-card-glow-red {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(255, 68, 56, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.premium-card-glow-blue {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(80, 100, 220, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.premium-card-lines {
    position: absolute;
    width: 120px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.premium-card-lines.left {
    top: -140px;
    left: -20px;
    transform: rotate(90deg);
}

.premium-card-lines.right {
    top: -80px;
    right: -20px;
    transform: rotate(270deg);
}

.premium-card-pattern {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.premium-dark-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
    font-style: italic;
}

@media (max-width: 768px) {
    .premium-dark-card {
        padding: 32px 20px;
    }

    .premium-dark-card p {
        font-size: 0.95rem;
    }
}

/* Technology Philosophy */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.philosophy-item {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
}

.phi-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 68, 56, 0.12);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.philosophy-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.philosophy-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Why Kayros */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.25s ease;
}

.why-item:hover {
    border-color: var(--border-h);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 68, 56, 0.08);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.why-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   INDUSTRY NEWS PAGE
   ============================================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-h);
}

.news-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.news-card-img .news-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-red);
    color: white;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.news-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-meta {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-title-link {
    text-decoration: none;
}

.news-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.news-card:hover h3 {
    color: var(--primary-red);
}

.news-card-img-link {
    display: block;
    text-decoration: none;
}

.news-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.news-card-link:hover {
    gap: 10px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
}

@media (min-width: 992px) {
    .contact-info {
        padding-top: 36px;
    }
}

.contact-detail-item .ci-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 68, 56, 0.08);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item .ci-icon svg {
    width: 26px;
    height: 26px;
}

.contact-detail-item .ci-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 2px;
}

.contact-detail-item .ci-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.contact-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.contact-form-box>p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ============================================================
   GRADIENT BORDER WRAPPER
   ============================================================ */
.kx-grad-border {
    padding: 1.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(46, 139, 255, 0.75) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(46, 139, 255, 0.14);
    display: flex;
    flex-direction: column;
}
.kx-grad-border > * { flex: 1; }

.kx-grad-border--r36 { border-radius: 37.5px; }
.kx-grad-border--mv  { border-radius: 33.5px 33.5px 1.5px 33.5px; }
.kx-grad-border--r20 { border-radius: 21.5px; max-width: 1100px; margin: 0 auto; }

/* ============================================================
   CTA BANNER (reusable)
   ============================================================ */
.cta-banner {
    padding: 40px 32px 60px 32px;
    background: transparent;
    position: relative;
}

.cta-banner-inner {
    background-color: #0A0919;
    background-image:
        linear-gradient(rgba(0, 168, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 255, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    padding: 60px 40px;
    border-radius: 20px;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.cta-banner-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 65% at 50% 50%, rgba(74, 122, 255, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 35% 45% at 15% 85%, rgba(120, 80, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    position: relative;
}

.cta-banner p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --header-h: 60px;
    }

    .header-inner {
        padding: 0 16px;
    }

    .hero-banner {
        align-items: flex-start;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .challenge-solution-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner-inner,
    .viewport-sections .hero-banner-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 120px;
        padding-bottom: 20px;
        align-items: flex-start;
    }

    .hero-banner-visual {
        display: block;
        position: absolute;
        right: -20px;
        top: 55%;
        transform: translateY(-50%) scale(0.85);
        z-index: -1;
        opacity: 0.9;
    }

    .assist-banner-inner {
        grid-template-columns: 1fr;
    }

    .assist-banner-img {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-wheel-container {
        grid-template-columns: 1fr;
    }

    .who-capabilities-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header-nav {
        display: none;
    }

    .header-assist-badge:not(.mobile-assist-badge) {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 48px 16px;
    }

    .section-lg {
        padding: 64px 16px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .leadership-item {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0;
    }

    .leadership-item.reverse {
        direction: ltr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Fix index.html specific sections */
    .viewport-sections {
        min-height: auto;
        height: auto;
        display: block;
        overflow: visible;
    }

    .viewport-sections .hero-banner-inner {
        display: flex;
        flex-direction: column;
        padding: 80px 16px 40px;
        gap: 24px;
        align-items: center;
        text-align: center;
        min-height: auto;
    }

    .viewport-sections .who-capabilities-section {
        min-height: auto;
        height: auto;
        overflow: visible;
        padding: 40px 16px;
    }

    .mobile-only-btn {
        display: inline-flex !important;
        margin-top: 15px;
    }

    .who-card:hover .who-tooltip,
    .viewport-sections .capability-checklist li:hover .cap-tooltip {
        display: none !important;
    }

    .who-card:hover {
        transform: none !important;
        box-shadow: none !important;
        border-color: var(--border) !important;
    }

    .viewport-sections .hero-banner {
        min-height: auto;
        flex: none;
    }

    .viewport-sections .hero-banner-visual {
        display: block !important;
        position: relative;
        right: auto;
        top: auto;
        transform: scale(0.8);
        z-index: 1;
        opacity: 1;
        order: -1;
        /* Place it above or below as needed, usually above text on mobile */
        margin: -50px auto -40px;
    }

    .viewport-sections .hero-banner-text {
        width: 100%;
    }

    .viewport-sections .hero-banner-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-banner-btns {
        justify-content: center;
    }

    .viewport-sections .who-capabilities-inner {
        flex-direction: column;
        gap: 24px;
    }

    .viewport-sections .capability-checklist {
        grid-template-columns: 1fr;
    }


    .viewport-sections .cap-item-title {
        white-space: normal;
        line-height: 1.4;
    }

    .cta-section {
        padding: 40px 20px !important;
        margin: 20px 10px !important;
    }

    .cta-content {
        gap: 30px !important;
    }

    .org-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .impact-item {
        display: flex;
        width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .cap-extended-grid {
        grid-template-columns: 1fr;
    }

    .who-capabilities-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .assist-banner-inner {
        grid-template-columns: 1fr;
    }

    .hero-banner-inner {
        padding: 48px 16px;
    }

    .hero-banner-text h1 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-top: 20px;
        -webkit-line-clamp: initial;
        line-clamp: initial;
        overflow: visible;
    }

    .hero-banner-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-banner-text h1 br,
    .hero-banner-text p br {
        display: none;
    }

    .who-capabilities-section {
        padding: 40px 16px;
    }

    .assist-banner-inner {
        padding: 40px 16px;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .footer-right {
        align-items: center;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .modal-box {
        grid-template-columns: 1fr;
        max-height: 95dvh;
        background: #070034;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .modal-left {
        padding: 20px 20px 12px !important;
        background: transparent !important;
        text-align: center !important;
        align-items: center !important;
        flex-shrink: 0;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .modal-left h2 {
        font-size: 1.1rem !important;
        text-align: center !important;
        margin-bottom: 0;
        line-height: 1.3 !important;
    }

    .modal-logo-box {
        width: 60px !important;
        height: 60px !important;
    }

    .modal-qr {
        width: 66px !important;
    }

    .modal-scan-label {
        font-size: 0.68rem !important;
    }

    .modal-right {
        padding: 16px 20px 20px !important;
        background: #fff !important;
        color: var(--text-main) !important;
        flex: 1;
        overflow: hidden;
        border-radius: 0 0 24px 24px;
    }

    .modal-right h2,
    .modal-right p,
    .modal-right strong,
    .modal-right span:not(.news-tag),
    .modal-right li {
        color: var(--text-main) !important;
    }

    .modal-right > p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }

    .modal-right h2 {
        font-size: 1.2rem !important;
        margin-bottom: 4px !important;
    }

    .demo-form {
        gap: 8px !important;
    }

    .form-group label {
        font-size: 0.62rem !important;
        margin-bottom: 2px !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 8px 12px !important;
        font-size: 0.82rem !important;
    }

    .form-group.modal-message-field {
        display: none;
    }

    .form-submit {
        padding: 10px !important;
        font-size: 0.85rem !important;
    }

    /* Keep mosaic background visible in the whole box */
    .modal-box .bg-mosaic-strong {
        opacity: 0.15 !important;
        z-index: 0;
    }

    .fixed-socials {
        display: none;
    }

    .values-wheel {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .hero-banner-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .org-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   NEW SECTIONS (IMPORTED FROM WIDGET ANIME)
═══════════════════════════════════════════════════════════ */

/* ─── CTA Section ────────────────────────────────────── */
.cta-section {
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    background: var(--bg-section);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 68, 56, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* ─── Features / Values ──────────────────────────────── */
.features-section {
    padding: 60px 20px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    width: 100% !important;
    background: var(--bg-page);
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 16px !important;
    overflow: hidden !important;
}

.feature-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    padding: 28px 20px !important;
    border-radius: var(--radius-card) !important;
    backdrop-filter: blur(12px) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 0 !important;
    box-shadow: var(--shadow-sm) !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(255, 68, 56, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 68, 56, 0.4);
    box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 68, 56, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 46px !important;
    height: 46px !important;
    background: linear-gradient(135deg, rgba(255, 68, 56, 0.2) 0%, rgba(7, 0, 52, 0.2) 100%) !important;
    border: 1px solid rgba(255, 68, 56, 0.25) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 18px !important;
    color: var(--primary-red-2) !important;
    transition: all 0.3s ease !important;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue-2) 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 24px -8px var(--glow-red);
}

.feature-card h3 {
    font-size: 1rem !important;
    margin-bottom: 10px !important;
    color: var(--text-main) !important;
    font-weight: 700 !important;
}

.feature-card p {
    color: var(--text-muted) !important;
    font-size: 0.78rem !important;
    line-height: 1.6 !important;
}

.card-num {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: rgba(0, 0, 0, 0.03) !important;
    user-select: none !important;
    font-variant-numeric: tabular-nums !important;
}

/* Dark Theme Adaptations for Features inside bg-dark-glow */
.bg-dark-glow .feature-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5) !important;
}

.bg-dark-glow .feature-card h3 {
    color: white !important;
}

.bg-dark-glow .feature-card p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.bg-dark-glow .card-num {
    color: rgba(255, 255, 255, 0.05) !important;
}

.bg-dark-glow .feature-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 68, 56, 0.5) !important;
}

/* ─── Countdown Section ──────────────────────────────── */
.countdown-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-section);
}

.countdown-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(7, 0, 52, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.countdown-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px;
    border-right: 1px solid var(--glass-border);
}

.countdown-item:last-child {
    border-right: none;
}

.countdown-number {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 200;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -1px;
    padding: 0 10px;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, var(--text-main) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.countdown-item:hover .countdown-number {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 16px;
    color: var(--text-dim);
    font-weight: 700;
}

@media (max-width: 768px) {
    .features-section {
        padding: 40px 16px !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .feature-card {
        display: grid !important;
        grid-template-columns: 60px 1fr !important;
        align-items: center !important;
        gap: 0 16px !important;
        padding: 20px !important;
        text-align: left !important;
    }

    .feature-icon {
        grid-row: span 2 !important;
        margin-bottom: 0 !important;
        width: 44px !important;
        height: 44px !important;
    }

    .feature-card h3 {
        margin-bottom: 4px !important;
        font-size: 1rem !important;
    }

    .feature-card p {
        font-size: 0.82rem !important;
        margin-bottom: 0 !important;
    }

    #featuresHeader {
        margin-bottom: 30px !important;
    }

    #featuresHeader p {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        margin-top: 12px !important;
    }

    .countdown-timer {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
        gap: 20px !important;
    }

    .countdown-item {
        padding: 20px !important;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }

    .countdown-item:nth-child(even) {
        border-right: none;
    }

    .cta-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Powered by Kayros - mobile */
@media (max-width: 768px) {
    .powered-by-kairos div[style*="display:flex"] img {
        width: 40px !important;
        height: 40px !important;
    }

    .powered-by-kairos div[style*="display:flex"] {
        flex-direction: column !important;
        gap: 12px !important;
    }

    /* Core Values Wheel - Mobile Specific */
    .values-wheel-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 16px !important;
    }

    .values-wheel {
        width: 300px !important;
        height: 300px !important;
        margin: 0 auto 30px !important;
    }

    .value-node {
        width: 100px !important;
        height: 100px !important;
        padding: 0 !important;
    }

    .value-node span {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
    }

    .values-center {
        width: 60px !important;
        height: 60px !important;
    }

    .value-detail {
        padding: 24px !important;
        min-height: auto !important;
        margin-top: 20px;
    }

    .value-detail h3 {
        font-size: 1.3rem !important;
    }
}

/* ============================================================
   PAGE TRANSITIONS
   Cross-document View Transitions API (Chrome/Edge 126+).
   JS fallback in main.js handles Firefox/Safari.
   ============================================================ */
@view-transition {
    navigation: auto;
}

@keyframes kx-page-out {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-10px); }
}

@keyframes kx-page-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

::view-transition-old(root) {
    animation: kx-page-out 0.22s cubic-bezier(0.4, 0, 0.2, 1) both;
}

::view-transition-new(root) {
    animation: kx-page-in 0.36s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ======================= home.css (Home) ======================= */
/* ============================================================
   HOME PAGE — css/home.css
   ============================================================ */

/* ─── Intro Preloader ──────────────────────────────────────── */
@keyframes pulseHeartbeat {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 66, 56, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 12px rgba(250, 66, 56, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 66, 56, 0);
    }
}

#introOverlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-video-fill {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.intro-sound-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    animation: pulseHeartbeat 1.5s infinite;
}

/* ─── Hero CTA mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-banner-btns .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ─── Who We Are Card ──────────────────────────────────────── */
.who-card__logo-watermark {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.who-card__content {
    position: relative;
    z-index: 1;
}

.who-tooltip__overlay {
    border-radius: 8px;
    z-index: 0;
}

.who-tooltip__heading {
    color: white;
    margin-bottom: 16px;
}

/* ─── Brand Text Highlights ────────────────────────────────── */
.text-brand-red {
    color: var(--primary-red);
}

.text-white {
    color: white;
}

.text-white-strong {
    color: white;
}

.mb-0 {
    margin-bottom: 0;
}

/* ─── Learn-more button (visible en desktop y mobile) ──────── */
.mobile-only-btn-sm {
    padding: 6px 16px;
    font-size: 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
}

/* ─── Modals: single-column layout ────────────────────────── */
#whoModal .modal-box,
#capModal .modal-box {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
    background: var(--primary-blue);
}

#whoModal .modal-left,
#capModal .modal-left {
    flex-shrink: 0;
    padding: 24px 28px;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    background: transparent;
    position: relative;
}

/* Mosaico visible en el título también */
#whoModal .modal-left .bg-mosaic-strong,
#capModal .modal-left .bg-mosaic-strong {
    display: block;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    opacity: 0.04;
}

/* ─── Who Modal body — azul oscuro con mosaico ─────────────── */
.who-modal-tooltip-body {
    background: var(--primary-blue);
    color: rgba(255, 255, 255, 0.85);
    padding: 32px;
    position: relative;
    overflow-y: auto;
    flex: 1;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.who-modal-tooltip-body .bg-mosaic-strong {
    border-radius: inherit;
    opacity: 0.04;
}

.who-modal-tooltip-body p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.who-modal-tooltip-body p:last-child {
    margin-bottom: 0;
}

/* ─── Cap Modal body — azul oscuro con mosaico ─────────────── */
#capModal .modal-right {
    background: var(--primary-blue);
    color: rgba(255, 255, 255, 0.85);
    flex: 1;
    overflow-y: auto;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    position: relative;
}

#capModal .modal-right .bg-mosaic-strong {
    border-radius: inherit;
    opacity: 0.04;
}

#capModal .modal-cap-intro {
    color: rgba(255, 255, 255, 0.9);
}

#capModal .modal-cap-title {
    color: #ff7b72;
}

#capModal .modal-cap-desc,
#capModal .modal-cap-note {
    color: rgba(255, 255, 255, 0.72);
}

#capModal .modal-cap-footer {
    color: rgba(255, 255, 255, 0.9);
    border-top-color: rgba(255, 255, 255, 0.12);
}

/* ─── Product CTA Section ──────────────────────────────────── */
.product-cta-section {
    position: relative;
    background: rgba(241, 245, 249, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-card);
    padding: 24px 12px !important;
    margin-top: 0px !important;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
}

.product-cta-section:hover {
    background: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.cta-image img,
.cta-image video {
    width: 88%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 32px;
    opacity: 0.95;
    box-shadow: none !important;
}

.cta-content-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.cta-text-left {
    order: 1;
    flex: 1;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-eyebrow-wide {
    margin-bottom: 12px;
    font-size: 0.5rem;
    margin-right: -102px;
}

.cta-title-compact {
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 12px;
    background: none;
    -webkit-text-fill-color: var(--text-main);
}

.cta-desc-compact {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.78rem;
    line-height: 1.6;
}

.cta-btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 50px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-image-right {
    order: 2;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    border-radius: 32px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .product-cta-section {
        padding: 24px 20px !important;
    }

    .mobile-stack {
        flex-direction: column !important;
        align-items: center;
        gap: 24px !important;
        height: auto !important;
    }

    .mobile-stack .cta-text {
        width: 100% !important;
        flex: none !important;
        justify-content: flex-start !important;
        margin-bottom: 0px !important;
        text-align: center !important;
        align-items: center !important;
    }

    .mobile-stack .cta-text .section-eyebrow {
        margin-right: 0px !important;
        display: inline-block !important;
    }

    .mobile-stack .cta-image {
        width: 100% !important;
        flex: none !important;
        margin-top: 0px !important;
    }

    .mobile-stack .cta-image img,
    .mobile-stack .cta-image video {
        max-height: none !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
    }

    .mobile-stack .section-eyebrow,
    .mobile-stack .section-title,
    .mobile-stack p {
        margin-bottom: 12px !important;
        text-align: center !important;
    }
}

/* ─── Capabilities ─────────────────────────────────────────── */
.cap-check--transparent {
    background: transparent;
}

.cap-check-icon {
    width: 24px;
    height: 24px;
}

.cap-col__inner {
    padding-top: 32px;
}

.cap-col__footer {
    text-align: left;
    margin-top: 16px;
}

.cap-tooltip__bold {
    font-weight: 700;
}

/* ─── Core Values / Features ───────────────────────────────── */
.features-section--transparent {
    background: transparent !important;
}

.section-title--white {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.section-title--white .text-brand-red {
    -webkit-text-fill-color: var(--primary-red);
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.7);
    max-width: 740px;
    margin: 16px auto 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ─── Countdown ────────────────────────────────────────────── */
.section-header--no-mb {
    margin-bottom: 0;
}

.countdown-desc {
    color: var(--text-muted);
    max-width: 700px;
    margin: 16px auto 24px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── Hero CTA cursor ─────────────────────────────────────── */
.cursor-pointer {
    cursor: pointer;
}

/* ─── Modals base ──────────────────────────────────────────── */
.modal-box--relative {
    position: relative;
}

.modal-heading-white {
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-align: center;
}

.modal-box--sm {
    position: relative;
    max-width: 600px;
}

.modal-box--md {
    position: relative;
    max-width: 700px;
}

.modal-left--blue {
    background: var(--primary-blue-2);
}

/* ═══════════════════════════════════════════════════════════
   STACK CARDS + HUB CAPABILITIES
═══════════════════════════════════════════════════════════ */

/* ── Wrapper for sticky stacking ── */
.stack-cards-wrapper {
    position: relative;
}

/* ── CARD 1: WHO WE ARE — White, sticky ── */
.who-standalone-section {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
}

.who-standalone-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-red) 100%);
}

.who-standalone-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.who-standalone-text {
    position: relative;
    padding-left: 28px;
}

.who-standalone-text::before {
    content: '';
    position: absolute;
    left: 0; top: 4px; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-red) 0%, transparent 100%);
    border-radius: 2px;
}

.who-standalone-heading {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.1;
    margin: 12px 0 24px;
    letter-spacing: -0.02em;
}

.who-standalone-body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.who-standalone-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-standalone-logo-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-standalone-rings {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(16, 2, 73, 0.08);
    box-shadow:
        0 0 0 28px rgba(16, 2, 73, 0.03),
        0 0 0 56px rgba(16, 2, 73, 0.02),
        0 0 0 84px rgba(16, 2, 73, 0.01);
}

.who-standalone-logo {
    width: 190px;
    opacity: 0.1;
    position: relative;
    z-index: 1;
}

/* ── CARD 2: KAYROS ASSIST — Dark navy, sticky, slides over Card 1 ── */
.product-standalone-section {
    position: sticky;
    top: 0;
    z-index: 11;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-blue);
    overflow: hidden;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
}

.product-standalone-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 0% 50%, rgba(26, 5, 128, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 100% 110%, rgba(250, 66, 56, 0.22) 0%, transparent 60%);
    pointer-events: none;
}

.product-standalone-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 168, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 255, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.product-standalone-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.product-standalone-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.product-standalone-eyebrow .text-brand-red {
    color: var(--primary-red-2);
}

.product-standalone-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.product-standalone-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-standalone-title {
    font-size: 2.4rem !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.product-standalone-desc {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 36px;
}

.product-standalone-section .btn-primary {
    background: var(--primary-red);
    border-color: transparent;
    box-shadow: 0 8px 24px -6px rgba(250, 66, 56, 0.5);
}

.product-standalone-section .btn-primary:hover {
    box-shadow: 0 12px 32px -6px rgba(250, 66, 56, 0.7);
}

.product-standalone-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.product-standalone-image::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    pointer-events: none;
}

.product-standalone-image video {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7);
}

/* ── SECTION 3: CORE CAPABILITIES — Dark hub layout ── */
.cap-standalone-section {
    padding: 100px 40px;
    background: #0A0919;
    position: relative;
    overflow: hidden;
}

.cap-standalone-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(250, 66, 56, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26, 5, 128, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.cap-standalone-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Hub header */
.cap-hub-header {
    text-align: center;
    margin-bottom: 72px;
}

.cap-hub-eyebrow {
    color: rgba(255, 255, 255, 0.45) !important;
}

.cap-hub-eyebrow::before {
    background: var(--primary-red) !important;
}

.cap-hub-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 14px 0 16px;
    letter-spacing: -0.02em;
}

.cap-hub-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Hub layout: left | center | right */
.cap-hub-layout {
    display: grid;
    grid-template-columns: 1fr 220px 1fr;
    gap: 0;
    align-items: center;
    min-height: 280px;
}

/* Left & right columns */
.cap-hub-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cap-hub-col--left {
    align-items: flex-end;
}

.cap-hub-col--right {
    align-items: flex-start;
}

/* Item row: pill + connector line */
.cap-hub-item-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.cap-hub-col--left .cap-hub-item-row {
    flex-direction: row;
}

.cap-hub-col--right .cap-hub-item-row {
    flex-direction: row;
}

/* Connector lines */
.cap-hub-connector {
    flex: 1;
    height: 1px;
    min-width: 32px;
}

.cap-hub-col--left .cap-hub-connector {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 100%);
}

.cap-hub-col--right .cap-hub-connector {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
}

/* Pill buttons */
.cap-hub-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 11px 18px 11px 10px;
    cursor: default;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cap-hub-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(250, 66, 56, 0.6);
    box-shadow: 0 4px 20px rgba(250, 66, 56, 0.2);
    transform: scale(1.03);
}

.cap-hub-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cap-hub-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.cap-hub-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Center hub element */
.cap-hub-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.cap-hub-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(26, 5, 128, 0.6) 0%, rgba(10, 9, 25, 0.95) 70%);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 16px rgba(255, 255, 255, 0.02),
        0 0 0 32px rgba(250, 66, 56, 0.04),
        0 0 60px rgba(250, 66, 56, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

/* Red arc decoration */
.cap-hub-ring::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-red);
    border-right-color: rgba(250, 66, 56, 0.25);
    transform: rotate(-20deg);
    pointer-events: none;
}

.cap-hub-logo {
    width: 96px;
    opacity: 0.65;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}

.cap-hub-footer {
    text-align: center;
    margin-top: 72px;
}

.cap-hub-footer .btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
}

.cap-hub-footer .btn-secondary:hover {
    border-color: var(--primary-red);
    color: #ffffff;
    background: rgba(250, 66, 56, 0.1);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .cap-hub-layout {
        grid-template-columns: 1fr 160px 1fr;
    }

    .cap-hub-ring {
        width: 140px;
        height: 140px;
    }

    .cap-hub-logo {
        width: 72px;
    }

    .cap-hub-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .who-standalone-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 72px 28px;
    }

    .who-standalone-visual {
        display: none;
    }

    .product-standalone-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-standalone-heading,
    .product-standalone-title {
        font-size: 1.9rem !important;
    }

    .cap-hub-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cap-hub-col--left,
    .cap-hub-col--right {
        align-items: stretch;
    }

    .cap-hub-connector {
        display: none;
    }

    .cap-hub-center {
        order: -1;
        padding: 0;
    }

    .cap-hub-ring {
        width: 120px;
        height: 120px;
    }

    .cap-hub-logo {
        width: 60px;
    }

    .cap-hub-pill {
        justify-content: flex-start;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .who-standalone-section,
    .product-standalone-section {
        min-height: auto;
        padding: 0;
    }

    .who-standalone-inner,
    .product-standalone-inner {
        padding: 64px 20px;
    }

    .cap-standalone-section {
        padding: 72px 20px;
    }

    .cap-hub-title {
        font-size: 1.8rem;
    }
}

/* ─── ICO color variants (hero patient card) ───────────────── */
.ico--red   { background: rgba(250,66,56,0.10);  color: #FA4238; }
.ico--blue  { background: rgba(74,122,255,0.10); color: #3D7BF7; }
.ico--green { background: rgba(34,211,160,0.12); color: #10A674; }

/* ─── Hero chip 2: Kayros Assist title row ─────────────────── */
.hero-chip-2 .t {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ─── Chrome dots (macOS window decoration) ────────────────── */
.kx-chrome-dot:nth-child(1) { background: #FF5F57; }
.kx-chrome-dot:nth-child(2) { background: #FEBC2E; }
.kx-chrome-dot:nth-child(3) { background: #28C840; }

/* ─── Tech dots: unique top + animation-delay per element ──── */
.kc-tech-dot:nth-child(1)  { top: 50px;   animation-delay: 0s;   }
.kc-tech-dot:nth-child(2)  { top: 100px;  animation-delay: 3s;   }
.kc-tech-dot:nth-child(3)  { top: 150px;  animation-delay: 1s;   }
.kc-tech-dot:nth-child(4)  { top: 200px;  animation-delay: 5s;   }
.kc-tech-dot:nth-child(5)  { top: 250px;  animation-delay: 0.5s; }
.kc-tech-dot:nth-child(6)  { top: 300px;  animation-delay: 4s;   }
.kc-tech-dot:nth-child(7)  { top: 350px;  animation-delay: 1.5s; }
.kc-tech-dot:nth-child(8)  { top: 400px;  animation-delay: 6s;   }
.kc-tech-dot:nth-child(9)  { top: 450px;  animation-delay: 2s;   }
.kc-tech-dot:nth-child(10) { top: 500px;  animation-delay: 5.5s; }
.kc-tech-dot:nth-child(11) { top: 550px;  animation-delay: 0.8s; }
.kc-tech-dot:nth-child(12) { top: 600px;  animation-delay: 4.5s; }
.kc-tech-dot:nth-child(13) { top: 650px;  animation-delay: 1.2s; }
.kc-tech-dot:nth-child(14) { top: 700px;  animation-delay: 3.5s; }
.kc-tech-dot:nth-child(15) { top: 750px;  animation-delay: 0.3s; }
.kc-tech-dot:nth-child(16) { top: 800px;  animation-delay: 6.5s; }
.kc-tech-dot:nth-child(17) { top: 850px;  animation-delay: 2.2s; }
.kc-tech-dot:nth-child(18) { top: 900px;  animation-delay: 4.8s; }
.kc-tech-dot:nth-child(19) { top: 950px;  animation-delay: 1.8s; }
.kc-tech-dot:nth-child(20) { top: 1000px; animation-delay: 7s;   }
.kc-tech-dot:nth-child(21) { top: 1050px; animation-delay: 3.2s; }
.kc-tech-dot:nth-child(22) { top: 1100px; animation-delay: 0.6s; }
.kc-tech-dot:nth-child(23) { top: 1150px; animation-delay: 5.2s; }
.kc-tech-dot:nth-child(24) { top: 1200px; animation-delay: 2.7s; }
.kc-tech-dot:nth-child(25) { top: 1250px; animation-delay: 4.1s; }
.kc-tech-dot:nth-child(26) { top: 1300px; animation-delay: 1.4s; }
.kc-tech-dot:nth-child(27) { top: 1350px; animation-delay: 6.2s; }
.kc-tech-dot:nth-child(28) { top: 1400px; animation-delay: 3.8s; }

/* ─── Core Values card icon with image ─────────────────────── */
.cv-card__icon--img {
    background: transparent;
    border: none;
}

.cv-card__icon--img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-mosaic-faint {
    opacity: 0.3;
}

.modal-right--scroll {
    padding: 30px;
    overflow-y: auto;
}

/* ─── Capabilities Modal Items ─────────────────────────────── */
.modal-cap-list {
    list-style: none;
    padding: 0;
}

.modal-cap-item {
    margin-bottom: 24px;
    padding: 0;
    border: none;
    display: block;
}

/* Override global .capability-checklist li flex layout inside modal */
.modal-cap-list.capability-checklist li.modal-cap-item {
    display: block;
    align-items: initial;
    gap: 0;
    border-bottom: none;
    padding: 0;
    margin-bottom: 24px;
}

.modal-cap-list.capability-checklist li.modal-cap-item::before {
    display: none;
}

.modal-cap-title {
    color: var(--primary-red);
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.modal-cap-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.modal-cap-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.modal-cap-intro {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 24px;
    font-weight: 500;
}

.modal-cap-footer {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-top: 24px;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

/* ─── Core Values 3D Orbital Carousel ─────────────────────── */
.cv-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cv-section {
    position: relative;
    z-index: 2;
    overflow: visible !important;
}

.cv-ambient {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
}

.cv-ambient--left {
    top: 0;
    left: 25%;
    transform: translateY(-50%);
    background: rgba(0, 123, 255, 0.15);
    filter: blur(120px);
}

.cv-ambient--right {
    bottom: 0;
    right: 25%;
    background: rgba(241, 32, 32, 0.10);
    filter: blur(130px);
}

.cv-scene {
    position: relative;
    width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    margin-top: 1.5rem;
    overflow: visible;
}

.cv-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    pointer-events: none;
}

.cv-center-logo__inner {
    position: relative;
}

.cv-center-logo__glow {
    position: absolute;
    inset: -24px;
    background: linear-gradient(to right, rgba(241, 32, 32, 0.30), rgba(0, 123, 255, 0.40));
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.9;
    animation: cv-logo-pulse 2s ease-in-out infinite;
}

@keyframes cv-logo-pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.55; }
}

.cv-center-logo__glow2 {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(20px);
}

.cv-k-logo {
    width: 128px;
    height: 128px;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
}

@media (min-width: 768px) {
    .cv-k-logo {
        width: 160px;
        height: 160px;
    }
}

.cv-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    background: rgba(12, 18, 50, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 168, 255, 0.15);
    border-radius: 8px;
    padding: 1.75rem;
    transform-origin: center center;
    will-change: transform, filter, opacity;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cv-card:hover {
    background: rgba(16, 24, 70, 0.8);
    border-color: rgba(241, 32, 32, 0.5);
    box-shadow: 0 0 35px rgba(241, 32, 32, 0.15), inset 0 0 20px rgba(0, 168, 255, 0.05);
}

.cv-card::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: inherit;
    padding: 1.5px;
    background: radial-gradient(250px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(0, 168, 255, 0.8), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

.cv-card:hover::before {
    background: radial-gradient(250px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(241, 32, 32, 0.8), transparent 50%);
}

.cv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(200px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(0, 168, 255, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cv-card-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 168, 255, 0.03) 1px, transparent 0);
    background-size: 14px 14px;
    pointer-events: none;
    border-radius: inherit;
}

.cv-hud {
    position: absolute;
    width: 12px;
    height: 12px;
    pointer-events: none;
    transition: border-color 0.3s ease;
}

.cv-hud--tl { top: 10px; left: 10px; border-top: 1.5px solid rgba(0, 168, 255, 0.4); border-left: 1.5px solid rgba(0, 168, 255, 0.4); border-top-left-radius: 3px; }
.cv-hud--tr { top: 10px; right: 10px; border-top: 1.5px solid rgba(0, 168, 255, 0.4); border-right: 1.5px solid rgba(0, 168, 255, 0.4); border-top-right-radius: 3px; }
.cv-hud--bl { bottom: 10px; left: 10px; border-bottom: 1.5px solid rgba(0, 168, 255, 0.4); border-left: 1.5px solid rgba(0, 168, 255, 0.4); border-bottom-left-radius: 3px; }
.cv-hud--br { bottom: 10px; right: 10px; border-bottom: 1.5px solid rgba(0, 168, 255, 0.4); border-right: 1.5px solid rgba(0, 168, 255, 0.4); border-bottom-right-radius: 3px; }

.cv-card:hover .cv-hud--tl,
.cv-card:hover .cv-hud--tr,
.cv-card:hover .cv-hud--bl,
.cv-card:hover .cv-hud--br {
    border-color: rgba(241, 32, 32, 0.8) !important;
}

.cv-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 20;
}

.cv-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(46, 139, 255, 0.20), #111827);
    border: 1px solid rgba(46, 139, 255, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F7FA;
    box-shadow: 0 0 20px rgba(46, 139, 255, 0.2);
    transition: all 0.3s;
    flex-shrink: 0;
}

.cv-card:hover .cv-card__icon {
    background: linear-gradient(135deg, rgba(255, 68, 56, 0.20), #111827);
    border-color: rgba(255, 68, 56, 0.40);
    color: #FF4438;
}

.cv-card__num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(245, 247, 250, 0.05);
    transition: all 0.3s;
    user-select: none;
    margin-top: 4px;
    line-height: 1;
}

.cv-card:hover .cv-card__num {
    color: rgba(255, 68, 56, 0.15);
}

.cv-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #F5F7FA;
    margin-bottom: 6px;
    position: relative;
    z-index: 20;
    transition: color 0.3s;
}

.cv-card:hover .cv-card__title {
    color: #2E8BFF;
}

.cv-card__desc {
    color: #D1D5DB;
    font-size: 0.85rem;
    position: relative;
    z-index: 20;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .cv-scene {
        height: 300px;
    }
    .cv-card {
        width: 220px;
        padding: 1.25rem;
    }
    .cv-card__num {
        font-size: 1.5rem;
    }
}
/* ======================= hero-kx.css (Home hero) ======================= */
/* viewport-sections wrapper: cancelar min-height cuando contiene kx-hero */
.viewport-sections:has(.kx-hero) {
  min-height: unset;
}

/* =============================================================================
   KAYROS — Hero (standalone styles)
   ----------------------------------------------------------------------------
   Solo estilos del hero. Depende de variables CSS definidas en
   colors_and_type.css del design system de Kayros:
     --red-500, --red-600, --navy-500, --fg-1, --fg-3,
     --font-display, --font-body, --r-pill, --dur-fast, --dur-base, --ease-out

   Si tu sitio no usa esas variables, el bloque "FALLBACK TOKENS" de más abajo
   las redefine con los valores oficiales de marca para que el hero funcione
   aislado.
   ============================================================================= */

/* ---------- FALLBACK TOKENS (no-op si ya están definidos en el sitio) ---- */
.kx-hero {
  --red-500: var(--red-500, #FA4238);
  --red-600: var(--red-600, #E13129);
  --navy-500: var(--navy-500, #100249);
  --fg-1: var(--fg-1, #0F0A1F);
  --fg-3: var(--fg-3, #6D6E71);
  --font-display: var(--font-display, "Century Gothic", system-ui, sans-serif);
  --font-body: var(--font-body, "Avenir", system-ui, sans-serif);
  --r-pill: var(--r-pill, 999px);
  --dur-fast: var(--dur-fast, 150ms);
  --dur-base: var(--dur-base, 240ms);
  --ease-out: var(--ease-out, cubic-bezier(.2,.7,.2,1));
  --ease-in-out: var(--ease-in-out, cubic-bezier(.65,0,.35,1));
}
.kx-hero * { box-sizing: border-box; }

/* ===== HERO — modern SaaS layout ===== */
.kx-hero {
  position: relative; overflow: hidden; z-index: 1;
  padding: 100px 0 32px;
}
.kx-hero .bg {
  position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 32% 40% at 78% 32%, rgba(74, 122, 255, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 28% 36% at 12% 78%, rgba(120, 80, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 24% 30% at 85% 85%, rgba(250, 66, 56, 0.08) 0%, transparent 60%);
}
.kx-hero .grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}
.kx-hero .grid-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 0%, transparent 80%);
}
.kx-hero .neural {
  position: absolute; z-index: 2; pointer-events: none;
  color: #6E9CFF; opacity: 0.16;
}
.kx-hero .neural-r { top: -10%; right: -18%; width: 55%; }
.kx-hero .neural img { width: 100%; height: auto; display: block; }
@keyframes kx-hero-pulse { 0%, 100% { opacity: 0.45; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1.1); } }

.kx-hero .container {
  position: relative; z-index: 5;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
}
.kx-hero .row {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}

/* ── LEFT: copy column ───────────────────────────────────────── */
.kx-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 8px 14px 8px 10px; border-radius: 999px;
  margin-bottom: 28px;
}
.kx-hero .eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #FA4238;
  box-shadow: 0 0 12px rgba(250,66,56,0.7);
}
.kx-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 2vw + 0.7rem, 2.6rem); line-height: 1.1;
  letter-spacing: -0.03em; color: #fff; margin: 0 0 24px;
  max-width: 22ch;
}
.kx-hero h1 .acc {
  color: transparent; background: linear-gradient(135deg, #FF7E58 0%, #FA4238 100%);
  -webkit-background-clip: text; background-clip: text;
}
.kx-hero .lede {
  font-family: var(--font-body); font-weight: 400; font-size: 19px;
  color: rgba(255,255,255,0.72); max-width: 520px; line-height: 1.55;
  margin: 0 0 36px;
}
.kx-hero .lede b { color: #fff; font-weight: 500; }

.kx-hero .ctas {
  display: flex; gap: 14px; align-items: center; margin-bottom: 28px;
}
.kx-hero .btn-primary {
  -webkit-appearance: none; appearance: none;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer;
  background: #FA4238; color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 150ms cubic-bezier(.2,.7,.2,1);
  line-height: 1; text-decoration: none;
}
.kx-hero .btn-primary:hover { background: #E13129; box-shadow: 0 0 0 6px rgba(250,66,56,0.18); }
.kx-hero .btn-ghost {
  -webkit-appearance: none; appearance: none;
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  padding: 14px 24px; border-radius: 999px;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.18); cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 150ms cubic-bezier(.2,.7,.2,1);
  line-height: 1;
}
.kx-hero .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.30); }
.kx-hero .btn-ghost .play {
  width: 22px; height: 22px; border-radius: 50%; background: #FA4238;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kx-hero .btn-ghost .play svg { width: 9px; height: 9px; fill: #fff; }

.kx-hero .stats {
  display: grid; grid-template-columns: repeat(3, max-content); gap: 0;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.10);
}
.kx-hero .stat {
  padding: 0 36px; font-family: var(--font-body); position: relative;
}
.kx-hero .stat:first-child { padding-left: 0; }
.kx-hero .stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: #FA4238;
}
.kx-hero .stat .v {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  color: #fff; letter-spacing: -0.02em; line-height: 1;
}
.kx-hero .stat .v .acc { color: #FA4238; }
.kx-hero .stat .l {
  font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ── RIGHT: product showcase ─────────────────────────────────── */
.kx-hero .showcase {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.kx-hero .showcase::before {
  content: ""; position: absolute; inset: 8% 4%;
  background: radial-gradient(circle at 50% 50%, rgba(74, 122, 255, 0.35) 0%, transparent 60%);
  filter: blur(20px); z-index: 0;
}
.kx-hero .hero-mockup-img {
  position: relative; z-index: 3;
  width: 100%; max-width: 320px; height: auto;
  display: block;
  border-radius: 48px;
  filter: drop-shadow(0 32px 56px rgba(0,0,0,0.55)) drop-shadow(0 0 36px rgba(74,122,255,0.22));
}

/* Floating chips around phone */
.kx-hero .hero-chip {
  position: absolute; z-index: 4;
  background: rgba(13, 13, 26, 0.85);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  font-family: var(--font-body);
}
.kx-hero .hero-chip .ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kx-hero .hero-chip .ico svg { width: 18px; height: 18px; }
.kx-hero .hero-chip .t { font-weight: 700; font-size: 13px; color: #fff; }
.kx-hero .hero-chip .d { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.kx-hero .hero-chip-1 { top: 6%; left: -14%; }
.kx-hero .hero-chip-1 .ico { background: #FA4238; color: #fff; }
.kx-hero .hero-chip-2 { bottom: 14%; right: -14%; }
.kx-hero .hero-chip-2 .ico { background: rgba(74, 122, 255, 0.18); color: #6E9CFF; }
.kx-hero .hero-chip-2 .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #22D3A0;
  box-shadow: 0 0 8px rgba(34, 211, 160, 0.7);
  animation: kx-hero-pulse 2s var(--ease-in-out) infinite;
  margin-left: 4px;
}

/* Logo strip below hero */
.kx-hero .logo-strip {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.kx-hero .logo-strip .lab {
  font-family: var(--font-body); font-size: 11px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.kx-hero .logo-strip .marks {
  display: flex; gap: 36px; flex-wrap: wrap; align-items: center;
}
.kx-hero .logo-strip .mark {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  color: rgba(255,255,255,0.40); letter-spacing: 0.01em;
}

/* Responsive baseline */
@media (max-width: 960px) {
  .kx-hero .row { grid-template-columns: 1fr; gap: 32px; }
  .kx-hero .hero-chip-1 { left: 0; }
  .kx-hero .hero-chip-2 { right: 0; }
}

/* ── Tablet ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .kx-hero {
    padding: 80px 0 28px;
  }

  .kx-hero .container {
    padding: 0 20px;
  }

  .kx-hero .row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kx-hero h1 {
    max-width: 100%;
  }

  .kx-hero .lede {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .kx-hero .ctas {
    flex-wrap: wrap;
  }

  .kx-hero .btn-primary,
  .kx-hero .btn-ghost {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  /* Phone + chips: contenerizado, sin overflow */
  .kx-hero .showcase {
    width: 100%;
    aspect-ratio: auto;
    min-height: unset;
    max-height: unset;
    padding: 48px 24px 24px;
    overflow: hidden;
  }

  .kx-hero .hero-phone {
    width: 220px;
    height: 440px;
    border-radius: 36px;
  }

  .kx-hero .hero-phone .pcard {
    padding: 9px 10px;
    gap: 8px;
  }

  .kx-hero .hero-phone .pcard .ico {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .kx-hero .hero-phone .pcard .body {
    min-width: 0;
    overflow: hidden;
  }

  .kx-hero .hero-phone .pcard .t,
  .kx-hero .hero-phone .pcard .d {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .kx-hero .hero-chip {
    display: none;
  }

  /* Logo strip */
  .kx-hero .logo-strip {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .kx-hero .logo-strip .marks {
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .kx-hero .logo-strip .marks::-webkit-scrollbar {
    display: none;
  }

  .kx-hero .logo-strip .mark {
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ── Móvil pequeño ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .kx-hero {
    padding: 72px 0 20px;
  }

  .kx-hero .container {
    padding: 0 16px;
  }

  .kx-hero .eyebrow {
    font-size: 10px;
    padding: 6px 12px 6px 8px;
    margin-bottom: 20px;
  }

  .kx-hero h1 {
    font-size: clamp(1.6rem, 8vw, 2rem);
    margin-bottom: 16px;
  }

  .kx-hero .lede {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .kx-hero .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .kx-hero .stat {
    padding: 0 10px;
  }

  .kx-hero .stat .v {
    font-size: 20px;
  }

  .kx-hero .stat .l {
    font-size: 10px;
  }

  .kx-hero .showcase {
    padding: 36px 16px 16px;
  }

  .kx-hero .hero-phone {
    width: 200px;
    height: 410px;
    border-radius: 32px;
    border-width: 6px;
  }

  .kx-hero .hero-phone .screen {
    border-radius: 26px;
    padding: 36px 10px 10px;
    gap: 8px;
  }

  .kx-hero .hero-phone .pcard {
    padding: 8px;
    gap: 7px;
  }

  .kx-hero .hero-phone .pcard .ico {
    width: 24px;
    height: 24px;
  }

  .kx-hero .hero-phone .pcard .ico svg {
    width: 12px;
    height: 12px;
  }

  .kx-hero .hero-phone .pcard .t {
    font-size: 10px;
  }

  .kx-hero .hero-phone .pcard .d {
    font-size: 9px;
  }

  .kx-hero .hero-phone .pcard .pill {
    font-size: 8px;
    padding: 2px 5px;
    flex-shrink: 0;
  }
}

/* ======================= sections-home.css (Home) ======================= */
/* ── Shared animation (used by kx-*, km-*, who-kx-*) ── */
@keyframes ks-blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* ════════════════════════════════════════════════
   Core Capabilities Cascade (kc-*)
════════════════════════════════════════════════ */
.kc-section {
  background: #0A0919;
  background-image:
    linear-gradient(rgba(46,139,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,139,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.kc-tech-dot {
  position: absolute;
  background: #2E8BFF;
  border-radius: 50%;
  pointer-events: none;
  animation: kc-move-dot linear infinite;
}
.kc-tech-dot.slow   { width: 4px; height: 4px; animation-duration: 10s; box-shadow: 0 0 8px rgba(46,139,255,0.8); }
.kc-tech-dot.medium { width: 3px; height: 3px; animation-duration: 7s;  box-shadow: 0 0 6px rgba(46,139,255,0.8); }
.kc-tech-dot.fast   { width: 2px; height: 2px; animation-duration: 4s;  box-shadow: 0 0 4px rgba(46,139,255,0.8); }
@keyframes kc-move-dot {
  0%   { left: -20px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { left: calc(100% + 20px); opacity: 0; }
}
.kc-view-label { text-align: center; margin-bottom: 60px; }
.kc-view-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(250,66,56,0.1); border: 1px solid rgba(250,66,56,0.22); color: #FF6B5B; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; padding: 5px 14px; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; }
.kc-view-title { font-size: 2.2rem; font-weight: 900; color: #ffffff; margin-bottom: 12px; letter-spacing: -0.025em; }
.kc-view-title span { color: #FA4238; }
.kc-view-sub { font-size: 0.95rem; color: rgba(255,255,255,0.5); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.kc-inner { max-width: 900px; margin: 0 auto; }
.kc-cascade { position: relative; display: flex; flex-direction: column; }
.kc-card { position: relative; width: 78%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 2rem 2.5rem; margin-top: 1.25rem; cursor: pointer; backdrop-filter: blur(20px); transition: all 0.45s cubic-bezier(0.2,0.8,0.2,1); }
.kc-card:first-child { margin-top: 0; }
.kc-card.kc-left  { align-self: flex-start; }
.kc-card.kc-right { align-self: flex-end; }
.kc-card:hover { transform: translateY(-3px); border-color: rgba(250,66,56,0.2); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.kc-card:hover .kc-icon { border-color: rgba(250,66,56,0.5); box-shadow: 0 0 20px rgba(250,66,56,0.25); }
.kc-card:hover .kc-icon svg { stroke: #FA4238; transform: scale(1.1); }
.kc-card.kc-open { border-color: rgba(46,139,255,0.35); box-shadow: 0 0 0 1px rgba(46,139,255,0.2), 0 8px 32px rgba(0,0,0,0.4); }
.kc-card.kc-open .kc-extra { max-height: 400px; opacity: 1; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.08); }
.kc-cbody { display: flex; align-items: flex-start; gap: 1.4rem; position: relative; z-index: 2; }
.kc-card.kc-right .kc-cbody { flex-direction: row-reverse; }
.kc-icon { width: 52px; height: 52px; min-width: 52px; border-radius: 14px; border: 1px solid rgba(46,139,255,0.25); background: rgba(46,139,255,0.06); display: flex; align-items: center; justify-content: center; transition: all 0.4s; }
.kc-icon svg { width: 22px; height: 22px; stroke: #2E8BFF; fill: none; stroke-width: 1.8; transition: all 0.4s; filter: drop-shadow(0 0 6px rgba(46,139,255,0.4)); }
.kc-ctext { flex: 1; }
.kc-card.kc-right .kc-ctext { text-align: right; }
.kc-cname { font-size: 0.95rem; font-weight: 800; color: rgba(255,255,255,0.92); line-height: 1.3; margin-bottom: 6px; letter-spacing: 0.02em; font-family: 'Montserrat', sans-serif; }
.kc-cdesc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.kc-extra { max-height: 0; opacity: 0; overflow: hidden; transition: all 450ms ease-in-out; }
.kc-etitle { font-size: 0.92rem; font-weight: 700; color: #2E8BFF; margin-bottom: 10px; }
.kc-etext { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 10px; }
.kc-etext:last-child { margin-bottom: 0; }
.kc-conclusion { text-align: center; font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.45); max-width: 580px; margin: 4rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.kc-section .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.28); }
.kc-section .btn-secondary:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.6); color: #fff; }

/* ── who-kx-* (About section inline elements) ── */
.who-kx-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(250,66,56,0.06); border: 1px solid rgba(250,66,56,0.18); color: #FA4238; font-size: 10px; font-weight: 700; padding: 5px 14px; border-radius: 999px; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 18px; }
.who-kx-dot { width: 6px; height: 6px; border-radius: 50%; background: #FA4238; animation: ks-blink 2s infinite; }
.who-kx-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.who-kx-feat { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #334155; }
.who-kx-check { width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: rgba(250,66,56,0.07); border: 1px solid rgba(250,66,56,0.15); display: flex; align-items: center; justify-content: center; }
.who-kx-check svg { width: 11px; height: 11px; stroke: #FA4238; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* ════════════════════════════════════════════════
   kx-about — 01 ABOUT KAYROS
════════════════════════════════════════════════ */
.kx-about {
  background: #ffffff;
  padding: 100px 40px;
  position: relative; overflow: hidden;
}
.kx-about::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(16,2,73,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,2,73,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.kx-about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.kx-heading { font-size: 3.2rem; font-weight: 900; color: #0B1120; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px; }
.kx-heading em { color: #FA4238; font-style: normal; }
.kx-body { font-size: 0.97rem; line-height: 1.9; color: #475569; margin-bottom: 36px; max-width: 500px; }
.kx-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 36px; }
.kx-stat-box { background: #F8FAFC; border: 1px solid rgba(0,0,0,0.07); border-radius: 14px; padding: 18px 14px; position: relative; overflow: hidden; }
.kx-stat-box::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:linear-gradient(90deg,#FA4238,#FF6B5B); border-radius:0 0 14px 14px; }
.kx-stat-box__val { font-size: 1.55rem; font-weight: 900; color: #0B1120; line-height: 1; margin-bottom: 6px; }
.kx-stat-box__val em { color: #FA4238; font-style: normal; }
.kx-stat-box__lab { font-size: 9.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #94A3B8; }

/* Tech system card (right visual) */
.kx-sys-card {
  background: #0B1120; border-radius: 20px; padding: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
}
.kx-sys-card::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(250,66,56,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(26,5,128,0.5) 0%, transparent 60%);
  pointer-events:none;
}
.kx-sys-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; padding-bottom:16px; border-bottom:1px solid rgba(255,255,255,0.06); position:relative; }
.kx-sys-brand { display:flex; align-items:center; gap:9px; }
.kx-sys-brand img { width:26px; height:26px; }
.kx-sys-brand span { font-size:11px; font-weight:700; letter-spacing:0.08em; color:white; }
.kx-sys-status { display:flex; align-items:center; gap:6px; font-size:9px; font-weight:700; letter-spacing:0.1em; color:rgba(255,255,255,0.35); font-family:'Courier New',monospace; }
.kx-sys-led { width:6px; height:6px; border-radius:50%; background:#22C55E; box-shadow:0 0 8px rgba(34,197,94,0.7); animation:ks-blink 2.5s infinite; }
.kx-sys-logo-wrap { display:flex; align-items:center; justify-content:center; margin:20px 0; position:relative; height:100px; }
.kx-sys-logo { width:72px; height:72px; position:relative; z-index:2; }
.kx-sys-ring { position:absolute; border-radius:50%; }
.kx-sys-ring:nth-child(1) { inset:4px; border:1px solid rgba(250,66,56,0.22); animation:kx-spin 18s linear infinite; }
.kx-sys-ring:nth-child(2) { inset:-16px; border:1px solid rgba(46,139,255,0.14); animation:kx-spin 26s linear infinite reverse; }
.kx-sys-ring:nth-child(3) { inset:-36px; border:1px solid rgba(250,66,56,0.08); animation:kx-spin 35s linear infinite; }
@keyframes kx-spin { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
.kx-sys-list { display:flex; flex-direction:column; gap:8px; position:relative; }
.kx-sys-item { display:flex; align-items:center; justify-content:space-between; padding:9px 12px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.05); border-radius:9px; }
.kx-sys-item-left { display:flex; align-items:center; gap:9px; }
.kx-sys-dot { width:5px; height:5px; border-radius:50%; background:#2E8BFF; box-shadow:0 0 6px rgba(46,139,255,0.6); }
.kx-sys-name { font-size:10.5px; font-weight:600; color:rgba(255,255,255,0.72); font-family:'Montserrat',sans-serif; }
.kx-sys-badge { font-size:8.5px; font-weight:700; letter-spacing:0.07em; text-transform:uppercase; color:#22C55E; background:rgba(34,197,94,0.09); border:1px solid rgba(34,197,94,0.22); padding:2px 8px; border-radius:999px; font-family:'Courier New',monospace; }
.kx-sys-footer { margin-top:18px; padding-top:14px; border-top:1px solid rgba(255,255,255,0.05); display:flex; align-items:center; justify-content:space-between; position:relative; }
.kx-sys-footer span { font-size:9px; color:rgba(255,255,255,0.28); font-family:'Courier New',monospace; letter-spacing:0.06em; }
.kx-sys-footer strong { color:rgba(255,255,255,0.5); font-weight:600; }

/* ════════════════════════════════════════════════
   kx-product — 02 KAYROS ASSIST
════════════════════════════════════════════════ */
.kx-product {
  background-color: #080a20;
  background-image:
    linear-gradient(rgba(0,168,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,255,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  padding: 100px 40px;
  position: relative; overflow: hidden;
}
.kx-product::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 55% 70% at 0% 50%, rgba(0,80,200,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 100% 100%, rgba(250,66,56,0.1) 0%, transparent 52%);
  pointer-events:none;
}
.kx-product::after { content: none; }
.kx-product-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.kx-product-badge { display:inline-flex; align-items:center; gap:7px; background:rgba(250,66,56,0.1); border:1px solid rgba(250,66,56,0.25); color:#FF6B5B; font-size:10px; font-weight:700; padding:5px 14px; border-radius:999px; letter-spacing:0.07em; text-transform:uppercase; margin-bottom:18px; }
.kx-product-badge svg { width:12px; height:12px; flex-shrink:0; }
.kx-product-heading { font-size: 2.8rem; font-weight: 900; color: white; line-height: 1.08; letter-spacing: -0.025em; margin: 0 0 16px; }
.kx-product-heading em { color: #FA4238; font-style: normal; }
.kx-product-lead { font-size: 0.96rem; line-height: 1.85; color: rgba(255,255,255,0.58); margin-bottom: 28px; max-width: 460px; }
.kx-product-feats { display:flex; flex-direction:column; gap:10px; margin-bottom:32px; }
.kx-product-feat { display:flex; align-items:center; gap:10px; font-size:13.5px; color:rgba(255,255,255,0.78); }
.kx-product-check { width:20px; height:20px; flex-shrink:0; border-radius:50%; background:rgba(250,66,56,0.1); border:1px solid rgba(250,66,56,0.25); display:flex; align-items:center; justify-content:center; }
.kx-product-check svg { width:10px; height:10px; stroke:#FA4238; fill:none; stroke-width:3; stroke-linecap:round; }
.kx-video-wrap { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 0 0 1px rgba(250,66,56,0.07), 0 32px 64px rgba(0,0,0,0.55); position: relative; }
.kx-video-chrome { display:flex; align-items:center; gap:6px; padding:0 14px; height:34px; background:rgba(0,0,0,0.55); backdrop-filter:blur(8px); }
.kx-chrome-dot { width:10px; height:10px; border-radius:50%; }
.kx-video-wrap video { width:100%; display:block; max-height:420px; object-fit:cover; }

@media (max-width: 1024px) {
  .kx-about { padding: 72px 24px; }
  .kx-product { padding: 72px 24px; }
  .kx-about-inner { grid-template-columns: 1fr; gap: 48px; }
  .kx-about-visual { display: none; }
  .kx-product-inner { grid-template-columns: 1fr; gap: 48px; }
  .kx-heading { font-size: 2.4rem; }
  .kx-product-heading { font-size: 2.2rem; }
  .kx-stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .kx-stats-grid { grid-template-columns: repeat(2,1fr); }
  .kx-heading { font-size: 2rem; }
}

/* ════════════════════════════════════════════════
   Kayros Modal System (km-*)
════════════════════════════════════════════════ */
#whoModal .modal-box,
#capModal .modal-box {
  display: flex; flex-direction: column;
  grid-template-columns: unset;
  background: #0B1120;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  max-height: 88vh;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
}
#whoModal .modal-box { max-width: 500px; }
#capModal .modal-box { max-width: 540px; }
#whoModal .modal-left,
#whoModal .who-modal-tooltip-body,
#capModal .modal-left,
#capModal .modal-right { display: none !important; }
#capModal .bg-mosaic-strong,
#whoModal .bg-mosaic-strong { display: none; }
.km-modal { display: flex; flex-direction: column; height: 100%; }
.km-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.km-brand { display: flex; align-items: center; gap: 9px; }
.km-brand img { width: 26px; height: 26px; }
.km-brand span { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: white; font-family: 'Montserrat', sans-serif; }
.km-status { display: flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); font-family: 'Courier New', monospace; }
.km-led { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 8px rgba(34,197,94,0.7); animation: ks-blink 2.5s infinite; }
.km-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 110px; margin: 20px 0 12px; flex-shrink: 0;
}
.km-logo { width: 68px; height: 68px; position: relative; z-index: 2; }
.km-ring { position: absolute; border-radius: 50%; }
.km-ring:nth-child(1) { inset: 4px; border: 1px solid rgba(250,66,56,0.22); animation: kx-spin 18s linear infinite; }
.km-ring:nth-child(2) { inset: -16px; border: 1px solid rgba(46,139,255,0.14); animation: kx-spin 26s linear infinite reverse; }
.km-ring:nth-child(3) { inset: -36px; border: 1px solid rgba(250,66,56,0.08); animation: kx-spin 35s linear infinite; }
.km-body { flex: 1; overflow-y: auto; padding: 4px 20px 8px; }
.km-body::-webkit-scrollbar { width: 3px; }
.km-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
.km-list { display: flex; flex-direction: column; gap: 8px; }
.km-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px; transition: border-color 0.2s;
}
.km-item:hover { border-color: rgba(250,66,56,0.18); }
.km-dot { width: 5px; height: 5px; border-radius: 50%; background: #2E8BFF; box-shadow: 0 0 6px rgba(46,139,255,0.6); flex-shrink: 0; margin-top: 5px; }
.km-item-body { flex: 1; min-width: 0; }
.km-item-name { font-size: 10.5px; font-weight: 700; color: white; font-family: 'Montserrat', sans-serif; line-height: 1.3; }
.km-item-desc { font-size: 10.5px; color: rgba(255,255,255,0.88); line-height: 1.6; margin-top: 4px; font-family: 'Montserrat', sans-serif; }
.km-item-note { font-size: 10px; color: rgba(46,139,255,0.85); line-height: 1.5; margin-top: 7px; padding: 6px 10px; background: rgba(46,139,255,0.06); border-left: 2px solid rgba(46,139,255,0.28); border-radius: 0 5px 5px 0; font-family: 'Montserrat', sans-serif; }
.km-body strong { color: #FA4238; }
.km-badge { font-size: 8px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #22C55E; background: rgba(34,197,94,0.09); border: 1px solid rgba(34,197,94,0.22); padding: 3px 9px; border-radius: 999px; font-family: 'Courier New', monospace; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
.km-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px; border-top: 1px solid rgba(255,255,255,0.05); flex-shrink: 0;
}
.km-footer span { font-size: 9px; color: rgba(255,255,255,0.28); font-family: 'Courier New', monospace; letter-spacing: 0.06em; }
.km-footer strong { font-size: 9px; color: rgba(255,255,255,0.5); font-weight: 600; font-family: 'Courier New', monospace; }
#whoModal .modal-close,
#capModal .modal-close { top: 12px; right: 14px; }
#whoModal .km-header,
#capModal .km-header { padding-right: 44px; }

@media (max-width: 900px) {
  .kc-card, .kc-card.kc-right { width: 100%; }
  .kc-card.kc-right .kc-cbody { flex-direction: row; }
  .kc-card.kc-right .kc-ctext { text-align: left; }
  .kc-section { padding: 72px 24px; }
}
@media (max-width: 540px) {
  .kc-section { padding: 52px 16px; }
  .kc-view-label { margin-bottom: 36px; }
  .kc-view-title { font-size: 1.75rem; }
  .kc-view-sub { font-size: 0.88rem; }
  .kc-card { padding: 1.1rem 1.15rem; margin-top: 0.65rem; border-radius: 14px; }
  .kc-cbody { gap: 0.9rem; }
  .kc-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 11px; }
  .kc-icon svg { width: 18px; height: 18px; }
  .kc-cname { font-size: 0.82rem; margin-bottom: 4px; }
  .kc-cdesc { font-size: 0.8rem; line-height: 1.55; }
  .kc-card.kc-open .kc-extra { margin-top: 1rem; padding-top: 1rem; }
  .kc-etitle { font-size: 0.84rem; margin-bottom: 8px; }
  .kc-etext { font-size: 0.82rem; line-height: 1.65; }
  .kc-conclusion { font-size: 0.85rem; margin-top: 2.5rem; padding-top: 1.5rem; }
}

/* ======================= company.css (Company) ======================= */
/* ============================================================
   COMPANY PAGE — css/company.css
   Extracted inline styles from company.html
   ============================================================ */

/* ─── SVG connector lines (was embedded <style>) ───────────── */
.values-wheel svg.connector-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ─── About section grid ───────────────────────────────────── */
.grid-2--about {
    gap: 48px;
    align-items: stretch;
}

.about-text-block {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-text-block:last-child {
    margin-bottom: 0;
}

/* ─── Blue top line (mirrors .powered-by-box__line--blue from ai-solutions.css) ── */
.powered-by-box__line--blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 255, 0.85), transparent);
}

/* ─── kx-sys-card (About highlight — tech style) ───────────── */
@keyframes kx-spin  { from { transform: rotate(0deg); }  to { transform: rotate(360deg); } }
@keyframes ks-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.kx-sys-card {
  background: #0B1120;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.kx-sys-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(46,139,255,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(26,5,128,0.5) 0%, transparent 60%);
  pointer-events: none;
}
.kx-sys-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; }
.kx-sys-brand  { display: flex; align-items: center; gap: 9px; }
.kx-sys-brand img { width: 26px; height: 26px; }
.kx-sys-brand span { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: white; font-family: 'Montserrat', sans-serif; }
.kx-sys-status { display: flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); font-family: 'Courier New', monospace; }
.kx-sys-led    { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 8px rgba(34,197,94,0.7); animation: ks-blink 2.5s infinite; }

.kx-sys-logo-wrap { display: flex; align-items: center; justify-content: center; margin: 20px 0; position: relative; height: 100px; }
.kx-sys-logo  { width: 72px; height: 72px; position: relative; z-index: 2; }
.kx-sys-ring  { position: absolute; border-radius: 50%; }
.kx-sys-ring:nth-child(1) { inset: 4px;   border: 1px solid rgba(46,139,255,0.3);  animation: kx-spin 18s linear infinite; }
.kx-sys-ring:nth-child(2) { inset: -16px; border: 1px solid rgba(46,139,255,0.14); animation: kx-spin 26s linear infinite reverse; }
.kx-sys-ring:nth-child(3) { inset: -36px; border: 1px solid rgba(46,139,255,0.08); animation: kx-spin 35s linear infinite; }

.kx-sys-list  { display: flex; flex-direction: column; gap: 8px; position: relative; }
.kx-sys-item  { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 9px; }
.kx-sys-item-left { display: flex; align-items: center; gap: 9px; }
.kx-sys-dot   { width: 5px; height: 5px; border-radius: 50%; background: #2E8BFF; box-shadow: 0 0 6px rgba(46,139,255,0.6); }
.kx-sys-name  { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,0.72); font-family: 'Montserrat', sans-serif; }
.kx-sys-badge { font-size: 8.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #22C55E; background: rgba(34,197,94,0.09); border: 1px solid rgba(34,197,94,0.22); padding: 2px 8px; border-radius: 999px; font-family: 'Courier New', monospace; }

.kx-sys-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; position: relative; }
.kx-sys-footer span   { font-size: 9px; color: rgba(255,255,255,0.28); font-family: 'Courier New', monospace; letter-spacing: 0.06em; }
.kx-sys-footer strong { font-size: 9px; color: rgba(255,255,255,0.5);  font-weight: 600; font-family: 'Courier New', monospace; }

/* ─── Text block inside kx-sys-card ────────────────────────── */
.about-highlight-card--text { text-align: center; color: white; }
.about-highlight-card--text .about-highlight-card__stat       { font-size: 1.4rem; font-weight: 700; margin: 8px 0 10px; }
.about-highlight-card--text .about-highlight-card__stat-label { font-size: 1rem; opacity: 0.7; margin-bottom: 20px; }
.about-highlight-card--text .about-highlight-card__quote      { font-size: 0.9rem; font-style: italic; opacity: 0.75; line-height: 1.8; max-width: 340px; margin: 0 auto; }

/* ─── About Dark Card (legacy — kept for reference) ─────────── */
.about-highlight-card {
    background: linear-gradient(135deg, #0A0A1F 0%, #15153A 100%);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-highlight-card__glow-red {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 100%, rgba(250, 66, 56, 0.25) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.about-highlight-card__decor-tl {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 90px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0) invert(1);
    transform: scale(-1, -1);
}

.about-highlight-card__glow-blue {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(80, 100, 220, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-highlight-card__decor-br {
    position: absolute;
    bottom: -20px;
    right: -40px;
    width: 320px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.about-highlight-card__logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 32px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    max-width: none;
}

.about-highlight-card__stat {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.about-highlight-card__stat-label {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.about-highlight-card__quote {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    max-width: 360px;
}

/* ─── Mission & Vision ─────────────────────────────────────── */
.mission-vision-grid--mt {
    margin-top: 48px;
}


/* ─── Leadership Section ───────────────────────────────────── */
.section--leadership {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ─── Values Center Logo ───────────────────────────────────── */
.values-center__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ─── Value Node Positions ─────────────────────────────────── */
.value-node--top {
    left: 50%;
    top: 10.2%;
}

.value-node--top-right {
    left: 84.3%;
    top: 30%;
}

.value-node--bottom-right {
    left: 84.3%;
    top: 70%;
}

.value-node--bottom {
    left: 50%;
    top: 89.8%;
}

.value-node--bottom-left {
    left: 15.7%;
    top: 70%;
}

.value-node--top-left {
    left: 15.7%;
    top: 30%;
}

/* ─── Technology Philosophy ────────────────────────────────── */
.section--border-top {
    border-top: 1px solid var(--border);
}

.philosophy-intro-wrap {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.philosophy-intro-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.9;
}

/* ─── Philosophy cards (Light theme card) ──────────────────── */
.phi-card-outer--light {
    position: relative;
    background: transparent;
    color: var(--text-main);
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.phi-accent--blue {
    position: absolute;
    inset: 0;
    background: var(--primary-blue);
    border-radius: 42px;
    border-bottom-right-radius: 0px;
    z-index: 0;
}

.phi-content--light {
    position: relative;
    background: var(--bg-section);
    border-radius: 36px;
    border: 1px solid var(--border);
    padding: 32px;
    overflow: hidden;
    z-index: 1;
    flex: 1;
    height: 100%;
}

.phi-logo-watermark {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.phi-content-inner {
    position: relative;
    z-index: 1;
}

.phi-num--mb {
    margin-bottom: 20px;
}

.phi-text-muted {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── Philosophy cards (Dark/blue theme card) ──────────────── */
.phi-card-outer--dark {
    position: relative;
    background: transparent;
    color: white;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.phi-accent--red {
    position: absolute;
    inset: 0;
    background: var(--primary-red);
    border-radius: 36px;
    border-bottom-right-radius: 0px;
    z-index: 0;
}

.phi-content--dark {
    position: relative;
    background: #0B1120;
    border-radius: 36px;
    padding: 32px;
    overflow: hidden;
    z-index: 1;
    flex: 1;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.phi-content--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(250, 66, 56, 0.09) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(26, 5, 128, 0.5) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.phi-num--white {
    color: white;
    margin-bottom: 20px;
}

.phi-heading--white {
    color: white;
}

/* Ensure h4 inside dark cards inherits white */
.phi-card-outer--dark h4,
.phi-content--dark h4 {
    color: white;
}

/* Ensure paragraphs inside dark cards are legible */
.phi-card-outer--dark p,
.phi-content--dark p {
    color: rgba(255, 255, 255, 0.85);
}

.phi-text-light {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* ─── Why Kayros last item full-width ──────────────────────── */
.why-item--full {
    grid-column: 1 / -1;
}

/* ─── Leader role badge — single line on mobile ────────────── */
@media (max-width: 480px) {
    .leader-role {
        font-size: 0.6rem;
        letter-spacing: 1px;
        padding: 5px 12px;
    }
}

/* ======================= contact.css (Contact) ======================= */
﻿/* ============================================================
   CONTACT PAGE — css/contact.css
   Extracted inline styles from contact.html
   ============================================================ */

/* ─── Contact Section ──────────────────────────────────────── */
.contact-section--overflow {
    position: relative;
    overflow: hidden;
}

.contact-bg-logo {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 600px;
    height: 600px;
    background: url('../assets/logos/iso/iso-gray.svg') center/contain no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.contact-container--z1 {
    position: relative;
    z-index: 1;
}

/* ─── Contact Info Links ───────────────────────────────────── */
.ci-value--brand {
    color: var(--primary-red);
}

.ci-value--address {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ─── Social Links Section ─────────────────────────────────── */
.contact-social-section {
    margin-top: 32px;
}

.contact-social-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.contact-social-row {
    display: flex;
    gap: 10px;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-section);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.2s ease;
    text-decoration: none;
}

.contact-social-link--instagram:hover,
.contact-social-link--facebook:hover,
.contact-social-link--linkedin:hover {
    background: var(--primary-red, #fa4238);
    color: white;
    border-color: var(--primary-red, #fa4238);
}

/* ─── QR Sticky flotante ───────────────────────────────────── */
.qr-sticky {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
}

.qr-sticky__tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    background: var(--primary-red, #fa4238);
    color: white;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
    border-right: none;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.qr-sticky__tab:hover {
    background: #d93328;
}

.qr-sticky__label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.qr-sticky__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: white;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 12px 0 0 12px;
    box-shadow: -6px 0 30px rgba(0,0,0,0.12);
    width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    padding-left: 0;
    padding-right: 0;
}

.qr-sticky.is-open .qr-sticky__panel {
    width: 170px;
    opacity: 1;
    pointer-events: auto;
    padding: 16px;
}

.qr-sticky__img {
    width: 130px;
    border-radius: 8px;
    display: block;
    margin-bottom: 10px;
}

.qr-sticky__text {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted, #64748b);
    text-align: center;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
}

/* ─── Contact Form Box ─────────────────────────────────────── */
.contact-form-box--overflow {
    position: relative;
    overflow: hidden;
}

.contact-form-bg-logo {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: url('../assets/logos/iso/iso-gray.svg') center/contain no-repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.contact-form-inner {
    position: relative;
    z-index: 1;
}

/* ─── Process Steps Section ────────────────────────────────── */
.process-steps-section--styled {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0;
}

.section-header--center {
    text-align: center;
    margin-bottom: 50px;
}

.section-eyebrow--red {
    color: var(--primary-red);
    opacity: 1;
}

.section-title--white {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

/* ─── Process Step Items ───────────────────────────────────── */
.process-step {
    text-align: center;
    padding: 28px;
}

.process-step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(250, 66, 56, 0.1);
    border: 2px solid rgba(250, 66, 56, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-red);
}

.process-step__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.process-step__text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ─── Map Section ──────────────────────────────────────────── */
.location-map-section--padded {
    padding: 60px 0;
}

.map-card-wrapper {
    width: 100%;
    height: 450px;
    background: #eee;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.map-card-wrapper iframe {
    filter: grayscale(1) contrast(1.1) opacity(0.85);
    transition: all 0.5s ease;
    pointer-events: none;
}

.map-card-wrapper:hover iframe {
    filter: grayscale(0) contrast(1) opacity(1);
    pointer-events: auto;
}

.map-iframe--borderless {
    border: 0;
}

@media (max-width: 768px) {
    .location-map-section--padded .container {
        padding: 0 16px !important;
    }

    .map-card-wrapper {
        height: 320px;
        border-radius: 20px;
    }
}


/* ======================= ai-solutions.css (AI Solutions) ======================= */
/* ============================================================
   AI SOLUTIONS PAGE — css/ai-solutions.css
   Extracted inline styles from ai-solutions.html
   ============================================================ */

/* ─── Hero CTA buttons row ─────────────────────────────────── */
.hero-btns-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Intro Statement ──────────────────────────────────────── */
.text-center {
    text-align: center;
}

.assist-logo-wrap {
    margin-bottom: 32px;
}

.assist-logo-img {
    height: 64px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.assist-intro-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 830px;
    margin: 0 auto;
}

/* ─── Challenge & Solution (Shared classes) ────────────────── */
.section--no-pt {
    padding-top: 0;
}

/* Challenge/Solution/Philosophy outer wrapper — light theme */
.cs-card-outer--light {
    position: relative;
    background: transparent;
    color: var(--text-main);
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Challenge/Solution/Philosophy outer wrapper — dark theme */
.cs-card-outer--dark {
    position: relative;
    background: transparent;
    color: white;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Brand-colored background accent layer — blue */
.cs-accent-layer--blue {
    position: absolute;
    inset: 0;
    background: var(--primary-blue);
    border-radius: 42px;
    border-bottom-right-radius: 0px;
    z-index: 0;
}

/* Brand-colored background accent layer — red */
.cs-accent-layer--red {
    position: absolute;
    inset: 0;
    background: var(--primary-red);
    border-radius: 36px;
    border-bottom-right-radius: 0px;
    z-index: 0;
}

/* Main content panel — light */
.cs-content-panel--light {
    position: relative;
    background: var(--bg-section);
    border-radius: 36px;
    border: 1px solid var(--border);
    padding: 32px;
    overflow: hidden;
    z-index: 1;
    flex: 1;
    height: 100%;
}

/* Main content panel — dark/blue */
.cs-content-panel--dark {
    position: relative;
    background: #0B1120;
    border-radius: 36px;
    padding: 32px;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.cs-content-panel--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(250, 66, 56, 0.09) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(26, 5, 128, 0.5) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

/* Faint watermark logo */
.cs-logo-watermark {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.cs-content-inner {
    position: relative;
    z-index: 1;
}

/* Challenge/Solution text */
.cs-text-dark {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.7;
}

.cs-text-white {
    font-size: 0.85rem;
    color: white !important;
    margin-bottom: 16px;
    line-height: 1.7;
}

.cs-list--inherit {
    color: inherit;
}

.cs-list--white {
    color: white !important;
}

.cs-list--white li {
    color: white !important;
}

.cs-note-dark {
    font-size: 0.82rem;
    color: var(--text-main);
    margin-top: 20px;
    font-style: italic;
}

.cs-icon--solution {
    background: rgba(255, 255, 255, 0.1);
    color: #22c55e;
}

.cs-heading--white {
    color: white;
}

/* Ensure h3 inside dark solution cards inherits white */
.cs-card-outer--dark h3,
.cs-content-panel--dark h3 {
    color: white;
}

/* Ensure paragraphs inside dark solution cards are legible */
.cs-card-outer--dark p,
.cs-content-panel--dark p {
    color: rgba(255, 255, 255, 0.85);
}


/* ─── Core Capabilities (Dark section) ─────────────────────── */
.section--transparent {
    background: transparent;
    border: none;
}

.card--glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.card--glass:hover {
    border-color: rgba(255, 68, 56, 0.5);
    box-shadow: 0 8px 32px rgba(255, 68, 56, 0.15), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.card--glass h3 {
    color: white;
}

.card--glass p {
    color: rgba(255, 255, 255, 0.7);
}

/* ─── Designed For Video ───────────────────────────────────── */
.designed-for-video-wrap {
    max-width: 860px;
    margin: 40px auto 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-red);
    background: #000;
}

.designed-for-video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ─── Measurable Impact ────────────────────────────────────── */
.impact-cards-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.impact-card {
    flex: 1;
    min-width: 180px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 68, 56, 0.5);
    box-shadow: 0 8px 32px rgba(255, 68, 56, 0.15), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.impact-card__icon-wrap {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 14px;
}

.impact-card__icon-img {
    width: 40px;
    height: 40px;
}

.impact-card__title {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.impact-card__text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
}

/* ─── Infrastructure Highlight ─────────────────────────────── */
.powered-by-box {
    padding: 40px;
    background: var(--bg-section);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.powered-by-box__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.powered-by-box__line--blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 255, 0.85), transparent);
}

.powered-by-box__label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.powered-by-box__k-icon {
    width: 22px;
    height: 22px;
}

.powered-by-box__text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
}

/* ─── CTA Banner ───────────────────────────────────────────── */
.cta-heading-lg {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.cta-subtitle-light {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-group--center {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--schedule {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
}

.btn--specialist {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* ─── Designed For section subtitle ────────────────────────── */
.section-subtitle--brand {
    color: var(--primary-red);
}

/* ─── Card icon with image (transparent, no border) ────────── */
.card-icon--img {
    background: transparent;
    border: none;
}

.card:hover .card-icon--img {
    background: transparent;
    border-color: transparent;
}

.card-icon--img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card:hover .card-icon--img img {
    transform: scale(1.08);
}

/* ======================= news.css (Industry News / Single News) ======================= */
/* ============================================================
   NEWS PAGES — css/news.css
   Extracted inline styles from industry-news.html and
   embedded <style> from single-news.html
   ============================================================ */

/* ─── News Filter Pills ────────────────────────────────────── */
.pill--clickable {
    cursor: pointer;
}

/* ─── News Card Images ─────────────────────────────────────── */
.news-card-img--healthcare {
    background: url('../assets/news/ai-healthcare-administrative-burden.png') center/cover no-repeat;
}

.news-card-img--physical-ai {
    background: url('../assets/news/physical-ai-customer-service.png') center/cover no-repeat;
}

.news-card-img--human-loop {
    background:
        linear-gradient(135deg, rgba(180, 30, 20, 0.55) 0%, rgba(220, 60, 50, 0.45) 100%),
        url('../assets/news/human-in-the-loop.png') center/cover no-repeat;
}

.news-card-img--robots-mfg {
    background:
        linear-gradient(135deg, rgba(8, 80, 75, 0.55) 0%, rgba(15, 118, 110, 0.45) 100%),
        url('../assets/news/robots-manufacturing.jpg') center/cover no-repeat;
}

.news-card-img--ai-trends {
    background:
        linear-gradient(135deg, rgba(20, 40, 130, 0.55) 0%, rgba(30, 64, 175, 0.45) 100%),
        url('../assets/news/ai-trends.png') center/cover no-repeat;
}

.news-card-img--orchestration {
    background:
        linear-gradient(135deg, rgba(130, 60, 0, 0.55) 0%, rgba(180, 83, 9, 0.45) 100%),
        url('../assets/news/intelligent-orchestration.jpg') center/cover no-repeat;
}

/* ─── Load More Section ────────────────────────────────────── */
.news-load-more {
    text-align: center;
    margin-top: 48px;
}

.news-load-more__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ─── CTA Heading ──────────────────────────────────────────── */
.cta-heading--news {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-subtitle--news {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn--sign-up {
    cursor: pointer;
    padding: 14px 34px;
}

/* ─── Single News Post (was embedded <style>) ──────────────── */
.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.post-header {
    margin-bottom: 48px;
    text-align: center;
}

.post-tag {
    display: inline-block;
    background: rgba(250, 66, 56, 0.1);
    color: var(--primary-red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.post-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 600;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.post-body p {
    margin-bottom: 24px;
}

.post-body h2,
.post-body h3 {
    color: var(--text-main);
    margin: 48px 0 20px;
    font-weight: 800;
}

.post-body blockquote {
    border-left: 4px solid var(--primary-red);
    padding-left: 24px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-main);
}

.post-featured-img {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-2) 100%);
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.post-featured-img svg {
    width: 120px;
    height: 120px;
    opacity: 0.15;
    color: white;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .post-content {
        padding: 60px 20px;
    }

    .post-featured-img {
        height: 300px;
    }
}

/* ─── Modal Box ────────────────────────────────────────────── */
.modal-heading--news {
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ======================= legal.css (Privacy Policy / Terms / Data Deletion) ======================= */
/* ============================================================
   LEGAL / POLICY PAGES (Privacy Policy, Terms, etc.)
   ============================================================ */
.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 68, 56, 0.08);
    border: 1px solid rgba(255, 68, 56, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 32px;
}

.legal-content {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.legal-content>*+* {
    margin-top: 18px;
}

.legal-content h2 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 44px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 28px;
}

.legal-content p strong {
    color: var(--text-main);
}

.legal-content ul {
    padding-left: 22px;
}

.legal-content ul li {
    margin-top: 8px;
}

.legal-content ul li::marker {
    color: var(--primary-red);
}

.legal-content a {
    color: var(--primary-red);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content .legal-callout {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary-red);
    border-radius: 12px;
    padding: 18px 22px;
    font-size: 0.95rem;
}

.legal-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.legal-table th {
    background: var(--bg-section);
    color: var(--text-main);
    font-family: 'Avenir', sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.legal-content .legal-contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
}

.legal-content .legal-contact-box p {
    margin: 0;
}
