:root {
    --bg: #020607;
    --bg-soft: #061112;
    --panel: #0b1517;
    --panel-strong: #102226;
    --line: rgba(66, 199, 232, 0.2);
    --text: #f7fbfc;
    --muted: #b7cbd1;
    --cyan: #42c7e8;
    --blue: #0398c6;
    --green: #42d498;
    --gold: #f6c85f;
    --danger: #ef5350;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 84px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.58;
    overflow-x: hidden;
}

a {
    color: var(--cyan);
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes whatsappPulse {
    0%,
    100% {
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.28);
    }

    50% {
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.reveal-target {
    opacity: 1;
    transform: none;
}

body.animations-ready .reveal-target {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 620ms ease,
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

body.animations-ready .reveal-target.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.container-wide {
    width: calc(100% - 56px);
    max-width: 1280px;
    margin: 0 auto;
}

.full-width {
    width: 100%;
}

.navbar-fixed {
    height: 76px;
}

.site-nav {
    height: 76px;
    line-height: 76px;
    background: rgba(2, 6, 7, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.site-nav .nav-wrapper {
    display: flex;
    align-items: center;
    height: 76px;
}

.site-brand.brand-logo {
    display: flex;
    align-items: center;
    position: static;
    transform: none;
    height: 76px;
    line-height: 1;
}

.site-brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    height: 76px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0;
}

.site-brand img {
    display: block;
    width: min(184px, 42vw);
    max-height: 60px;
    object-fit: contain;
    transition: transform 180ms ease, filter 180ms ease;
}

.site-brand:hover img {
    filter: drop-shadow(0 0 12px rgba(66, 199, 232, 0.24));
    transform: translateY(-1px);
}

.site-brand strong {
    color: var(--cyan);
}

.site-nav .main-menu a {
    color: #dbe8ee;
    height: 40px;
    line-height: 40px;
    padding: 0 13px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 700;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav .main-menu a:hover {
    color: #ffffff;
    background: rgba(35, 211, 238, 0.08);
    transform: translateY(-1px);
}

.site-nav .main-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 76px;
    margin-left: auto;
}

.site-nav .main-menu li {
    float: none;
}

.btn,
.btn-large {
    border-radius: 8px;
    box-shadow: none;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    transition:
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.btn:hover,
.btn:focus,
.btn-large:hover,
.btn-large:focus {
    transform: translateY(-2px);
}

.btn:active,
.btn-large:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, #48c9e8, #0695c4);
    color: #031013;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #66eaff, #4a94ff);
    box-shadow: 0 12px 34px rgba(35, 211, 238, 0.22);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(255, 255, 255, 0.14);
}

.btn.whatsapp-button,
.btn-large.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    height: auto;
    line-height: 1.15;
    padding: 9px 18px;
    white-space: normal;
}

.btn-large.whatsapp-button {
    min-height: 48px;
    padding: 10px 20px;
}

.whatsapp-mark {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #25d366;
}

.whatsapp-mark img {
    display: block;
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.nav-cta {
    height: 42px;
    line-height: 42px;
    margin-left: 8px;
    padding: 0 18px;
}

.mobile-site-menu.sidenav {
    background: var(--bg-soft);
    padding: 20px;
}

.mobile-site-menu.sidenav li > a:not(.btn),
.mobile-site-menu.sidenav .mobile-brand {
    color: var(--text);
}

.mobile-site-menu.sidenav li > a.btn-primary {
    color: #031013;
}

.sidenav-trigger i {
    color: var(--text);
}

.mobile-site-menu .mobile-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
}

.mobile-brand {
    color: var(--text);
    font-weight: 800;
    padding: 0 16px 20px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: clamp(500px, calc(74vh - 76px), 640px);
    display: flex;
    align-items: center;
    padding: clamp(64px, 9vw, 96px) 0 clamp(72px, 10vw, 104px);
    background:
        radial-gradient(circle at 82% 18%, rgba(66, 199, 232, 0.14), transparent 34%),
        radial-gradient(circle at 10% 72%, rgba(66, 212, 152, 0.08), transparent 38%),
        linear-gradient(180deg, #041113 0%, #031012 56%, var(--bg) 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: block;
    flex: 0 0 auto;
}

.hero-copy {
    min-width: 0;
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.hero-copy .eyebrow {
    justify-content: center;
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    color: var(--cyan);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 18px auto 20px;
    max-width: 820px;
    font-size: clamp(2.55rem, 3.9vw, 4.2rem);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero-copy p {
    margin-right: auto;
    margin-left: auto;
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 32px 0 26px;
}

.case-metrics span,
.service-lists span,
.logo-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 13px;
    background: rgba(255, 255, 255, 0.05);
    color: #dcebf1;
    font-size: 0.9rem;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.case-metrics span:hover,
.service-lists span:hover,
.logo-strip span:hover {
    border-color: rgba(66, 199, 232, 0.42);
    background: rgba(66, 199, 232, 0.1);
    transform: translateY(-2px);
}

.page-section {
    padding: 84px 0;
    background: var(--bg);
}

.section-muted {
    background: var(--bg-soft);
}

.section-strong {
    background:
        linear-gradient(180deg, rgba(35, 211, 238, 0.06), transparent 32%),
        #050b10;
}

.section-title {
    max-width: 860px;
    margin-bottom: 40px;
}

.section-title.center-align {
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    margin: 12px 0 12px;
    color: var(--text);
    font-size: clamp(1.95rem, 3.2vw, 3rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
    text-wrap: balance;
}

.section-title p,
.section-body {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-media {
    margin: 0 0 26px;
    border: 1px solid rgba(66, 199, 232, 0.22);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.section-media--wide {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
}

.section-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: filter 220ms ease, transform 360ms ease;
}

.section-media:hover img {
    filter: saturate(1.08);
    transform: scale(1.018);
}

.section-actions {
    margin-top: 26px;
}

.section-actions--stacked {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.section-actions--stacked .btn {
    min-height: 42px;
    height: auto;
    line-height: 1.15;
    padding: 10px 18px;
    white-space: normal;
}

.inline-actions,
.topic-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.text-link,
.back-link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    color: var(--cyan);
    font-weight: 850;
}

.text-link:hover,
.back-link:hover {
    color: #ffffff;
}

.back-link {
    margin: 0 0 18px;
}

.topic-hero {
    padding-top: 76px;
    padding-bottom: 66px;
}

.topic-hero-grid,
.topic-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
    gap: 44px;
    align-items: start;
}

.topic-hero h1 {
    margin: 12px 0 18px;
    max-width: 880px;
    font-size: clamp(2.2rem, 4.3vw, 4rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.topic-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.topic-hero-actions {
    justify-content: flex-end;
    padding-top: 36px;
}

.topic-hero-actions .btn,
.inline-actions .btn {
    min-height: 42px;
    height: auto;
    line-height: 1.15;
    padding: 10px 18px;
    white-space: normal;
}

.topic-grid {
    display: grid;
    gap: 18px;
}

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

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

.topic-card,
.topic-detail,
.detail-list,
.empty-topic {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

.topic-card,
.topic-detail,
.detail-list,
.empty-topic {
    padding: 26px;
}

.topic-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(66, 199, 232, 0.2);
    border-radius: 8px;
    margin-bottom: 18px;
}

.topic-card h3,
.topic-detail h2,
.detail-list h3,
.empty-topic h2 {
    margin: 0 0 12px;
    color: var(--text);
    font-weight: 850;
    letter-spacing: 0;
}

.topic-card h3 {
    font-size: 1.14rem;
}

.topic-detail h2,
.empty-topic h2 {
    font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.topic-card p,
.topic-detail p,
.detail-list p {
    margin: 0;
    color: var(--muted);
}

.topic-detail dl {
    margin: 0;
}

.topic-detail dt {
    margin-top: 20px;
    color: #ffffff;
    font-weight: 850;
}

.topic-detail dt:first-child {
    margin-top: 0;
}

.topic-detail dd {
    margin: 6px 0 0;
    color: var(--muted);
}

.detail-side {
    display: grid;
    gap: 18px;
}

.detail-list {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 10px;
}

.detail-list h3,
.detail-list p {
    width: 100%;
}

.detail-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 13px;
    background: rgba(255, 255, 255, 0.05);
    color: #dcebf1;
    font-size: 0.9rem;
}

.service-hero {
    padding: 58px 0 62px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(66, 199, 232, 0.08), transparent 56%),
        #050b10;
}

.service-hero-grid,
.service-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.55fr);
    gap: 48px;
    align-items: center;
}

.service-hero-grid {
    grid-template-columns: minmax(0, 1fr);
}

.service-hero-copy {
    min-width: 0;
    max-width: 860px;
}

.service-hero-copy h1 {
    margin: 12px 0 16px;
    max-width: 780px;
    font-size: clamp(2.2rem, 3.55vw, 3.35rem);
    line-height: 1.06;
    font-weight: 850;
    letter-spacing: 0;
}

.service-hero-copy p {
    max-width: 720px;
    margin: 0;
    color: #dcebf1;
    font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.service-hero-copy .inline-actions {
    margin-top: 24px;
}

.service-main-copy,
.service-list-block {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

.service-main-copy h2,
.service-cta-grid h2 {
    margin: 0;
    color: var(--text);
    font-weight: 850;
    letter-spacing: 0;
}

.service-main-copy p {
    color: var(--muted);
}

.service-content {
    padding: 66px 0;
}

.service-content-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
}

.service-main-copy {
    padding: 30px;
}

.service-main-copy h2 {
    margin-top: 10px;
    font-size: clamp(1.7rem, 2.65vw, 2.35rem);
    line-height: 1.12;
}

.service-main-copy p {
    margin: 18px 0 0;
}

.service-list-column {
    display: grid;
    gap: 18px;
}

.service-list-block {
    padding: 24px;
}

.service-list-heading {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.service-list-heading i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(66, 199, 232, 0.12);
    color: var(--cyan);
}

.service-list-heading h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.18rem;
    font-weight: 850;
    letter-spacing: 0;
}

.service-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-feature-list li {
    position: relative;
    border: 1px solid rgba(66, 199, 232, 0.18);
    border-radius: 8px;
    padding: 13px 14px 13px 38px;
    background: rgba(255, 255, 255, 0.04);
    color: #dcebf1;
    font-size: 0.92rem;
    line-height: 1.45;
}

.service-feature-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 19px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
}

.service-cta-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 34px 0;
    background:
        linear-gradient(135deg, rgba(66, 199, 232, 0.1), rgba(66, 212, 152, 0.08)),
        #061112;
}

.service-cta-grid {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.service-cta-grid h2 {
    max-width: 760px;
    margin-top: 8px;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.18;
}

.service-cta-grid .btn {
    flex: 0 0 auto;
}

.split-grid,
.case-grid,
.contact-grid,
.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}

.section-split .split-grid {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    gap: 0;
}

.section-split .section-title,
.section-split .section-body {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.benefits-grid,
.audience-grid,
.testimonials-grid,
.services-overview {
    display: grid;
    gap: 18px;
}

.benefit-card,
.service-card,
.topic-card,
.audience-grid article,
.step-item,
.testimonial-card,
.case-detail,
.lead-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.benefit-card:hover,
.service-card:hover,
.topic-card:hover,
.audience-grid article:hover,
.step-item:hover,
.testimonial-card:hover,
.case-detail:hover,
.lead-form:hover {
    border-color: rgba(66, 199, 232, 0.42);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
    transform: translateY(-4px);
}

.benefit-card i,
.audience-grid i {
    color: var(--cyan);
}

.services-overview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 32px;
}

.service-card {
    padding: 26px;
}

.service-card:hover {
    border-color: rgba(35, 211, 238, 0.42);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(35, 211, 238, 0.12);
    color: var(--cyan);
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card:hover .card-icon,
.benefit-card:hover i,
.audience-grid article:hover i {
    transform: translateY(-2px) scale(1.08);
}

.service-card h3,
.benefit-card h3,
.audience-grid h3,
.step-item h3,
.testimonial-card strong,
.case-detail h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 850;
    letter-spacing: 0;
}

.service-card p,
.benefit-card p,
.audience-grid p,
.step-item p,
.testimonial-card p,
.case-detail dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.72;
}

.services-tabs-wrap {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
}

.tabs.service-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    height: auto;
    min-height: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.035);
    white-space: normal;
}

.tabs.service-tabs .tab {
    flex: 0 0 auto;
    height: auto;
    line-height: 1.15;
    text-align: left;
    text-transform: none;
}

.tabs.service-tabs .tab a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 9px 14px;
    color: #c9dde5;
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.tabs.service-tabs .tab a.active,
.tabs.service-tabs .tab a:hover {
    color: var(--cyan);
    border-color: rgba(66, 199, 232, 0.34);
    background: rgba(66, 199, 232, 0.1);
}

.tabs .indicator {
    display: none;
}

.service-panel {
    display: none;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    border-top: 1px solid var(--line);
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(66, 199, 232, 0.06), transparent 42%),
        rgba(2, 8, 10, 0.4);
}

.services-tabs-wrap > .service-panel:first-of-type,
.services-tabs-wrap > .service-panel[style*="display: block"] {
    display: grid !important;
    animation: panelIn 260ms ease both;
}

.services-tabs-wrap > .service-panel[style*="display: none"] {
    display: none !important;
}

.service-panel h3 {
    max-width: 680px;
    margin: 10px 0 22px;
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    line-height: 1.34;
    font-weight: 800;
    text-wrap: pretty;
}

.service-panel .btn {
    min-height: 42px;
    height: auto;
    line-height: 1.15;
    padding: 10px 18px;
    white-space: normal;
}

.service-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.service-lists div {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 10px;
    border: 1px solid rgba(66, 199, 232, 0.14);
    border-radius: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.service-lists h4 {
    width: 100%;
    margin: 0 0 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 850;
}

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

.benefit-card {
    display: flex;
    gap: 14px;
    min-height: 172px;
    padding: 24px;
}

.benefit-card i {
    flex: 0 0 auto;
}

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

.audience-grid article {
    padding: 24px;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.steps-row--summary {
    width: min(100%, 720px);
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-item {
    padding: 22px;
}

.step-item span {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 900;
}

.case-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(66, 212, 152, 0.12), transparent 28%),
        #04090d;
}

.case-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.case-detail {
    padding: 28px;
}

.case-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(66, 199, 232, 0.2);
    border-radius: 8px;
    margin-bottom: 22px;
}

.case-segment {
    color: var(--gold);
    font-weight: 850;
}

.case-detail h3 {
    margin-top: 10px;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.case-detail dt {
    margin-top: 18px;
    color: #ffffff;
    font-weight: 850;
}

.case-detail .btn {
    margin-top: 24px;
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 26px;
}

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

.testimonial-card {
    padding: 24px;
}

.testimonial-card p {
    margin-bottom: 18px;
}

.testimonial-card span {
    display: block;
    color: var(--muted);
}

.faq-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.faq-grid > .section-actions {
    grid-column: 2;
    margin-top: 0;
}

.faq-list {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
}

.faq-list .collapsible-header,
.faq-list .collapsible-body {
    background: rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid var(--line);
    color: var(--text);
}

.faq-list .collapsible-header {
    align-items: center;
    min-height: 64px;
    font-weight: 800;
    transition: background-color 160ms ease, color 160ms ease;
}

.faq-list .collapsible-header i {
    transition: transform 180ms ease, color 180ms ease;
}

.faq-list li.active .collapsible-header {
    background: rgba(66, 199, 232, 0.08);
}

.faq-list li.active .collapsible-header i {
    color: var(--cyan);
    transform: rotate(45deg);
}

.faq-list .collapsible-body p {
    color: var(--muted);
}

.contact-section {
    background:
        linear-gradient(135deg, rgba(35, 211, 238, 0.12), rgba(66, 212, 152, 0.08)),
        #050b10;
}

.lead-form {
    padding: 28px;
    background: rgba(4, 12, 18, 0.86);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lead-form input,
.lead-form textarea {
    color: var(--text);
}

.lead-form .input-field input,
.lead-form .input-field textarea {
    border-bottom-color: rgba(255, 255, 255, 0.22);
}

.lead-form .input-field label {
    color: #b7c8d0;
}

.lead-form .input-field input:focus,
.lead-form .input-field textarea:focus {
    border-bottom-color: var(--cyan) !important;
    box-shadow: 0 1px 0 0 var(--cyan) !important;
}

.lead-form .input-field input:focus + label,
.lead-form .input-field textarea:focus + label {
    color: var(--cyan) !important;
}

.service-interest-field {
    margin: 2px 0 24px;
    border: 1px solid rgba(66, 199, 232, 0.2);
    border-radius: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.service-interest-field legend {
    width: auto;
    margin: 0;
    padding: 0 8px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 800;
}

.service-interest-field legend span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.service-interest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.service-interest-option {
    display: flex;
    min-height: 34px;
    align-items: center;
}

.service-interest-option [type="checkbox"] + span:not(.lever) {
    min-height: 24px;
    color: #dcebf1;
    font-size: 0.9rem;
    line-height: 1.35;
}

.service-interest-option [type="checkbox"].filled-in:checked + span:not(.lever)::after {
    border-color: var(--cyan);
    background-color: var(--cyan);
}

.service-interest-option [type="checkbox"].filled-in:not(:checked) + span:not(.lever)::after {
    border-color: rgba(255, 255, 255, 0.34);
}

.lead-form button {
    position: relative;
}

.lead-form .loading-label {
    display: none;
}

.lead-form button.is-loading .button-label {
    display: none;
}

.lead-form button.is-loading .loading-label {
    display: inline;
}

.form-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.success-box {
    margin-bottom: 18px;
    border: 1px solid rgba(66, 212, 152, 0.5);
    border-radius: 8px;
    padding: 14px;
    background: rgba(66, 212, 152, 0.12);
    color: #d8ffef;
    font-weight: 700;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 20;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #04110a;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    animation: whatsappPulse 2.8s ease-in-out infinite;
    transition: transform 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: translateY(-3px) scale(1.04);
}

.whatsapp-float i {
    font-size: 30px;
}

.whatsapp-float img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #020609;
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 32px;
    padding: 54px 0 34px;
}

.footer-brand {
    display: inline-flex;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 850;
}

.footer-brand img {
    width: 190px;
    max-height: 72px;
    object-fit: contain;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 850;
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.site-footer a:hover {
    color: var(--cyan);
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin: 0;
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-links a:hover {
    border-color: rgba(66, 199, 232, 0.42);
    transform: translateY(-2px);
}

.footer-copy {
    border-top: 1px solid var(--line);
    padding: 18px;
    text-align: center;
    color: #7d929d;
}

@media (max-width: 1100px) {
    .hero-grid,
    .split-grid,
    .case-grid,
    .contact-grid,
    .faq-grid,
    .service-panel,
    .topic-hero-grid,
    .topic-detail-grid,
    .service-hero-grid,
    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding-top: 42px;
        padding-bottom: 48px;
    }

    .topic-hero-actions {
        justify-content: flex-start;
        padding-top: 0;
    }

    .faq-grid > .section-actions {
        grid-column: auto;
    }

    .services-overview,
    .benefits-grid,
    .topic-grid--four,
    .topic-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-nav .main-menu a {
        padding: 0 9px;
        font-size: 0.78rem;
    }

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

@media (max-width: 720px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .container-wide {
        width: calc(100% - 24px);
        max-width: none;
    }

    .site-nav .nav-wrapper {
        justify-content: space-between;
    }

    .site-brand img {
        width: 150px;
        max-height: 56px;
    }

    .sidenav-trigger {
        display: flex;
        align-items: center;
        height: 76px;
        margin-left: auto;
    }

    .hero-section {
        min-height: auto;
        padding: 44px 0 46px;
        background:
            radial-gradient(circle at 50% 8%, rgba(66, 199, 232, 0.16), transparent 42%),
            linear-gradient(180deg, #041113 0%, #031012 58%, var(--bg) 100%);
    }

    .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .hero-copy .eyebrow {
        justify-content: center;
        width: 100%;
    }

    .hero-actions,
    .footer-grid,
    .input-row,
    .service-interest-grid,
    .service-lists,
    .service-feature-list,
    .service-cta-grid,
    .inline-actions,
    .topic-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-cta-grid .btn {
        width: 100%;
        text-align: center;
    }

    .hero-copy h1 {
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(2.05rem, 10vw, 2.45rem);
    }

    .hero-copy p {
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
        font-size: 1rem;
    }

    .hero-actions {
        width: 100%;
        margin-bottom: 0;
    }

    .hero-actions .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .section-split .section-title,
    .section-split .section-body {
        max-width: 100%;
        text-align: center;
    }

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

    .services-overview,
    .benefits-grid,
    .audience-grid,
    .topic-grid--four,
    .topic-grid--three,
    .steps-row,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-panel {
        padding: 22px;
    }

    .service-panel h3 {
        font-size: 1.28rem;
    }

    .tabs.service-tabs {
        display: flex;
        flex-wrap: wrap;
        overflow: visible;
        white-space: normal;
    }

    .tabs.service-tabs .tab {
        flex: 0 0 auto;
    }

    .lead-form {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    body.animations-ready .reveal-target {
        opacity: 1;
        transform: none;
    }
}
