/* ─────────────────────────────────────────────────────────────
   ME SOLUCIONES — Design System CSS
   Brand: Roxo 01 #6C36FE · Roxo 02 #C2ADED · Roxo 03 #1D1F48 · Off White #F4F4F4
   Font: Industry (Adobe/web) with fallback
──────────────────────────────────────────────────────────────── */

/* Adobe Fonts / local Industry with robust fallback */
@import url('https://use.typekit.net/placeholder.css');

/* replaced by local font-face */
@font-face {
    font-family: 'industry';
    font-weight: 400;
    font-style: normal;
    src: local('Industry'), local('Industry-Book');
}

@font-face {
    font-family: 'industry';
    font-weight: 600;
    font-style: normal;
    src: local('Industry'), local('Industry-Demi');
}

@font-face {
    font-family: 'industry';
    font-weight: 700;
    font-style: normal;
    src: local('Industry'), local('Industry-Bold');
}

@font-face {
    font-family: 'industry';
    font-weight: 800;
    font-style: normal;
    src: local('Industry'), local('Industry-Black');
}

/* Keep Inter as fallback if Industry not installed */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── TOKENS ── */
:root {
    --roxo-01: #6C36FE;
    --roxo-01-light: #8458FF;
    --roxo-01-dark: #5420EE;
    --roxo-02: #C2ADED;
    --roxo-02-light: #D8CEFF;
    --roxo-03: #1D1F48;
    --roxo-03-muted: #2e3060;
    --off-white: #F4F4F4;
    --white: #FFFFFF;
    --gray-100: #EEEEF0;
    --gray-200: #D8D8DC;
    --gray-400: #9898A6;
    --gray-600: #5C5C70;
    --text-primary: #1D1F48;
    --text-secondary: #5C5C70;
    --text-muted: #9898A6;
    --border: rgba(29, 31, 72, 0.10);
    --border-hover: rgba(108, 54, 254, 0.30);
    --shadow-sm: 0 1px 3px rgba(29, 31, 72, 0.06), 0 1px 2px rgba(29, 31, 72, 0.04);
    --shadow-md: 0 4px 16px rgba(29, 31, 72, 0.08), 0 2px 6px rgba(29, 31, 72, 0.05);
    --shadow-lg: 0 16px 48px rgba(29, 31, 72, 0.12), 0 4px 16px rgba(29, 31, 72, 0.08);
    --shadow-glow: 0 0 40px rgba(108, 54, 254, 0.20);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: 'industry', 'Industry', 'Inter', system-ui, sans-serif;
    background-color: var(--off-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
}

/* ── UTILITY ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

.section {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--roxo-01);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--roxo-01);
}

.section-heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--roxo-03);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

.section-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 56px;
}

.section-sub.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 15px 32px;
    font-size: 15px;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--roxo-01);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(108, 54, 254, 0.35);
}

.btn-primary:hover {
    background: var(--roxo-01-dark);
    box-shadow: 0 4px 20px rgba(108, 54, 254, 0.45);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.80);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--roxo-03);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 68px;
    background: rgba(244, 244, 244, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 32px;
}

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

.brand-logo {
    height: 72px; /* Increased from 64px */
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
    filter: drop-shadow(0 2px 8px rgba(108, 54, 254, 0.15));
}

.brand-logo:hover {
    transform: scale(1.05);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--roxo-03);
    background: rgba(29, 31, 72, 0.05);
}

.nav-link.active,
.nav-drop-btn.active {
    color: var(--roxo-01);
    background: rgba(108, 54, 254, 0.06);
}

/* Dropdown wrap */
.nav-dropdown-wrap {
    position: relative;
}

.nav-drop-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-drop-btn:hover {
    color: var(--roxo-03);
    background: rgba(29, 31, 72, 0.05);
}

.nav-drop-btn.active {
    color: var(--roxo-01);
}

.nav-chevron {
    transition: transform var(--transition);
}

.nav-drop-btn[aria-expanded="true"] .nav-chevron {
    transform: rotate(180deg);
}

/* Mega menu — open on parent :hover (pure CSS, no JS race) */
.nav-mega {
    position: absolute;
    top: 100%;
    /* flush against bottom of header */
    left: 50%;
    transform: translateX(-50%) translateY(0) scale(0.97);
    min-width: 460px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 10px;
    margin-top: 8px;
    /* adds visual gap but keeps top:100% attached to parent container logic */
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    z-index: 300;
}

.nav-dropdown-wrap:hover .nav-mega,
.nav-mega.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

/* Invisible bridge so mouse doesn't lose hover between button and dropdown */
.nav-dropdown-wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -50px;
    right: -50px;
    height: 16px;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
}

.mega-item:hover {
    background: rgba(108, 54, 254, 0.05);
}

.mega-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(108, 54, 254, 0.07);
    border: 1px solid rgba(108, 54, 254, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roxo-01);
    flex-shrink: 0;
    transition: all var(--transition);
}

.mega-item:hover .mega-icon {
    background: var(--roxo-01);
    color: var(--white);
    border-color: var(--roxo-01);
}

.mega-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--roxo-03);
    margin-bottom: 2px;
}

.mega-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    transition: all 0.25s ease;
}

.mobile-nav.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-link {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition);
}

.mobile-nav-link:hover {
    background: rgba(108, 54, 254, 0.06);
    color: var(--roxo-01);
}

.mobile-nav-sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 16px;
    margin-top: -2px;
    margin-bottom: 4px;
    border-left: 2px solid rgba(108, 54, 254, 0.1);
}

.mobile-nav-link.sub {
    padding: 8px 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.mobile-nav-link.sub:hover {
    background: rgba(108, 54, 254, 0.04);
}

/* Hamburger open state */
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav right cluster */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Region Switcher */
.region-switcher {
    position: relative;
}

.region-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all var(--transition);
}

.region-btn:hover {
    border-color: var(--border-hover);
}

.region-flag {
    font-size: 16px;
    line-height: 1;
}

.chevron {
    transition: transform var(--transition);
}

.region-btn[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.region-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 6px;
    min-width: 160px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.96);
    transform-origin: top right;
    transition: all var(--transition);
    z-index: 200;
}

.region-dropdown.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.region-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition);
}

.region-option:hover {
    background: rgba(108, 54, 254, 0.06);
    color: var(--roxo-01);
}

.region-option.active {
    background: rgba(108, 54, 254, 0.08);
    color: var(--roxo-01);
}

.region-option span {
    font-size: 18px;
}

/* Lang Toggle */
.lang-toggle {
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--roxo-01);
    border: 1px solid rgba(108, 54, 254, 0.20);
    background: rgba(108, 54, 254, 0.05);
    transition: all var(--transition);
}

.lang-toggle:hover {
    background: rgba(108, 54, 254, 0.10);
    border-color: rgba(108, 54, 254, 0.40);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--roxo-03);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 68px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-building-img {
    position: absolute;
    inset: 0;
    background-image: url('hero-building.jpg');
    background-size: cover;
    background-position: center 30%;
    background-color: var(--roxo-03);
}

/* Pattern overlay */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(194, 173, 237, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(194, 173, 237, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(29, 31, 72, 0.72) 0%,
            rgba(29, 31, 72, 0.55) 40%,
            rgba(108, 54, 254, 0.25) 70%,
            rgba(29, 31, 72, 0.85) 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--roxo-01) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--roxo-02) 0%, transparent 70%);
    bottom: -80px;
    left: 10%;
    animation-delay: 4s;
    opacity: 0.20;
}

@keyframes orbFloat {

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

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 32px;
    animation: badgeFade 0.8s ease forwards;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.10);
    }
}

@keyframes badgeFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.hero-headline {
    font-size: clamp(38px, 6.5vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--white);
    max-width: 740px;
    margin-bottom: 24px;
    animation: heroText 0.9s ease 0.15s both;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
    animation: heroText 0.9s ease 0.25s both;
}

@keyframes heroText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 72px;
    animation: heroText 0.9s ease 0.35s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    animation: heroText 0.9s ease 0.45s both;
}

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

.stat-num {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    margin: 0 auto;
    animation: scrollPulse 1.8s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
}

/* ── LOGO MARQUEE ── */
.logo-marquee-section {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.logo-marquee-wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-marquee {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    transition: transform var(--transition), opacity var(--transition);
    opacity: 0.6;
    filter: grayscale(100%);
}

.logo-item:hover {
    transform: scale(1.05);
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

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

/* ── ABOUT ── */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 72px;
    align-items: center;
}

.about-body {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.visual-media-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(29, 31, 72, 0.1), 0 10px 20px rgba(29, 31, 72, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    aspect-ratio: 16 / 10;
}

.visual-media-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 45px 90px rgba(108, 54, 254, 0.15), 0 15px 30px rgba(29, 31, 72, 0.05);
    border-color: rgba(108, 54, 254, 0.2);
}

.visual-media-card img, 
.visual-media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visual-media-card:hover img, 
.visual-media-card:hover video {
    transform: scale(1.05);
}

.visual-media-card.portrait-media {
    aspect-ratio: 9 / 16;
    max-height: 700px;
    width: fit-content;
    margin: 0 auto;
}

.visual-media-card.portrait-media video {
    object-fit: cover;
}

@media (max-width: 900px) {
    .about-grid, .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-wrapper .visual-media-card {
        order: -1;
    }
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.pillar-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(108, 54, 254, 0.08);
    border: 1px solid rgba(108, 54, 254, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roxo-01);
    flex-shrink: 0;
}

/* Timeline */
.timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border) 10%, var(--border) 90%, transparent);
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    position: relative;
}

.tl-year {
    font-size: 13px;
    font-weight: 700;
    color: var(--roxo-01);
    letter-spacing: 0.04em;
    padding: 4px 12px;
    background: rgba(108, 54, 254, 0.08);
    border-radius: var(--radius-full);
}

.tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--off-white);
    box-shadow: 0 0 0 2px var(--border);
    flex-shrink: 0;
}

.tl-dot-active {
    background: var(--roxo-01);
    box-shadow: 0 0 0 3px rgba(108, 54, 254, 0.20);
}

.tl-content {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 140px;
}

/* ── SOLUTIONS ── */
.solutions {
    background: var(--off-white);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.solution-card {
    background: var(--off-white);
    padding: 44px 40px;
    position: relative;
    transition: all var(--transition);
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 54, 254, 0.04) 0%, rgba(194, 173, 237, 0.06) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.solution-card:hover {
    background: var(--white);
}

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

.solution-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.solution-card:hover .card-icon {
    background: var(--roxo-01);
    color: var(--white);
    border-color: var(--roxo-01);
    transform: scale(1.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(108, 54, 254, 0.07);
    border: 1px solid rgba(108, 54, 254, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roxo-01);
    transition: all var(--transition);
}

.card-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--roxo-03);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-features li {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--roxo-01);
    border-radius: 50%;
    flex-shrink: 0;
}

.card-arrow {
    position: relative;
    z-index: 1;
    color: var(--roxo-01);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition);
    align-self: flex-end;
}

/* ── SUPPORT ── */
.support {
    background: var(--off-white);
    border-top: 1px solid var(--border);
}

.support-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.support-body {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
}

.support-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.support-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(108, 54, 254, 0.08);
    border: 1px solid rgba(108, 54, 254, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roxo-01);
    flex-shrink: 0;
    margin-top: 1px;
}

.support-item span {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.support-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-stat-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 6px 20px rgba(29, 31, 72, 0.04), inset 0 2px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.support-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 54, 254, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.support-stat-card:hover {
    box-shadow: 0 20px 48px rgba(108, 54, 254, 0.12), 0 8px 16px rgba(29, 31, 72, 0.05), inset 0 2px 0 var(--white);
    border-color: rgba(108, 54, 254, 0.2);
    transform: translateX(8px) translateY(-4px) scale(1.01);
}

.support-stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(108, 54, 254, 0.12) 0%, rgba(194, 173, 237, 0.08) 100%);
    border: 1px solid rgba(108, 54, 254, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roxo-01);
    box-shadow: 0 4px 12px rgba(108, 54, 254, 0.10);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.support-stat-card:hover .stat-icon {
    background: linear-gradient(135deg, var(--roxo-01) 0%, #8458FF 100%);
    color: var(--white);
    border-color: var(--roxo-01);
    box-shadow: 0 6px 20px rgba(108, 54, 254, 0.30);
    transform: scale(1.08);
}

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

.stat-big {
    font-size: 26px;
    font-weight: 800;
    color: var(--roxo-03);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ── CONDITIONAL CONTENT ── */
.argentina-only,
.other-only {
    display: none; /* Hidden by default, controlled by JS */
}

.argentina-only,
.other-only,
.sol-extra-visual {
    margin-top: 32px;
    width: 100%;
}

.clover-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: transform var(--transition);
}

.clover-img:hover {
    transform: translateY(-4px);
}

/* ── REGIONAL ── */
.regional {
    background: var(--off-white);
    border-top: 1px solid var(--border);
}

.regional-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.regional-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 16px rgba(29, 31, 72, 0.04), inset 0 2px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.regional-card:hover {
    border-color: rgba(108, 54, 254, 0.2);
    box-shadow: 0 16px 32px rgba(108, 54, 254, 0.08), 0 8px 16px rgba(29, 31, 72, 0.06), inset 0 2px 0 var(--white);
    transform: translateY(-6px) scale(1.01);
}

.regional-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--roxo-01);
    margin-bottom: 12px;
}

.regional-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--roxo-03);
    margin-bottom: 8px;
}

.regional-card-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.regional-card-meta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--roxo-01);
    text-transform: uppercase;
}

/* Contact Card */
.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    padding: 56px 60px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
    box-shadow: 0 16px 48px rgba(29, 31, 72, 0.06), 0 4px 16px rgba(29, 31, 72, 0.03);
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 54, 254, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contact-left h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--roxo-03);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.contact-left p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(108, 54, 254, 0.10) 0%, rgba(194, 173, 237, 0.06) 100%);
    border: 1px solid rgba(108, 54, 254, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roxo-01);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-info-item:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--roxo-01) 0%, #8458FF 100%);
    color: var(--white);
    border-color: var(--roxo-01);
    box-shadow: 0 4px 12px rgba(108, 54, 254, 0.25);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    padding: 11px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--off-white);
    transition: all var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--roxo-01);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(108, 54, 254, 0.10);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* ── FINAL CTA ── */
.final-cta {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    text-align: center;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--roxo-03) 0%, #2d1680 50%, var(--roxo-03) 100%);
}

.final-cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.final-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(108, 54, 254, 0.30) 0%, transparent 70%);
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 44px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
    background: var(--roxo-03);
    padding: 72px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    padding-bottom: 56px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 280px;
}

.footer-domain {
    font-size: 14px;
    font-weight: 600;
    color: var(--roxo-02);
}

.footer-payments {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start; /* Ensure the white div doesn't stretch to full width */
}

.footer-payments span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

.payment-grid {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    background: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-top: 4px;
}

.payment-logo {
    height: 14px; /* Base height */
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
    display: none; /* Hidden by default, shown by region */
}

/* Individual scaling based on user request */
.payment-logo.mastercard { height: 16px; }  /* ~+10% of 14px */
.payment-logo.amex { height: 18px; }        /* ~+10% more from 16px */
.payment-logo.maestro { height: 21px; }     /* +30% initially, now +15% more */
.payment-logo.cabal { height: 20px; }       /* +20% initially, now +15% more */
.payment-logo.applepay { height: 15px; }    /* ~+5% of 14px */
.payment-logo.googlepay { height: 24px; }   /* +50% initially, now +15% more */
.payment-logo.pix { height: 18px; }         /* Pix needs to be prominent */
.payment-logo.hipercard { height: 21px; }   /* +50% of 14px */
.payment-logo.elo { height: 14px; }

.payment-logo:hover {
    transform: scale(1.1);
}

/* Region-based visibility */
[data-region="uy"] .payment-logo.uy,
[data-region="ar"] .payment-logo.ar,
[data-region="cl"] .payment-logo.cl,
[data-region="br"] .payment-logo.br {
    display: block;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.40);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

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

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.40);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

/* ── REVEAL ANIMATION ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--roxo-03);
    color: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 36px;
    }

    .timeline {
        flex-direction: column;
    }

    .timeline::before {
        top: 0;
        bottom: 0;
        left: 26px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .timeline-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .tl-content {
        max-width: none;
    }
}

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

    .regional-content {
        grid-template-columns: 1fr;
    }

    .nav-center,
    .nav-right .btn-primary,
    .lang-toggle {
        display: none;
    }

    .nav-hamburger {
        display: flex;
        margin-left: auto;
    }

    .hero-headline {
        font-size: clamp(32px, 8vw, 52px);
    }

    .hero-stats {
        gap: 16px;
        font-size: 0.72em;
    }

    .stat-divider {
        height: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

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

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    padding: 140px 0 72px;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 991px) {
    .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.page-hero-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--roxo-03);
    margin-bottom: 20px;
    max-width: 700px;
}

.page-hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

/* ── HOME TEASERS ── */
.home-teasers {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.home-teasers::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 54, 254, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 54, 254, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.home-teasers::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 54, 254, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.home-teasers .section-label {
    color: var(--roxo-01);
}

.home-teasers .section-label::before {
    background: var(--roxo-01);
}

.home-teasers .section-heading {
    color: var(--roxo-03);
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.teaser-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(29, 31, 72, 0.08);
    box-shadow: 0 4px 20px rgba(29, 31, 72, 0.05), inset 0 2px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.teaser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--roxo-01), var(--roxo-02));
    opacity: 0.5;
    transition: opacity 0.5s ease;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.teaser-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 54, 254, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.teaser-card:hover {
    background: var(--white);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 48px rgba(108, 54, 254, 0.12), 0 8px 16px rgba(29, 31, 72, 0.06), inset 0 2px 0 var(--white);
    border-color: rgba(108, 54, 254, 0.25);
}

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

.teaser-card:hover::after {
    opacity: 1;
}

.teaser-card:hover .teaser-arrow {
    opacity: 1;
    transform: translateX(6px);
}

.teaser-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--roxo-01);
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.teaser-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(108, 54, 254, 0.2);
    max-width: 24px;
}

.teaser-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--roxo-03);
    line-height: 1.25;
}

.teaser-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}

.teaser-arrow {
    font-size: 20px;
    color: var(--roxo-01);
    opacity: 0.3;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    align-self: flex-end;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* ── SOLUCIONES LAYOUT ── */
.mobile-view { display: none; }
.desktop-view { display: block; }

@media (max-width: 768px) {
    .desktop-view { display: none !important; }
    .mobile-view { display: block !important; }
    
    .mobile-intro-text {
        text-align: center;
        color: var(--text-secondary);
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 40px;
        padding: 0 10px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .solutions-mobile-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mobile-sol-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-decoration: none;
        transition: all var(--transition);
        box-shadow: 0 4px 12px rgba(29, 31, 72, 0.04);
        position: relative;
    }
    
    .mobile-sol-card:active {
        border-color: var(--roxo-01);
        background: rgba(108, 54, 254, 0.02);
        transform: scale(0.98);
    }
    
    .mobile-sol-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, rgba(108, 54, 254, 0.1) 0%, rgba(108, 54, 254, 0.05) 100%);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--roxo-01);
        flex-shrink: 0;
    }
    
    .mobile-sol-card h3 {
        font-size: 17px;
        font-weight: 600;
        color: var(--roxo-03);
        flex-grow: 1;
        margin: 0;
        letter-spacing: -0.01em;
    }
    
    .m-arrow {
        color: var(--roxo-01);
        opacity: 0.6;
    }
}

/* ── SOLUTION DETAIL ── */
.solution-detail {
    border-top: 1px solid var(--border);
}

.sol-alt {
    background: var(--white);
}

.sol-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sol-detail-inner.reverse {
    direction: rtl;
}

.sol-detail-inner.reverse>* {
    direction: ltr;
}

.sol-detail-body {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
}

.sol-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.sol-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.check {
    color: var(--roxo-01);
    font-weight: 700;
    font-size: 14px;
}

.sol-visual-card {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    display: block;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 12px 40px rgba(29, 31, 72, 0.06), 0 4px 12px rgba(29, 31, 72, 0.03), inset 0 2px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.sol-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sol-visual-card:hover .sol-card-img {
    transform: scale(1.08);
}

.sol-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 54, 254, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.sol-visual-card:hover {
    background: var(--white);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(108, 54, 254, 0.12), 0 12px 24px rgba(29, 31, 72, 0.06), inset 0 2px 0 var(--white);
    border-color: rgba(108, 54, 254, 0.25);
}

.sol-visual-card:hover::before {
    opacity: 1;
}

.sol-visual-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: rgba(108, 54, 254, 0.08);
    border: 1px solid rgba(108, 54, 254, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roxo-01);
}

.sol-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29, 31, 72, 0.8) 0%, rgba(29, 31, 72, 0.2) 50%, transparent 100%);
    padding: 32px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    z-index: 2;
}

.sol-v-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sol-card-overlay .sol-v-num {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.sol-card-overlay .sol-v-lab {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.sol-v-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--roxo-03);
    letter-spacing: -0.04em;
    line-height: 1;
}

.sol-v-lab {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .sol-detail-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        direction: ltr;
    }

    .sol-detail-inner.reverse {
        direction: ltr;
    }
}

/* ── PILLAR CARDS (Nosotros) ── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 6px 24px rgba(29, 31, 72, 0.04), 0 2px 8px rgba(29, 31, 72, 0.02), inset 0 2px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(108, 54, 254, 0.08) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pillar-card:hover {
    background: var(--white);
    border-color: rgba(108, 54, 254, 0.2);
    box-shadow: 0 20px 48px rgba(108, 54, 254, 0.12), 0 8px 24px rgba(29, 31, 72, 0.06), inset 0 2px 0 var(--white);
    transform: translateY(-8px) scale(1.02);
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(108, 54, 254, 0.07);
    border: 1px solid rgba(108, 54, 254, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roxo-01);
}

.pillar-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--roxo-03);
}

.pillar-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ── VERTICAL TIMELINE (Nosotros) ── */
.about-timeline-section {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.timeline-vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid var(--border);
    margin-left: 64px;
    padding-left: 40px;
    margin-top: 48px;
}

.tl-v-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.tl-v-item::before {
    content: '';
    position: absolute;
    left: -49px;
    top: 36px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--off-white);
}

.tl-v-item:last-child::before {
    background: var(--roxo-01);
    box-shadow: 0 0 0 4px rgba(108, 54, 254, 0.15);
}

.tl-v-item:last-child {
    border-bottom: none;
}

.tl-v-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--roxo-01);
    padding-top: 4px;
}

.tl-v-active-year {
    color: var(--roxo-01);
}

.tl-v-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--roxo-03);
    margin-bottom: 6px;
}

.tl-v-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

@media (max-width: 640px) {
    .timeline-vertical {
        margin-left: 20px;
        padding-left: 24px;
    }

    .tl-v-item {
        grid-template-columns: 56px 1fr;
    }

    .tl-v-item::before {
        left: -33px;
    }
}

/* ── PHASES GRID (Soporte) ── */
.phases-section {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.phase-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 16px rgba(29, 31, 72, 0.03), inset 0 2px 0 rgba(255, 255, 255, 0.9);
}

.phase-card:hover {
    background: var(--white);
    border-color: rgba(108, 54, 254, 0.2);
    box-shadow: 0 20px 40px rgba(108, 54, 254, 0.1), 0 8px 16px rgba(29, 31, 72, 0.05), inset 0 2px 0 var(--white);
    transform: translateY(-8px) scale(1.02);
}

.phase-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--roxo-01);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.phase-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--roxo-03);
}

.phase-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* ── CONTACT SECTION ── */
.contact-section {
    border-top: 1px solid var(--border);
}