/* ============================================================
   OpenCode — Black + Orange Corporate Theme
   ============================================================ */

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

:root {
    --bg: #0a0a0a;
    --bg-light: #121215;
    --bg-elevated: #18181b;
    --bg-card: #161618;
    --bg-card-hover: #1e1e22;
    --orange: #ff6a00;
    --orange-light: #ff8533;
    --orange-glow: rgba(255, 106, 0, 0.15);
    --orange-border: rgba(255, 106, 0, 0.25);
    --text: #e4e4e7;
    --text-muted: #a1a1aa;
    --text-heading: #fafafa;
    --border: rgba(255, 255, 255, 0.10);
    --radius: 12px;
    --transition: 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(255, 106, 0, 0.3);
    color: #fff;
}

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

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
    color: var(--text-heading);
    font-weight: 800;
    line-height: 1.15;
}

.text-accent {
    color: var(--orange);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.35s ease;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

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

/* Logo */
.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo-bracket {
    color: var(--orange);
}

/* Nav links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    padding: 8px 14px;
    border-radius: 6px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-heading);
    background: rgba(255, 255, 255, 0.05);
}

.nav-menu a.active {
    color: var(--orange);
}

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

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-chevron {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-chevron,
.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    background: rgba(22, 22, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px !important;
    border-radius: 8px;
    transition: background 0.15s ease;
    flex-wrap: wrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown-menu a i {
    font-size: 1rem;
    color: var(--orange);
    margin-top: 2px;
    width: 20px;
    text-align: center;
}

.nav-dropdown-menu a small {
    display: block;
    width: 100%;
    padding-left: 32px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.nav-dropdown-menu a.active {
    color: var(--orange);
}

/* Separator */
.nav-separator {
    width: 1px;
    height: 20px;
    background: var(--border);
    margin: 0 8px;
}

/* Login button */
.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px !important;
    border: 1px solid var(--orange-border);
    border-radius: 8px;
    background: var(--orange-glow);
    color: var(--orange) !important;
    font-weight: 600 !important;
    transition: var(--transition);
}

.nav-btn i {
    font-size: 0.78rem;
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #000 !important;
}

.nav-btn:hover i {
    transform: translateX(2px);
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font);
}

.btn-primary {
    background: var(--orange);
    color: #000;
}

.btn-primary:hover {
    background: var(--orange-light);
    box-shadow: 0 0 30px var(--orange-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.88) 40%,
        rgba(10, 10, 10, 0.75) 100%
    );
}

/* Two-column layout */
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: center;
    padding: 140px 0 100px;
}

.hero-content {
    position: relative;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--orange-border);
    border-radius: 50px;
    background: var(--orange-glow);
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.hero-tag i {
    font-size: 0.75rem;
}

#hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    margin-bottom: 20px;
    max-width: 600px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-ctas .btn i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.hero-ctas .btn:hover i {
    transform: translateX(4px);
}

/* Trust badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--orange);
    font-size: 0.8rem;
}

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

/* Side card */
.hero-side {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: rgba(22, 22, 22, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    width: 100%;
    max-width: 360px;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.hero-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-card-header span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-card-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.hero-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    min-width: 72px;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-card-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.hero-card-techs span {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--orange-glow);
    color: var(--orange);
    border: 1px solid var(--orange-border);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll a {
    color: var(--text-muted);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================================
   SECTIONS — Common
   ============================================================ */
section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================================
   SERVICES
   ============================================================ */
#servicios {
    background: var(--bg);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--orange-glow);
    color: var(--orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sf-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sf-title-row h3 {
    margin: 0;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tags span {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 600;
    background: var(--orange-glow);
    color: var(--orange);
    border: 1px solid var(--orange-border);
}

/* --- Featured services (top 2) --- */
.services-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.service-featured-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid rgba(255, 106, 0, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.service-featured-card:hover {
    border-color: var(--orange-border);
    box-shadow: 0 8px 40px var(--orange-glow);
    transform: translateY(-4px);
}

.sf-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-featured-card:hover .sf-image img {
    transform: scale(1.05);
}

.sf-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.8) 100%);
}

.sf-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sf-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--orange);
    color: #000;
    margin-bottom: 16px;
}

.sf-content .service-icon {
    margin-bottom: 16px;
}

.sf-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.sf-content > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.sf-checks {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sf-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
}

.sf-checks i {
    color: var(--orange);
    font-size: 0.75rem;
}

.sf-content .service-tags {
    margin-bottom: 20px;
}

.sf-link {
    margin-top: auto;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-featured-card:hover .sf-link {
    gap: 12px;
}

/* --- Secondary services (bottom 4) --- */
.services-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-card-v2 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.service-card-v2:hover {
    border-color: var(--orange-border);
    box-shadow: 0 4px 24px var(--orange-glow);
    transform: translateY(-2px);
}

.sc2-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--orange-glow);
    color: var(--orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sc2-body {
    flex: 1;
    min-width: 0;
}

.sc2-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.sc2-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 12px;
}

.sc2-arrow {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 14px;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-card-v2:hover .sc2-arrow {
    color: var(--orange);
    transform: translateX(4px);
}

/* ============================================================
   ABOUT
   ============================================================ */
#nosotros {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

/* Intro image banner */
.about-intro {
    margin-bottom: 56px;
}

.about-intro-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 380px;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%);
}

.about-intro-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
}

.about-intro-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    max-width: 600px;
}

.about-intro-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 550px;
}

/* Pillars */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.about-pillar {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.about-pillar:hover {
    border-color: var(--orange-border);
    box-shadow: 0 4px 24px var(--orange-glow);
    transform: translateY(-3px);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--orange-glow);
    color: var(--orange);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-pillar h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-heading);
}

.about-pillar p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Stats bar */
.about-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 106, 0, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 4px 32px rgba(255, 106, 0, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* ============================================================
   CLIENTS
   ============================================================ */
#clientes {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 106, 0, 0.04) 0%, transparent 60%),
        var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.client-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.client-card:hover {
    border-color: var(--orange-border);
    box-shadow: 0 4px 24px var(--orange-glow);
    transform: translateY(-4px);
}

.client-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 160px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.2);
    opacity: 0.6;
    transition: var(--transition);
}

.client-card:hover .client-logo img {
    opacity: 1;
    filter: grayscale(0) brightness(1);
}

.client-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    opacity: 0.7;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.client-card:hover .client-logo-text {
    opacity: 1;
    color: var(--orange-light);
}

.client-logo img.client-img-bg {
    border-radius: 8px;
    max-height: 60px;
    filter: grayscale(1);
    opacity: 0.7;
}

.client-card:hover .client-logo img.client-img-bg {
    filter: grayscale(0);
    opacity: 1;
}

.client-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   CTA
   ============================================================ */
#cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.80) 40%,
        rgba(255, 106, 0, 0.30) 100%
    );
}

/* Two-column layout */
.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Left: text */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: var(--orange-glow);
    border: 1px solid var(--orange-border);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-badge i {
    font-size: 0.75rem;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-heading);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--orange);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--orange-light);
    box-shadow: 0 0 30px var(--orange-glow);
    transform: translateY(-2px);
}

.btn-cta-primary i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(4px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    border-color: #25d366;
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

.btn-cta-outline i {
    font-size: 1.1rem;
}

/* Right: features */
.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--orange-border);
    transform: translateX(4px);
}

.cta-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--orange-glow);
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.cta-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.cta-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contacto {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

/* Left side */
.contact-left h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0 16px;
    color: var(--text-heading);
}

.contact-lead {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a.contact-channel:hover {
    border-color: var(--orange-border);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--orange-glow);
}

.channel-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--orange-glow);
    color: var(--orange);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-channel h4 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-heading);
}

.contact-channel span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

a.contact-channel:hover span {
    color: var(--orange);
}

/* Social icons */
.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-social a:hover {
    border-color: var(--orange-border);
    color: var(--orange);
    background: var(--orange-glow);
    transform: translateY(-2px);
}

/* Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-heading);
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #52525b;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full i {
    margin-right: 8px;
}

.form-note {
    margin-top: 16px;
    font-size: 0.78rem;
    color: #52525b;
    text-align: center;
}

.form-note i {
    margin-right: 4px;
    font-size: 0.7rem;
}

/* Captcha */
.form-captcha {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    background: rgba(255, 106, 0, 0.05);
    border: 1px solid rgba(255, 106, 0, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.captcha-icon {
    color: var(--orange);
    font-size: 1.1rem;
}

.captcha-question {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.form-captcha input {
    width: 100px;
    padding: 8px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font);
    text-align: center;
    transition: var(--transition);
    margin-left: auto;
}

.form-captcha input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-captcha input.captcha-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* Success overlay */
.form-success-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    z-index: 10;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-success-overlay.visible {
    opacity: 1;
    transform: scale(1);
}

.form-success-overlay.fade-out {
    opacity: 0;
    transform: scale(0.97) translateY(8px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Animated check ring */
.success-ring {
    width: 90px;
    height: 90px;
    margin-bottom: 24px;
}

.success-ring svg {
    width: 100%;
    height: 100%;
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 3;
}

.ring-progress {
    fill: none;
    stroke: var(--orange);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
    transform: rotate(-90deg);
    transform-origin: center;
}

.visible .ring-progress {
    animation: ring-draw 0.8s ease forwards;
}

@keyframes ring-draw {
    to { stroke-dashoffset: 0; }
}

.ring-check {
    fill: none;
    stroke: #22c55e;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}

.visible .ring-check {
    animation: check-draw 0.4s 0.6s ease forwards;
}

@keyframes check-draw {
    to { stroke-dashoffset: 0; }
}

.form-success-overlay h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.form-success-overlay p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.form-success-overlay p strong {
    color: var(--orange);
}

/* Countdown bar */
.success-bar {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    margin-top: 28px;
    overflow: hidden;
}

.success-bar-fill {
    height: 100%;
    width: 100%;
    background: var(--orange);
    border-radius: 3px;
}

.visible .success-bar-fill {
    animation: bar-shrink 4s linear forwards;
}

@keyframes bar-shrink {
    to { width: 0%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: #050505;
    padding: 0;
    border-top: 1px solid var(--border);
}

/* Footer CTA band */
.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.footer-cta-text h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.footer-cta-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.footer-cta .btn i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-cta .btn:hover i {
    transform: translateX(4px);
}

/* Main grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 56px 0 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 300px;
}

/* Social icons in footer */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--orange-border);
    color: var(--orange);
    background: var(--orange-glow);
}

/* Links columns */
.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 0.86rem;
    color: #52525b;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-link-icon {
    color: #52525b;
    font-size: 0.75rem;
    width: 16px;
    display: inline-block;
    text-align: center;
    margin-right: 4px;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    color: #3f3f46;
    font-size: 0.82rem;
}

.footer-made .text-accent {
    color: var(--orange);
    font-weight: 700;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 991px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 120px 0 80px;
    }

    .hero-side {
        justify-content: flex-start;
    }

    .hero-card {
        max-width: 100%;
    }

    .hero-card-stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-stat {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .hero-stat-number {
        min-width: auto;
    }

    .services-featured {
        grid-template-columns: 1fr;
    }

    .services-secondary {
        grid-template-columns: 1fr;
    }

    .about-pillars {
        grid-template-columns: 1fr 1fr;
    }

    .about-intro-image {
        height: 300px;
    }

    .about-intro-text {
        padding: 28px;
    }

    .about-intro-text h3 {
        font-size: 1.3rem;
    }

    .about-stats-bar {
        flex-wrap: wrap;
        gap: 16px 32px;
        padding: 32px 24px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

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

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

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

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

    section {
        padding: 80px 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 16px;
        right: 16px;
        background: rgba(14, 14, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 12px;
        gap: 4px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-separator {
        width: 100%;
        height: 1px;
        margin: 4px 0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 0.95rem;
        border-bottom: none;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-btn {
        text-align: center;
        justify-content: center;
        margin-top: 0;
    }

    .nav-toggle {
        display: flex;
        padding: 8px;
        min-height: 44px;
        min-width: 44px;
    }

    /* Mobile dropdown */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: none;
        border: none;
        border-radius: 8px;
        padding: 4px 0 4px 12px;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.25s ease;
        box-shadow: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }

    .nav-dropdown.open:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .nav-dropdown-menu a {
        padding: 10px 12px !important;
        font-size: 0.88rem;
    }

    .nav-dropdown-menu a small {
        padding-left: 32px;
    }

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

    .contact-channels {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-inner {
        padding: 110px 0 70px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        text-align: center;
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .trust-divider {
        display: none;
    }

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

    .hero-stat {
        flex-direction: row;
        text-align: left;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        text-align: center;
        justify-content: center;
    }

    .cta-feature {
        padding: 16px;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        height: 240px;
    }

    .about-intro-text {
        padding: 20px;
    }

    .about-intro-text h3 {
        font-size: 1.1rem;
    }

    .about-intro-text p {
        font-size: 0.9rem;
    }

    .about-stats-bar {
        flex-direction: column;
        gap: 24px;
        padding: 28px 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-pillar {
        padding: 24px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .client-card {
        padding: 20px 12px;
        gap: 12px;
    }

    .client-logo {
        height: 60px;
    }

    .client-logo img {
        max-width: 130px;
        max-height: 55px;
    }

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

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

    section {
        padding: 64px 0;
    }

    #hero h1 {
        font-size: 2rem;
    }
}

/* Small mobile */
@media (max-width: 375px) {
    .container {
        padding: 0 16px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-channels {
        grid-template-columns: 1fr;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .about-stats-bar {
        padding: 24px 12px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .client-card {
        padding: 16px 10px;
        gap: 10px;
    }

    .client-logo {
        height: 50px;
    }

    .client-logo img {
        max-width: 110px;
        max-height: 45px;
    }

    .client-logo img.client-img-bg {
        max-height: 40px;
    }

    .client-name {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .cta-feature {
        padding: 12px 14px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

/* ============================================================
   LIGHT SECTIONS — Alternating white/dark layout
   ============================================================ */

.section-light {
    background: #141418;
    color: var(--text);
    padding: 100px 0;
}

.section-light h2, .section-light h3, .section-light h4 {
    color: var(--text-heading);
}

.section-light p {
    color: var(--text-muted);
}

.section-header-dark h2 {
    color: var(--text-heading);
}

.section-header-dark p {
    color: var(--text-muted);
}

.section-tag-light {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(255, 106, 0, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 106, 0, 0.15);
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */

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

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--orange-border);
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
}

.product-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.15);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.product-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted) !important;
    margin-bottom: 16px;
}

.product-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted) !important;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    font-size: 0.88rem;
    color: var(--text);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: #10b981;
    font-size: 0.75rem;
    width: 18px;
    text-align: center;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.product-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 6px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange) !important;
    transition: all 0.2s ease;
}

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

.product-link i {
    transition: transform 0.2s ease;
}

.product-link:hover i {
    transform: translateX(4px);
}

/* ============================================================
   ABOUT PILLARS — Light variant
   ============================================================ */

.about-pillars-light {
    margin-top: 48px;
}

.about-pillar-light {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
}

.about-pillar-light:hover {
    background: var(--bg-card-hover) !important;
    border-color: var(--orange-border) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.about-pillar-light h4 {
    color: var(--text-heading) !important;
}

.about-pillar-light p {
    color: var(--text-muted) !important;
}

.pillar-icon-light {
    background: rgba(255, 106, 0, 0.08) !important;
    color: var(--orange) !important;
}

/* Stats bar — Light variant */
.about-stats-light {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
}

.about-stats-light .stat-number {
    color: var(--orange) !important;
}

.about-stats-light .stat-label {
    color: var(--text-muted) !important;
}

.about-stats-light .stat-divider {
    background: var(--border) !important;
}

/* ============================================================
   CTA LIGHT SECTION
   ============================================================ */

.cta-light-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cta-light-text h2 {
    font-size: 2rem;
    color: var(--text-heading);
    margin-top: 16px;
    margin-bottom: 16px;
}

.cta-light-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-light-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.cta-light-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-light-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.cta-light-feature:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--orange-border);
}

.cta-light-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 106, 0, 0.08);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.cta-light-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.cta-light-feature p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Hero gradient background (no external image) */
.hero-gradient-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 106, 0, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                var(--bg);
}

/* ============================================================
   LIGHT SECTIONS — Responsive
   ============================================================ */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .product-card {
        padding: 24px;
    }

    .cta-light-text h2 {
        font-size: 1.6rem;
    }

    .cta-light-buttons {
        flex-direction: column;
    }

    .cta-light-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }
}

/* Client cards — Light variant */
.client-card-light {
    background: var(--bg-card);
    border-color: var(--border);
}

.client-card-light:hover {
    background: var(--bg-card-hover);
    border-color: var(--orange-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.client-card-light .client-name {
    color: var(--text-muted);
}

/* ============================================================
   PAGE HEADER — Inner pages (dark banner at top)
   ============================================================ */

.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 106, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

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

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header .section-tag {
    margin-bottom: 16px;
}

.page-header h1 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-header-light {
    background: #141418;
    border-bottom: 1px solid var(--border);
}

.page-header-light::before {
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 106, 0, 0.04) 0%, transparent 60%);
}

.page-header-light h1 {
    color: var(--text-heading);
}

.page-header-light p {
    color: var(--text-muted);
}

/* Page content sections */
.page-section {
    padding: 80px 0;
}

.page-section:first-of-type {
    padding-top: 100px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-section {
        padding: 60px 0;
    }
}

/* ============================================================
   PRODUCT PAGE — Feature grid, pricing highlight
   ============================================================ */

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

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

.feature-card:hover {
    border-color: var(--orange-border);
    transform: translateY(-2px);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--orange-glow);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Light variant — now dark gray */
.feature-grid-light .feature-card {
    background: var(--bg-card);
    border-color: var(--border);
}

.feature-grid-light .feature-card:hover {
    border-color: var(--orange-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-grid-light .feature-card h3 {
    color: var(--text-heading);
}

.feature-grid-light .feature-card p {
    color: var(--text-muted);
}

/* Product CTA banner */
.product-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-top: 48px;
}

.product-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.product-cta p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 28px;
}

.product-cta .btn {
    margin: 0 8px;
}

/* Product CTA light variant */
.product-cta-light {
    background: var(--bg-card);
    border-color: var(--border);
}

.product-cta-light h2 {
    color: var(--text-heading);
}

.product-cta-light p {
    color: var(--text-muted);
}

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

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

    .product-cta {
        padding: 40px 24px;
    }

    .product-cta h2 {
        font-size: 1.4rem;
    }

    .product-cta .btn {
        display: block;
        margin: 8px 0;
    }
}
