@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src:
        url("../fonts/roboto/roboto-400.woff2") format("woff2"),
        url("../fonts/roboto/roboto-400.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src:
        url("../fonts/roboto/roboto-500.woff2") format("woff2"),
        url("../fonts/roboto/roboto-500.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src:
        url("../fonts/roboto/roboto-700.woff2") format("woff2"),
        url("../fonts/roboto/roboto-700.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src:
        url("../fonts/roboto/roboto-800.woff2") format("woff2"),
        url("../fonts/roboto/roboto-800.ttf") format("truetype");
}

:root {
    --bg: #091117;
    --bg-elevated: #101b22;
    --bg-soft: #13242d;
    --surface: rgba(16, 27, 34, 0.82);
    --surface-strong: rgba(11, 19, 24, 0.94);
    --text: #f7f1e8;
    --muted: #a3b5c0;
    --accent: #ff4d40;
    --accent-deep: #c9261b;
    --accent-soft: rgba(255, 77, 64, 0.16);
    --border: rgba(255, 255, 255, 0.1);
    --focus: #ffd36e;
    --success: #4ac59b;
    --warning: #ffb74d;
    --error: #ff8c85;
    --shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
    --radius-lg: 2rem;
    --radius-md: 1.25rem;
    --radius-sm: 0.875rem;
    --shell: min(1240px, calc(100vw - 2.75rem));
    --header-height: 5.5rem;
    --font-display: "Roboto", Arial, sans-serif;
    --font-body: "Roboto", Arial, sans-serif;
    --font-accent: "Roboto", Arial, sans-serif;
}

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

html {
    color-scheme: dark;
}

body {
    margin: 0;
    min-height: 100svh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 77, 64, 0.28), transparent 24%),
        radial-gradient(circle at bottom left, rgba(77, 168, 255, 0.12), transparent 24%),
        linear-gradient(180deg, #071015 0%, #091117 34%, #050b0f 100%);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.has-modal-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    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: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
    pointer-events: none;
    z-index: -1;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    touch-action: manipulation;
}

a,
button,
input,
select,
textarea,
summary {
    -webkit-tap-highlight-color: rgba(255, 77, 64, 0.25);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.05;
    letter-spacing: 0;
    text-wrap: balance;
}

p {
    margin: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 200;
    transform: translateY(-180%);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--text);
    color: #081015;
    transition: transform 0.18s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.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;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.eyebrow {
    margin-bottom: 1rem;
    color: #ffc3bd;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.4rem;
    max-width: none;
    justify-items: start;
}

.section-heading--wide {
    max-width: none;
}

.section-heading--compact {
    margin-bottom: 0;
}

.section-heading h2,
.page-hero__inner h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    width: 100%;
    max-width: 62rem;
    text-align: left;
    text-wrap: wrap;
}

.section-heading p:last-child,
.page-hero__inner p:last-child {
    max-width: 58rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(5, 11, 15, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.8rem;
}

.brand img {
    width: min(176px, 42vw);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-list a,
.button,
.text-link,
summary {
    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease,
        opacity 0.18s ease;
}

.nav-list a {
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
}

.nav-list a:hover,
.nav-list a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.header-mobile-tools {
    display: none;
    align-items: center;
    gap: 0.55rem;
}

.header-utility-button,
.nav-toggle {
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.header-utility-button {
    display: inline-flex;
}

.nav-toggle {
    display: none;
}

.header-utility-button:hover,
.header-utility-button:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.icon {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff6f4;
    box-shadow: 0 18px 30px rgba(255, 77, 64, 0.22);
}

.button-secondary {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.button-whatsapp {
    border-color: rgba(37, 211, 102, 0.28);
}

.button-secondary.button-whatsapp {
    color: #effff5;
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
    background: #25d366;
    border-color: #25d366;
    color: #04150c;
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.24);
}

.button-block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #ffd2cd;
    font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
    color: #fff;
}

.hero-section {
    padding-top: clamp(2.4rem, 4vw, 3.6rem);
    padding-bottom: clamp(3rem, 5vw, 4.8rem);
}

.hero-section > .shell {
    width: var(--shell);
}

.hero-grid,
.split-grid,
.contact-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(28rem, 1.04fr);
    gap: clamp(1.5rem, 3vw, 4rem);
    align-items: end;
}

.split-grid,
.contact-grid {
    align-items: start;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 49rem;
}

.hero-copy h1 {
    font-size: clamp(3rem, 4.9vw, 4.95rem);
    max-width: 13.2ch;
}

.hero-description {
    margin-top: 1.35rem;
    max-width: 40rem;
    color: var(--muted);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.35rem;
    padding: 0;
    margin: 1.8rem 0 0;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #f8ddd8;
    font-weight: 600;
    white-space: nowrap;
}

.hero-points .icon {
    width: 1rem;
    height: 1rem;
    color: var(--success);
}

.hero-media {
    position: relative;
    margin: 0;
    width: min(100%, 44rem);
    justify-self: end;
    border-radius: 2.4rem;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(255, 77, 64, 0.24), transparent 30%), #0f1820;
    box-shadow: var(--shadow);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(9, 17, 23, 0), rgba(9, 17, 23, 0.88));
}

.hero-media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center 42%;
}

.hero-media figcaption {
    position: absolute;
    inset: auto 1.25rem 1.25rem;
    z-index: 1;
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.15rem;
    border-radius: 1.1rem;
    background: rgba(9, 17, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
    max-width: calc(100% - 2.5rem);
}

.hero-media span {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffc3bd;
}

.hero-media strong {
    max-width: 24ch;
    font-size: 1rem;
}

.hero-media figcaption p {
    color: #d9e3e9;
    font-size: 0.94rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.stat-card,
.feature-card,
.support-card,
.payment-card,
.resource-card,
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 1.25rem;
}

.stat-card strong {
    display: block;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-family: var(--font-accent);
    color: #fff4f0;
}

.stat-card span {
    color: var(--muted);
}

.feature-grid,
.resource-grid,
.support-grid,
.payment-grid,
.plan-grid {
    display: grid;
    gap: 1rem;
}

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

.feature-card,
.support-card,
.resource-card,
.payment-card {
    padding: 1.4rem;
}

.feature-card h3,
.support-card h3,
.resource-card h3,
.payment-card h3,
.payment-card h4 {
    font-size: 1.22rem;
}

.feature-card p,
.support-card p,
.resource-card p,
.payment-card p {
    margin-top: 0.65rem;
    color: var(--muted);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #ffd6d2;
}

.feature-icon .icon {
    width: 1.35rem;
    height: 1.35rem;
}

.section-fiber,
.section-process,
.section-contact {
    position: relative;
}

.fiber-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: start;
}

.fiber-copy {
    display: grid;
    gap: 1.25rem;
    max-width: 34rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.fiber-pillar-list {
    display: grid;
    gap: 1rem;
}

.pillar-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.2rem 0;
    border-top: 1px solid var(--border);
}

.pillar-item:first-child {
    padding-top: 0;
    border-top: none;
}

.pillar-copy h3 {
    font-size: 1.2rem;
}

.pillar-copy p {
    margin-top: 0.45rem;
    color: var(--muted);
}

.plan-groups {
    display: grid;
    gap: 2.5rem;
}

.plan-group {
    display: grid;
    gap: 1.2rem;
}

.plan-group__intro {
    display: grid;
    gap: 0.7rem;
    max-width: 44rem;
}

.plan-group__intro h3 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.plan-group__intro p:last-child {
    color: var(--muted);
}

.plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: grid;
    gap: 1.2rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(11, 19, 24, 0.78));
    min-width: 0;
    overflow: hidden;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.plan-card.is-featured {
    border-color: rgba(255, 77, 64, 0.55);
    box-shadow: 0 24px 50px rgba(255, 77, 64, 0.18);
}

.plan-badge {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 77, 64, 0.18);
    color: #ffd7d3;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.plan-card__header {
    display: grid;
    gap: 0.4rem;
}

.plan-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.45rem;
    min-width: 0;
}

.plan-card__header h3,
.plan-card__header h4 {
    font-size: 1.25rem;
}

.plan-kicker {
    color: #ffc3bd;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    min-width: 0;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    font-size: 2rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.plan-price span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-summary {
    color: var(--muted);
}

.plan-details {
    display: grid;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
    list-style: none;
    color: #ecdad4;
}

.plan-details li {
    position: relative;
    padding-left: 1.1rem;
}

.plan-details li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: rgba(255, 77, 64, 0.8);
}

.plan-note {
    color: #d8e2e7;
    font-size: 0.9rem;
}

.plan-card .button {
    margin-top: auto;
}

.plan-legal-note {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.plan-legal-note a {
    color: #f4ddd8;
    text-decoration: underline;
    text-decoration-color: rgba(244, 221, 216, 0.4);
    text-underline-offset: 0.18rem;
}

.plans-footnote {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.plans-footnote a {
    color: #f4ddd8;
    text-decoration: underline;
    text-decoration-color: rgba(244, 221, 216, 0.4);
    text-underline-offset: 0.18rem;
}

.split-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-grid--process {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 2.5rem;
}

.process-copy {
    display: grid;
    gap: 1.2rem;
    max-width: 33rem;
}

.process-copy p:last-of-type {
    color: var(--muted);
    font-size: 1.04rem;
}

.process-list {
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: process;
}

.process-list li {
    position: relative;
    padding: 1.35rem 1.35rem 1.35rem 4.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
}

.process-list li::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    left: 1.2rem;
    top: 1.1rem;
    width: 2.1rem;
    height: 2.1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: #ffe4df;
    font-family: var(--font-accent);
    font-size: 1.15rem;
    font-weight: 700;
}

.process-list h3 {
    font-size: 1.15rem;
}

.process-list p {
    margin-top: 0.55rem;
    color: var(--muted);
}

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

.payment-card {
    display: grid;
    gap: 1rem;
    grid-template-rows: auto auto minmax(4.9rem, auto) 1fr auto;
    height: 100%;
}

.payment-card > p {
    min-height: 4.9rem;
}

.payment-placeholder {
    display: grid;
    gap: 0.35rem;
    align-content: center;
    min-height: 6rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.payment-placeholder span {
    color: #ffc3bd;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.payment-placeholder strong {
    font-size: 1rem;
    line-height: 1.4;
}

.payment-stack {
    display: grid;
    gap: 0.5rem;
    align-content: start;
    align-self: start;
}

.payment-media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-self: end;
    margin-top: 0;
    padding-top: 0;
}

.payment-media--compact {
    padding-top: 0;
}

.payment-badge-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    min-height: 2.65rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.payment-badge-list li {
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #f0ddd8;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.lookup-form {
    display: grid;
    gap: 1rem;
    align-self: start;
}

.lookup-form--compact {
    gap: 0.75rem;
}

.lookup-control {
    display: grid;
    gap: 0.8rem;
    align-content: start;
    min-height: 6rem;
}

.lookup-form label {
    font-weight: 700;
}

.lookup-form input,
.lookup-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(6, 11, 15, 0.78);
    color: var(--text);
}

.contact-form textarea {
    resize: vertical;
    min-height: 8.5rem;
}

.lookup-result {
    display: grid;
    gap: 0.75rem;
}

.lookup-result[aria-busy="true"] {
    opacity: 0.7;
}

.result-card {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 11, 15, 0.72);
}

.result-card--success {
    border-color: rgba(74, 197, 155, 0.32);
}

.result-card--warning {
    border-color: rgba(255, 183, 77, 0.34);
}

.result-card--error {
    border-color: rgba(255, 140, 133, 0.34);
}

.result-status {
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffd7d3;
}

.result-card h4 {
    font-size: 1.08rem;
}

.result-summary,
.result-note,
.result-card ul {
    color: var(--muted);
    font-size: 0.95rem;
}

.result-summary {
    margin-top: 0.35rem;
}

.result-card ul {
    display: grid;
    gap: 0.45rem;
    padding-left: 1.2rem;
    margin: 0.95rem 0 0;
}

.payment-detail {
    margin-top: 0.9rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.035);
}

.payment-detail h5 {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
}

.payment-steps {
    display: grid;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.payment-steps li {
    display: grid;
    grid-template-columns: 1.6rem minmax(0, 1fr);
    align-items: start;
    gap: 0.65rem;
}

.payment-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    background: rgba(229, 0, 25, 0.16);
    color: #ffd7d3;
    font-weight: 800;
    font-size: 0.78rem;
}

.payment-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.payment-exact-amount {
    margin-top: 0.85rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(255, 183, 77, 0.28);
    border-radius: 0.85rem;
    background: rgba(255, 183, 77, 0.1);
    color: #ffe7b8;
    font-size: 0.92rem;
}

.copy-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    margin-top: 0.85rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.04);
}

.copy-field strong,
.copy-field span {
    display: block;
}

.copy-field span {
    color: var(--muted);
    font-size: 0.82rem;
}

.copy-field strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
    word-break: break-word;
}

.copy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.copy-button:hover,
.copy-button:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.copy-button .icon {
    width: 1.05rem;
    height: 1.05rem;
}

.result-note {
    margin-top: 0.85rem;
}

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

.resource-card h2 {
    font-size: 1.15rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-list details {
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    margin-top: 0.85rem;
    color: var(--muted);
}

.contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.contact-copy {
    display: grid;
    gap: 1.2rem;
    max-width: 35rem;
}

.contact-card {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(11, 19, 24, 0.78));
}

.flash {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
}

.flash-success {
    background: rgba(74, 197, 155, 0.12);
    color: #d2ffef;
}

.flash-error {
    background: rgba(255, 140, 133, 0.12);
    color: #ffe0de;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-note {
    margin-top: 1rem;
    color: var(--muted);
}

.contact-note a {
    color: #ffd2cd;
    font-weight: 700;
}

.hero-points--stacked {
    display: grid;
    gap: 0.85rem;
}

.hero-points--stacked li {
    white-space: normal;
}

.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-hero {
    padding-top: clamp(5rem, 8vw, 6.5rem);
}

.page-hero__inner {
    display: grid;
    gap: 1rem;
    max-width: 54rem;
}

.utility-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.utility-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.utility-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 14, 0.72);
    backdrop-filter: blur(10px);
}

.utility-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 28rem);
    max-height: min(85vh, 42rem);
    overflow: auto;
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(15, 24, 31, 0.96), rgba(9, 17, 23, 0.98));
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.42);
    transform: translateY(1rem) scale(0.98);
    transition: transform 0.22s ease;
}

.utility-modal.is-open .utility-modal__panel {
    transform: translateY(0) scale(1);
}

.utility-modal__close {
    justify-self: end;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.utility-modal__copy {
    color: var(--muted);
}

.site-footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(3, 7, 10, 0.9);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-brand {
    display: grid;
    gap: 1rem;
}

.footer-brand p,
.footer-list,
.footer-meta {
    color: var(--muted);
}

.footer-grid h2 {
    margin-bottom: 0.85rem;
    font-size: 1rem;
}

.footer-list {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-list a:hover,
.footer-list a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
    color: var(--text);
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-whatsapp-fab {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: none;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    background: #25d366;
    color: #03160a;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    font-weight: 800;
    transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.mobile-whatsapp-fab .icon {
    width: 1.2rem;
    height: 1.2rem;
}

.mobile-whatsapp-fab:hover,
.mobile-whatsapp-fab:focus-visible {
    background: #1fb65a;
    color: #03160a;
}

.mobile-whatsapp-fab.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.75rem);
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

@media (max-width: 1080px) {
    .feature-grid,
    .plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fiber-layout,
    .split-grid--process {
        grid-template-columns: 1fr;
    }

    .hero-points {
        flex-wrap: wrap;
    }

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

@media (max-width: 880px) {
    .header-mobile-tools {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        inset: calc(100% + 0.8rem) 1rem auto;
        display: grid;
        gap: 1rem;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 1.25rem;
        background: #071015;
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-0.5rem);
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-list,
    .nav-actions {
        display: grid;
    }

    .nav-list a {
        padding: 0.82rem 0;
        background: transparent;
    }

    .hero-grid,
    .split-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid,
    .support-grid,
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .payment-card > p {
        min-height: 0;
    }

    .hero-section > .shell {
        width: var(--shell);
    }

    .hero-copy,
    .contact-copy,
    .process-copy {
        max-width: none;
    }

    .hero-copy h1 {
        max-width: 11ch;
    }

    .hero-media {
        width: 100%;
        justify-self: stretch;
    }

    .hero-points {
        display: grid;
        gap: 0.85rem;
    }

    .hero-points li {
        white-space: normal;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .mobile-whatsapp-fab {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --shell: min(100vw - 1.5rem, 100%);
        --header-height: 4.75rem;
    }

    .section {
        padding: 3.25rem 0;
    }

    .page-hero {
        padding-top: 3.4rem;
        padding-bottom: 2.25rem;
    }

    .page-hero + .section {
        padding-top: 1.75rem;
    }

    .section-heading h2,
    .page-hero__inner h1 {
        font-size: clamp(2rem, 9.75vw, 2.75rem);
    }

    .hero-copy h1 {
        max-width: 12ch;
        font-size: clamp(2.55rem, 12vw, 3.15rem);
    }

    .hero-description,
    .section-heading p:last-child,
    .page-hero__inner p:last-child {
        font-size: 1rem;
    }

    .stats-grid,
    .feature-grid,
    .payment-grid,
    .support-grid,
    .resource-grid,
    .plan-grid,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .hero-media {
        border-radius: 1.5rem;
    }

    .header-shell {
        gap: 0.75rem;
        min-height: var(--header-height);
        padding-block: 0.55rem;
    }

    .brand img {
        width: min(150px, 39vw);
    }

    .header-mobile-tools {
        gap: 0.45rem;
    }

    .header-utility-button,
    .nav-toggle {
        width: 2.8rem;
        height: 2.8rem;
    }

    .utility-modal__panel {
        width: 100%;
        max-height: min(88vh, 42rem);
        border-radius: 1.35rem;
    }

    .copy-field {
        align-items: flex-start;
    }

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-whatsapp-fab {
        right: 0.65rem;
        bottom: 0.65rem;
        width: 3rem;
        height: 3rem;
        justify-content: center;
        padding: 0;
        border-radius: 999px;
    }

    .mobile-whatsapp-fab span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .mobile-whatsapp-fab .icon {
        width: 1.15rem;
        height: 1.15rem;
    }

    body.has-modal-open .mobile-whatsapp-fab {
        display: none;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
