﻿:root {
    --ink: #0A1220;
    --ink-strong: #101A2D;
    --accent: #139BFF;
    --white: #FFFFFF;
    --muted: #E9EEF5;
    --text: #15233A;
    --text-soft: #5C6B84;
    --border: rgba(14, 27, 48, 0.14);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --shadow-soft: 0 16px 40px rgba(8, 14, 26, 0.12);
    --shadow-deep: 0 24px 56px rgba(6, 10, 20, 0.34);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: #FFFFFF;
    line-height: 1.65;
}

body.is-hero-loading {
    overflow: hidden;
}

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

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.75rem 1rem;
    border-radius: 0 0 10px 10px;
    background: var(--accent);
    color: #FFFFFF;
    font-weight: 600;
}

.skip-link:focus {
    left: 1rem;
}

.hero-video-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 0.95rem;
    background:
        radial-gradient(760px circle at 50% 40%, rgba(28, 167, 255, 0.24), transparent 56%),
        linear-gradient(140deg, #030e22 0%, #081a37 48%, #061228 100%);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero-video-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-video-loader p {
    margin: 0;
    color: rgba(218, 235, 252, 0.9);
    font-size: 0.96rem;
    letter-spacing: 0.04em;
}

.hero-video-loader__dots {
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
}

.hero-video-loader__dots span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(150deg, #5ec7ff 0%, #129bff 100%);
    box-shadow: 0 0 0 0 rgba(34, 169, 255, 0.5);
    animation: hero-loader-dot 0.95s ease-in-out infinite;
}

.hero-video-loader__dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.hero-video-loader__dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes hero-loader-dot {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 0 rgba(34, 169, 255, 0.44);
    }

    50% {
        transform: translateY(-6px) scale(1.15);
        opacity: 1;
        box-shadow: 0 0 0 8px rgba(34, 169, 255, 0);
    }
}

.section-block {
    position: relative;
    padding: clamp(9.6rem, 0vw, 7.8rem) 0;
    padding-bottom: 0;
}

.section-dark {
    background: linear-gradient(145deg, #0A1220 0%, #101A2D 48%, #0C1628 100%);
}

.section-light {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F9FF 100%);
}

.text-light-soft {
    color: rgba(233, 238, 245, 0.86) !important;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1050;
    padding: 1rem 0;
    transition: padding 0.32s ease;
}

.site-header.is-scrolled {
    padding: 0.5rem 0;
}

.nav-shell {
    padding: 0.7rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(19, 155, 255, 0.24);
    background: rgb(9 42 70);
    box-shadow: 0 16px 34px rgba(6, 14, 28, 0.2);
    backdrop-filter: blur(14px);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled .nav-shell {
    background: rgb(9 42 70);
    border-color: rgba(19, 155, 255, 0.32);
    box-shadow: 0 18px 36px rgba(6, 14, 28, 0.26);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #FFFFFF;
    padding: 0;
}

.brand-logo {
    height: clamp(54px, 3.8vw, 74px);
    width: auto;
    max-width: min(56vw, 290px);
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
    transition: transform 0.28s ease, filter 0.28s ease;
}

.brand:hover .brand-logo {
    transform: translateY(-1px);
    filter: drop-shadow(0 12px 20px rgba(19, 155, 255, 0.28));
}

.navbar-toggler {
    border: 1px solid rgba(16, 26, 45, 0.24);
    padding: 0.4rem 0.55rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: rgba(19, 155, 255, 0.8);
}

.navbar-toggler-icon {
    filter: none;
}

.nav-link {
    color: rgb(255 255 255) !important;
    font-weight: 600;
    padding: 0.6rem 0.9rem !important;
    position: relative;
}

.site-header .btn-cta-outline {
    color: #0d213e;
    border-color: rgba(16, 26, 45, 0.24);
    background: rgba(255, 255, 255, 0.58);
}

.site-header .btn-cta-outline:hover {
    color: #091a31;
    background: rgba(228, 242, 255, 0.92);
    border-color: rgba(19, 155, 255, 0.42);
    box-shadow: 0 14px 28px rgba(12, 32, 58, 0.16);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.38rem;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #139BFF 50%, transparent 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.btn svg, .btn .whatsapp-cta-icon {
    width: 1.3rem;
    height: 1.3rem;
    flex: 0 0 auto;
}

.btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.24rem rgba(19, 155, 255, 0.3);
}

.btn-cta-main {
    color: #FFFFFF;
    border-color: rgba(157, 225, 255, 0.45);
    background: linear-gradient(135deg, #139BFF 0%, #0D7DCB 100%);
    box-shadow: 0 12px 32px rgba(19, 155, 255, 0.34);
}

.btn-cta-main:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(19, 155, 255, 0.42);
}

.btn-cta-outline {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.06);
}

.btn-cta-outline:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.section-light .btn-cta-outline {
    color: var(--ink);
    border-color: rgba(10, 18, 32, 0.2);
    background: #FFFFFF;
}

.section-light .btn-cta-outline:hover {
    background: #EEF6FF;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.95rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 8rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 1.2rem;
    max-width: 15ch;
    color: var(--ink);
    font-size: clamp(2rem, 4.3vw, 3.08rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.section-intro {
    margin-bottom: 1.8rem;
    max-width: 62ch;
    color: var(--text-soft);
    font-size: 1.04rem;
}

.hero-section {
    min-height: 100svh;
    padding-top: 8.8rem;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.hero-media,
.closing-media {
    position: absolute;
    inset: 0;
    transform: scale(1.05);
    background-size: cover;
    background-position: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-media {
    background-image: url("../images/site/hero-bg.webp");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 92% at 50% 12%, rgba(19, 155, 255, 0.24), rgba(19, 155, 255, 0.04) 44%, transparent 70%),
        linear-gradient(180deg, rgba(4, 9, 17, 0.7) 0%, rgba(5, 10, 19, 0.8) 52%, rgba(4, 9, 17, 0.92) 100%);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #9ED8FF;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.hero-title {
    margin: 0 auto 2.15rem;
    max-width: 100%;
    color: #FFFFFF;
    font-size: clamp(2.2rem, 5.5vw, 4.45rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 700;
    text-wrap: balance;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.hero-subtitle {
    margin: 0 auto 1.85rem;
    max-width: 58ch;
    color: rgba(233, 238, 245, 0.88);
    font-size: clamp(1rem, 1.9vw, 1.16rem);
    line-height: 1.58;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    padding: 0.92rem 1.52rem;
    border-radius: 999px;
    border: 1px solid rgba(157, 225, 255, 0.58);
    background: linear-gradient(135deg, #18a5ff 0%, #0d8fe0 46%, #0972b7 100%);
    box-shadow:
        0 18px 38px rgba(10, 127, 208, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(2px);
}

.hero-cta svg {
    width: 1rem;
    height: 1rem;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 24px 44px rgba(10, 127, 208, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.hero-actions {
    margin-bottom: 1.75rem;
}

.hero-stats {
    margin-top: 2.1rem;
}

.stat-chip {
    height: 100%;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.stat-chip strong {
    display: block;
    margin-bottom: 0.24rem;
    color: #FFFFFF;
    font-size: 1.03rem;
    line-height: 1.2;
}

.stat-chip span {
    color: rgba(233, 238, 245, 0.8);
    font-size: 0.85rem;
    line-height: 1.45;
}

.hero-panel {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: var(--shadow-deep);
    backdrop-filter: blur(12px);
}

.hero-panel h2 {
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-size: 1.34rem;
    font-weight: 600;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.88rem;
}

.hero-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.66rem;
    color: rgba(233, 238, 245, 0.86);
    font-size: 0.95rem;
}

.hero-checklist svg {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    flex: 0 0 auto;
    color: #8CD4FF;
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1.3rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(233, 238, 245, 0.75);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll-cue svg {
    width: 0.95rem;
    height: 0.95rem;
}

.authority-section .section-title {
    max-width: 16ch;
}

.authority-media {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #DBE4F2;
    box-shadow: var(--shadow-soft);
}

.authority-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.authority-badge {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    border-radius: 14px;
    padding: 0.95rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(10, 18, 32, 0.82);
    backdrop-filter: blur(8px);
}

.authority-badge span {
    display: block;
    margin-bottom: 0.25rem;
    color: #9FD6FF;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.authority-badge strong {
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.45;
}

.metric-card {
    height: 100%;
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid var(--border);
    background: #FFFFFF;
    box-shadow: 0 10px 22px rgba(10, 18, 32, 0.06);
}

.metric-card strong {
    display: block;
    margin-bottom: 0.32rem;
    color: var(--ink);
    font-size: 1.42rem;
    line-height: 1;
}

.metric-card span {
    color: var(--text-soft);
    font-size: 0.83rem;
    line-height: 1.45;
}

.services-section .section-title {
    max-width: 18ch;
}

.services-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: transparent;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(112deg, rgba(4, 10, 18, 0.9) 10%, rgba(5, 12, 22, 0.8) 48%, rgba(4, 10, 18, 0.92) 100%),
        url("../images/site/gallery-12.webp");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.services-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(760px circle at 82% 18%, rgba(19, 155, 255, 0.2), transparent 52%),
        radial-gradient(620px circle at 8% 74%, rgba(19, 155, 255, 0.1), transparent 58%);
}

.services-section .container,
.services-section .services-marquee {
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    min-height: 430px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.05) contrast(1.03);
    transition: transform 0.5s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(4, 8, 15, 0.2) 10%, rgba(4, 8, 15, 0.82) 78%);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 50%), rgba(19, 155, 255, 0.2), transparent 44%);
    opacity: 0.86;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.44);
}

.service-card:hover::before {
    background: linear-gradient(180deg, rgba(4, 8, 15, 0.14) 8%, rgba(4, 8, 15, 0.74) 76%);
}

.service-card:hover .service-card__bg {
    transform: scale(1.07);
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: #FFFFFF;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.15rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(157, 225, 255, 0.52);
    background: rgba(19, 155, 255, 0.22);
}

.service-icon svg {
    width: 1.7rem;
    height: 1.7rem;
    color: #C7E8FF;
}

.service-content h3 {
    margin-bottom: 0.85rem;
    color: #FFFFFF;
    font-size: 1.62rem;
    font-weight: 650;
}

.service-content p {
    margin: 0;
    max-width: 40ch;
    color: rgba(233, 238, 245, 0.91);
}

.partners-section .section-title {
    max-width: 20ch;
}

.partners-section--carousel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-bottom: 5rem !important;
    padding-top: 0px !important;
    background: #071224;
}

.partners-section__media {
    position: absolute;
    inset: -2% 0 -8% 0;
    z-index: 0;
    transform: scale(1.03);
    background-image: url("../images/site/231ds.webp");
    background-size: cover;
    background-position: center top;
    filter: saturate(1.06) contrast(1.03);
}

.partners-section__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(112deg, rgba(4, 10, 18, 0.88) 10%, rgba(5, 12, 22, 0.74) 48%, rgba(4, 10, 18, 0.9) 100%),
        radial-gradient(760px circle at 82% 18%, rgba(19, 155, 255, 0.2), transparent 52%),
        radial-gradient(620px circle at 8% 74%, rgba(19, 155, 255, 0.1), transparent 58%);
}

.partners-section--carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.16;
    mask-image: radial-gradient(circle at center, black 34%, transparent 100%);
}

.partners-section--carousel .container {
    position: relative;
    z-index: 2;
}

.partners-section--carousel .section-title {
    max-width: 16ch;
}

.partners-section__cta {
    margin-top: 0.5rem;
}

.partners-carousel {
    position: relative;
    z-index: 2;
    margin-top: clamp(1.8rem, 4vw, 2.8rem);
    display: grid;
    gap: 0.9rem;
    overflow: hidden;
}

.partners-carousel__lane {
    display: flex;
    width: max-content;
    gap: 0.9rem;
    animation: partners-carousel-scroll 42s linear infinite;
}

.partners-carousel__lane--reverse {
    animation-direction: reverse;
    animation-duration: 50s;
}

.partners-carousel__track {
    display: flex;
    gap: 0.9rem;
}

.partners-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: clamp(162px, 15vw, 110px);
    height: clamp(70px, 41.2vw, 175px);
    padding: 0.78rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(157, 225, 255, 0.28);
    background: white;
    box-shadow: none;
    transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.partners-logo {
    width: 100%;
    max-width: 215px;
    max-height: 180px;
    object-fit: contain;
    filter: none;
}

.partners-logo-pill:hover {
    border-color: rgba(157, 225, 255, 0.5);
    transform: translateY(-2px);
    box-shadow:
        0 16px 30px rgba(6, 16, 31, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

@keyframes partners-carousel-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.method-section {
    overflow: visible;
}

.method-track {
    position: relative;
}

.method-line {
    display: none;
    position: absolute;
    left: 6%;
    right: 6%;
    top: 2.15rem;
    height: 2px;
    background: rgba(111, 197, 255, 0.2);
}

.method-line-fill {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(19, 155, 255, 0.34), rgba(111, 197, 255, 0.95));
}

.method-card {
    position: relative;
    height: 100%;
    border-radius: 22px;
    padding: 2.05rem 1.8rem 1.9rem;
    border: 1px solid rgba(157, 225, 255, 0.28);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 16px 34px rgba(2, 7, 14, 0.27);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.method-card:hover {
    transform: translateY(-9px);
    border-color: rgba(157, 225, 255, 0.48);
    box-shadow: 0 24px 45px rgba(2, 7, 14, 0.36);
}

.method-step {
    position: absolute;
    top: -1rem;
    left: 1.2rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(145deg, #22A6FF 0%, #0873C0 100%);
    box-shadow: 0 10px 20px rgba(19, 155, 255, 0.45);
}

.method-icon {
    width: 58px;
    height: 58px;
    margin: 1rem 0 1.05rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(157, 225, 255, 0.44);
    background: rgba(19, 155, 255, 0.18);
}

.method-icon svg {
    width: 1.55rem;
    height: 1.55rem;
    color: #A6DBFF;
}

.method-card h3 {
    margin-bottom: 0.8rem;
    color: #FFFFFF;
    font-size: 1.3rem;
}

.method-card p {
    margin: 0;
    color: rgba(233, 238, 245, 0.88);
}

/* Method Icons Redesign */
.method-section--icons {
    padding-bottom: clamp(3.2rem, 6vw, 5.4rem) !important;
    padding-top: 0 !important;
}

.method-section--icons .method-card {
    padding: 1.15rem 1.15rem 1.5rem;
    border-radius: 22px;
    border: 1px solid rgba(157, 225, 255, 0.24);
    background: linear-gradient(160deg, rgba(8, 18, 34, 0.76) 0%, rgba(8, 18, 34, 0.48) 100%);
    box-shadow: 0 18px 36px rgba(2, 7, 14, 0.32);
}

.method-section--icons .method-step {
    top: 0.85rem;
    left: 0.85rem;
}

.method-icon-hero {
    position: relative;
    height: 210px;
    margin: 0;
    border-radius: 18px;
    border: 1px solid rgba(157, 225, 255, 0.25);
    background:
        radial-gradient(500px circle at 18% 14%, rgba(19, 155, 255, 0.2), transparent 56%),
        linear-gradient(145deg, rgba(5, 14, 27, 0.82) 0%, rgba(7, 17, 32, 0.72) 100%);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.method-icon-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.45;
    pointer-events: none;
}

.method-icon-hero::after {
    content: "";
    position: absolute;
    width: 68%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 155, 255, 0.2) 0%, rgba(19, 155, 255, 0) 72%);
    filter: blur(2px);
    animation: method-aura-pulse 4.2s ease-in-out infinite;
}

.method-icon-hero svg {
    position: relative;
    z-index: 1;
    width: clamp(4.8rem, 10vw, 6.6rem);
    height: clamp(4.8rem, 10vw, 6.6rem);
    color: #8ad4ff;
    filter: drop-shadow(0 12px 28px rgba(19, 155, 255, 0.32));
}

.method-icon-hero--plan svg {
    animation: method-icon-float 5.2s ease-in-out infinite;
}

.method-icon-hero--crise svg {
    animation: method-icon-breathe 4.6s ease-in-out infinite;
}

.method-icon-hero--premium svg {
    animation: method-icon-orbit 7.4s linear infinite;
}

.method-section--icons .method-card h3 {
    margin-top: 1rem;
}

@keyframes method-icon-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

@keyframes method-icon-breathe {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.88;
    }
}

@keyframes method-icon-orbit {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(9deg) scale(1.04);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes method-aura-pulse {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.58;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.9;
    }
}

@media (max-width: 767.98px) {
    .method-icon-hero {
        height: 178px;
        border-radius: 14px;
    }
}

.faq-grid {
    max-width: 980px;
}

.faq-section .section-title {
    max-width: 19ch;
}

.faq-section--parallax {
    position: relative;
    padding-top: 0px !important;
    padding-bottom: 80px !important;
    isolation: isolate;
    overflow: hidden;
    background: #081528;
}

.faq-section__media {
    position: absolute;
    inset: -6% 0 -6% 0;
    z-index: 0;
    transform: scale(1.06);
    background-image: url("../images/site/service-social.webp");
    background-size: cover;
    background-position: center;
    filter: saturate(1.06) contrast(1.02);
}

.faq-section__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(4, 10, 18, 0.9) 0%, rgba(5, 12, 22, 0.74) 52%, rgba(4, 10, 18, 0.9) 100%),
        radial-gradient(760px circle at 50% 16%, rgba(19, 155, 255, 0.2), transparent 58%);
}

.faq-section--parallax .faq-grid {
    position: relative;
    z-index: 2;
}

.faq-section--parallax .section-title {
    color: #f4f9ff;
}

.accordion.custom-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
}

.custom-accordion .accordion-item {
    margin-bottom: 0.9rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(16, 26, 45, 0.14);
    box-shadow: 0 9px 20px rgba(10, 18, 32, 0.06);
    background: #FFFFFF;
}

.custom-accordion .accordion-button {
    padding: 1.1rem 1.2rem;
    color: var(--ink);
    font-weight: 600;
    background: #FFFFFF;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--ink);
    background: linear-gradient(180deg, #F8FBFF 0%, #F3F8FF 100%);
}

.custom-accordion .accordion-button::after {
    background-size: 1rem;
    filter: hue-rotate(180deg) saturate(1.8);
}

.custom-accordion .accordion-body {
    padding: 0 1.2rem 1.2rem;
    color: var(--text-soft);
}

.faq-section--parallax .custom-accordion .accordion-item {
    border: 1px solid rgba(157, 225, 255, 0.24);
    background: linear-gradient(145deg, rgba(8, 18, 34, 0.66), rgba(8, 18, 34, 0.5));
    box-shadow: 0 14px 28px rgba(2, 7, 14, 0.28);
    backdrop-filter: blur(10px);
}

.faq-section--parallax .custom-accordion .accordion-button {
    color: #f3f9ff;
    background: rgba(255, 255, 255, 0.02);
}

.faq-section--parallax .custom-accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(19, 155, 255, 0.16) 0%, rgba(19, 155, 255, 0.08) 100%);
}

.faq-section--parallax .custom-accordion .accordion-button::after {
    filter: brightness(0) invert(1) saturate(0) opacity(0.9);
}

.faq-section--parallax .custom-accordion .accordion-body {
    color: rgba(220, 234, 251, 0.9);
}

.closing-section {
    padding-top: 6.6rem;
    padding-bottom: 6.2rem;
    isolation: isolate;
}

.closing-media {
    background-image: url("../images/site/closing-bg.webp");
}

.closing-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(7, 12, 22, 0.9) 8%, rgba(7, 12, 22, 0.68) 56%, rgba(7, 12, 22, 0.88) 100%);
}

.closing-card {
    position: relative;
    z-index: 2;
    max-width: 840px;
    border-radius: 30px;
    padding: clamp(2rem, 4.8vw, 3.2rem);
    border: 1px solid rgba(157, 225, 255, 0.3);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: var(--shadow-deep);
    backdrop-filter: blur(12px);
}

.closing-card .section-title {
    max-width: 18ch;
}

.closing-card p {
    margin: 0;
    max-width: 48ch;
    color: rgba(233, 238, 245, 0.87);
    font-size: 1.08rem;
}

.site-footer {
    background: #060D18;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 1.3rem 0;
}

.footer-copy {
    margin: 0;
    text-align: center;
    color: rgba(233, 238, 245, 0.65);
    font-size: 0.82rem;
}

.floating-whatsapp {
    position: fixed;
    right: 1.1rem;
    bottom: 1rem;
    z-index: 1035;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 0.92rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0FCE72 0%, #0E9B56 100%);
    color: #FFFFFF;
    font-size: 0.84rem;
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(9, 134, 73, 0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(9, 134, 73, 0.5);
}

.floating-whatsapp svg,
.floating-whatsapp .whatsapp-cta-icon {
    width: 1rem;
    height: 1rem;
}

[data-reveal] {
    will-change: transform, opacity;
}

.js-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
}

@media (min-width: 992px) {
    .method-line {
        display: block;
    }
}

@media (max-width: 1199.98px) {
    .hero-title {
        max-width: 16ch;
    }

    .logo-cloud {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 0.75rem 0;
    }

    .nav-shell {
        padding: 0.72rem 0.85rem;
    }

    .navbar-collapse {
        margin-top: 0.8rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(16, 26, 45, 0.14);
    }

    .hero-section {
        padding-top: 7.4rem;
    }

    .brand-logo {
        height: clamp(48px, 9vw, 62px);
        max-width: 220px;
    }

    .hero-panel {
        margin-top: 0.2rem;
    }

    .logo-cloud {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .partners-carousel__lane {
        animation-duration: 36s;
    }

    .partners-carousel__lane--reverse {
        animation-duration: 42s;
    }
}

@media (max-width: 767.98px) {
    .section-block {
        padding: 4.2rem 0;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 3.6rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10.6vw, 3rem);
    }

    .hero-subtitle {
        max-width: 34ch;
        font-size: 0.99rem;
    }

    .hero-cta {
        width: min(100%, 360px);
        justify-content: center;
        padding: 0.88rem 1.2rem;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .hero-scroll-cue {
        display: none;
    }

    .section-title {
        max-width: 100%;
    }

    .service-card {
        min-height: 360px;
    }

    .partners-carousel {
        margin-top: 1.2rem;
        gap: 0.7rem;
    }

    .partners-section__media {
        inset: -1% 0 -8% 0;
        background-position: center top;
    }

    .partners-carousel__lane {
        animation-duration: 32s;
    }

    .partners-carousel__lane--reverse {
        animation-duration: 36s;
    }

    .logo-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .floating-whatsapp {
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.72rem;
    }

    .floating-whatsapp span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .js-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .services-marquee__track {
        animation: none !important;
    }

    .partners-carousel__lane {
        animation: none !important;
        transform: none !important;
    }

    .authority-prime__fade-shot {
        opacity: 0 !important;
        transform: none !important;
    }

    .authority-prime__fade-shot--1 {
        opacity: 1 !important;
    }

    .operations-hero__cursor {
        animation: none !important;
        opacity: 0.65;
    }
}
/* Photo-first overrides */
.hero-media {
    background-image: url("../images/site/hero-bg.webp");
    background-position: center 34%;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at 50% 8%, black, transparent 68%);
}

.hero-visuals {
    position: relative;
    height: clamp(480px, 66vh, 680px);
}

.hero-photo-main,
.hero-photo-float {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 20px 45px rgba(4, 10, 19, 0.45);
}

.hero-photo-main {
    position: absolute;
    inset: 0 8% 0 0;
}

.hero-photo-main img,
.hero-photo-float img,
.authority-photo img,
.thumb-photo img,
.partners-main-photo img,
.method-photo img,
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-float {
    position: absolute;
    width: 45%;
    right: 0;
    background: #071224;
}

.hero-photo-float.float-a {
    top: 7%;
    height: 34%;
}

.hero-photo-float.float-b {
    bottom: 12%;
    height: 34%;
}

.hero-photo-badge {
    position: absolute;
    left: 1.1rem;
    right: 12%;
    bottom: 1.1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.95rem;
    border-radius: 14px;
    border: 1px solid rgba(157, 225, 255, 0.42);
    background: rgba(7, 16, 30, 0.82);
    color: #d9efff;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}

.hero-photo-badge svg {
    width: 0.95rem;
    height: 0.95rem;
    color: #8cd4ff;
}

.authority-collage {
    position: relative;
    min-height: 500px;
}

.authority-photo {
    position: absolute;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(16, 26, 45, 0.16);
    box-shadow: var(--shadow-soft);
}

.authority-photo-main {
    inset: 0 18% 20% 0;
}

.authority-photo-side {
    width: 38%;
    right: 0;
    top: 12%;
    bottom: 24%;
}

.authority-photo-bottom {
    left: 8%;
    right: 4%;
    bottom: 0;
    height: 32%;
}

.metric-ribbon {
    margin-top: 1rem;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-marquee {
    width: 100vw;
    margin-top: 1.3rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.services-marquee__track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: services-marquee-scroll 120s linear infinite;
}

.services-marquee__group {
    display: flex;
    gap: 0;
}

.services-marquee__item {
    margin: 0;
    padding: 0;
    width: auto;
    height: clamp(150px, 45vw, 360px);
    flex: 0 0 auto;
    overflow: hidden;
}

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

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

.photo-strip {
    min-height: 62vh;
    padding: 0;
    isolation: isolate;
    display: flex;
    align-items: center;
}

.photo-strip .strip-media {
    position: absolute;
    inset: 0;
    transform: scale(1.04);
    background-size: cover;
    background-position: center;
}

.strip-one .strip-media {
    background-image: url("../images/site/parallax-strip-1.webp");
}

.strip-two .strip-media {
    background-image: url("../images/site/parallax-strip-2.webp");
}

.photo-strip .strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(6, 11, 20, 0.84) 16%, rgba(6, 11, 20, 0.62) 52%, rgba(6, 11, 20, 0.84) 100%);
}

.strip-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 2.2rem;
    border-radius: 22px;
    border: 1px solid rgba(157, 225, 255, 0.28);
    background: rgba(7, 14, 27, 0.42);
    backdrop-filter: blur(9px);
}

.strip-content-center {
    margin: 0 auto;
    text-align: center;
}

.partners-main-photo {
    margin: 0;
    height: 100%;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(10, 18, 32, 0.14);
    box-shadow: var(--shadow-soft);
}

.logo-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 100%;
}

.method-card {
    padding: 1.05rem 1.05rem 1.4rem;
}

.method-photo {
    margin: 0;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(157, 225, 255, 0.28);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}

.method-step {
    top: 1rem;
    left: 1rem;
}

.method-card h3 {
    margin-top: 1rem;
}

.gallery-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: 0 !important;
    background: #071224;
    padding-bottom: 7rem !important;
}

.gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../images/site/dsa23.webp");
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.gallery-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(4, 10, 18, 0.82) 0%, rgba(5, 12, 22, 0.74) 56%, rgba(4, 10, 18, 0.84) 100%),
        radial-gradient(820px circle at 50% 14%, rgba(19, 155, 255, 0.16), transparent 58%);
}

.gallery-section__fluid {
    position: relative;
    z-index: 2;
    padding-left: clamp(1rem, 3vw, 2.4rem);
    padding-right: clamp(1rem, 3vw, 2.4rem);
}

.photo-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    grid-auto-rows: clamp(190px, 19vw, 290px);
}

.mosaic-item {
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: #0a1220;
    border: 1px solid rgba(16, 26, 45, 0.12);
    box-shadow: 0 10px 22px rgba(10, 18, 32, 0.08);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.mosaic-item:hover {
    transform: translateY(-6px);
    border-color: rgba(19, 155, 255, 0.38);
    box-shadow: 0 20px 35px rgba(10, 18, 32, 0.16);
}

.mosaic-item img {
    transition: transform 0.45s ease;
}

.mosaic-item:hover img {
    transform: scale(1.06);
}

.mosaic-item.span-wide {
    grid-column: span 1;
}

.mosaic-item.span-tall {
    grid-row: span 1;
}

.gallery-modal .modal-content {
    background: rgba(6, 12, 22, 0.96);
    border: 1px solid rgba(157, 225, 255, 0.26);
}

.gallery-modal #galleryModalImage {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0 0 10px 10px;
}

.closing-media {
    background-image: url("../images/site/closing-bg.webp");
}

@media (max-width: 1199.98px) {
    .hero-visuals {
        height: 540px;
    }
}

@media (max-width: 991.98px) {
    .hero-visuals {
        height: 470px;
    }

    .authority-collage {
        min-height: 420px;
    }

    .metric-ribbon {
        grid-template-columns: 1fr;
    }

    .photo-mosaic {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: clamp(170px, 25vw, 230px);
    }

    .logo-cloud {
        margin-top: 0.5rem;
    }

}

@media (max-width: 767.98px) {
    .hero-grid-overlay {
        display: none;
    }

    .hero-visuals {
        height: 440px;
    }

    .hero-photo-main {
        inset: 0 0 15% 0;
    }

    .hero-photo-float {
        width: 38%;
    }

    .hero-photo-badge {
        right: 1rem;
    }

    .authority-collage {
        min-height: 360px;
    }

    .authority-photo-main {
        inset: 0 0 32% 0;
    }

    .authority-photo-side {
        display: none;
    }

    .authority-photo-bottom {
        left: 0;
        right: 0;
        height: 30%;
    }

    .partners-main-photo {
        min-height: 320px;
    }

    .faq-section__media {
        inset: -3% 0 -8% 0;
        background-position: center top;
    }

    .photo-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: clamp(150px, 38vw, 210px);
    }

    .mosaic-item.span-wide,
    .mosaic-item.span-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .services-marquee {
        margin-top: 1rem;
    }

    .services-marquee__track {
        animation-duration: 90s;
    }

    .strip-content {
        padding: 1.45rem;
    }
}

/* Operations Hero Typed Redesign */
.operations-hero {
    min-height: clamp(430px, 76vh, 700px);
    padding: clamp(0.8rem, 5vw, 3.4rem) 0;
    padding-top: 0px !important;
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(900px 340px at -6% 12%, rgba(19, 155, 255, 0.18), transparent 68%),
        radial-gradient(860px 320px at 106% 86%, rgba(19, 155, 255, 0.12), transparent 70%),
        linear-gradient(180deg, #061124 0%, #091a31 54%, #0a1e38 100%);
}

.operations-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.24;
    mask-image: radial-gradient(circle at center, black 34%, transparent 100%);
}

.operations-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(620px circle at 50% 18%, rgba(19, 155, 255, 0.2), transparent 60%);
}

.operations-hero .container {
    position: relative;
    z-index: 2;
}

.operations-hero__content {
    margin: 0 auto;
    max-width: min(980px, 100%);
    text-align: center;
}

.operations-hero__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.9rem;
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #38b2ff;
}

.operations-hero__title {
    margin: 0 auto;
    max-width: 23ch;
    color: #f7fbff;
    font-size: clamp(2.2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 700;
    text-wrap: balance;
}

.operations-hero__typing {
    color: #f7fbff;
    text-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.operations-hero__cursor {
    display: inline-block;
    width: 0.55ch;
    margin-left: 0.08em;
    border-right: 2px solid rgba(140, 211, 255, 0.95);
    transform: translateY(0.06em);
    animation: operations-cursor-blink 0.9s steps(1, end) infinite;
}

.operations-hero__description {
    margin: 1.15rem auto 0;
    max-width: 60ch;
    color: rgba(224, 236, 250, 0.86);
    font-size: clamp(0.97rem, 1.5vw, 1.08rem);
    line-height: 1.65;
}

.operations-hero__cta {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.54rem;
    padding: 0.92rem 1.48rem;
    border-radius: 999px;
    border: 1px solid rgba(157, 225, 255, 0.42);
    background: linear-gradient(137deg, #14a0ff 0%, #0b8fe8 38%, #0876c3 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.02rem;
    box-shadow:
        0 14px 30px rgba(13, 132, 214, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.operations-hero__cta svg {
    width: 1rem;
    height: 1rem;
}

.operations-hero__cta:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 20px 34px rgba(10, 127, 208, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    filter: saturate(1.08);
}

.operations-hero__cta:focus-visible {
    color: #ffffff;
    box-shadow:
        0 0 0 0.22rem rgba(19, 155, 255, 0.32),
        0 20px 34px rgba(10, 127, 208, 0.45);
}

@keyframes operations-cursor-blink {
    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

@media (max-width: 991.98px) {
    .operations-hero {
        padding: 5rem 0;
    }
}

@media (max-width: 767.98px) {
    .operations-hero {
        min-height: 480px;
        padding: 4.2rem 0;
    }

    .operations-hero__badge {
        margin-bottom: 0.72rem;
        letter-spacing: 0.12em;
        font-size: 0.72rem;
    }

    .operations-hero__title {
        max-width: 100%;
        font-size: clamp(1.95rem, 9vw, 2.85rem);
        line-height: 1.13;
    }

    .operations-hero__description {
        max-width: 34ch;
    }

    .operations-hero__cta {
        margin-top: 1.2rem;
        width: 100%;
        justify-content: center;
        padding: 0.88rem 1rem;
        font-size: 0.98rem;
    }
}

/* Signature + Closing Redesign */
.signature-section {
    min-height: clamp(470px, 62vh, 620px);
    display: flex;
    align-items: center;
    padding: clamp(4.5rem, 8vw, 6.1rem) 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1000px 380px at -8% 108%, rgba(19, 155, 255, 0.18), transparent 65%),
        radial-gradient(960px 360px at 108% -10%, rgba(19, 155, 255, 0.12), transparent 66%),
        linear-gradient(180deg, #061124 0%, #08192f 60%, #091f38 100%);
}

.signature-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.22;
    mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
    pointer-events: none;
}

.signature-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.signature-bubble {
    position: absolute;
    left: var(--x, 50%);
    bottom: -22px;
    width: var(--s, 6px);
    height: var(--s, 6px);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #9edcff 0%, #2ea8ff 62%, rgba(46, 168, 255, 0) 100%);
    opacity: 0;
    animation: signature-bubble-rise var(--d, 10s) linear infinite;
    animation-delay: var(--l, 0s);
}

@keyframes signature-bubble-rise {
    0% {
        transform: translate3d(0, 0, 0) scale(0.7);
        opacity: 0;
    }
    14% {
        opacity: 0.8;
    }
    78% {
        opacity: 0.32;
    }
    100% {
        transform: translate3d(var(--dx, 0px), -360px, 0) scale(1.2);
        opacity: 0;
    }
}

.signature-panel {
    position: relative;
    z-index: 2;
    border-radius: 0;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
}

.signature-panel .row {
    row-gap: 1.2rem;
}

.signature-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2caeff;
}

.signature-title {
    margin: 0;
    max-width: 100%;
    color: #f8fbff;
    font-size: clamp(2.1rem, 4.4vw, 3.6rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 700;
    text-wrap: balance;
}

.signature-text {
    margin: 1.1rem 0 0;
    max-width: 48ch;
    color: rgba(226, 236, 250, 0.84);
    font-size: 1rem;
    line-height: 1.6;
}

.signature-list {
    display: grid;
    gap: 0.72rem;
    max-width: 460px;
    margin-left: auto;
}

.signature-list__item {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    padding: 0.82rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(157, 225, 255, 0.3);
    background: linear-gradient(145deg, rgba(8, 18, 34, 0.62), rgba(8, 18, 34, 0.46));
    backdrop-filter: blur(8px);
    color: rgba(233, 238, 245, 0.94);
    font-size: 1.1rem;
    line-height: 1.45;
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.signature-list__item:hover {
    transform: translateX(-4px);
    border-color: rgba(157, 225, 255, 0.44);
    background: linear-gradient(145deg, rgba(9, 20, 38, 0.74), rgba(9, 20, 38, 0.58));
}

.signature-list__item svg {
    width: 1.95rem;
    height: 1.95rem;
    flex: 0 0 auto;
    color: #7bcfff;
}

.closing-prime {
    min-height: clamp(520px, 70vh, 760px);
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(5.2rem, 9.5vw, 7.2rem) 0;
}

.closing-prime__media {
    position: absolute;
    inset: 0;
    transform: scale(1.05);
    background-image: url("../images/site/closing-bg.webp");
    background-size: cover;
    background-position: center;
}

.closing-prime__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(108deg, rgba(3, 8, 16, 0.92) 0%, rgba(4, 10, 20, 0.78) 44%, rgba(3, 8, 16, 0.86) 100%),
        radial-gradient(circle at 74% 28%, rgba(19, 155, 255, 0.18), transparent 40%);
}

.closing-prime__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(1.1rem, 3vw, 2rem);
    align-items: stretch;
}

.closing-prime__lead {
    padding-right: 1rem;
}

.closing-prime__badge {
    display: inline-flex;
    margin-bottom: 0.9rem;
    color: #29adff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.closing-prime__title {
    margin: 0;
    max-width: 14ch;
    color: #f8fbff;
    font-size: clamp(2.2rem, 4.5vw, 3.85rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.closing-prime__text {
    margin: 1rem 0 0;
    max-width: 48ch;
    color: rgba(226, 236, 250, 0.87);
    font-size: 1.02rem;
}

.closing-prime__actions {
    align-self: center;
    display: grid;
    gap: 1.28rem;
    padding: clamp(1.35rem, 3vw, 2rem);
    border-radius: 24px;
    border: 1px solid rgba(157, 225, 255, 0.3);
    background:
        linear-gradient(145deg, rgba(7, 14, 26, 0.88) 0%, rgba(7, 14, 26, 0.7) 100%),
        radial-gradient(circle at 12% 12%, rgba(28, 167, 255, 0.15), transparent 45%);
    box-shadow:
        0 28px 56px rgba(2, 7, 14, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.closing-prime__cta {
    width: 100%;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.58rem;
    padding: 1.08rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(180, 234, 255, 0.72);
    background: linear-gradient(135deg, #14a0ff 0%, #0a8ddd 45%, #0a73ba 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow:
        0 20px 42px rgba(10, 127, 208, 0.52),
        0 0 0 2px rgba(126, 214, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.closing-prime__cta::after {
    content: "";
    position: absolute;
    inset: -90% auto auto -18%;
    width: 52%;
    height: 280%;
    pointer-events: none;
    transform: rotate(24deg);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    opacity: 0.58;
}

.closing-prime__cta .whatsapp-cta-icon {
    width: 1.12rem;
    height: 1.12rem;
}

.closing-prime__cta:hover {
    color: #fff;
    transform: translateY(-3px);
    filter: saturate(1.12);
    box-shadow:
        0 26px 48px rgba(10, 127, 208, 0.6),
        0 0 0 2px rgba(126, 214, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.closing-prime__trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
    border-radius: 16px;
    border: 1px solid rgba(157, 225, 255, 0.18);
    background: linear-gradient(160deg, rgba(8, 17, 32, 0.78), rgba(8, 17, 32, 0.58));
    overflow: hidden;
}

.closing-prime__trust li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.98rem 1rem;
    color: rgba(231, 240, 252, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
}

.closing-prime__trust-divider {
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(157, 225, 255, 0.2);
}

.closing-prime__trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(157, 225, 255, 0.42);
    background: linear-gradient(145deg, rgba(18, 155, 250, 0.26), rgba(9, 118, 197, 0.16));
    box-shadow: 0 14px 24px rgba(7, 103, 169, 0.34);
    animation: closing-prime-icon-pulse 2s ease-in-out infinite;
}

.closing-prime__trust li:nth-of-type(2) .closing-prime__trust-icon {
    animation-delay: 0.2s;
}

.closing-prime__trust li:nth-of-type(3) .closing-prime__trust-icon {
    animation-delay: 0.4s;
}

.closing-prime__trust-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    color: #cfeeff;
    flex: 0 0 auto;
}

@keyframes closing-prime-icon-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 14px 24px rgba(7, 103, 169, 0.34);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 18px 30px rgba(10, 127, 208, 0.48);
    }
}

@media (max-width: 991.98px) {
    .signature-title {
        max-width: 100%;
    }

    .signature-list {
        margin-top: 0.35rem;
        margin-left: 0;
        max-width: 100%;
    }

    .closing-prime__layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .closing-prime__lead {
        padding-right: 0;
    }

    .closing-prime__title {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .signature-section {
        min-height: 500px;
        padding: 4.1rem 0;
    }

    .signature-panel {
        border-radius: 0;
        padding: 0;
    }

    .signature-text {
        font-size: 0.95rem;
    }

    .closing-prime {
        min-height: 560px;
        padding: 4.5rem 0;
    }

    .closing-prime__title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.12;
    }

    .closing-prime__text {
        font-size: 0.95rem;
    }

    .closing-prime__actions {
        border-radius: 18px;
        padding: 1rem;
        gap: 1rem;
    }

    .closing-prime__trust li {
        font-size: 1.02rem;
        padding: 0.82rem 0.78rem;
    }

    .closing-prime__trust-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .closing-prime__trust-icon svg {
        width: 1.24rem;
        height: 1.24rem;
    }
}

/* Authority Section Revamp */
.authority-section--revamp {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 420px at -6% 18%, rgba(19, 155, 255, 0.14), transparent 70%),
        radial-gradient(900px 420px at 104% 86%, rgba(16, 26, 45, 0.1), transparent 72%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.authority-ornament {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(62px);
    pointer-events: none;
}

.authority-ornament--left {
    left: -130px;
    top: -90px;
    background: rgba(19, 155, 255, 0.18);
}

.authority-ornament--right {
    right: -120px;
    bottom: -120px;
    background: rgba(16, 26, 45, 0.16);
}

.authority-copy-wrap {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.authority-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.authority-headline {
    margin: 0;
    max-width: 13ch;
    color: #0b172b;
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 700;
    text-wrap: balance;
}

.authority-description {
    margin: 1.2rem 0 0;
    max-width: 54ch;
    color: #556583;
    font-size: 1.06rem;
    line-height: 1.72;
}

.authority-pills {
    margin-top: 1.35rem;
    display: grid;
    gap: 0.72rem;
    max-width: 620px;
}

.authority-pill {
    display: flex;
    align-items: flex-start;
    gap: 0.62rem;
    padding: 0.82rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(16, 26, 45, 0.12);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 20px rgba(12, 20, 35, 0.07);
    color: #3c4f71;
    font-size: 0.88rem;
    line-height: 1.5;
}

.authority-pill svg {
    width: 0.98rem;
    height: 0.98rem;
    margin-top: 0.2rem;
    flex: 0 0 auto;
    color: #149dff;
}

.authority-cta {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(157, 225, 255, 0.54);
    background: linear-gradient(135deg, #18a4ff 0%, #0b8fe2 45%, #0a78c1 100%);
    color: #ffffff;
    box-shadow:
        0 14px 30px rgba(10, 127, 208, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.authority-cta:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 20px 36px rgba(10, 127, 208, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.authority-stage {
    position: relative;
    min-height: 560px;
}

.authority-stage figure {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
}

.authority-stage__main {
    position: absolute;
    inset: 0 18% 17% 0;
    border: 1px solid rgba(16, 26, 45, 0.18);
    box-shadow: 0 22px 44px rgba(8, 14, 26, 0.18);
}

.authority-stage__portrait {
    position: absolute;
    width: 38%;
    right: 0;
    top: 10%;
    bottom: 24%;
    border: 1px solid rgba(16, 26, 45, 0.2);
    box-shadow: 0 20px 38px rgba(8, 14, 26, 0.22);
}

.authority-stage__strip {
    position: absolute;
    left: 7%;
    right: 2%;
    bottom: 0;
    height: 33%;
    border: 1px solid rgba(16, 26, 45, 0.18);
    box-shadow: 0 20px 36px rgba(8, 14, 26, 0.17);
}

.authority-stage__main img,
.authority-stage__portrait img,
.authority-stage__strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.authority-stage__seal {
    position: absolute;
    left: 1rem;
    right: 24%;
    bottom: 1.05rem;
    z-index: 5;
    padding: 0.72rem 0.86rem;
    border-radius: 12px;
    border: 1px solid rgba(157, 225, 255, 0.34);
    background: rgba(8, 14, 26, 0.78);
    backdrop-filter: blur(6px);
}

.authority-stage__seal span {
    display: block;
    margin-bottom: 0.15rem;
    color: #8ad2ff;
    font-size: 0.69rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.authority-stage__seal strong {
    color: #f2f8ff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.authority-metrics {
    margin-top: 1.1rem;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.authority-metric {
    border-radius: 16px;
    padding: 1rem 1.02rem;
    border: 1px solid rgba(16, 26, 45, 0.14);
    background: #ffffff;
    box-shadow: 0 12px 22px rgba(10, 18, 32, 0.08);
}

.authority-metric strong {
    display: block;
    margin-bottom: 0.28rem;
    color: #0b172b;
    font-size: 1.48rem;
    line-height: 1.08;
    font-weight: 700;
}

.authority-metric span {
    color: #5a6b89;
    font-size: 0.84rem;
    line-height: 1.5;
}

@media (max-width: 1199.98px) {
    .authority-headline {
        max-width: 14ch;
    }

    .authority-stage {
        min-height: 520px;
    }
}

@media (max-width: 991.98px) {
    .authority-copy-wrap {
        max-width: 100%;
    }

    .authority-headline {
        max-width: 100%;
    }

    .authority-stage {
        min-height: 460px;
    }

    .authority-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .authority-section--revamp {
        padding-top: 4.3rem;
        padding-bottom: 4.3rem;
    }

    .authority-description {
        font-size: 0.97rem;
        line-height: 1.65;
    }

    .authority-stage {
        min-height: 390px;
    }

    .authority-stage__main {
        inset: 0 0 30% 0;
    }

    .authority-stage__portrait {
        display: none;
    }

    .authority-stage__strip {
        left: 0;
        right: 0;
        height: 27%;
    }

    .authority-stage__seal {
        right: 1rem;
    }
}

/* Authority Polish V2 */
.authority-section--revamp {
    padding-top: clamp(5rem, 9vw, 7rem);
    padding-bottom: clamp(5rem, 9vw, 7rem);
}

.authority-section--revamp .row {
    align-items: flex-start;
}

.authority-section--revamp .authority-copy-wrap {
    padding-right: 1rem;
}

.authority-year-mark {
    margin-bottom: 0.95rem;
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(19, 155, 255, 0.22);
    background: rgba(255, 255, 255, 0.78);
}

.authority-year-mark span {
    color: #567196;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.authority-year-mark strong {
    color: #0f203a;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.authority-section--revamp .authority-headline {
    max-width: 11.5ch;
    font-size: clamp(2.55rem, 5.1vw, 4.35rem);
    line-height: 1.02;
}

.authority-section--revamp .authority-description {
    max-width: 50ch;
}

.authority-section--revamp .authority-pills {
    gap: 0.62rem;
}

.authority-section--revamp .authority-pill {
    border-color: rgba(19, 155, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(247, 250, 255, 0.85));
    box-shadow: 0 10px 18px rgba(8, 14, 26, 0.06);
}

.authority-visual-block {
    position: relative;
    padding: clamp(0.7rem, 2vw, 1rem);
    border-radius: 28px;
    border: 1px solid rgba(16, 26, 45, 0.14);
    background: linear-gradient(145deg, rgba(11, 22, 42, 0.96) 0%, rgba(14, 30, 53, 0.92) 100%);
    box-shadow: 0 28px 52px rgba(8, 14, 26, 0.24);
}

.authority-visual-block::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(130deg, rgba(19, 155, 255, 0.14), transparent 40%, transparent 64%, rgba(19, 155, 255, 0.12));
}

.authority-section--revamp .authority-stage {
    min-height: 520px;
}

.authority-section--revamp .authority-stage figure {
    border-color: rgba(157, 225, 255, 0.24);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.authority-visual-block:hover .authority-stage__main {
    transform: translateY(-3px);
    box-shadow: 0 26px 46px rgba(0, 0, 0, 0.28);
}

.authority-visual-block:hover .authority-stage__portrait {
    transform: translateY(-4px);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.3);
}

.authority-visual-block:hover .authority-stage__strip {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
}

.authority-section--revamp .authority-stage__seal {
    border-color: rgba(157, 225, 255, 0.44);
    background: linear-gradient(135deg, rgba(8, 14, 26, 0.9), rgba(10, 21, 38, 0.82));
}

.authority-section--revamp .authority-metrics {
    margin-top: 0.92rem;
    gap: 0.7rem;
}

.authority-section--revamp .authority-metric {
    background: linear-gradient(145deg, #0f1d34 0%, #142947 100%);
    border: 1px solid rgba(157, 225, 255, 0.2);
    box-shadow: 0 14px 24px rgba(8, 14, 26, 0.22);
}

.authority-metric__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.authority-metric__head svg {
    width: 0.95rem;
    height: 0.95rem;
    color: #75cbff;
}

.authority-section--revamp .authority-metric strong {
    margin: 0;
    color: #f2f8ff;
    font-size: 1.3rem;
}

.authority-section--revamp .authority-metric span {
    color: rgba(212, 226, 245, 0.86);
}

@media (max-width: 1199.98px) {
    .authority-section--revamp .authority-headline {
        max-width: 100%;
    }

    .authority-section--revamp .authority-stage {
        min-height: 500px;
    }
}

@media (max-width: 991.98px) {
    .authority-section--revamp .authority-copy-wrap {
        padding-right: 0;
    }

    .authority-visual-block {
        margin-top: 0.4rem;
    }
}

@media (max-width: 767.98px) {
    .authority-year-mark {
        margin-bottom: 0.72rem;
    }

    .authority-section--revamp .authority-headline {
        font-size: clamp(2.2rem, 11vw, 3rem);
        line-height: 1.05;
    }

    .authority-visual-block {
        border-radius: 20px;
        padding: 0.7rem;
    }

    .authority-section--revamp .authority-stage {
        min-height: 400px;
    }

    .authority-section--revamp .authority-stage__seal {
        right: 0.8rem;
        left: 0.8rem;
    }
}

.section-block {
    position: relative;
    padding: clamp(9.6rem, 0vw, 7.8rem) 0;
    padding-bottom: 0;
}
.btn-cta-main {
    color: #FFFFFF;
    border-color: rgba(157, 225, 255, 0.45);
    background: linear-gradient(135deg, #139BFF 0%, #0D7DCB 100%);
    box-shadow: 0 12px 32px rgba(19, 155, 255, 0.34);
}

.services-section .btn-cta-main {
    margin-bottom: 6rem;
}

/* Authority Prime */
.authority-section--prime {
    position: relative;
    overflow: hidden;
    padding-top: clamp(5rem, 9vw, 7.2rem);
    padding-bottom: clamp(5.1rem, 8.5vw, 7rem);
    background:
        radial-gradient(760px 360px at -8% 18%, rgba(19, 155, 255, 0.24), transparent 72%),
        radial-gradient(940px 470px at 106% 84%, rgba(19, 155, 255, 0.14), transparent 74%),
        linear-gradient(180deg, #071121 0%, #09192e 54%, #0b1d36 100%);
}

.authority-section--prime::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(19, 155, 255, 0.42) 50%, transparent 100%);
}

.authority-prime__bg {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(68px);
    pointer-events: none;
}

.authority-prime__bg--left {
    top: -120px;
    left: -140px;
    background: rgba(19, 155, 255, 0.28);
}

.authority-prime__bg--right {
    right: -150px;
    bottom: -130px;
    background: rgba(19, 155, 255, 0.18);
}

.authority-prime__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
}

.authority-prime__shell {
    position: relative;
    z-index: 2;
    border-radius: 34px;
    padding: clamp(1.25rem, 2vw, 1.8rem);
    border: 1px solid rgba(157, 225, 255, 0.18);
    background: linear-gradient(145deg, rgba(8, 18, 34, 0.82) 0%, rgba(10, 23, 42, 0.72) 100%);
    box-shadow: 0 30px 58px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(3px);
}

.authority-prime__copy {
    max-width: 620px;
    padding: clamp(0.3rem, 1vw, 0.8rem);
}

.authority-prime__kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #149dff;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.authority-prime__title {
    margin: 0;
    max-width: 25ch;
    color: #f4f9ff;
    font-size: clamp(2.7rem, 2.4vw, 4.45rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
    font-weight: 700;
    text-wrap: balance;
}

.authority-prime__description {
    margin: 1.2rem 0 0;
    max-width: 51ch;
    color: rgba(224, 235, 250, 0.86);
    font-size: 1.04rem;
    line-height: 1.72;
}

.authority-prime__proofs {
    margin-top: 1.35rem;
    display: grid;
    gap: 0.76rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.authority-prime__proof {
    display: grid;
    justify-items: flex-start;
    align-content: flex-start;
    gap: 0.5rem;
    margin: 0;
    padding: 1rem 1rem 0.95rem;
    border-radius: 16px;
    border: 1px solid rgba(157, 225, 255, 0.26);
    background: linear-gradient(170deg, rgba(8, 18, 34, 0.82), rgba(9, 20, 38, 0.72));
    box-shadow:
        0 14px 24px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.authority-prime__proof-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(157, 225, 255, 0.45);
    background: radial-gradient(circle at 30% 25%, rgba(26, 170, 255, 0.34), rgba(12, 126, 202, 0.18) 70%);
    box-shadow: 0 10px 22px rgba(10, 127, 208, 0.34);
    animation: authority-prime-proof-pulse 1.9s ease-in-out infinite;
}

.authority-prime__proof-icon svg {
    width: 1.65rem;
    height: 1.65rem;
    color: #d2edff;
}

.authority-prime__proof-title {
    margin: 0;
    color: #f4f9ff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.authority-prime__proof-description {
    margin: 0;
    color: rgba(226, 238, 252, 0.88);
    font-size: 0.86rem;
    line-height: 1.5;
}

@keyframes authority-prime-proof-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 22px rgba(10, 127, 208, 0.34);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 14px 30px rgba(10, 127, 208, 0.5);
    }
}

.authority-prime__actions {
    margin-top: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.authority-prime__cta {
    border-radius: 999px;
    border: 1px solid rgba(157, 225, 255, 0.55);
    background: linear-gradient(135deg, #18a5ff 0%, #0d8fe0 46%, #0972b7 100%);
    color: #ffffff;
    box-shadow:
        0 16px 30px rgba(10, 127, 208, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.authority-prime__cta:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 22px 38px rgba(10, 127, 208, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.authority-prime__since {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(157, 225, 255, 0.24);
    background: rgba(8, 18, 34, 0.74);
}

.authority-prime__since span {
    color: rgba(187, 214, 243, 0.9);
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.authority-prime__since strong {
    color: #f3f9ff;
    font-size: 1.2rem;
    line-height: 1;
}

.authority-prime__visual {
    position: relative;
    padding: clamp(0.72rem, 2vw, 1rem);
    border-radius: 28px;
    border: 1px solid rgba(16, 26, 45, 0.14);
    background: linear-gradient(145deg, rgba(11, 22, 42, 0.98) 0%, rgba(14, 30, 53, 0.94) 100%);
    box-shadow: 0 28px 56px rgba(8, 14, 26, 0.24);
}

.authority-prime__visual::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(130deg, rgba(19, 155, 255, 0.14), transparent 42%, transparent 64%, rgba(19, 155, 255, 0.12));
}

.authority-prime__stage {
    position: relative;
    min-height: 510px;
}

.authority-prime__visual--single {
    padding: clamp(0.66rem, 1.9vw, 0.92rem);
}

.authority-prime__stage--crossfade {
    min-height: 0;
    aspect-ratio: 4 / 5;
    height: auto;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(157, 225, 255, 0.26);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
    isolation: isolate;
}

.authority-prime__fade-shot {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.05);
    animation: authority-prime-crossfade 18s ease-in-out infinite;
}

.authority-prime__fade-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 14, 26, 0.06) 0%, rgba(8, 14, 26, 0.34) 62%, rgba(8, 14, 26, 0.62) 100%),
        radial-gradient(circle at 72% 18%, rgba(19, 155, 255, 0.18), transparent 42%);
}

.authority-prime__fade-shot img {
    width: 100%;
    height: 102%;
    object-fit: cover;
    object-position: center 14%;
    transform: scale(1);
    filter: saturate(1.05) contrast(1.03);
}

.authority-prime__fade-shot--1 {
    animation-delay: 0s;
}

.authority-prime__fade-shot--2 {
    animation-delay: 6s;
}

.authority-prime__fade-shot--3 {
    animation-delay: 12s;
}

.authority-prime__fade-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    padding: 0.82rem 0.92rem;
    border-radius: 12px;
    border: 1px solid rgba(157, 225, 255, 0.34);
    background: linear-gradient(135deg, rgba(8, 14, 26, 0.82), rgba(10, 21, 38, 0.72));
    backdrop-filter: blur(6px);
}

.authority-prime__fade-caption span {
    display: block;
    margin-bottom: 0.16rem;
    color: #8bd5ff;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.authority-prime__fade-caption strong {
    color: #f4f9ff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.42;
}

@keyframes authority-prime-crossfade {
    0% {
        opacity: 1;
        transform: scale(1.05);
    }

    30% {
        opacity: 1;
        transform: scale(1);
    }

    36% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: scale(0.985);
    }
}

.authority-prime__photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(157, 225, 255, 0.24);
    transition: transform 0.42s ease, box-shadow 0.42s ease;
}

.authority-prime__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.authority-prime__photo--main {
    inset: 0 19% 18% 0;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
}

.authority-prime__photo--portrait {
    width: 38%;
    right: 0;
    top: 10%;
    bottom: 24%;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.32);
}

.authority-prime__photo--strip {
    left: 7%;
    right: 3%;
    bottom: 0;
    height: 33%;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.authority-prime__seal {
    position: absolute;
    left: 1rem;
    right: 24%;
    bottom: 1.02rem;
    z-index: 3;
    padding: 0.72rem 0.88rem;
    border-radius: 12px;
    border: 1px solid rgba(157, 225, 255, 0.42);
    background: linear-gradient(135deg, rgba(8, 14, 26, 0.9), rgba(10, 21, 38, 0.82));
    backdrop-filter: blur(6px);
}

.authority-prime__seal span {
    display: block;
    margin-bottom: 0.16rem;
    color: #8bd5ff;
    font-size: 0.69rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.authority-prime__seal strong {
    color: #f2f8ff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.authority-prime__kpis {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.authority-prime__kpi {
    margin: 0;
    border-radius: 15px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(157, 225, 255, 0.2);
    background: linear-gradient(145deg, #0f1d34 0%, #142947 100%);
    box-shadow: 0 14px 22px rgba(8, 14, 26, 0.22);
}

.authority-prime__kpi-head {
    display: flex;
    align-items: center;
    gap: 0.48rem;
    margin-bottom: 0.32rem;
}

.authority-prime__kpi-head svg {
    width: 0.95rem;
    height: 0.95rem;
    color: #75cbff;
}

.authority-prime__kpi strong {
    margin: 0;
    color: #f2f8ff;
    font-size: 1.28rem;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.authority-prime__kpi span {
    color: rgba(212, 226, 245, 0.86);
    font-size: 0.83rem;
    line-height: 1.5;
}

.authority-prime__visual:hover .authority-prime__photo--main {
    transform: translateY(-4px);
    box-shadow: 0 30px 48px rgba(0, 0, 0, 0.33);
}

.authority-prime__visual:hover .authority-prime__photo--portrait {
    transform: translateY(-5px);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.34);
}

.authority-prime__visual:hover .authority-prime__photo--strip {
    transform: translateY(-3px);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1199.98px) {
    .authority-prime__title {
        max-width: 100%;
    }

    .authority-prime__stage {
        min-height: 480px;
    }
}

@media (max-width: 991.98px) {
    .authority-prime__shell {
        border-radius: 28px;
        padding: 1rem;
    }

    .authority-prime__copy {
        max-width: 100%;
        padding: 0.35rem 0.2rem;
    }

    .authority-prime__visual {
        margin-top: 0.35rem;
    }

    .authority-prime__kpis {
        grid-template-columns: 1fr;
    }

    .authority-prime__proofs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .authority-section--prime {
        padding-top: 4.3rem;
        padding-bottom: 4.2rem;
    }

    .authority-prime__shell {
        border-radius: 20px;
        padding: 0.74rem;
    }

    .authority-prime__title {
        font-size: clamp(2.15rem, 11.6vw, 3.1rem);
        line-height: 1.05;
    }

    .authority-prime__description {
        font-size: 0.97rem;
        line-height: 1.66;
    }

    .authority-prime__proof {
        border-radius: 12px;
        padding: 0.88rem 0.84rem;
    }

    .authority-prime__proof-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .authority-prime__proof-icon svg {
        width: 1.45rem;
        height: 1.45rem;
    }

    .authority-prime__actions {
        gap: 0.62rem;
    }

    .authority-prime__since {
        padding: 0.42rem 0.7rem;
    }

    .authority-prime__visual {
        border-radius: 20px;
        padding: 0.7rem;
    }

    .authority-prime__stage {
        min-height: 390px;
    }

    .authority-prime__stage--crossfade {
        min-height: 0;
        aspect-ratio: 3 / 4;
    }

    .authority-prime__fade-caption {
        left: 0.78rem;
        right: 0.78rem;
        bottom: 0.78rem;
    }

    .authority-prime__photo--main {
        inset: 0 0 30% 0;
    }

    .authority-prime__photo--portrait {
        display: none;
    }

    .authority-prime__photo--strip {
        left: 0;
        right: 0;
        height: 27%;
    }

    .authority-prime__seal {
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
    }
}
@media (max-width: 767.98px) {
    .min-vh-100 {
        min-height: 25vh !important;
        padding-bottom: 6rem;
    }

    .navbar-toggler {
        border: 1px solid rgba(16, 26, 45, 0.24);
        padding: 0.4rem 0.55rem;
        background: #54b8ff;
    }
}
