:root {
    --bg: #0b0b0b;
    --surface: #1a1a1a;
    --surface-2: #1f1f1f;
    --border: #262626;
    --text: #ffffff;
    --muted: #bdbdbd;
    --soft: #7b7b7b;
    --accent: #e53935;
    --accent-dark: #a81212;
    --wa: #25d366;
    --container: 1200px;
    --header-h: 80px;
    --radius: 22px;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(229, 57, 53, 0.12), transparent 28%),
        linear-gradient(180deg, #111111 0%, #090909 30%, #0b0b0b 100%);
    color: var(--text);
    font-family: "Manrope", sans-serif;
}

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

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

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.display {
    margin: 0;
    font-family: "Anton", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.92;
}

.display span,
.section-title span,
.hero h1 span,
.final-cta h2 span {
    color: var(--accent);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
    background: rgba(11, 11, 11, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-bar {
    width: 8px;
    height: 34px;
    background: var(--accent);
}

.brand-text {
    font-family: "Anton", sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.brand-text span {
    color: var(--accent);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a,
.mobile-nav a {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-link:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 800;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 18px 38px rgba(229, 57, 53, 0.22);
}

.button-primary:hover {
    background: #ff433f;
}

.button-ghost {
    background: transparent;
    border-color: #2f2f2f;
    color: #fff;
}

.button-ghost:hover {
    border-color: var(--accent);
    background: rgba(229, 57, 53, 0.08);
}

.button-light {
    background: #fff;
    color: var(--bg);
    border-color: #fff;
}

.button-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.button-outline-light:hover {
    background: #fff;
    color: var(--accent);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    padding: 0 20px 20px;
    background: rgba(11, 11, 11, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav.is-open {
    display: grid;
    gap: 18px;
}

.mobile-cta {
    width: fit-content;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

.hero-media,
.final-cta-media,
.audience-bg {
    position: absolute;
    inset: 0;
}

.hero-media img,
.final-cta-media img,
.audience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media img {
    object-position: 60% center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 11, 11, 0.95) 0%, rgba(11, 11, 11, 0.76) 45%, rgba(11, 11, 11, 0.35) 100%);
}

.hero-overlay-mobile {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.45) 0%, rgba(11, 11, 11, 0.8) 55%, rgba(11, 11, 11, 0.98) 100%);
}

.grain {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/></svg>");
}

.hero-accent {
    position: absolute;
    left: 0;
    top: 128px;
    width: 5px;
    height: 160px;
    background: var(--accent);
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-h) + 44px);
    padding-bottom: 40px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 9px 14px;
    border: 1px solid rgba(229, 57, 53, 0.4);
    background: rgba(229, 57, 53, 0.1);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
}

.light-badge {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 rgba(229, 57, 53, 0.55);
    animation: pulse 2.4s infinite;
}

.hero h1 {
    font-size: clamp(3.6rem, 10vw, 8rem);
}

.hero-text {
    max-width: 680px;
    margin: 24px 0 0;
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.75;
    color: var(--muted);
}

.hero-actions,
.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 560px;
    margin-top: 46px;
}

.hero-stat {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat strong {
    display: block;
    margin-top: 6px;
    font-size: 0.95rem;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.section-rule {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, #710000 100%);
}

.marquee-band {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 6, 6, 0.95);
}

.marquee-track {
    display: flex;
    gap: 42px;
    width: max-content;
    padding: 20px 0;
    font-family: "Anton", sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    text-transform: uppercase;
    animation: marquee 32s linear infinite;
}

.marquee-track span:nth-child(odd) {
    color: #fff;
}

.marquee-track span:nth-child(even) {
    color: var(--accent);
}

.section {
    position: relative;
    padding: 96px 0;
}

.split-layout,
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.portrait-card,
.map-frame {
    position: relative;
}

.frame-outline {
    position: absolute;
    inset: -16px auto auto -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    pointer-events: none;
}

.frame-right {
    inset: -16px -16px auto auto;
}

.portrait-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--surface);
}

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

.portrait-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.82) 100%);
}

.portrait-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.mini-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.portrait-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-head,
.section-copy {
    max-width: 760px;
}

.section-kicker {
    margin: 0;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.section-title {
    margin-top: 18px;
    font-size: clamp(2.7rem, 6vw, 5rem);
}

.divider {
    width: 56px;
    height: 2px;
    margin-top: 24px;
    background: var(--accent);
}

.section-text {
    margin-top: 24px;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.85;
}

.surface-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.surface-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 57, 53, 0.7);
    background: rgba(31, 31, 31, 0.96);
}

.badge-grid,
.benefits-grid,
.audience-grid,
.plans-grid,
.testimonials-grid,
.media-grid {
    display: grid;
    gap: 20px;
}

.badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
}

.badge-card,
.audience-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
}

.badge-card strong,
.audience-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
}

.icon-box,
.check-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border: 1px solid rgba(229, 57, 53, 0.3);
    background: rgba(229, 57, 53, 0.14);
    color: var(--accent);
    font-weight: 800;
}

.check-box {
    background: var(--accent);
    color: #fff;
    font-size: 1.2rem;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.stats-strip strong {
    display: block;
    font-family: "Anton", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    line-height: 1;
}

.stats-strip span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.accent {
    color: var(--accent);
}

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

.benefit-card {
    position: relative;
    padding: 28px;
}

.card-index {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: "Anton", sans-serif;
    color: #3a3a3a;
    font-size: 1rem;
}

.benefit-card h3,
.media-copy h3 {
    margin: 0;
    font-family: "Anton", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.benefit-card h3 {
    font-size: 1.5rem;
}

.benefit-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-cta,
.plans-main-cta,
.centered-cta {
    margin-top: 52px;
}

.section-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.section-cta p {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.section-cta span {
    color: var(--muted);
}

.audience-section {
    overflow: hidden;
}

.audience-bg img {
    opacity: 0.22;
}

.audience-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.96) 0%, rgba(11, 11, 11, 0.82) 45%, rgba(11, 11, 11, 0.98) 100%);
}

.audience-content {
    position: relative;
    z-index: 1;
}

.audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 44px;
}

.plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.plan-highlight {
    border-color: var(--accent);
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(229, 57, 53, 0.18);
}

.plan-flag {
    position: absolute;
    top: -14px;
    left: 28px;
    padding: 7px 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.plan-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
}

.plan-head h3 {
    font-size: 2.6rem;
}

.plan-head span {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-top: 22px;
}

.plan-price small,
.plan-price span {
    color: var(--muted);
}

.plan-price strong {
    font-family: "Anton", sans-serif;
    font-size: 4rem;
    line-height: 0.9;
}

.plan-price-consult strong {
    font-size: 2.5rem;
}

.plan-note {
    margin: 10px 0 0;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.plan-card ul {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    color: #ececec;
    flex: 1;
}

.plan-card li::before {
    content: "-";
    color: var(--accent);
    margin-right: 10px;
}

.plan-card .button {
    margin-top: 28px;
}

.plans-main-cta,
.centered-cta {
    text-align: center;
}

.with-rating {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.rating-chip {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.rating-chip span {
    color: var(--muted);
}

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

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
}

.testimonial-card p {
    margin: 0;
    color: #ececec;
    line-height: 1.8;
}

.testimonial-card strong {
    display: block;
    padding-top: 16px;
    margin-top: auto;
    border-top: 1px solid var(--border);
}

.testimonial-card span {
    color: var(--muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
}

.media-card {
    overflow: hidden;
}

.media-card img {
    aspect-ratio: 16 / 10;
    width: 100%;
    object-fit: cover;
    opacity: 0.84;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.media-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.media-copy {
    padding: 24px;
}

.media-copy span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.media-copy h3 {
    font-size: 1.45rem;
    line-height: 1.12;
}

.location-list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.location-item small {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.location-item strong {
    display: block;
    margin-top: 8px;
    font-size: 1.15rem;
}

.location-item p {
    margin: 6px 0 0;
    color: var(--muted);
}

.map-frame {
    min-height: 460px;
}

.map-frame iframe {
    width: 100%;
    min-height: 460px;
    border: 1px solid var(--border);
    filter: grayscale(1) contrast(1.08) brightness(0.88);
    background: var(--surface);
}

.final-cta {
    position: relative;
    overflow: hidden;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.6)),
        linear-gradient(135deg, rgba(229, 57, 53, 0.82), rgba(148, 15, 15, 0.68));
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 110px 0;
}

.final-cta h2 {
    font-size: clamp(3.6rem, 8vw, 7.4rem);
}

.final-cta h2 span {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 6px;
    text-underline-offset: 10px;
}

.final-cta p {
    max-width: 760px;
    margin: 26px auto 0;
    font-size: clamp(1.12rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.96);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 42px;
    padding: 62px 0 40px;
}

.footer-text,
.footer-address {
    color: var(--muted);
    line-height: 1.8;
}

.footer-title {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.footer-link {
    display: block;
    margin-bottom: 12px;
    color: #ececec;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.floating-wa {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    color: #fff;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.floating-wa.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-wa-ping {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.3);
    animation: ping 2s infinite;
}

.floating-wa-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--wa);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.55);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(229, 57, 53, 0);
    }
}

@keyframes ping {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    70%, 100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

@media (max-width: 1100px) {
    .benefits-grid,
    .plans-grid,
    .testimonials-grid,
    .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-layout,
    .location-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 840px) {
    :root {
        --header-h: 72px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-block;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero-media img {
        object-position: center;
    }

    .hero-accent {
        top: 110px;
        width: 3px;
        height: 96px;
    }

    .hero-content {
        padding-top: calc(var(--header-h) + 34px);
    }

    .hero-stats,
    .badge-grid,
    .audience-grid,
    .benefits-grid,
    .plans-grid,
    .testimonials-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .with-rating,
    .section-cta,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions,
    .location-actions,
    .center-mobile {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button,
    .location-actions .button,
    .center-mobile .button {
        width: 100%;
    }

    .stats-strip,
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section,
    .final-cta-content {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .button {
        min-height: 50px;
        padding: 0 18px;
        letter-spacing: 0.12em;
    }

    .floating-wa {
        right: 14px;
        bottom: 14px;
    }

    .floating-wa-pill {
        min-height: 52px;
        padding: 0 16px;
        font-size: 0.72rem;
    }
}
