/* ========================================
   AQUASHIELD × SURA — Premium Landing Page
   Design System & Styles — 2026
   ======================================== */

/* ---------- Accessibility ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Utility ---------- */
.text-brand-blue {
    color: #0033A0;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette */
    --clr-bg: #f5f5f7;
    --clr-white: #ffffff;
    --clr-black: #1d1d1f;
    --clr-dark: #0a0a0a;
    --clr-gray-100: #f0f0f2;
    --clr-gray-200: #e8e8ed;
    --clr-gray-300: #d2d2d7;
    --clr-gray-400: #a1a1a6;
    --clr-gray-500: #6e6e73;
    --clr-gray-600: #424245;
    --clr-sura-blue: #0033A0;
    --clr-sura-cyan: #0033A0;
    --clr-accent: #0a0a0a;
    --clr-cta: #0033A0;
    --clr-cta-hover: #002d8f;

    /* Typography */
    --ff-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ff-display: 'Outfit', 'Inter', sans-serif;

    /* Spacing */
    --nav-height: 96px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    html {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

body {
    font-family: var(--ff-primary);
    background: var(--clr-bg);
    color: var(--clr-black);
    overflow-x: hidden;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

/* ---------- Navbar — Floating Droplet / Capsule ---------- */
.navbar {
    position: fixed;
    top: 16px;
    left: 24px;
    right: 24px;
    width: auto;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 3vw, 44px);

    /* Metallic gradient — iPhone-inspired droplet (Glassmorphic) */
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.55) 0%,
            rgba(252, 252, 253, 0.4) 25%,
            rgba(245, 245, 248, 0.25) 55%,
            rgba(238, 238, 243, 0.15) 100%);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border: 0.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 980px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 -0.5px 0 rgba(0, 0, 0, 0.02) inset,
        0 8px 32px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.5s var(--ease-out);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.95) 30%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.95) 70%,
            transparent 100%);
    border-radius: 980px;
    pointer-events: none;
}

.navbar.scrolled {
    top: 10px;
    width: calc(100% - 64px);
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.65) 0%,
            rgba(245, 245, 250, 0.5) 50%,
            rgba(235, 235, 242, 0.35) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 -0.5px 0 rgba(0, 0, 0, 0.04) inset,
        0 12px 48px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
}

/* ---------- Navbar Left — Logos ---------- */
.navbar__left {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.navbar__logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s var(--ease-out);
}

.navbar__logo:hover {
    opacity: 0.7;
}

/* Logo AquaShield — independiente */
#logo-aquashield img {
    width: 130px;
    height: auto;
    object-fit: contain;
}

/* Logo SURA — independiente */
#logo-sura img {
    width: auto;
    height: 44px;
    object-fit: contain;
    max-width: none;
}

.navbar__divider {
    width: 1.5px;
    height: 44px;
    background: var(--clr-black);
    margin: 0 24px;
    opacity: 0.2;
    border-radius: 1px;
}

/* ---------- Navbar Right — Menu + CTA ---------- */
.navbar__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar__link {
    position: relative;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--clr-gray-600);
    border-radius: 980px;
    transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.navbar__link:hover {
    color: var(--clr-black);
    background: rgba(0, 0, 0, 0.04);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px;
    height: 1.5px;
    background: var(--clr-black);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-spring);
}

.navbar__link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ---------- CTA Button ---------- */
.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    font-family: var(--ff-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--clr-white);
    background: linear-gradient(135deg, #1a1a1f 0%, #2d2d35 50%, #1a1a1f 100%);
    border: none;
    border-radius: 980px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.15),
        0 0 0 0.5px rgba(255, 255, 255, 0.1) inset;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
}

.btn-cta:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.25),
        0 0 0 0.5px rgba(255, 255, 255, 0.15) inset;
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta:active {
    transform: translateY(0) scale(0.98);
}

.btn-cta__icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-spring);
}

.btn-cta:hover .btn-cta__icon {
    transform: translateX(2px);
}

/* Pulse ring animation on CTA */
.btn-cta::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    border: 1.5px solid rgba(0, 113, 227, 0.4);
    animation: ctaPulse 2.5s var(--ease-out) infinite;
    pointer-events: none;
}

@keyframes ctaPulse {

    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    75% {
        opacity: 0;
        transform: scale(1.06);
    }
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #ffffff;
}

/* ---------- Hero Background: full-screen drag reveal ---------- */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

/* White gradient overlay — fades left side to white so text stays readable */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.98) 30%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.1) 68%,
        transparent 78%
    );
    pointer-events: none;
    z-index: 1;
}

/* ---------- Hero Content (left overlay) ---------- */
.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 52%;
    max-width: 720px;
    padding: calc(var(--nav-height) + 60px) 0 80px clamp(24px, 5vw, 80px);
    min-height: 100vh;
    justify-content: center;
    animation: fadeSlideUp 0.8s var(--ease-out) 0.2s both;
}

.hero__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-sura-cyan);
}

.hero__title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--clr-black);
}

.hero__title--cyan {
    color: var(--clr-sura-cyan);
}

.hero__desc {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    line-height: 1.7;
    color: var(--clr-gray-500);
    max-width: 440px;
}

/* ---------- Hero Features (4-column icon grid) ---------- */
.hero__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.hero__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.hero__feature-icon {
    width: 52px;
    height: 52px;
    border: 1.5px solid var(--clr-sura-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-sura-cyan);
    flex-shrink: 0;
}

.hero__feature-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-black);
    line-height: 1.45;
}

/* ---------- Hero CTA Actions ---------- */
.hero__actions {
    display: flex;
    gap: 14px;
    align-items: stretch;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--clr-sura-cyan);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--ff-primary);
    transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    background: #002d8f;
    transform: translateY(-2px);
}

.btn-hero-primary:active {
    transform: translateY(0);
}

.btn-hero-primary__text {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
}

.btn-hero-primary__text span:first-child {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1;
}

.btn-hero-primary__text span:last-child {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.85;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: transparent;
    color: var(--clr-black);
    border: 1.5px solid var(--clr-gray-300);
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--ff-primary);
    transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-spring);
}

.btn-hero-secondary:hover {
    border-color: var(--clr-black);
    transform: translateY(-2px);
}

.btn-hero-secondary:active {
    transform: translateY(0);
}

.btn-hero-secondary__text {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
}

.btn-hero-secondary__text span:first-child {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1;
}

.btn-hero-secondary__text span:last-child {
    font-size: 0.7rem;
    color: var(--clr-gray-500);
}

/* ---------- Hero Visual (right column — car split) ---------- */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero__car-split {
    position: relative;
    width: 100%;
    max-width: 680px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
}

.hero__car-before {
    display: block;
    width: 100%;
    height: auto;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.hero__car-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid var(--clr-gray-200);
    border-bottom: 1px solid var(--clr-gray-200);
    padding: 28px 0;
}

.trust-bar__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.trust-bar__icon {
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--clr-sura-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-sura-cyan);
    flex-shrink: 0;
}

.trust-bar__item span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-black);
    line-height: 1.5;
}

.trust-bar__divider {
    width: 1px;
    height: 50px;
    background: var(--clr-gray-200);
    margin: 0 16px;
}

/* ---------- Animations ---------- */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ---------- Animations ---------- */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ---------- Mobile Menu Toggle ---------- */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-black);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {

    /* Navbar: quitar cápsula, convertir en barra plana full-width */
    .navbar,
    .navbar.scrolled {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        transform: none;
        max-width: none;
    }

    .navbar__toggle {
        display: flex;
    }

    /* Menú desplegable — ancho completo, cae debajo del navbar */
    .navbar__right {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 16px 20px 24px;
        gap: 8px;
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(245, 245, 247, 0.98) 100%);
        backdrop-filter: saturate(180%) blur(24px);
        -webkit-backdrop-filter: saturate(180%) blur(24px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
        z-index: 999;
    }

    .navbar__right.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .navbar__menu {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }

    .navbar__link {
        width: 100%;
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: 12px;
        text-align: center;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
        padding: 14px 28px;
    }

    .navbar__logo img {
        height: 34px;
    }

    .navbar__divider {
        height: 28px;
        margin: 0 14px;
    }

    .hero__content {
        padding-top: 40px;
    }

    .hero__bg img {
        object-position: 20% center;
    }
}

@media (max-width: 600px) {
    :root {
        --nav-height: 64px;
    }

    .navbar__logo img {
        height: 28px;
    }

    .navbar__divider {
        height: 22px;
        margin: 0 10px;
    }

    .hero__title {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .hero__feature {
        padding: 14px 16px;
    }

    .hero__promo {
        padding: 16px 18px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero,
    .btn-secondary {
        justify-content: center;
        width: 100%;
    }
}

/* ---------- Overlay for mobile menu ---------- */
.navbar__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.navbar__overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
    display: none;
    /* Hidden — floating capsule navbar doesn't need it */
}

/* ---------- Custom cursor glow (desktop only) ---------- */
@media (hover: hover) {
    .cursor-glow {
        position: fixed;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 113, 227, 0.13) 0%, rgba(0, 113, 227, 0.04) 40%, transparent 70%);
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .cursor-glow.visible {
        opacity: 1;
    }
}

/* ========================================
   REVEAL ANIMATIONS (Scroll — multi-direction)
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-spring);
}

.reveal-scale.in-view {
    opacity: 1;
    transform: scale(1);
}

/* (ticker removed — replaced by trust-bar in HTML/CSS above) */

/* ========================================
   ALLIANCE SECTION — ORBS & GRID BG
   ======================================== */
.alliance__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.alliance__orb--1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    top: -80px;
    left: -100px;
    animation-delay: 0s;
}

.alliance__orb--2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    bottom: -60px;
    right: 10%;
    animation-delay: -3s;
}

.alliance__orb--3 {
    width: 200px;
    height: 200px;
    background: rgba(52, 199, 89, 0.06);
    top: 40%;
    left: 60%;
    animation-delay: -5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-10px, 10px) scale(0.96);
    }
}

/* Alliance grid lines decoration */
.alliance__inner {
    position: relative;
}

.alliance__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    border-radius: 24px;
}

/* ========================================
   3D CARD TILT
   ======================================== */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: opacity 0.8s var(--ease-out), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s var(--ease-out);
}

/* Animated glowing border on hover */
.card-3d::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle, 0deg),
            transparent 0%,
            rgba(255, 255, 255, 0.4) 10%,
            transparent 20%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
    animation: rotateBorder 3s linear infinite paused;
}

.card-3d:hover::after {
    opacity: 1;
    animation-play-state: running;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    to {
        --angle: 360deg;
    }
}

/* Section spotlight effect (follows mouse via JS vars) */
.pricing,
.services {
    --spotlight-x: 50%;
    --spotlight-y: 50%;
}

.pricing::after,
.services::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--spotlight-x) var(--spotlight-y),
            rgba(0, 0, 0, 0.025),
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing,
.services {
    position: relative;
    overflow: hidden;
}

/* ========================================
   SECTION SHARED LAYOUT
   ======================================== */
.alliance,
.pricing,
.process,
.services,
.compare {
    padding: 100px 0;
}

.alliance__inner,
.pricing__inner,
.process__inner,
.services__inner,
.compare__inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* Section labels */
.alliance__badge,
.pricing__label,
.process__label,
.services__label,
.compare__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(0, 0, 0, 0.04);
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 980px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-gray-500);
    margin-bottom: 20px;
}

.alliance__badge svg {
    width: 14px;
    height: 14px;
}

/* Section headers */
.pricing__header,
.process__header,
.services__header,
.compare__header {
    text-align: center;
    margin-bottom: 64px;
}

/* ========================================
   ALLIANCE SECTION
   ======================================== */
.alliance {
    background: var(--clr-dark);
    color: var(--clr-white);
    text-align: center;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.alliance::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.alliance__badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 20px;
}

.alliance__badge svg {
    stroke: rgba(255, 255, 255, 0.6);
}

.alliance__title {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--clr-white);
    margin-bottom: 24px;
}

.alliance__title span {
    color: rgba(255, 255, 255, 0.35);
}

.alliance__desc {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.alliance__desc strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.alliance__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.alliance__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 48px;
}

.alliance__stat-num {
    font-family: var(--ff-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--clr-white);
    letter-spacing: -0.04em;
    line-height: 1;
}

.alliance__stat-plus {
    font-size: 0.6em;
    vertical-align: super;
    color: rgba(255, 255, 255, 0.5);
}

.alliance__stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.alliance__stat-divider {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
}

.alliance__location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.04em;
}

.alliance__location svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.3);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    background: var(--clr-bg);
}

.pricing__title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--clr-dark);
    margin-bottom: 12px;
}

.pricing__title span {
    color: #0033A0;
}

.pricing__subtitle {
    font-size: 1rem;
    color: var(--clr-gray-500);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing__subtitle strong {
    color: var(--clr-black);
}

.pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing__card {
    position: relative;
    border-radius: 24px;
    background: #ffffff;
    border: 0.5px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.8s var(--ease-out), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s var(--ease-out);
}

.pricing__card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.pricing__card--featured {
    background: var(--clr-dark);
    border-color: transparent;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.pricing__card--featured:hover {
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.28);
}

.pricing__card-featured-label {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 980px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.pricing__card-inner {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    color: var(--clr-gray-500);
}

.pricing__card--featured .pricing__card-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.pricing__card-icon svg {
    width: 22px;
    height: 22px;
}

.pricing__card-type {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-gray-400);
}

.pricing__card--featured .pricing__card-type {
    color: rgba(255, 255, 255, 0.45);
}

.pricing__card-price {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--clr-dark);
    line-height: 1;
}

.pricing__card--featured .pricing__card-price {
    color: var(--clr-white);
}

.pricing__card-currency {
    font-size: 1.1rem;
    vertical-align: top;
    margin-top: 4px;
    display: inline-block;
}

.pricing__card-discount {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 4px;
    border-top: 0.5px solid rgba(0, 0, 0, 0.06);
}

.pricing__card--featured .pricing__card-discount {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing__card-discount-badge {
    padding: 3px 10px;
    background: rgba(52, 199, 89, 0.12);
    border-radius: 980px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #22a244;
}

.pricing__card--featured .pricing__card-discount-badge {
    background: rgba(52, 199, 89, 0.2);
    color: #4cd77a;
}

.pricing__card-final {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #22a244;
}

.pricing__card--featured .pricing__card-final {
    color: #4cd77a;
}

/* Shine effect */
.pricing__card-shine,
.svc-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing__card:hover .pricing__card-shine,
.svc-card:hover .svc-card__shine {
    opacity: 1;
}

.pricing__card--featured .pricing__card-shine {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
    background: white;
}

.process__title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--clr-dark);
    margin-bottom: 12px;
}

.process__title span {
    color: var(--clr-gray-400);
}

.process__subtitle {
    font-size: 1rem;
    color: var(--clr-gray-500);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    overflow: hidden;
}

.process__step {
    position: relative;
    padding: 40px 32px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: opacity 0.8s var(--ease-out), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, box-shadow 0.35s var(--ease-out);
}

.process__step:hover {
    background: var(--clr-gray-100);
}

.process__step-num {
    font-family: var(--ff-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    letter-spacing: -0.06em;
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
    pointer-events: none;
}

.process__step-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-dark);
    border-radius: 12px;
    color: var(--clr-white);
}

.process__step-icon svg {
    width: 20px;
    height: 20px;
}

.process__step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--clr-black);
}

.process__step p {
    font-size: 0.82rem;
    color: var(--clr-gray-500);
    line-height: 1.55;
}

.process__step--gift {
    background: var(--clr-dark);
}

.process__step--gift:hover {
    background: #111;
}

.process__step--gift .process__step-num {
    color: rgba(255, 255, 255, 0.06);
}

.process__step--gift .process__step-icon {
    background: rgba(255, 255, 255, 0.12);
}

.process__step--gift h4 {
    color: var(--clr-white);
}

.process__step--gift p {
    color: rgba(255, 255, 255, 0.5);
}

.process__step--warranty {
    background: var(--clr-gray-100);
}

.process__step-gift-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 980px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background: var(--clr-bg);
}

.services__title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--clr-dark);
    margin-bottom: 12px;
}

.services__subtitle {
    font-size: 1rem;
    color: var(--clr-gray-500);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.services__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-card {
    position: relative;
    border-radius: 24px;
    padding: 0;
    background: white;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    transition: opacity 0.8s var(--ease-out), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s var(--ease-out);
    cursor: default;
}

.svc-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

/* --- Card image block --- */
.svc-card__img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.svc-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-out);
}

.svc-card:hover .svc-card__img {
    transform: scale(1.04);
}

.svc-card__img-wrap .svc-card__badge {
    position: absolute;
    bottom: 12px;
    left: 16px;
}

/* --- Card body padding --- */
.svc-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 0;
}

.svc-card__top--no-badge {
    padding-top: 20px;
}

.svc-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-gray-100);
    border-radius: 14px;
    color: var(--clr-gray-500);
}

.svc-card__icon--dark {
    background: var(--clr-dark);
    color: white;
}

.svc-card__icon--slate {
    background: var(--clr-gray-200);
    color: var(--clr-gray-600);
}

.svc-card__icon svg {
    width: 22px;
    height: 22px;
}

.svc-card__badge {
    padding: 4px 12px;
    background: var(--clr-dark);
    border-radius: 980px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
}

.svc-card__badge--light {
    background: var(--clr-gray-200);
    color: var(--clr-gray-600);
}

.svc-card__badge--slate {
    background: rgba(255, 255, 255, 0.85);
    color: var(--clr-gray-600);
}

.svc-card__title {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--clr-dark);
    line-height: 1.2;
    padding: 0 28px;
}

.svc-card__desc {
    font-size: 0.875rem;
    color: var(--clr-gray-500);
    line-height: 1.6;
    padding: 0 28px;
}

.svc-card__specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 28px 0;
    border-top: 0.5px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
}

.svc-card__spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--clr-gray-500);
}

.svc-card__spec-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.svc-card__spec-dot--green {
    background: #22c55e;
}

.svc-card__spec-dot--blue {
    background: #3b82f6;
}

.svc-card__spec-dot--slate {
    background: var(--clr-gray-400);
}

.svc-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 56px);
    margin: 4px 28px 28px;
    padding: 10px 20px;
    font-family: var(--ff-primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--clr-sura-cyan);
    background: transparent;
    border: 1.5px solid var(--clr-sura-cyan);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.25s var(--ease-spring);
    position: relative;
    z-index: 1;
}

.svc-card__btn:hover {
    background: var(--clr-sura-cyan);
    color: #ffffff;
    transform: translateY(-2px);
}

.svc-card__btn svg {
    transition: transform 0.25s var(--ease-spring);
}

.svc-card__btn:hover svg {
    transform: translateX(3px);
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.compare {
    background: var(--clr-bg);
}

.compare__title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--clr-dark);
}

.compare__title span {
    color: var(--clr-gray-400);
    font-weight: 300;
    margin: 0 10px;
}

.compare__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* ================= CARDS SECTION (ChatGPT Style) ================= */
.compare__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.compare__card {
    position: relative;
    border-radius: 28px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-out), border-color 0.45s ease;
    overflow: hidden;
}

.compare__card--liquid {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 247, 0.9) 100%);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.03),
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.compare__card--liquid:hover {
    transform: translateY(-4px);
    border-color: var(--clr-gray-400);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.compare__card--ppf {
    background: linear-gradient(135deg, #0e0e11 0%, #1c1c24 100%);
    border: 1.5px solid rgba(0, 51, 160, 0.3);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 50px rgba(0, 51, 160, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.compare__card--ppf:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 51, 160, 0.6);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(0, 51, 160, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* Glowing Border Animation for PPF Card */
.compare__card--ppf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0033A0, #4d80e6, #002d8f, #0033A0);
    background-size: 300% 100%;
    animation: ppfGlowBorder 6s linear infinite;
}

@keyframes ppfGlowBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.compare__card-ribbon {
    position: absolute;
    top: 24px;
    right: 28px;
    background: linear-gradient(135deg, #0033A0 0%, #002d8f 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 980px;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(0, 51, 160, 0.4);
}

.compare__card-icon-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.compare__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-spring);
}

.compare__card:hover .compare__card-icon {
    transform: scale(1.08);
}

.compare__card--liquid .compare__card-icon {
    background: var(--clr-dark);
    color: white;
}

.compare__card--ppf .compare__card-icon {
    background: rgba(0, 51, 160, 0.2);
    color: #6699ff;
    border: 0.5px solid rgba(0, 51, 160, 0.35);
}

.compare__card-icon svg {
    width: 22px;
    height: 22px;
}

.compare__card-title-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.compare__card-title-group h3 {
    font-family: var(--ff-display);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.compare__card--liquid h3 {
    color: var(--clr-dark);
}

.compare__card--ppf h3 {
    color: white;
}

.compare__card-badge {
    font-size: 0.75rem;
    font-weight: 600;
}

.compare__card--liquid .compare__card-badge {
    color: var(--clr-gray-500);
}

.compare__card--ppf .compare__card-badge {
    color: rgba(255, 255, 255, 0.45);
}

.compare__card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.compare__card--liquid .compare__card-desc {
    color: var(--clr-gray-500);
}

.compare__card--ppf .compare__card-desc {
    color: rgba(255, 255, 255, 0.55);
}

.compare__card-price-wrapper {
    padding: 16px 24px;
    border-radius: 16px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    border: 0.5px solid transparent;
}

.compare__card--liquid .compare__card-price-wrapper {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.04);
}

.compare__card--ppf .compare__card-price-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.compare__card-price-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.compare__card--liquid .compare__card-price-label {
    color: var(--clr-gray-500);
}

.compare__card--ppf .compare__card-price-label {
    color: rgba(255, 255, 255, 0.4);
}

.compare__card-price-value {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.compare__card--liquid .compare__card-price-value {
    color: var(--clr-sura-blue);
}

.compare__card--ppf .compare__card-price-value {
    color: #6699ff;
}

.compare__card-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.compare__card-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    line-height: 1.45;
}

.compare__card--liquid li {
    color: var(--clr-gray-600);
}

.compare__card--ppf li {
    color: rgba(255, 255, 255, 0.7);
}

.compare__card-checklist li.exclude {
    opacity: 0.4;
}

.check-icon,
.cross-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.check-icon {
    color: #22c55e;
}

.compare__card--ppf .check-icon {
    color: #6699ff;
}

.cross-icon {
    color: var(--clr-gray-400);
}

.btn-compare-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    border-radius: 980px;
    font-family: var(--ff-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: all 0.35s var(--ease-spring);
    margin-top: auto;
    text-align: center;
}

.compare__card--liquid .btn-compare-cta {
    background: transparent;
    color: var(--clr-dark);
    border: 1.5px solid var(--clr-gray-300);
}

.compare__card--liquid .btn-compare-cta:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--clr-dark);
    transform: translateY(-2px);
}

.compare__card--ppf .btn-compare-cta {
    background: linear-gradient(135deg, #0033A0 0%, #002d8f 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 51, 160, 0.4);
}

.compare__card--ppf .btn-compare-cta:hover {
    background: linear-gradient(135deg, #0040c8 0%, #0033A0 100%);
    box-shadow: 0 8px 24px rgba(0, 51, 160, 0.5), 0 0 15px rgba(0, 51, 160, 0.25);
    transform: translateY(-2px);
}

.btn-compare-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-spring);
}

.btn-compare-cta:hover svg {
    transform: translateX(4px);
}

/* ================= COMPARISON TABLE ================= */
.compare__table-wrapper {
    background: white;
    border-radius: 28px;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.03),
        0 1px 2px rgba(0, 0, 0, 0.01);
    padding: 44px;
    overflow: hidden;
}

.compare__table-title {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--clr-dark);
    margin-bottom: 28px;
}

.compare__table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.compare__table th,
.compare__table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.88rem;
    line-height: 1.45;
}

.compare__table th {
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--clr-dark);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    background: var(--clr-gray-100);
}

.compare__table th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.compare__table th:nth-child(2),
.compare__table th:nth-child(3) {
    text-align: center;
}

.compare__table th:nth-child(3) {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.compare__table td:first-child {
    font-weight: 600;
    color: var(--clr-dark);
    width: 40%;
}

.compare__table td:nth-child(2),
.compare__table td:nth-child(3) {
    text-align: center;
}

.compare__table tr {
    transition: background-color 0.25s ease;
}

.compare__table tr:hover td {
    background-color: rgba(0, 0, 0, 0.01);
}

.compare__table tr:last-child td {
    border-bottom: none;
}

.status-cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
}

.status-cell.yes {
    color: #16a34a;
    font-weight: 600;
}

.status-cell.yes svg {
    color: #22c55e;
}

.status-cell.no {
    color: var(--clr-gray-400);
    opacity: 0.75;
}

.status-cell.no svg {
    color: var(--clr-gray-300);
}

.font-bold {
    font-weight: 700 !important;
}

.text-green {
    color: #16a34a !important;
}

.compare__table-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.compare__table-badge--liquid {
    background: rgba(0, 51, 160, 0.08);
    color: var(--clr-sura-blue);
}

.compare__table-badge--ppf {
    background: rgba(0, 51, 160, 0.1);
    color: #0033A0;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px 14px 16px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 980px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out);
    animation: waPulse 3s ease infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.whatsapp-float__icon svg {
    width: 26px;
    height: 26px;
}

.whatsapp-float__label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.12);
    }

    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.08);
    }
}

/* Responsive sections */
@media (max-width: 900px) {

    .pricing__cards,
    .services__cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing__card--featured {
        transform: none;
    }

    .process__grid {
        grid-template-columns: 1fr 1fr;
    }

    .compare__cards {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }

    .compare__table-wrapper {
        padding: 24px 16px;
        margin-top: 40px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare__table {
        min-width: 600px;
    }

    .alliance__stats {
        flex-direction: column;
        gap: 32px;
    }

    .alliance__stat-divider {
        width: 48px;
        height: 1px;
    }

    .alliance__stat {
        padding: 0;
    }
}

@media (max-width: 600px) {

    .alliance,
    .pricing,
    .process,
    .services,
    .compare {
        padding: 72px 0;
    }

    .process__grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float__label {
        display: none;
    }

    .whatsapp-float {
        padding: 16px;
        border-radius: 50%;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    position: relative;
    background: linear-gradient(180deg,
            #f9f9fb 0%,
            #f4f4f8 50%,
            #eeeeF4 100%);
    border-top: 0.5px solid rgba(0, 0, 0, 0.06);
}

.footer__line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 0, 0, 0.08) 20%,
            rgba(0, 0, 0, 0.12) 50%,
            rgba(0, 0, 0, 0.08) 80%,
            transparent 100%);
}

/* ---------- Inner grid ---------- */
.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 64px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px clamp(24px, 5vw, 80px) 48px;
}

/* ---------- Brand column ---------- */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__logos {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer__logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s var(--ease-out);
}

.footer__logo:hover {
    opacity: 0.65;
}

#footer-logo-aquashield img {
    width: 130px;
    height: auto;
    object-fit: contain;
}

#footer-logo-sura img {
    width: auto;
    height: 30px;
    object-fit: contain;
}

.footer__logo-divider {
    width: 1px;
    height: 32px;
    background: var(--clr-black);
    margin: 0 18px;
    opacity: 0.15;
    border-radius: 1px;
}

.footer__tagline {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--clr-gray-500);
    max-width: 280px;
}

/* Social icons */
.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    color: var(--clr-gray-500);
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease-out);
}

.footer__social-link:hover {
    color: var(--clr-black);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.footer__social-link svg {
    width: 17px;
    height: 17px;
}

/* ---------- Nav columns ---------- */
.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer__col-title {
    font-family: var(--ff-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-black);
    margin-bottom: 16px;
}

.footer__col-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col-list li a {
    font-size: 0.875rem;
    color: var(--clr-gray-500);
    transition: color 0.25s var(--ease-out);
}

.footer__col-list li a:hover {
    color: var(--clr-black);
}

/* Contact list with icons */
.footer__col-list--contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--clr-gray-500);
}

.footer__col-list--contact svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--clr-gray-400);
}

/* ---------- Bottom bar ---------- */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px clamp(24px, 5vw, 80px);
    border-top: 0.5px solid rgba(0, 0, 0, 0.07);
    gap: 16px;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 0.78rem;
    color: var(--clr-gray-400);
    letter-spacing: 0.02em;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__legal a {
    font-size: 0.78rem;
    color: var(--clr-gray-400);
    transition: color 0.25s var(--ease-out);
}

.footer__legal a:hover {
    color: var(--clr-black);
}

.footer__legal span {
    color: var(--clr-gray-300);
    font-size: 0.75rem;
}

/* ---------- Footer responsive ---------- */
@media (max-width: 900px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px clamp(20px, 4vw, 40px) 36px;
    }

    .footer__nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .footer__nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ========================================
   SPOTLIGHT: AQUASHIELD PLATINUM ULTRA PPF
   ======================================== */

.ultra-spotlight {
    position: relative;
    background: #050508;
    color: var(--clr-white);
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}

/* ambient glowing orbs */
.ultra-spotlight__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

.ultra-spotlight__orb--1 {
    background: radial-gradient(circle, rgba(0, 180, 216, 0.16) 0%, transparent 70%);
    width: 600px;
    height: 600px;
    top: -10%;
    left: -10%;
    animation: floatOrb1 20s infinite ease-in-out;
}

.ultra-spotlight__orb--2 {
    background: radial-gradient(circle, rgba(0, 63, 114, 0.25) 0%, transparent 70%);
    width: 600px;
    height: 600px;
    bottom: -10%;
    right: -10%;
    animation: floatOrb2 25s infinite ease-in-out;
}

.ultra-spotlight__orb--3 {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    width: 500px;
    height: 500px;
    top: 30%;
    left: 40%;
    animation: floatOrb1 22s infinite ease-in-out alternate;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, 30px);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, -30px);
    }
}

/* tech grid overlay */
.ultra-spotlight__grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

.ultra-spotlight__container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
    z-index: 2;
}

.ultra-spotlight__header {
    text-align: center;
    margin-bottom: 60px;
}

.ultra-spotlight__tagline {
    display: inline-block;
    font-family: var(--ff-display);
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--clr-sura-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ultra-spotlight__title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--clr-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.ultra-spotlight__title-gradient {
    color: var(--clr-sura-cyan);
    display: block;
    margin-top: 10px;
}

.ultra-spotlight__subtitle {
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    max-width: 820px;
    margin: 0 auto;
}

.ultra-spotlight__subtitle strong {
    color: var(--clr-white);
    font-weight: 600;
}

/* Holographic Card Wrapper */
.ultra-spotlight__card {
    position: relative;
    background: rgba(12, 12, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: clamp(32px, 5vw, 60px) clamp(24px, 4vw, 48px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.ultra-spotlight__card:hover {
    border-color: rgba(0, 180, 216, 0.25);
    box-shadow: 0 30px 80px rgba(0, 180, 216, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Benefits Grid */
.ultra-spotlight__benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s var(--ease-out);
}

.benefit-card:nth-child(1),
.benefit-card:nth-child(2),
.benefit-card:nth-child(3) {
    grid-column: span 2;
}

.benefit-card:nth-child(4),
.benefit-card:nth-child(5) {
    grid-column: span 3;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card__icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.benefit-card:hover .benefit-card__icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(0, 63, 114, 0.3));
    border-color: rgba(0, 180, 216, 0.4);
    transform: scale(1.08);
}

.benefit-card__icon {
    font-size: 1.4rem;
}

.benefit-card__title {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-white);
    letter-spacing: -0.01em;
}

.benefit-card__desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--clr-gray-400);
}

/* Footer Section */
.ultra-spotlight__footer {
    text-align: center;
    margin-top: 56px;
}

.ultra-spotlight__footer-text {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 500;
}

/* Shiny CTA Button */
.btn-ultra-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 980px;
    background: linear-gradient(135deg, var(--clr-sura-cyan) 0%, var(--clr-cta) 50%, var(--clr-sura-blue) 100%);
    background-size: 200% auto;
    color: var(--clr-white);
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 180, 216, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s var(--ease-out);
}

.btn-ultra-cta:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 180, 216, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-ultra-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    animation: shimmer 4.5s infinite linear;
}

@keyframes shimmer {
    0% {
        left: -60%;
    }

    25% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

/* Spotlight Responsive Layout */
@media (max-width: 990px) {
    .ultra-spotlight__benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card:nth-child(1),
    .benefit-card:nth-child(2),
    .benefit-card:nth-child(3),
    .benefit-card:nth-child(4) {
        grid-column: span 1;
    }

    .benefit-card:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .ultra-spotlight {
        padding: 80px 0;
    }

    .ultra-spotlight__header {
        margin-bottom: 40px;
    }

    .ultra-spotlight__card {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .ultra-spotlight__benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card:nth-child(1),
    .benefit-card:nth-child(2),
    .benefit-card:nth-child(3),
    .benefit-card:nth-child(4),
    .benefit-card:nth-child(5) {
        grid-column: span 1;
    }

    .benefit-card {
        padding: 20px;
    }

    .btn-ultra-cta {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.95rem;
    }
}

/* ===== HERO REVEAL DRAG ===== */
.hero__bg--reveal {
    position: absolute;
    inset: 0;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
}

.reveal-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.reveal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    display: block;
    pointer-events: none;
    animation: none;
    transform: none;
    will-change: auto;
}

.reveal-img--clean {
    clip-path: inset(0 26% 0 0);
    transition: none;
}

.reveal-divider {
    position: absolute;
    top: 0;
    left: 74%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    z-index: 10;
    pointer-events: none;
}

.reveal-divider__line {
    position: absolute;
    inset: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.85);
    left: 50%;
    transform: translateX(-50%);
}

.reveal-divider__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    color: #111;
    pointer-events: none;
}

.reveal-label {
    position: absolute;
    top: 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
}

.reveal-label--before {
    right: 12px;
    transform: translateX(100%);
}

.reveal-label--after {
    left: 12px;
    transform: translateX(-100%);
}

/* ---------- Hero & Trust Bar Responsive ---------- */
@media (max-width: 900px) {
    .hero__content {
        width: 100%;
        padding: calc(var(--nav-height) + 32px) 24px 60px;
        min-height: 100vh;
    }

    .hero__bg::after {
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.92) 60%,
            rgba(255, 255, 255, 0.7) 100%
        );
    }

    .hero__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-bar__inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px 0;
    }

    .trust-bar__divider {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero__features {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-bar__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ================= HERO PROMO TRIGGER ================= */
.hero__promo-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 9px 18px 9px 14px;
    background: rgba(0, 51, 160, 0.07);
    border: 1px solid rgba(0, 51, 160, 0.18);
    border-radius: 980px;
    color: var(--clr-sura-blue);
    font-family: var(--ff-primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.hero__promo-trigger:hover {
    background: rgba(0, 51, 160, 0.13);
    border-color: rgba(0, 51, 160, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 51, 160, 0.12);
}

.hero__promo-trigger strong {
    font-weight: 800;
}

/* ================= PROMO MODAL ================= */
.promo-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
    pointer-events: none;
    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease,
        opacity 0.4s ease;
}

.promo-modal-overlay.is-open {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1;
    pointer-events: all;
}

.promo-modal {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: clamp(36px, 6vw, 56px) clamp(28px, 5vw, 52px) clamp(32px, 5vw, 48px);
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.14),
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 0 0 0.5px rgba(0, 0, 0, 0.05);
    transform: scale(0.90) translateY(16px);
    opacity: 0;
    transition:
        transform 0.5s var(--ease-spring),
        opacity 0.4s ease;
    will-change: transform, opacity;
}

.promo-modal-overlay.is-open .promo-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Close */
.promo-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--clr-gray-100);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-gray-500);
    transition: background 0.2s ease, color 0.2s ease, transform 0.3s var(--ease-spring);
}

.promo-modal__close:hover {
    background: var(--clr-gray-200);
    color: var(--clr-black);
    transform: rotate(90deg);
}

/* Badge */
.promo-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: rgba(0, 51, 160, 0.06);
    border: 1px solid rgba(0, 51, 160, 0.14);
    border-radius: 980px;
    color: var(--clr-sura-blue);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

/* Body */
.promo-modal__body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-modal__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--clr-gray-400);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.promo-modal__discount {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.promo-modal__num {
    font-family: var(--ff-display);
    font-size: clamp(86px, 20vw, 120px);
    font-weight: 900;
    color: var(--clr-sura-blue);
    line-height: 0.88;
    letter-spacing: -0.02em;
}

.promo-modal__text {
    font-family: var(--ff-display);
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 900;
    color: var(--clr-black);
    letter-spacing: -0.01em;
    margin-top: 6px;
}

.promo-modal__divider {
    width: 44px;
    height: 3px;
    background: var(--clr-sura-blue);
    border-radius: 2px;
    margin: 18px auto 16px;
}

.promo-modal__for {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-black);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.promo-modal__brand {
    color: var(--clr-sura-blue);
    font-weight: 800;
}

.promo-modal__desc {
    font-size: 0.9rem;
    color: var(--clr-gray-500);
    line-height: 1.65;
    margin-bottom: 28px;
}

/* CTA */
.promo-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: var(--clr-black);
    color: #ffffff;
    border: none;
    border-radius: 980px;
    font-family: var(--ff-primary);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
}

.promo-modal__cta:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

/* Responsive */
@media (max-width: 600px) {
    .promo-modal {
        padding: 32px 22px 28px;
        border-radius: 22px;
    }

    .promo-modal__badge {
        font-size: 0.6rem;
        padding: 6px 11px;
    }

    .promo-modal__num {
        font-size: clamp(72px, 22vw, 96px);
    }

    .promo-modal__text {
        font-size: clamp(18px, 5.5vw, 24px);
    }
}