:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-strong: #0e4fae;
    --surface-soft: #ffffff;
    --text: #10233f;
    --muted: #4c6487;
    --line: rgba(20, 100, 216, 0.12);
    --brand: #1464d8;
    --brand-dark: #0d4ea8;
    --accent: #3c8cff;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(13, 78, 168, 0.14);
    --radius: 24px;
    --container: 1180px;
    --font-display: "Roboto", sans-serif;
    --font-body: "Roboto", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: #ffffff;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

.utility-bar {
    background: linear-gradient(90deg, #0d4ea8, #1464d8);
    color: var(--white);
}

.utility-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 0.92rem;
}

.utility-shell p {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.utility-links a,
.utility-text {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.92);
}

.utility-links a {
    color: rgba(255, 255, 255, 0.92);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(20, 100, 216, 0.08);
}
.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}
.brand { display: inline-flex; align-items: center; gap: 0.9rem; }
.brand strong, .brand small { display: block; }
.brand strong {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.brand small { color: var(--muted); }
.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand), #53a2ff);
    color: var(--white);
    font-weight: 700;
}

.brand-logo {
    display: block;
    max-height: 62px;
    width: auto;
    object-fit: contain;
}

.site-menu { display: flex; align-items: center; gap: 1.2rem; font-size: 0.94rem; }
.site-menu a:not(.button):hover, .footer-links a:hover, .text-link:hover { color: var(--brand-dark); }
.menu-toggle { display: none; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--brand), #53a2ff);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(20, 100, 216, 0.22);
}
.button-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.35); color: var(--white); box-shadow: none; }
.button-small { padding: 0.7rem 1.1rem; font-size: 0.9rem; }
.dark-ghost { color: var(--text); border-color: rgba(20, 100, 216, 0.18); }

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.2rem;
    border: 2px solid var(--brand);
    border-radius: 999px;
    color: var(--brand);
    font-weight: 700;
    background: #fff;
}

.contact-cta i {
    font-size: 1.2rem;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: min(900px, 78vw);
    padding: 0;
    background: #071427;
    color: var(--white);
}

.hero-background,
.hero-image-slide,
.hero-backdrop {
    position: absolute;
    inset: 0;
}

.hero-background {
    z-index: 1;
}

.hero-backdrop {
    background:
        linear-gradient(90deg, rgba(7, 20, 39, 0.82) 0%, rgba(7, 20, 39, 0.52) 34%, rgba(7, 20, 39, 0.2) 60%, rgba(7, 20, 39, 0.1) 100%),
        linear-gradient(180deg, rgba(7, 20, 39, 0.16) 0%, rgba(7, 20, 39, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: min(900px, 78vw);
    padding: 5rem 0 6rem;
}

.hero-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.6rem;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.5vw, 1.28rem);
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.96);
}

.hero-flow-divider {
    color: var(--brand);
    font-weight: 700;
}

.section-heading span, .cta-shell span {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1, h2, h3 { margin: 0; font-family: var(--font-display); line-height: 1.05; }
h1 {
    max-width: 34ch;
    margin: 0 auto;
    font-size: clamp(2rem, 2.7vw, 2.8rem);
    letter-spacing: -0.02em;
    line-height: 1.22;
    text-wrap: balance;
    color: #ffffff;
}
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.lead {
    max-width: 62ch;
    font-size: 1.12rem;
    line-height: 1.7;
}
.compact { color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.4rem; }
.hero-panel, .notice-card, .bullet-panel, .testimonial-card, .card, .feature, .cta-shell { border-radius: var(--radius); box-shadow: var(--shadow); }

.hero-subtitle {
    max-width: 72ch;
    margin: 2.2rem auto 0;
    font-size: clamp(1.02rem, 1.15vw, 1.18rem);
    line-height: 1.7;
    letter-spacing: 0.01em;
    text-wrap: pretty;
    color: rgba(255, 255, 255, 0.96);
}

.hero-subtitle strong,
h1 strong {
    color: var(--brand);
}

.hero-copy {
    max-width: 1280px;
    padding: 2.8rem 0;
    margin: 0 auto;
    text-align: center;
}

.hero-copy h1 strong,
.hero-subtitle strong {
    font-weight: 800;
}

.hero-image-slide {
    opacity: 0;
    transition: opacity 900ms ease;
    z-index: 1;
}

.hero-image-slide.is-visible {
    opacity: 1;
}

.hero-slide-media {
    position: absolute;
    inset: 0;
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

video.hero-slide-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-media--mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-slide-media--desktop.hero-slide-media--desktop-has-mobile {
        display: none;
    }

    .hero-slide-media--mobile {
        display: block;
    }
}

.hero-image-fallback {
    background:
        radial-gradient(circle at 72% 50%, rgba(20, 100, 216, 0.9), rgba(20, 100, 216, 0.22) 24%, transparent 26%),
        linear-gradient(120deg, rgba(7, 20, 39, 0.54), rgba(7, 20, 39, 0.14)),
        linear-gradient(135deg, #0b3b81, #1464d8);
}

.hero-watermark {
    position: absolute;
    right: 3rem;
    top: 2.5rem;
    max-width: 190px;
    opacity: 0.98;
    z-index: 4;
}

.hero-support-section {
    padding-top: 2.75rem;
}

.hero-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 1.5rem;
    align-items: stretch;
}

.hero-support-copy,
.hero-support-media {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-support-copy {
    padding: 2rem;
    background: linear-gradient(160deg, #f6faff, #ffffff);
    border: 1px solid rgba(20, 100, 216, 0.14);
}

.hero-support-label {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(20, 100, 216, 0.08);
    color: #0d4ea8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-support-copy h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.2rem, 1.7vw, 1.6rem);
    line-height: 1.12;
}

.hero-support-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.hero-support-list {
    display: grid;
    gap: 0.85rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.hero-support-list li {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(20, 100, 216, 0.1);
}

.hero-support-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #1464d8, #53a2ff);
    box-shadow: 0 0 0 6px rgba(20, 100, 216, 0.12);
}

.hero-support-media {
    min-height: 100%;
    background: linear-gradient(145deg, #081425, #123d7a);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-support-media img,
.hero-support-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.hero-support-media img {
    object-fit: cover;
}

@media (min-width: 769px) {
    .hero-support-media img {
        object-fit: contain;
        object-position: center;
    }
}

.hero-support-placeholder {
    display: grid;
    place-items: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
}

.hero-dot.is-active {
    background: var(--brand);
}

.section { padding: 5rem 0; }
.section-contrast { background: #ffffff; }
.section-dark { background: linear-gradient(135deg, #0d4ea8, #1464d8); color: var(--white); }
.section-dark .compact, .section-dark .section-heading span { color: rgba(255, 255, 255, 0.82); }
.section-heading { margin-bottom: 2rem; }
.section-heading span, .cta-shell span { background: rgba(20, 100, 216, 0.1); color: var(--brand-dark); }

.cards, .grid { display: grid; gap: 1.4rem; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .feature, .testimonial-card, .notice-card, .bullet-panel {
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
}
.card h3, .feature strong, .notice-card h3 { margin-bottom: 0.8rem; }
.testimonial-video-grid {
    align-items: start;
}
.testimonial-background-section {
    position: relative;
    overflow: hidden;
}
.testimonial-background-media,
.testimonial-background-overlay {
    position: absolute;
    inset: 0;
}
.testimonial-background-media {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.testimonial-background-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.testimonial-background-overlay {
    background:
        linear-gradient(180deg, rgba(8, 10, 18, 0.72) 0%, rgba(8, 10, 18, 0.78) 100%);
}
.testimonial-background-content {
    position: relative;
    z-index: 1;
}
.testimonial-background-section .section-heading span,
.testimonial-background-section .section-heading h2 {
    color: #ffffff;
}
.testimonial-card {
    display: grid;
    gap: 1rem;
    align-content: start;
    background: rgba(255, 255, 255, 0.9);
}
.testimonial-video-frame {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 18px 34px rgba(17, 10, 10, 0.18);
}
.testimonial-video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000000;
}
.testimonial-card strong {
    display: block;
}
.text-link { display: inline-block; margin-top: 1rem; color: var(--accent); font-weight: 700; }
.card-icon,
.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: #ffffff;
    color: var(--brand);
    font-size: 1.2rem;
}
.services-section {
    background: #ffffff;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}
.service-card {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(20, 100, 216, 0.08), rgba(20, 100, 216, 0.02)),
        linear-gradient(135deg, #ffffff, #ffffff);
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
    border: 1px solid rgba(20, 100, 216, 0.12);
}
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 20, 39, 0.06) 0%, rgba(7, 20, 39, 0.8) 100%);
}
.service-card-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 1.4rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.service-card .card-icon {
    margin-bottom: 0.9rem;
    background: linear-gradient(135deg, #1464d8, #53a2ff);
    color: var(--white);
}
.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.45rem;
}
.service-card p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.55;
    max-width: 28ch;
}
.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand);
    font-weight: 700;
    align-self: center;
    margin-top: auto;
    text-align: center;
}
.services-cta-section {
    padding-top: 0;
}
.services-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(20, 100, 216, 0.12);
    box-shadow: var(--shadow);
}
.services-cta-card span {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}
.services-cta-card h2 {
    margin-bottom: 0.8rem;
}
.services-cta-card p {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    line-height: 1.65;
}
.services-cta-button {
    gap: 0.65rem;
}
.about-company-section {
    background: linear-gradient(135deg, #0d4ea8, #1464d8);
}
.about-company-section .section-heading span {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}
.about-company-section .section-heading h2,
.about-company-subtitle {
    color: #ffffff;
}
.about-company-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: center;
}
.about-company-subtitle {
    margin: -0.4rem 0 1rem;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
}
.about-company-text {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.72;
}
.about-company-media {
    min-height: 440px;
    width: min(100%, 340px);
    margin-left: auto;
    aspect-ratio: 9 / 16;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #edf5ff, #ffffff);
    border: 1px solid rgba(20, 100, 216, 0.12);
}
.about-company-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-company-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}
.about-company-placeholder {
    display: grid;
    place-items: center;
    gap: 0.8rem;
    width: 100%;
    height: 100%;
    color: var(--brand);
    font-size: 1.1rem;
}
.about-company-placeholder i {
    font-size: 3rem;
}
.differentials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 1.5rem;
    align-items: start;
}
.services-table-heading {
    max-width: 860px;
}
.services-mobile-toggle {
    display: none;
}
.services-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.services-column {
    padding: 1.7rem;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(20, 100, 216, 0.1);
    background: #ffffff;
    color: #111111;
}
.services-table-section .services-column-head strong,
.services-table-section .services-column-head p,
.services-table-section .services-table-list li,
.services-table-section .services-table-list span {
    color: #111111;
}
.services-table-section .section-heading h2,
.services-table-section .section-heading p {
    color: #ffffff;
}
.services-table-section .section-heading span {
    color: rgba(255, 255, 255, 0.82);
}
.services-column-positive {
    background: #ffffff;
}
.services-column-negative {
    background: #ffffff;
}
.services-column-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(20, 100, 216, 0.1);
}
.services-column-head strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
}
.services-column-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}
.services-column-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1464d8, #53a2ff);
    color: #fff;
    font-size: 1.2rem;
}
.services-table-list {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}
.services-table-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.8rem;
    align-items: start;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(20, 100, 216, 0.04);
    border: 1px solid rgba(20, 100, 216, 0.08);
}
.services-table-list i {
    margin-top: 0.2rem;
}
.positive-list i {
    color: #17985d;
}
.negative-list i { color: #0d4ea8; }
.positive-list li {
    background: rgba(23, 152, 93, 0.14);
    border-color: rgba(23, 152, 93, 0.18);
}
.negative-list li {
    background: rgba(13, 78, 168, 0.1);
    border-color: rgba(13, 78, 168, 0.14);
}
.check-list, .block-list {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}
.check-list li, .block-list li, .bullet-item { position: relative; padding-left: 1.6rem; }
.check-list li::before, .bullet-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: var(--accent);
}
.block-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.7rem;
    height: 2px;
    background: var(--brand);
}
.authority-layout { align-items: center; }
.bullet-panel {
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
}
.bullet-item { color: rgba(255, 255, 255, 0.88); }
.bullet-item::before { background: #d8e9ff; }

.sustainability-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
}
.sustainability-shell .section-heading {
    margin-bottom: 0;
}
.sustainability-copy {
    grid-column: 1;
    padding: 1.8rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(20, 100, 216, 0.08), rgba(216, 233, 255, 0.35));
    border: 1px solid rgba(20, 100, 216, 0.16);
}
.sustainability-media-grid {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.sustainability-media-card {
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(20, 100, 216, 0.14);
    box-shadow: var(--shadow);
    background: #edf5ff;
}
.sustainability-media-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sustainability-copy p:first-child, .faq-item p, .testimonial-card p, .card p, .feature p, .notice-card p, .cta-shell p, .site-footer p { margin-top: 0; }
.faq-list { display: grid; gap: 1rem; }
.faq-item {
    padding: 1.2rem 1.4rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
}
.faq-item summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.faq-item summary i { color: var(--brand); }
.faq-item p { margin-top: 0.9rem; color: var(--muted); line-height: 1.65; }
.image-carousel-section {
    padding-top: 2.5rem;
}
.case-carousel {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.case-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: case-scroll 42s linear infinite;
}
.case-card {
    position: relative;
    flex: 0 0 290px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 22px;
    background: #111;
    border: 1px solid var(--line);
}
.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.case-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(8, 8, 8, 0.92) 100%);
}
.case-content span {
    display: inline-block;
    margin-bottom: 8px;
    color: #d8e9ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.case-content h3 {
    margin: 0;
    font-size: 1.06rem;
    color: #ffffff;
}
@keyframes case-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 9px)); }
}
.insurance-cta-section {
    padding-top: 2.75rem;
}
.insurance-cta-shell.cta-shell {
    grid-template-columns: minmax(0, 1.2fr) auto;
    padding: 2.2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, #050505, #161616);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}
.insurance-cta-shell span {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
}
.insurance-cta-copy h2 {
    color: #ffffff;
}
.insurance-cta-copy p {
    max-width: 64ch;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
}
.insurance-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}
.insurance-cta-actions .button {
    background: #ffffff;
    color: var(--brand);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}
.cta-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #edf5ff, #ffffff);
    border: 1px solid rgba(20, 100, 216, 0.16);
}
.contact-section {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #0d4ea8 0%, #1464d8 50%, #53a2ff 100%);
}
.contact-premium {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: stretch;
    padding: 2.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 26%),
        linear-gradient(135deg, rgba(13, 78, 168, 0.96), rgba(20, 100, 216, 0.94));
    box-shadow: 0 28px 70px rgba(13, 78, 168, 0.34);
}
.contact-premium-copy span,
.contact-premium-copy h2,
.contact-premium-copy p {
    color: #ffffff;
}
.contact-premium-copy p {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}
.contact-signals {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.7rem;
}
.contact-signals span {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    width: fit-content;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-signals i {
    color: #ffffff;
}
.contact-premium-panel {
    display: grid;
    gap: 1rem;
}
.contact-premium-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.6rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-premium-card strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #ffffff;
}
.contact-premium-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-premium-card a:hover {
    background: rgba(255, 255, 255, 0.14);
}
.contact-premium-card i {
    color: #ffffff;
}
.contact-premium-actions {
    margin-top: 0;
}
.contact-premium-actions .button-ghost {
    background: #ffffff;
    color: var(--brand);
    border-color: #ffffff;
}
.contact-premium-actions .button-ghost i {
    color: var(--brand);
}
.site-footer { padding: 2rem 0 3rem; }
.site-footer {
    background: #000000;
    color: #ffffff;
    padding-top: 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
    padding-bottom: 2rem;
}
.footer-brand-block p {
    max-width: 38ch;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}
.footer-brand {
    display: inline-flex;
    margin-bottom: 1rem;
}
.footer-logo {
    max-height: 52px;
    width: auto;
}
.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.footer-links {
    display: grid;
    gap: 0.7rem;
}
.footer-links a,
.footer-text {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.78);
}
.footer-links a:hover {
    color: #ffffff;
}
.footer-map-column {
    min-width: 0;
}
.footer-map-embed {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    min-height: 220px;
}
.footer-map-embed iframe {
    display: block;
    width: 100%;
    min-height: 220px;
    border: 0;
    background: rgba(255, 255, 255, 0.06);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}
.footer-bottom a {
    color: #ffffff;
}
.footer-bottom .developer-link {
    color: #53a2ff;
    font-weight: 700;
}
.footer-bottom .developer-link:hover { color: #8ec0ff; }

.floating-whatsapp {
    position: fixed;
    right: 1.35rem;
    bottom: 1.35rem;
    z-index: 1200;
    display: inline-grid;
    place-items: center;
    align-items: center;
    width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #1fbf63, #119e4e);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 20px 36px rgba(17, 158, 78, 0.3);
    transition: transform 160ms ease, box-shadow 160ms ease;
    animation: whatsappPulse 1.8s ease-in-out infinite;
}
.floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 24px 40px rgba(17, 158, 78, 0.36);
    color: #ffffff;
    animation-play-state: paused;
}
.floating-whatsapp i {
    font-size: 2rem;
}
.floating-whatsapp span {
    display: none;
}
.floating-whatsapp-badge {
    position: absolute;
    top: -3px;
    right: -1px;
    display: grid !important;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: #1464d8;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 18px rgba(20, 100, 216, 0.28);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 20px 36px rgba(17, 158, 78, 0.3), 0 0 0 0 rgba(31, 191, 99, 0.34);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 22px 38px rgba(17, 158, 78, 0.34), 0 0 0 14px rgba(31, 191, 99, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 20px 36px rgba(17, 158, 78, 0.3), 0 0 0 0 rgba(31, 191, 99, 0);
    }
}

@media (max-width: 960px) {
    .utility-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-menu {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }
    .site-menu.is-open { display: flex; }
    .menu-toggle {
        display: inline-flex;
        padding: 0.8rem 1rem;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: var(--surface);
    }
    .contact-cta {
        justify-content: center;
    }
    .hero-content, .split-layout, .sustainability-shell, .cta-shell, .two-columns, .three-columns, .differentials-grid, .services-grid, .services-cta-card, .services-table, .about-company-grid, .contact-premium, .hero-support-grid { grid-template-columns: 1fr; }
    .hero {
        min-height: 700px;
    }
    .hero-content {
        min-height: 700px;
        padding: 4rem 0 5rem;
    }
    .about-company-media {
        width: min(100%, 320px);
        margin: 0 auto;
    }
    .insurance-cta-shell.cta-shell,
    .contact-premium {
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .utility-bar {
        display: none;
    }
    .hero-support-section {
        padding-top: 1.75rem;
    }
    .hero-support-copy,
    .hero-support-media {
        border-radius: 26px;
    }
    .hero-support-copy {
        padding: 1.4rem;
    }
    .hero-support-copy h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
        line-height: 1.1;
    }
    .hero-support-copy p {
        font-size: 0.98rem;
        line-height: 1.7;
    }
    .hero-support-list {
        gap: 0.7rem;
        margin-top: 1.2rem;
    }
    .hero-support-list li {
        padding: 0.9rem 0.9rem 0.9rem 2.7rem;
        border-radius: 18px;
    }
    .hero-support-list li::before {
        left: 0.9rem;
        top: 1rem;
        width: 1rem;
        height: 1rem;
        box-shadow: 0 0 0 5px rgba(20, 100, 216, 0.1);
    }
    .hero-support-media img,
    .hero-support-placeholder {
        min-height: 260px;
    }
    .services-mobile-toggle {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        padding: 0.35rem;
        margin-top: 2rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.16);
    }
    .services-mobile-toggle-button {
        appearance: none;
        border: 0;
        border-radius: 999px;
        padding: 0.95rem 0.8rem;
        background: transparent;
        color: rgba(255, 255, 255, 0.74);
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }
    .services-mobile-toggle-button.is-active {
        background: #ffffff;
        color: #0d4ea8;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    }
    .services-table {
        margin-top: 1rem;
    }
    .services-column {
        display: none;
    }
    .services-column.is-active {
        display: block;
    }
    .hero {
        min-height: 620px;
    }
    .hero-content {
        min-height: 620px;
        padding: 3rem 0 5rem;
    }
    .section { padding: 4rem 0; }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .utility-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .brand-logo {
        max-height: 52px;
    }
    .hero-flow {
        gap: 0.55rem;
        margin-bottom: 1.7rem;
    }
    .hero-subtitle {
        max-width: 100%;
        margin-top: 1.5rem;
    }
    .hero-watermark {
        max-width: 120px;
        right: 1rem;
    }
    .contact-premium {
        padding: 1.6rem;
    }
    .sustainability-media-grid {
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: 1fr;
    }
    .insurance-cta-shell.cta-shell {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding: 1.5rem;
        border-radius: 28px;
        text-align: left;
        background:
            radial-gradient(circle at top right, rgba(83, 162, 255, 0.24), transparent 34%),
            linear-gradient(160deg, #050505, #111111 58%, #0d4ea8 140%);
        box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
    }
    .insurance-cta-shell span {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        padding: 0.5rem 0.8rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
        font-size: 0.76rem;
        letter-spacing: 0.08em;
    }
    .insurance-cta-copy h2 {
        margin-bottom: 0.7rem;
        font-size: clamp(1.55rem, 7vw, 2rem);
        line-height: 1.08;
    }
    .insurance-cta-copy p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.72;
        color: rgba(255, 255, 255, 0.88);
    }
    .insurance-cta-actions,
    .contact-premium-actions {
        width: 100%;
    }
    .insurance-cta-actions .button,
    .contact-premium-actions .button {
        width: 100%;
    }
    .insurance-cta-actions .button {
        justify-content: center;
        min-height: 54px;
        padding: 1rem 1.2rem;
        border-radius: 18px;
        font-size: 0.98rem;
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
    }
    .contact-premium {
        padding: 1.35rem;
        border-radius: 24px;
    }
    .contact-premium-card {
        padding: 1.1rem;
        border-radius: 20px;
    }
    .contact-signals span,
    .contact-premium-card a {
        width: 100%;
    }
    .contact-signals span {
        border-radius: 18px;
        align-items: flex-start;
    }
    .about-company-media {
        width: min(100%, 260px);
        min-height: 0;
        border-radius: 24px;
    }
    .testimonial-card {
        padding: 1rem;
    }
    .testimonial-video-frame {
        max-width: 240px;
        border-radius: 20px;
    }
    .floating-whatsapp {
        right: 1rem;
        bottom: 1rem;
        width: 58px;
        height: 58px;
    }
}
