@charset "utf-8";

/* =====================================================================
 * DURALIS ENERGY | services-shared.css — v3.0 "Living Precision"
 * Premium redesign: Swiss engineering precision + living energy
 *
 * DEPENDENCIA: Cargarse DESPUÉS de main.css
 * ===================================================================== */


/* ─────────────────────────────────────────────────────────────────────
 * §01  CSS CUSTOM PROPERTIES
 * ───────────────────────────────────────────────────────────────────── */
:root {
    /* ── Colores de servicio (preserved) ── */
    --srv-dark:         #000c0f;
    --srv-charcoal:     #1a252f;
    --srv-slate:        #3a4a5a;
    --srv-muted:        #6b7c8d;
    --srv-light:        #e8ecef;
    --srv-off-white:    #f4f6f7;
    --srv-white:        #ffffff;

    /* ── Acento de marca ── */
    --srv-brand:        #54FE0C;
    --srv-brand-dim:    rgba(84, 254, 12, 0.10);
    --srv-brand-glow:   rgba(84, 254, 12, 0.25);
    --srv-brand-dark:   #3ac909;

    /* ── Espaciado ── */
    --srv-section-y:    120px;
    --srv-section-y-md: 80px;
    --srv-section-y-sm: 56px;

    /* ── Bordes ── */
    --srv-radius:       20px;
    --srv-radius-sm:    12px;
    --srv-radius-pill:  100px;

    /* ── Sombras ── */
    --srv-shadow-sm:    0 2px 12px rgba(0, 0, 0, 0.06);
    --srv-shadow-md:    0 8px 40px rgba(0, 0, 0, 0.09);
    --srv-shadow-lg:    0 20px 64px rgba(0, 0, 0, 0.13);
    --srv-shadow-hover: 0 32px 80px rgba(0, 0, 0, 0.18);
    --srv-glow:         0 0 48px rgba(84, 254, 12, 0.20);

    /* ── Transiciones ── */
    --srv-transition:       0.65s cubic-bezier(0.4, 0, 0.2, 1);
    --srv-transition-fast:  0.30s cubic-bezier(0.4, 0, 0.2, 1);

    /* ── Parallax (actualizado por scroll-effect.js) ── */
    --translate-value:        0;
    --translate-value-header: 0;

    /* ── Dot grid ── */
    --srv-dot-color: rgba(0, 12, 15, 0.055);
    --srv-dot-space: 28px;
}


/* ─────────────────────────────────────────────────────────────────────
 * §02  SCROLL REVEAL SYSTEM
 *      IntersectionObserver classes — añadidas por el script inline
 *      de cada página HTML.
 * ───────────────────────────────────────────────────────────────────── */

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="scale"] {
    transform: scale(0.92) translateY(20px);
}

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

/* Stagger para grupos */
[data-reveal-group] > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-group] > *:nth-child(2) { transition-delay: 0.10s; }
[data-reveal-group] > *:nth-child(3) { transition-delay: 0.20s; }
[data-reveal-group] > *:nth-child(4) { transition-delay: 0.30s; }
[data-reveal-group] > *:nth-child(5) { transition-delay: 0.40s; }

[data-reveal-group] > * {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal-group].is-visible > * {
    opacity: 1;
    transform: translateY(0);
}


/* ─────────────────────────────────────────────────────────────────────
 * §03  ESTILOS BASE DE PÁGINA
 * ───────────────────────────────────────────────────────────────────── */

.service-details-page .main section[id] {
    scroll-margin-top: 80px;
}

body.service-details-page .footer {
    position: relative;
    z-index: 11;
}

.service-details-page img {
    max-width: 100%;
    height: auto;
}

body.service-details-page .main {
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    background-color: var(--srv-white);
    box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.55);
}

/* Línea accent verde en el borde superior del main */
body.service-details-page .main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--srv-brand) 30%,
        var(--srv-brand-dark) 70%,
        transparent 100%);
    z-index: 1;
}


/* ─────────────────────────────────────────────────────────────────────
 * §04  HERO BANNER
 * ───────────────────────────────────────────────────────────────────── */

.sc-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--srv-dark);
    z-index: 1;
    will-change: transform;
}

/* Imagen de fondo con parallax */
.sc-hero__bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.88) saturate(1.15);
    transform: translate3d(0, calc(var(--translate-value) * 1%), 0);
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Degradado principal */
.sc-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0, 12, 15, 0.10) 0%,
        rgba(0, 12, 15, 0.55) 45%,
        rgba(0, 12, 15, 0.93) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Overlay alternativo (por si alguna página lo usa como div) */
.sc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0, 12, 15, 0.10) 0%,
        rgba(0, 12, 15, 0.55) 45%,
        rgba(0, 12, 15, 0.93) 100%
    );
    z-index: 1;
}

/* Partículas flotantes (CSS puro) */
.sc-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.sc-hero__particles span {
    position: absolute;
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--srv-brand);
    opacity: 0;
    animation: particle-float linear infinite;
}

.sc-hero__particles span:nth-child(1)  { left: 8%;  animation-delay: 0s;    animation-duration: 12s; width: 2px; height: 2px; }
.sc-hero__particles span:nth-child(2)  { left: 18%; animation-delay: 2.5s;  animation-duration: 9s;  }
.sc-hero__particles span:nth-child(3)  { left: 32%; animation-delay: 5s;    animation-duration: 14s; width: 2px; height: 2px; }
.sc-hero__particles span:nth-child(4)  { left: 45%; animation-delay: 1.5s;  animation-duration: 11s; }
.sc-hero__particles span:nth-child(5)  { left: 58%; animation-delay: 3.8s;  animation-duration: 8s;  width: 4px; height: 4px; opacity: 0; }
.sc-hero__particles span:nth-child(6)  { left: 72%; animation-delay: 7s;    animation-duration: 13s; width: 2px; height: 2px; }
.sc-hero__particles span:nth-child(7)  { left: 82%; animation-delay: 0.8s;  animation-duration: 10s; }
.sc-hero__particles span:nth-child(8)  { left: 92%; animation-delay: 4.2s;  animation-duration: 15s; width: 2px; height: 2px; }
.sc-hero__particles span:nth-child(9)  { left: 25%; animation-delay: 6.1s;  animation-duration: 11s; }
.sc-hero__particles span:nth-child(10) { left: 65%; animation-delay: 9.0s;  animation-duration: 10s; width: 2px; height: 2px; }

/* Número de servicio gigante (watermark decorativo) */
.sc-hero__watermark {
    position: absolute;
    bottom: -0.15em;
    right: -0.05em;
    font-family: var(--heading-font);
    font-size: min(38vw, 520px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(84, 254, 12, 0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    letter-spacing: -0.05em;
}

/* Línea decorativa horizontal animada */
.sc-hero__line {
    position: absolute;
    bottom: 140px;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(84, 254, 12, 0.4) 40%,
        rgba(84, 254, 12, 0.2) 70%,
        transparent 100%);
    transform-origin: left;
    animation: hero-line-draw 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    z-index: 2;
}

/* Indicador de scroll */
.sc-hero__scroll {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    opacity: 0;
    animation: fade-up 0.8s ease 2s both;
}

.sc-hero__scroll span {
    font-family: var(--nav-font, var(--default-font));
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.sc-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scroll-line 1.8s ease-in-out infinite;
}

/* Contenido del hero */
.sc-hero__content {
    position: relative;
    z-index: 3;
    padding: 80px 0 64px;
    width: 100%;
    transform: translate3d(0, calc(var(--translate-value-header) * 1%), 0);
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Badge de categoría */
.sc-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    margin-bottom: 28px;
    background: rgba(84, 254, 12, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(84, 254, 12, 0.25);
    border-radius: var(--srv-radius-pill);
    color: var(--srv-brand);
    font-family: var(--nav-font, var(--default-font));
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    animation: fade-up 0.7s ease 0.3s both;
}

.sc-hero__label i {
    font-size: 1rem;
}

/* Título principal */
.sc-hero__title {
    font-family: var(--heading-font);
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.00;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    animation: fade-up 0.8s ease 0.5s both;
}

.sc-hero__title em {
    color: var(--srv-brand);
    font-style: normal;
    display: inline-block;
}

/* Subtítulo */
.sc-hero__subtitle {
    font-family: var(--default-font);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 44px;
    max-width: 500px;
    animation: fade-up 0.8s ease 0.7s both;
}

/* Breadcrumb */
.sc-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.82rem;
    animation: fade-up 0.8s ease 0.9s both;
}

.sc-hero__breadcrumb li { color: rgba(255, 255, 255, 0.45); }

.sc-hero__breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.25);
}

.sc-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: color var(--srv-transition-fast);
}

.sc-hero__breadcrumb a:hover { color: var(--srv-brand); }

.sc-hero__breadcrumb li:last-child {
    color: var(--srv-brand);
    font-weight: 500;
}


/* ─────────────────────────────────────────────────────────────────────
 * §05  SECTION SYSTEM
 *      Secciones con fondos texturizados, watermarks de número,
 *      y transiciones diagonales.
 * ───────────────────────────────────────────────────────────────────── */

.sc-section {
    position: relative;
    padding: var(--srv-section-y) 0;
    background-color: var(--srv-white);
    overflow: hidden;
}

/* Dot grid sutil en secciones claras */
.sc-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--srv-dot-color) 1px, transparent 1px);
    background-size: var(--srv-dot-space) var(--srv-dot-space);
    pointer-events: none;
    opacity: 1;
    z-index: 0;
}

.sc-section > .container { position: relative; z-index: 1; }

/* Sección alternada */
.sc-section--alt {
    background-color: var(--srv-off-white);
}

.sc-section--alt::before {
    --srv-dot-color: rgba(0, 12, 15, 0.045);
}

/* Sección oscura */
.sc-section--dark {
    background-color: var(--srv-dark);
    color: rgba(255, 255, 255, 0.85);
}

.sc-section--dark::before {
    background-image: radial-gradient(circle, rgba(84, 254, 12, 0.05) 1px, transparent 1px);
}

.sc-section--dark h1,
.sc-section--dark h2,
.sc-section--dark h3,
.sc-section--dark h4 { color: #ffffff; }

/* Watermark de número de sección (via data-num en HTML) */
.sc-section[data-num]::after {
    content: attr(data-num);
    position: absolute;
    right: -0.06em;
    top: -0.18em;
    font-family: var(--heading-font);
    font-size: min(28vw, 380px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(26, 37, 47, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -0.05em;
}

.sc-section--dark[data-num]::after {
    -webkit-text-stroke: 1px rgba(84, 254, 12, 0.06);
}

/* Eyebrow */
.sc-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    border-radius: var(--srv-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--srv-charcoal);
    margin-bottom: 20px;
}

.sc-section--dark .sc-section__eyebrow {
    color: var(--srv-brand);
    background: rgba(84, 254, 12, 0.08);
    border-color: rgba(84, 254, 12, 0.18);
}

/* Título de sección */
.sc-section__title {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--srv-charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.sc-section--dark .sc-section__title { color: #ffffff; }

/* Lead de sección */
.sc-section__lead {
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--srv-slate);
    max-width: 640px;
}

.sc-section--dark .sc-section__lead { color: rgba(255, 255, 255, 0.65); }


/* ─────────────────────────────────────────────────────────────────────
 * §06  FEATURE ROWS
 *      Layout alternado imagen + texto — mejorado con acento izquierdo
 *      en texto e imagen con esquinas decorativas.
 * ───────────────────────────────────────────────────────────────────── */

/* Eyebrow de feature */
.sc-feature__number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border-radius: var(--srv-radius-pill);
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--srv-charcoal);
    margin-bottom: 22px;
}

/* Bloque de texto con borde izquierdo verde */
.sc-feature__body {
    padding-left: 28px;
    border-left: 3px solid var(--srv-brand);
    position: relative;
}

.sc-feature__body::before {
    content: "";
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 0;
    background: var(--srv-brand-dark);
    transition: height var(--srv-transition);
}

.sc-feature__body:hover::before {
    height: 100%;
}

/* Título de feature */
.sc-feature__title {
    font-family: var(--heading-font);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--srv-charcoal);
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

/* Texto de feature */
.sc-feature__text {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--srv-slate);
    margin-bottom: 16px;
}

.sc-feature__text:last-child { margin-bottom: 0; }

/* Contenedor de imagen con esquinas decorativas */
.sc-feature__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--srv-radius);
    overflow: hidden;
    display: block;
    box-shadow: var(--srv-shadow-lg);
}

/* Esquinas decorativas en verde */
.sc-feature__visual::before,
.sc-feature__visual::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 24px;
    height: 24px;
    pointer-events: none;
    transition: all 0.4s ease;
}

.sc-feature__visual::before {
    top: 16px;
    left: 16px;
    border-top: 2px solid var(--srv-brand);
    border-left: 2px solid var(--srv-brand);
}

.sc-feature__visual::after {
    bottom: 16px;
    right: 16px;
    border-bottom: 2px solid var(--srv-brand);
    border-right: 2px solid var(--srv-brand);
}

.sc-feature__visual:hover::before {
    width: 40px;
    height: 40px;
    top: 12px;
    left: 12px;
}

.sc-feature__visual:hover::after {
    width: 40px;
    height: 40px;
    bottom: 12px;
    right: 12px;
}

.sc-feature__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--srv-transition);
}

.sc-feature__visual:hover img {
    transform: scale(1.07);
}

/* La imagen sin el wrapper .sc-feature__visual */
.sc-feature__body + .col-lg-6 img,
.col-lg-6 .img-fluid.rounded-4 {
    border-radius: var(--srv-radius) !important;
    box-shadow: var(--srv-shadow-lg);
    transition: transform var(--srv-transition), box-shadow var(--srv-transition);
}


/* ─────────────────────────────────────────────────────────────────────
 * §07  CHECKLIST COMPONENT
 * ───────────────────────────────────────────────────────────────────── */

.sc-checklist__label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--srv-muted);
    margin-bottom: 16px;
    margin-top: 24px;
}

.sc-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--srv-light);
    transition: all var(--srv-transition-fast);
    cursor: default;
}

.sc-checklist li:last-child { border-bottom: none; }

.sc-checklist li:hover {
    padding-left: 8px;
    padding-right: 8px;
    background: var(--srv-brand-dim);
    border-radius: var(--srv-radius-sm);
    border-bottom-color: transparent;
}

.sc-checklist__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--srv-brand-dark);
    font-size: 0.76rem;
    transition: all var(--srv-transition-fast);
    margin-top: 1px;
}

.sc-checklist li:hover .sc-checklist__icon {
    background: var(--srv-brand);
    color: var(--srv-dark);
    transform: scale(1.1);
}

.sc-checklist__label {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--srv-slate);
    padding-top: 3px;
}


/* ─────────────────────────────────────────────────────────────────────
 * §08  HIGHLIGHT BANNER
 *      Bloque oscuro de alto contraste — versión premium con borde
 *      animado y glow de marca.
 * ───────────────────────────────────────────────────────────────────── */

.sc-highlight {
    position: relative;
    padding: 72px 64px;
    border-radius: var(--srv-radius);
    overflow: hidden;
    background: linear-gradient(135deg,
        var(--srv-dark) 0%,
        #0d1a22 60%,
        #0a1520 100%);
    border: 1px solid rgba(84, 254, 12, 0.12);
    box-shadow: var(--srv-shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.sc-highlight:hover {
    border-color: rgba(84, 254, 12, 0.25);
    box-shadow: var(--srv-shadow-hover), var(--srv-glow);
}

/* Círculos decorativos */
.sc-highlight::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(84, 254, 12, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.sc-highlight::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(84, 254, 12, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

/* Borde animado superior */
.sc-highlight .sc-highlight__bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--srv-brand), var(--srv-brand-dark), transparent);
    animation: shimmer-bar 4s ease-in-out infinite;
}

.sc-highlight__content {
    position: relative;
    z-index: 1;
}

.sc-highlight__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border-radius: var(--srv-radius-pill);
    background: rgba(84, 254, 12, 0.10);
    border: 1px solid rgba(84, 254, 12, 0.22);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--srv-brand);
    margin-bottom: 22px;
}

.sc-highlight__title {
    font-family: var(--heading-font);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.22;
    letter-spacing: -0.015em;
}

.sc-highlight__text {
    font-size: 1rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 16px;
}

.sc-highlight__text:last-of-type { margin-bottom: 0; }

.sc-highlight__icon {
    position: absolute;
    bottom: 28px;
    right: 44px;
    font-size: 5.5rem;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
}


/* ─────────────────────────────────────────────────────────────────────
 * §09  CTA COMPARTIDO
 * ───────────────────────────────────────────────────────────────────── */

.sc-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(160deg, var(--srv-dark) 0%, #0d1f26 100%);
    text-align: center;
}

/* Dot grid en CTA */
.sc-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(84,254,12,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Glow central */
.sc-cta::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(84, 254, 12, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* Anillos concéntricos animados */
.sc-cta__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(84, 254, 12, 0.12);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sc-cta__ring:nth-child(1) {
    width: 200px; height: 200px;
    animation: ring-pulse 3s ease-out infinite;
}
.sc-cta__ring:nth-child(2) {
    width: 300px; height: 300px;
    animation: ring-pulse 3s ease-out 0.8s infinite;
}
.sc-cta__ring:nth-child(3) {
    width: 440px; height: 440px;
    animation: ring-pulse 3s ease-out 1.6s infinite;
}

.sc-cta__content {
    position: relative;
    z-index: 2;
}

.sc-cta__title {
    font-family: var(--heading-font);
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.sc-cta__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.sc-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ─────────────────────────────────────────────────────────────────────
 * §10  BOTONES
 * ───────────────────────────────────────────────────────────────────── */

.sc-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: var(--srv-radius-pill);
    font-family: var(--default-font);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    overflow: hidden;
    transition: transform var(--srv-transition-fast),
                box-shadow var(--srv-transition-fast),
                background-color var(--srv-transition-fast);
    cursor: pointer;
    border: none;
    outline: none;
}

.sc-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.3s, transform 0.4s;
    background: rgba(255, 255, 255, 0.15);
}

.sc-btn:hover::before { opacity: 1; transform: scale(1); }
.sc-btn:hover { transform: translateY(-3px); text-decoration: none; }
.sc-btn:active { transform: translateY(0); }

.sc-btn--primary {
    background: var(--srv-brand);
    color: var(--srv-dark);
    box-shadow: 0 6px 28px rgba(84, 254, 12, 0.30);
    font-weight: 700;
}

.sc-btn--primary:hover {
    color: var(--srv-dark);
    background: var(--srv-brand-dark);
    box-shadow: 0 10px 40px rgba(84, 254, 12, 0.40);
}

.sc-btn--outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.sc-btn--outline:hover {
    color: #ffffff;
    border-color: var(--srv-brand);
    background: rgba(84, 254, 12, 0.08);
}


/* ─────────────────────────────────────────────────────────────────────
 * §11  CONSULTING · REGULATORY SERVICES CARDS
 * ───────────────────────────────────────────────────────────────────── */

.regulatory-services {
    padding: var(--srv-section-y) 0;
    position: relative;
    background: linear-gradient(180deg, var(--srv-off-white) 0%, var(--srv-white) 100%);
    overflow: hidden;
}

.regulatory-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,12,15,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Header centrado */
.regulatory-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 72px;
    position: relative;
    z-index: 1;
}

.regulatory-header__decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.regulatory-header__line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--srv-brand));
}

.regulatory-header__line:last-child {
    background: linear-gradient(270deg, transparent, var(--srv-brand));
}

.regulatory-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 18px;
    border-radius: var(--srv-radius-pill);
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--srv-charcoal);
}

.regulatory-header__title {
    font-family: var(--heading-font);
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: var(--srv-charcoal);
    margin: 20px 0 16px;
    letter-spacing: -0.02em;
}

.regulatory-header__subtitle {
    font-size: 1rem;
    color: var(--srv-slate);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

/* Tarjeta */
.reg-card {
    position: relative;
    background: var(--srv-white);
    border: 1px solid var(--srv-light);
    border-radius: var(--srv-radius);
    padding: 44px 36px;
    overflow: hidden;
    box-shadow: var(--srv-shadow-sm);
    transition: transform var(--srv-transition),
                box-shadow var(--srv-transition),
                border-color var(--srv-transition-fast);
    display: flex;
    flex-direction: column;
}

.reg-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--srv-brand), var(--srv-brand-dark));
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--srv-transition);
}

.reg-card:hover::before { transform: scaleX(1); }

.reg-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--srv-shadow-hover);
    border-color: rgba(84, 254, 12, 0.15);
}

.reg-card__glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0%, rgba(84,254,12,0.06) 0%, transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--srv-transition-fast);
}

.reg-card:hover .reg-card__glow { opacity: 1; }

.reg-card__icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 1.6rem;
    color: var(--srv-brand-dark);
    transition: all var(--srv-transition-fast);
    position: relative;
    flex-shrink: 0;
}

.reg-card:hover .reg-card__icon-wrapper {
    background: var(--srv-brand);
    color: var(--srv-dark);
    transform: rotate(-5deg) scale(1.05);
}

.reg-card__icon-bg {
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    border: 1px solid var(--srv-brand-glow);
    opacity: 0;
    transition: opacity var(--srv-transition-fast);
}

.reg-card:hover .reg-card__icon-bg { opacity: 1; }

.reg-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.reg-card__title {
    font-family: var(--heading-font);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--srv-charcoal);
    margin-bottom: 16px;
    line-height: 1.25;
}

.reg-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--srv-brand);
    color: var(--srv-dark);
    border-radius: var(--srv-radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    align-self: flex-start;
}

.reg-card__description {
    font-size: 0.93rem;
    line-height: 1.72;
    color: var(--srv-slate);
    margin-bottom: 12px;
}

.reg-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 20px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--srv-brand-dark);
    text-decoration: none;
    transition: gap var(--srv-transition-fast);
}

.reg-card__link:hover { gap: 12px; }

/* Variante destacada (oscura) */
.reg-card--featured {
    background: linear-gradient(145deg, var(--srv-dark) 0%, #0d1a22 100%);
    border-color: rgba(84, 254, 12, 0.18);
}

.reg-card--featured .reg-card__title { color: #fff; }
.reg-card--featured .reg-card__description { color: rgba(255,255,255,0.65); }
.reg-card--featured .reg-card__icon-wrapper {
    background: rgba(84,254,12,0.10);
    border-color: rgba(84,254,12,0.28);
    color: var(--srv-brand);
}
.reg-card--featured:hover .reg-card__icon-wrapper {
    background: var(--srv-brand);
    color: var(--srv-dark);
}
.reg-card--featured .reg-card__link { color: var(--srv-brand); }


/* ─────────────────────────────────────────────────────────────────────
 * §12  CONSULTING · THERMOGRAPHY
 * ───────────────────────────────────────────────────────────────────── */

.thermography-section {
    padding: var(--srv-section-y) 0;
    background-color: var(--srv-dark);
    position: relative;
    overflow: hidden;
}

.thermo-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(84,254,12,0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 100%);
}

/* Visual frame con scanner */
.thermo-visual {
    position: relative;
}

.thermo-visual__frame {
    position: relative;
    border-radius: var(--srv-radius);
    overflow: hidden;
    border: 1px solid rgba(84, 254, 12, 0.18);
    box-shadow: 0 0 60px rgba(84, 254, 12, 0.10), var(--srv-shadow-lg);
}

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

.thermo-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(84, 254, 12, 0.6) 40%,
        rgba(84, 254, 12, 0.8) 50%,
        rgba(84, 254, 12, 0.6) 60%,
        transparent 100%);
    box-shadow: 0 0 12px rgba(84, 254, 12, 0.5);
    animation: scan-line 3s ease-in-out infinite;
}

.thermo-visual__image {
    width: 100%;
    display: block;
    border-radius: 0;
}

/* Overlay de datos de temperatura */
.thermo-visual__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.thermo-data-point {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thermo-temp {
    background: rgba(0,12,15,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(84,254,12,0.3);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--srv-brand);
    font-family: monospace;
    animation: pulse-data 2s ease-in-out infinite;
}

/* Contenido derecho */
.thermo-header { margin-bottom: 36px; }

.thermo-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border-radius: var(--srv-radius-pill);
    background: rgba(84,254,12,0.10);
    border: 1px solid rgba(84,254,12,0.22);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--srv-brand);
    margin-bottom: 18px;
    display: inline-flex;
}

.thermo-header__title {
    font-family: var(--heading-font);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.thermo-header__lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-style: italic;
}

.thermo-description p {
    font-size: 0.97rem;
    line-height: 1.78;
    color: rgba(255,255,255,0.62);
    margin-bottom: 14px;
}

/* Columnas de aplicaciones */
.thermo-app-col {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--srv-radius-sm);
    padding: 24px;
    height: 100%;
    transition: border-color 0.3s;
}

.thermo-app-col:hover {
    border-color: rgba(84,254,12,0.18);
}

.thermo-app-col__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--srv-brand);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.thermo-app-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thermo-app-list li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.58);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    line-height: 1.5;
}

.thermo-app-list li:last-child { border-bottom: none; }

.thermo-app-list li::before {
    content: "→";
    color: var(--srv-brand);
    margin-right: 8px;
    font-size: 0.78rem;
}


/* ─────────────────────────────────────────────────────────────────────
 * §13  CONSULTING · CERTIFICATIONS
 * ───────────────────────────────────────────────────────────────────── */

.certifications-section {
    padding: var(--srv-section-y) 0;
    background: var(--srv-off-white);
    position: relative;
    overflow: hidden;
}

.certifications-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,12,15,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

.cert-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.cert-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 18px;
    border-radius: var(--srv-radius-pill);
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--srv-charcoal);
    margin-bottom: 18px;
}

.cert-header__title {
    font-family: var(--heading-font);
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: var(--srv-charcoal);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cert-header__description {
    font-size: 1rem;
    color: var(--srv-slate);
    line-height: 1.72;
}

/* Cert card premium */
.cert-card {
    position: relative;
    background: var(--srv-white);
    border: 1px solid var(--srv-light);
    border-radius: var(--srv-radius);
    padding: 48px 40px;
    overflow: hidden;
    box-shadow: var(--srv-shadow-md);
    transition: transform var(--srv-transition), box-shadow var(--srv-transition), border-color var(--srv-transition-fast);
    display: flex;
    flex-direction: column;
}

.cert-card--premium {
    border-color: rgba(84, 254, 12, 0.15);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--srv-shadow-hover), var(--srv-glow);
    border-color: rgba(84, 254, 12, 0.30);
}

/* Efecto shine al hover */
.cert-card__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(84,254,12,0.04) 50%,
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.cert-card:hover .cert-card__shine { transform: translateX(100%); }

/* Badge de experto */
.cert-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: var(--srv-radius-pill);
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--srv-brand-dark);
    margin-bottom: 28px;
    align-self: flex-start;
}

.cert-card__badge i { font-size: 0.85rem; color: var(--srv-brand); }

/* Icono / Logo */
.cert-card__icon {
    position: relative;
    width: 100%;
    max-width: 120px;
    margin-bottom: 28px;
    object-fit: contain;
}

.cert-icon-circle {
    display: none; /* handled by border on icon */
}

.cert-card__title {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--srv-charcoal);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cert-card__description {
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--srv-slate);
    margin-bottom: 24px;
}

/* Features list */
.cert-card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--srv-off-white);
    border-radius: var(--srv-radius-sm);
}

.cert-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--srv-slate);
    line-height: 1.5;
}

.cert-feature i {
    color: var(--srv-brand-dark);
    font-size: 1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Requirements */
.cert-card__requirements {
    background: var(--srv-off-white);
    border-radius: var(--srv-radius-sm);
    padding: 20px;
    margin-bottom: 24px;
}

.cert-req__title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--srv-muted);
    margin-bottom: 14px;
}

.cert-req-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--srv-slate);
    padding: 8px 0;
    border-bottom: 1px solid var(--srv-light);
    line-height: 1.5;
}

.cert-req-item:last-child { border-bottom: none; }

.cert-req-item i {
    color: var(--srv-brand-dark);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.cert-card__note {
    font-size: 0.86rem;
    color: var(--srv-muted);
    line-height: 1.65;
    margin-bottom: 28px;
    font-style: italic;
}

.cert-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--srv-radius-pill);
    background: var(--srv-brand);
    color: var(--srv-dark);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--srv-transition-fast);
    align-self: flex-start;
    margin-top: auto;
}

.cert-card__cta:hover {
    background: var(--srv-brand-dark);
    color: var(--srv-dark);
    transform: translateX(4px);
}


/* ─────────────────────────────────────────────────────────────────────
 * §14  CONSULTING · TERRITORIAL PLANNING
 * ───────────────────────────────────────────────────────────────────── */

.territorial-section {
    padding: var(--srv-section-y) 0;
    position: relative;
    overflow: hidden;
    background: var(--srv-dark);
}

.territorial-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(84,254,12,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at center, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 100% 100% at center, black 30%, transparent 100%);
}

/* Glow central */
.territorial-section::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(84,254,12,0.05) 0%, transparent 65%);
    pointer-events: none;
}

.territorial-wrapper {
    position: relative;
    z-index: 1;
}

.territorial-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.territorial-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border-radius: var(--srv-radius-pill);
    background: rgba(84,254,12,0.10);
    border: 1px solid rgba(84,254,12,0.22);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--srv-brand);
    margin-bottom: 20px;
}

.territorial-intro__title {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.territorial-intro__description {
    font-size: 1rem;
    color: rgba(255,255,255,0.60);
    line-height: 1.75;
}

/* Cards de territorial */
.territorial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--srv-radius);
    padding: 40px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.territorial-card:hover {
    border-color: rgba(84,254,12,0.20);
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.territorial-card--highlight {
    background: rgba(84,254,12,0.06);
    border-color: rgba(84,254,12,0.18);
}

.territorial-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.territorial-card__icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(84,254,12,0.10);
    border: 1px solid rgba(84,254,12,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--srv-brand);
    flex-shrink: 0;
}

.territorial-card__title {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.territorial-card__body p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.60);
    line-height: 1.72;
    margin-bottom: 20px;
}

/* Lista territorial */
.territorial-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.territorial-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.90rem;
    color: rgba(255,255,255,0.62);
}

.territorial-list li:last-child { border-bottom: none; }
.territorial-list li i { color: var(--srv-brand); font-size: 1rem; }

/* Stats territoriales */
.territorial-stats {
    display: flex;
    gap: 24px;
    margin: 24px 0;
}

.territorial-stat {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: rgba(84,254,12,0.06);
    border: 1px solid rgba(84,254,12,0.15);
    border-radius: var(--srv-radius-sm);
}

.territorial-stat__value {
    font-family: var(--heading-font);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--srv-brand);
    line-height: 1;
    margin-bottom: 6px;
}

.territorial-stat__label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.territorial-highlight {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.70;
    font-style: italic;
}


/* ─────────────────────────────────────────────────────────────────────
 * §15  CONSULTING · MODERN CTA (versión extendida)
 * ───────────────────────────────────────────────────────────────────── */

.modern-cta {
    position: relative;
    padding: var(--srv-section-y) 0;
    overflow: hidden;
    background: linear-gradient(160deg, var(--srv-dark) 0%, #061218 100%);
    text-align: center;
}

.modern-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(84,254,12,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.modern-cta__gradient {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(84,254,12,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.modern-cta__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.modern-cta__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(84,254,12,0.10);
    border: 1px solid rgba(84,254,12,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--srv-brand);
    margin: 0 auto 32px;
    animation: pulse-icon 2.5s ease-in-out infinite;
}

.modern-cta__title {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.modern-cta__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.72;
    margin-bottom: 48px;
}

.modern-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Botones específicos del modern-cta */
.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--srv-radius-pill);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all var(--srv-transition-fast);
    cursor: pointer;
    border: none;
    outline: none;
}

.modern-btn--primary {
    background: var(--srv-brand);
    color: var(--srv-dark);
    box-shadow: 0 6px 28px rgba(84,254,12,0.30);
}

.modern-btn--primary:hover {
    background: var(--srv-brand-dark);
    color: var(--srv-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(84,254,12,0.40);
}

.modern-btn--outline {
    background: transparent;
    color: rgba(255,255,255,0.82);
    border: 1.5px solid rgba(255,255,255,0.28);
}

.modern-btn--outline:hover {
    border-color: var(--srv-brand);
    color: var(--srv-brand);
    transform: translateY(-3px);
}

/* Info de contacto */
.modern-cta__contact-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.50);
}

.cta-info-item i { color: var(--srv-brand); }


/* ─────────────────────────────────────────────────────────────────────
 * §16  SOLAR · BENEFITS BAR
 * ───────────────────────────────────────────────────────────────────── */

.ss-benefits {
    background: linear-gradient(135deg, var(--srv-dark) 0%, #0d1a22 100%);
    border: 1px solid rgba(84,254,12,0.14);
    border-radius: var(--srv-radius);
    box-shadow: var(--srv-shadow-lg), 0 0 40px rgba(84,254,12,0.07);
    overflow: hidden;
}

.ss-benefit {
    padding: 36px 28px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.ss-benefit:last-child { border-right: none; }

.ss-benefit:hover {
    background: rgba(84,254,12,0.05);
}

.ss-benefit__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(84,254,12,0.10);
    border: 1px solid rgba(84,254,12,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--srv-brand);
    transition: all 0.3s ease;
}

.ss-benefit:hover .ss-benefit__icon {
    background: var(--srv-brand);
    color: var(--srv-dark);
    transform: scale(1.1) rotate(-5deg);
}

.ss-benefit__title {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}


/* ─────────────────────────────────────────────────────────────────────
 * §17  SOLAR · COMPARISON CARDS
 * ───────────────────────────────────────────────────────────────────── */

.ss-compare {
}

.ss-compare__card {
    position: relative;
    padding: 48px 40px;
    border-radius: var(--srv-radius);
    border: 1px solid var(--srv-light);
    background: var(--srv-white);
    box-shadow: var(--srv-shadow-md);
    transition: transform var(--srv-transition), box-shadow var(--srv-transition), border-color var(--srv-transition-fast);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ss-compare__card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
}

.ss-compare__card--pv::before {
    background: linear-gradient(90deg, var(--srv-brand), var(--srv-brand-dark));
}

.ss-compare__card--thermal::before {
    background: linear-gradient(90deg, #ff8c00, #ffb347);
}

.ss-compare__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--srv-shadow-hover);
    border-color: rgba(84,254,12,0.20);
}

.ss-compare__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--srv-brand-dark);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.ss-compare__card--thermal .ss-compare__icon {
    background: rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.20);
    color: #e07800;
}

.ss-compare__card:hover .ss-compare__icon {
    background: var(--srv-brand);
    color: var(--srv-dark);
    transform: rotate(-5deg);
}

.ss-compare__tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: var(--srv-radius-pill);
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--srv-brand-dark);
    margin-bottom: 14px;
}

.ss-compare__title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--srv-charcoal);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.ss-compare__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--srv-slate);
    margin-bottom: 14px;
}


/* ─────────────────────────────────────────────────────────────────────
 * §18  SOLAR · INSTALLATION TYPES GRID
 * ───────────────────────────────────────────────────────────────────── */

.ss-types {
}

.ss-type {
    background: var(--srv-white);
    border: 1px solid var(--srv-light);
    border-radius: var(--srv-radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--srv-shadow-sm);
    transition: all var(--srv-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.ss-type:hover {
    transform: translateY(-6px);
    box-shadow: var(--srv-shadow-lg);
    border-color: rgba(84,254,12,0.18);
}

.ss-type__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--srv-brand-dark);
    transition: all 0.3s;
}

.ss-type:hover .ss-type__icon {
    background: var(--srv-brand);
    color: var(--srv-dark);
    transform: scale(1.1);
}

.ss-type__title {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--srv-charcoal);
}

.ss-type__text {
    font-size: 0.88rem;
    color: var(--srv-muted);
    line-height: 1.6;
}

/* Solar highlight */
.ss-highlight {
    position: relative;
    padding: 72px 64px;
    border-radius: var(--srv-radius);
    overflow: hidden;
    background: linear-gradient(135deg, var(--srv-dark) 0%, #0d1a22 100%);
    border: 1px solid rgba(84,254,12,0.14);
    box-shadow: var(--srv-shadow-lg);
    transition: border-color 0.4s, box-shadow 0.4s;
}

.ss-highlight:hover {
    border-color: rgba(84,254,12,0.28);
    box-shadow: var(--srv-shadow-hover), var(--srv-glow);
}

.ss-highlight::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(84,254,12,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.ss-highlight__content { position: relative; z-index: 1; }

.ss-highlight__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border-radius: var(--srv-radius-pill);
    background: rgba(84,254,12,0.10);
    border: 1px solid rgba(84,254,12,0.22);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--srv-brand);
    margin-bottom: 20px;
}

.ss-highlight__title {
    font-family: var(--heading-font);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}

.ss-highlight__text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}

.ss-highlight__text:last-of-type { margin-bottom: 0; }


/* ─────────────────────────────────────────────────────────────────────
 * §19  ENGINEERING · STATS BAR
 * ───────────────────────────────────────────────────────────────────── */

.se-stats {
    background: linear-gradient(135deg, var(--srv-dark) 0%, #0d1a22 100%);
    border: 1px solid rgba(84,254,12,0.14);
    border-radius: var(--srv-radius);
    box-shadow: var(--srv-shadow-lg), 0 0 40px rgba(84,254,12,0.07);
    overflow: hidden;
}

.se-stat {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.se-stat:last-child { border-right: none; }
.se-stat:hover { background: rgba(84,254,12,0.05); }

.se-stat__number {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--srv-brand);
    line-height: 1;
    letter-spacing: -0.02em;
}

.se-stat__label {
    font-size: 0.80rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* ─────────────────────────────────────────────────────────────────────
 * §20  ENGINEERING · TECHNOLOGY PILLARS
 * ───────────────────────────────────────────────────────────────────── */

.se-pillars { }

.se-pillar {
    background: var(--srv-white);
    border: 1px solid var(--srv-light);
    border-radius: var(--srv-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--srv-shadow-sm);
    transition: all var(--srv-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.se-pillar:hover {
    transform: translateY(-6px);
    box-shadow: var(--srv-shadow-lg);
    border-color: rgba(84,254,12,0.20);
    background: rgba(84,254,12,0.02);
}

.se-pillar__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--srv-brand-dark);
    transition: all 0.3s;
}

.se-pillar:hover .se-pillar__icon {
    background: var(--srv-brand);
    color: var(--srv-dark);
    transform: rotate(-8deg) scale(1.1);
}

.se-pillar__title {
    font-size: 0.90rem;
    font-weight: 600;
    color: var(--srv-charcoal);
    line-height: 1.45;
}


/* ─────────────────────────────────────────────────────────────────────
 * §21  ENGINEERING · PROCESS STEPS
 * ───────────────────────────────────────────────────────────────────── */

.se-process {
    position: relative;
}

/* Línea conectora horizontal entre pasos */
.se-process::before {
    content: "";
    position: absolute;
    top: 40px;
    left: calc(16.67% + 20px);
    right: calc(16.67% + 20px);
    height: 2px;
    background: linear-gradient(90deg,
        var(--srv-brand) 0%,
        var(--srv-brand-dark) 50%,
        var(--srv-brand) 100%);
    opacity: 0.25;
}

.se-process__step {
    position: relative;
    text-align: center;
    padding-top: 24px;
}

/* Número de paso */
.se-process__step::before {
    content: attr(data-step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--srv-brand);
    color: var(--srv-dark);
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(84,254,12,0.30);
    position: relative;
    z-index: 1;
}

.se-process__title {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--srv-charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.se-process__text {
    font-size: 0.92rem;
    line-height: 1.70;
    color: var(--srv-slate);
}


/* ─────────────────────────────────────────────────────────────────────
 * §22  COOPERATION · MISSION BANNER
 * ───────────────────────────────────────────────────────────────────── */

.sco-mission {
    background: linear-gradient(135deg, var(--srv-dark) 0%, #0d1a22 100%);
    border: 1px solid rgba(84,254,12,0.14);
    border-radius: var(--srv-radius);
    padding: 52px 56px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--srv-shadow-lg);
}

.sco-mission::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 32px;
    font-family: var(--heading-font);
    font-size: 200px;
    color: rgba(84,254,12,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.sco-mission__text {
    font-family: var(--heading-font);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.sco-mission__text strong {
    color: var(--srv-brand);
}


/* ─────────────────────────────────────────────────────────────────────
 * §23  COOPERATION · IMPACT AREA CARDS
 * ───────────────────────────────────────────────────────────────────── */

.sco-impact { }

.sco-impact__card {
    background: var(--srv-white);
    border: 1px solid var(--srv-light);
    border-radius: var(--srv-radius);
    padding: 44px 36px;
    box-shadow: var(--srv-shadow-sm);
    transition: all var(--srv-transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.sco-impact__card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--srv-brand), var(--srv-brand-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.sco-impact__card:hover::before { transform: scaleX(1); }

.sco-impact__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--srv-shadow-hover);
    border-color: rgba(84,254,12,0.15);
}

.sco-impact__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--srv-brand-dark);
    transition: all 0.3s;
    flex-shrink: 0;
}

.sco-impact__card:hover .sco-impact__icon {
    background: var(--srv-brand);
    color: var(--srv-dark);
    transform: rotate(-6deg) scale(1.1);
}

.sco-impact__title {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--srv-charcoal);
    line-height: 1.25;
}

.sco-impact__text {
    font-size: 0.92rem;
    line-height: 1.72;
    color: var(--srv-slate);
    margin: 0;
}


/* ─────────────────────────────────────────────────────────────────────
 * §24  COOPERATION · TERRITORIAL PILLARS (sco-pillar)
 * ───────────────────────────────────────────────────────────────────── */

.sco-pillars { }

.sco-pillar {
    background: var(--srv-white);
    border: 1px solid var(--srv-light);
    border-radius: var(--srv-radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--srv-shadow-sm);
    transition: all var(--srv-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sco-pillar:hover {
    transform: translateY(-6px);
    box-shadow: var(--srv-shadow-lg);
    border-color: rgba(84,254,12,0.18);
}

.sco-pillar__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--srv-brand-dim);
    border: 1px solid var(--srv-brand-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--srv-brand-dark);
    transition: all 0.3s;
}

.sco-pillar:hover .sco-pillar__icon {
    background: var(--srv-brand);
    color: var(--srv-dark);
    transform: scale(1.1);
}

.sco-pillar__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--srv-charcoal);
    line-height: 1.4;
}


/* ─────────────────────────────────────────────────────────────────────
 * §25  KEYFRAME ANIMATIONS
 * ───────────────────────────────────────────────────────────────────── */

@keyframes particle-float {
    0%   { opacity: 0; bottom: -10px; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.4; }
    100% { opacity: 0; bottom: 105vh; }
}

@keyframes hero-line-draw {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-line {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

@keyframes scan-line {
    0%   { top: 0%; }
    100% { top: 100%; }
}

@keyframes ring-pulse {
    0%   { opacity: 0.4; transform: translate(-50%, -50%) scale(0.95); }
    60%  { opacity: 0.15; }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes pulse-data {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

@keyframes pulse-icon {
    0%, 100% { box-shadow: 0 0 0 0 rgba(84,254,12,0.3); }
    50%       { box-shadow: 0 0 0 12px rgba(84,254,12,0); }
}

@keyframes shimmer-bar {
    0%   { opacity: 0.6; }
    50%  { opacity: 1; }
    100% { opacity: 0.6; }
}


/* ─────────────────────────────────────────────────────────────────────
 * §26  TOGGLE-CLASS SYSTEM (compat con main.js existente)
 * ───────────────────────────────────────────────────────────────────── */

.toggle-class {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.toggle-class.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ─────────────────────────────────────────────────────────────────────
 * §27  CONTACT MODAL
 * ───────────────────────────────────────────────────────────────────── */


.contact-modal__content {
    background: #0a1628;
    border: 1px solid rgba(84, 254, 12, 0.15);
    border-radius: 12px;
    color: #fff;
}

.contact-modal__header {
    background: linear-gradient(135deg, #0d1f3c 0%, #091525 100%);
    border-bottom: 1px solid rgba(84, 254, 12, 0.2);
    padding: 24px 28px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-modal__title-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-modal__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(84, 254, 12, 0.12);
    border: 1px solid rgba(84, 254, 12, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #54FE0C;
    flex-shrink: 0;
}

.contact-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.contact-modal__subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.contact-modal__body {
    padding: 32px 28px;
    background: #0a1628;
    border-radius: 0 0 12px 12px;
}

/* ── Form fields re-scoped for the modal ── */
#contactModal .contact-form .form-field {
    position: relative;
    margin-bottom: 40px;
}

#contactModal .contact-form .form-field.message-field {
    margin-bottom: 32px;
}

#contactModal .contact-form .form-field .field-label {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#contactModal .contact-form .form-field .form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    padding: 20px 0 12px;
    font-size: 15px;
    color: #fff;
    transition: border-color 0.3s ease;
}

#contactModal .contact-form .form-field .form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

#contactModal .contact-form .form-field .form-input:focus {
    outline: none;
    border-bottom-color: #54FE0C;
}

#contactModal .contact-form .form-field .message-input {
    resize: vertical;
    min-height: 110px;
    font-family: inherit;
    padding-top: 24px;
}

#contactModal .contact-form .send-button {
    background: transparent;
    border: 1px solid #54FE0C;
    color: #54FE0C;
    padding: 15px 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#contactModal .contact-form .send-button:hover {
    background: #54FE0C;
    color: #000c0f;
}

#contactModal .contact-form .send-button .button-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

#contactModal .contact-form .send-button:hover .button-arrow {
    transform: translateX(5px);
}

/* ─────────────────────────────────────────────────────────────────────
 * §28  RESPONSIVE DESIGN
 * ───────────────────────────────────────────────────────────────────── */

@media (max-width: 992px) {
    :root {
        --srv-section-y: var(--srv-section-y-md);
        --srv-dot-space: 24px;
    }

    .sc-section[data-num]::after {
        font-size: min(40vw, 280px);
    }

    .sc-hero__title {
        font-size: clamp(2.8rem, 9vw, 5rem);
    }

    .sc-highlight {
        padding: 48px 40px;
    }

    .ss-highlight {
        padding: 48px 40px;
    }

    .sco-mission {
        padding: 40px 36px;
    }

    .modern-cta__contact-info {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --srv-section-y: var(--srv-section-y-sm);
    }

    .sc-hero__title {
        font-size: clamp(2.4rem, 10vw, 3.8rem);
    }

    .sc-hero__watermark {
        font-size: min(50vw, 280px);
    }

    .sc-highlight {
        padding: 40px 28px;
    }

    .ss-highlight {
        padding: 40px 28px;
    }

    .ss-benefit, .se-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .ss-benefit:last-child,
    .se-stat:last-child {
        border-bottom: none;
    }

    .se-process::before {
        display: none;
    }

    .territorial-stats {
        flex-direction: column;
        gap: 12px;
    }

    .modern-cta__contact-info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .sco-mission {
        padding: 32px 24px;
    }

    .sco-mission::before {
        font-size: 120px;
    }

    .sc-cta {
        padding: 80px 0;
    }

    .sc-cta__ring { display: none; }

    .cert-card {
        padding: 36px 28px;
    }
}

@media (max-width: 576px) {
    .sc-hero__subtitle { max-width: 100%; }

    .sc-highlight {
        padding: 32px 20px;
    }

    .territorial-section .territorial-intro {
        margin-bottom: 40px;
    }

    .sc-btn {
        padding: 14px 28px;
        font-size: 0.88rem;
    }

    .regulatory-header {
        margin-bottom: 48px;
    }
}
