:root {
    --color-primary: #ff6b00;
    --color-primary-dark: #df5900;
    --color-secondary: #102033;
    --color-accent: #ffd5b8;
    --color-text: #263238;
    --color-muted: #607080;
    --color-surface: #ffffff;
    --color-surface-alt: #f4f7fb;
    --color-border: #dfe7ef;
    --shadow-soft: 0 12px 30px rgba(16, 32, 51, 0.08);
    --shadow-strong: 0 18px 40px rgba(16, 32, 51, 0.14);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(255, 107, 0, 0.12), transparent 28%),
        linear-gradient(180deg, #fefefe 0%, #f4f7fb 100%);
}

body.menu-open {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.15;
    color: var(--color-secondary);
}

p {
    color: var(--color-text);
}

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

.section {
    padding: 88px 0;
}

.section-shell {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(223, 231, 239, 0.8);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    padding: 32px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-top: 18px;
    margin-bottom: 18px;
}

.section-subtitle {
    max-width: 720px;
    color: var(--color-muted);
    font-size: 1.05rem;
}

.text-primary {
    color: var(--color-primary);
}

.text-muted {
    color: var(--color-muted);
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #ff8740);
    box-shadow: 0 14px 30px rgba(255, 107, 0, 0.28);
}

.btn-secondary {
    color: var(--color-secondary);
    background: #fff;
    border: 1px solid rgba(16, 32, 51, 0.12);
    box-shadow: var(--shadow-soft);
}

.btn-dark {
    color: #fff;
    background: var(--color-secondary);
    box-shadow: 0 14px 28px rgba(16, 32, 51, 0.26);
}

.topbar {
    background: var(--color-secondary);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 48px;
}

.topbar__items {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.topbar i {
    color: var(--color-primary);
    margin-right: 8px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 200;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(223, 231, 239, 0.8);
}

.header .container {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 20px;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: var(--color-secondary);
}

.brand img {
    width: 60px;
}

.brand__text span {
    display: block;
    font-size: 0.82rem;
    color: var(--color-muted);
    font-weight: 600;
}

.nav {
    justify-self: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__list a {
    position: relative;
    font-weight: 600;
    color: var(--color-secondary);
}

.nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--color-primary);
    transition: transform 0.25s ease;
}

.nav__list a:hover::after,
.nav__list a:focus-visible::after {
    transform: scaleX(1);
}

.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.header__phone {
    font-weight: 800;
    color: var(--color-secondary);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(16, 32, 51, 0.12);
    border-radius: 14px;
    background: #fff;
    color: var(--color-secondary);
}

.hero {
    padding: 78px 0 40px;
    background:
        radial-gradient(circle at top left, rgba(255, 107, 0, 0.08), transparent 24%),
        linear-gradient(180deg, #fff8f1 0%, #ffffff 42%);
}

.hero__panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 38px;
    padding: 48px;
    background:
        linear-gradient(140deg, rgba(13, 29, 45, 0.99), rgba(20, 43, 67, 0.96) 58%, rgba(32, 58, 83, 0.95)),
        radial-gradient(circle at top right, rgba(255, 107, 0, 0.28), transparent 30%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    box-shadow: 0 34px 70px rgba(16, 32, 51, 0.24);
    color: #fff;
}

.hero__panel::before {
    content: "";
    position: absolute;
    inset: auto -100px -100px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.14);
}

.hero__panel::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    pointer-events: none;
}

.hero__content,
.hero__media {
    position: relative;
    z-index: 1;
}

.hero__title {
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    margin: 20px 0 18px;
    line-height: 1.02;
    max-width: 11ch;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 640px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 26px 0 22px;
}

.hero__trustline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero__trustline span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero__trustline i {
    color: #ffb37a;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.hero__price-bubble {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(8, 19, 29, 0.2);
    max-width: 260px;
}

.hero__price-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__price-bubble strong {
    font-size: 1.55rem;
    color: #fff;
    line-height: 1.1;
}

.hero__price-bubble small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.stat-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(8px);
}

.stat-card strong {
    display: block;
    font-size: 1.3rem;
    color: #fff;
}

.stat-card span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.74);
}

.hero__media figure {
    height: 100%;
    min-height: 420px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
}

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

.hero__media-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(13, 29, 45, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 32px rgba(8, 19, 29, 0.26);
}

.hero__media-badge strong {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.72);
}

.hero__media-badge span {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
}

.hero__media figcaption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    max-width: 290px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-secondary);
    box-shadow: var(--shadow-soft);
}

.hero__media figcaption strong {
    display: block;
    margin-bottom: 6px;
}

.breadcrumb {
    margin-top: 18px;
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-muted);
}

.breadcrumb__list li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: rgba(96, 112, 128, 0.42);
}

.card {
    height: 100%;
    padding: 26px;
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid rgba(223, 231, 239, 0.85);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(16, 32, 51, 0.12);
    border-color: rgba(255, 107, 0, 0.18);
}

.card h3 {
    font-size: 1.28rem;
    margin-bottom: 12px;
}

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

.icon-badge {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.service-card .links-inline,
.location-card .links-inline {
    margin-top: 18px;
}

.home-zones,
.home-services {
    position: relative;
    overflow: hidden;
}

.section--compact {
    padding-top: 6px;
}

.home-zones {
    background:
        linear-gradient(180deg, rgba(247, 250, 253, 0.98), rgba(255, 255, 255, 0.98)),
        radial-gradient(circle at top right, rgba(255, 107, 0, 0.08), transparent 24%);
}

.home-services {
    background:
        linear-gradient(180deg, rgba(13, 29, 45, 0.03), rgba(255, 255, 255, 0.98)),
        radial-gradient(circle at top left, rgba(255, 107, 0, 0.08), transparent 20%);
}

.home-pricing {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(13, 29, 45, 0.98), rgba(21, 45, 69, 0.95)),
        radial-gradient(circle at top right, rgba(255, 107, 0, 0.22), transparent 28%);
    box-shadow: 0 30px 60px rgba(16, 32, 51, 0.16);
    color: #fff;
}

.home-pricing::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    pointer-events: none;
}

.home-pricing .section-title,
.home-pricing .section-subtitle,
.home-pricing .eyebrow {
    position: relative;
    z-index: 1;
}

.home-pricing .section-title {
    color: #fff;
}

.home-pricing .section-subtitle {
    color: rgba(255, 255, 255, 0.78);
    max-width: 760px;
}

.home-pricing__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.home-pricing__card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.home-pricing__card strong,
.home-pricing__card span,
.home-pricing__card small {
    display: block;
}

.home-pricing__card strong {
    color: #fff;
    font-size: 0.98rem;
    margin-bottom: 10px;
}

.home-pricing__card span {
    color: #ffcfab;
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.home-pricing__card small {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.5;
}

.home-pricing__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
}

.home-pricing__footer p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 780px;
}

.location-card,
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.location-card::after,
.service-card::after {
    content: "";
    position: absolute;
    inset: auto -50px -50px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.06);
    pointer-events: none;
}

.location-card__top,
.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.location-card__code,
.service-card__price {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
}

.location-card__code {
    background: rgba(16, 32, 51, 0.08);
    color: var(--color-secondary);
}

.service-card__price {
    background: rgba(255, 107, 0, 0.12);
    color: #d95a00;
    text-align: right;
}

.location-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.location-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(16, 32, 51, 0.05);
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.location-card__meta i {
    color: var(--color-primary);
}

.location-card__note {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.location-card__note p {
    color: var(--color-secondary);
}

.location-card__footer,
.service-card__footer {
    position: relative;
    z-index: 1;
}

.service-card__footer {
    margin-top: 18px;
}

.service-card__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(16, 32, 51, 0.06);
    color: var(--color-secondary);
    font-size: 0.92rem;
    font-weight: 700;
}

.service-card__phone i {
    color: var(--color-primary);
}

.links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.links-inline a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(16, 32, 51, 0.04);
    color: var(--color-secondary);
    font-size: 0.92rem;
    font-weight: 600;
}

.links-inline a:hover {
    background: rgba(255, 107, 0, 0.12);
}

.home-services .badge-row span {
    background: rgba(16, 32, 51, 0.06);
    border: 1px solid rgba(16, 32, 51, 0.06);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.pricing-table th,
.pricing-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}

.pricing-table th {
    background: var(--color-secondary);
    color: #fff;
}

.pricing-table tr:nth-child(even) td {
    background: rgba(244, 247, 251, 0.8);
}

.content-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 28px;
    margin-top: 28px;
}

.rich-text p + p {
    margin-top: 16px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--color-text);
}

.check-list i {
    color: var(--color-primary);
    margin-top: 4px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(223, 231, 239, 0.9);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: transparent;
    border: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    color: var(--color-secondary);
    cursor: pointer;
}

.faq-question i {
    color: var(--color-primary);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer__inner {
    padding: 0 24px 24px;
    color: var(--color-muted);
}

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

.link-grid a {
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(223, 231, 239, 0.88);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    color: var(--color-secondary);
}

.link-grid a span {
    display: block;
    margin-top: 6px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-muted);
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--color-primary), #ff9150);
    color: #fff;
    box-shadow: 0 24px 40px rgba(255, 107, 0, 0.24);
}

.cta-band::after {
    content: "";
    position: absolute;
    inset: -40px auto auto 65%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.cta-band h2,
.cta-band p {
    position: relative;
    z-index: 1;
    color: #fff;
}

.cta-band__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.footer {
    padding: 36px 0 110px;
    background: var(--color-secondary);
    color: rgba(255, 255, 255, 0.8);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 28px;
}

.footer h3,
.footer h4,
.footer a {
    color: #fff;
}

.footer p,
.footer li {
    color: rgba(255, 255, 255, 0.74);
}

.footer ul {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 220;
    display: grid;
    gap: 12px;
}

.floating-actions a {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.28rem;
    box-shadow: var(--shadow-strong);
}

.floating-actions .call {
    background: linear-gradient(135deg, var(--color-primary), #ff8c43);
}

.floating-actions .whatsapp {
    background: linear-gradient(135deg, #1fa855, #25d366);
}

.mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 210;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(223, 231, 239, 0.9);
    box-shadow: 0 -10px 30px rgba(16, 32, 51, 0.08);
}

.mobile-bar__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.cookie-banner {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 230;
    width: min(420px, calc(100% - 36px));
    padding: 22px;
    border-radius: 22px;
    background: rgba(16, 32, 51, 0.96);
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.84);
    margin-top: 10px;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.cookie-banner__actions button {
    flex: 1;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.badge-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--color-secondary);
    font-weight: 700;
}

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

.lead-list strong {
    display: block;
    margin-bottom: 6px;
}

.note-box {
    padding: 20px 22px;
    border-left: 4px solid var(--color-primary);
    border-radius: 16px;
    background: rgba(255, 107, 0, 0.08);
}

@media (max-width: 1120px) {
    .grid-4,
    .link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero__panel,
    .grid-2,
    .content-columns,
    .footer__grid {
        grid-template-columns: 1fr;
    }

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

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

    .home-pricing__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .header .container {
        grid-template-columns: auto 1fr auto;
    }

    .nav {
        position: fixed;
        inset: 84px 16px auto 16px;
        padding: 20px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(223, 231, 239, 0.9);
        box-shadow: var(--shadow-strong);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .header__cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .section {
        padding: 72px 0;
    }

    .hero__panel {
        padding: 32px 24px;
    }

    .home-pricing {
        padding: 26px;
    }

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

@media (max-width: 640px) {
    .topbar .container {
        justify-content: center;
    }

    .topbar__items {
        justify-content: center;
    }

    .hero {
        padding-top: 40px;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__stats,
    .grid-3,
    .grid-4,
    .link-grid,
    .mobile-bar__actions {
        grid-template-columns: 1fr;
    }

    .hero__price-bubble {
        max-width: none;
    }

    .home-pricing__grid {
        grid-template-columns: 1fr;
    }

    .section-shell,
    .card,
    .cta-band {
        padding: 24px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 90px;
        width: auto;
    }

    .floating-actions {
        right: 12px;
        bottom: 92px;
    }

    .mobile-bar {
        display: block;
    }
}
