:root {
    --ink: #19212a;
    --ink-soft: #3f4b56;
    --muted: #68747e;
    --paper: #fffaf1;
    --paper-2: #f4ead9;
    --white: #ffffff;
    --line: #ddcfb9;
    --teal: #166b5d;
    --teal-dark: #0d3f38;
    --sage: #75936f;
    --sun: #f3b43f;
    --blue: #2f5f88;
    --shadow-soft: 0 18px 48px rgba(57, 43, 24, 0.14);
    --shadow-tight: 0 10px 24px rgba(57, 43, 24, 0.12);
    --radius: 8px;
    --max-width: 1160px;
    --font-main: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-main);
    line-height: 1.55;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

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

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 2000;
    padding: 10px 14px;
    color: var(--white);
    background: var(--teal-dark);
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    background: var(--paper);
}

.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(255, 250, 241, 0.92);
    border-bottom: 1px solid rgba(221, 207, 185, 0.8);
    backdrop-filter: blur(18px);
}

.nav-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}

.brand-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    filter: drop-shadow(0 8px 14px rgba(22, 107, 93, 0.22));
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: grid;
    gap: 1px;
}

.brand-text strong {
    font-size: 1rem;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    font-weight: 800;
}

.nav-links a {
    color: var(--ink);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links [aria-current="page"] {
    color: var(--teal);
}

.nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    color: var(--white) !important;
    background: var(--teal);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(22, 107, 93, 0.18);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--teal-dark);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    border-radius: 2px;
}

.hero {
    position: relative;
    overflow: hidden;
}

.home-hero {
    min-height: 84svh;
    display: flex;
    align-items: center;
    color: var(--white);
    background: var(--teal-dark);
}

.hero-photo,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-photo {
    background-image:
        image-set(url("../img/hero-support.webp") type("image/webp"), url("../img/hero-support.png") type("image/png"));
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(20, 30, 28, 0.9) 0%, rgba(20, 30, 28, 0.72) 42%, rgba(20, 30, 28, 0.14) 74%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 136px 0 58px;
}

.kicker {
    margin: 0 0 12px;
    color: var(--sun);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    text-wrap: pretty;
}

h1,
h2 {
    letter-spacing: 0;
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(3rem, 6.2vw, 6.4rem);
    line-height: 0.96;
}

.hero-copy {
    max-width: 660px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    line-height: 1.15;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.btn-primary {
    color: var(--white);
    background: var(--teal);
    box-shadow: 0 12px 26px rgba(22, 107, 93, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--teal-dark);
}

.btn-light {
    color: var(--ink);
    background: var(--sun);
}

.btn-dark {
    color: var(--white);
    background: var(--teal);
}

.btn-outline {
    color: var(--teal-dark);
    background: transparent;
    border-color: rgba(22, 107, 93, 0.35);
}

.btn-full {
    width: 100%;
}

.service-ribbon {
    width: min(100%, 760px);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 42px;
}

.service-ribbon span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.section {
    padding: 92px 0;
}

.hello-section,
.pricing-hero,
.tariff-overview,
.service-detail-section {
    background: var(--paper);
}

.hello-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.hello-title {
    position: relative;
    padding-left: 26px;
}

.hello-title::before {
    content: "";
    position: absolute;
    inset: 10px auto 12px 0;
    width: 6px;
    background: linear-gradient(var(--sun), var(--teal));
    border-radius: 999px;
}

.hello-title h2,
.section-intro h2,
.care-copy h2,
.privacy-layout h2,
.contact-copy h2,
.pricing-cta h2,
.page-hero h1 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 4.15rem);
    line-height: 1.02;
}

.hello-note {
    padding: 28px 0 28px 34px;
    border-left: 1px solid var(--line);
}

.hello-note p,
.section-intro p,
.care-copy p,
.privacy-layout p,
.contact-copy p,
.page-hero p,
.pricing-cta p {
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.friendly-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.friendly-list li {
    position: relative;
    padding-left: 28px;
    color: var(--ink-soft);
}

.friendly-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 13px;
    height: 13px;
    background: var(--teal);
    border: 3px solid #d9ebe4;
    border-radius: 999px;
}

.services-section,
.method-section,
.contact-section,
.travel-section {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
        var(--paper-2);
    background-size: 30px 30px;
}

.services-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.section-intro {
    max-width: 720px;
}

.section-intro.narrow {
    max-width: 780px;
}

.section-intro h2 {
    margin-bottom: 18px;
}

.service-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: sticky;
    top: 98px;
    border: 10px solid var(--white);
    border-radius: 18px 18px 18px 4px;
    box-shadow: var(--shadow-soft);
    transform: rotate(0.8deg);
    overflow: hidden;
}

.service-image img,
.care-image img,
.page-hero-image img,
.included-note img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-ledger {
    display: grid;
    gap: 10px;
}

.service-ledger article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(96, 74, 45, 0.22);
}

.service-ledger span {
    color: var(--teal);
    font-size: 1.35rem;
    font-weight: 950;
}

.service-ledger h3,
.timeline h3,
.tariff-list h3,
.plan-comparison h3,
.service-detail-grid h3 {
    margin: 0 0 6px;
    line-height: 1.15;
}

.service-ledger h3,
.service-ledger p {
    grid-column: 2;
}

.service-ledger p,
.timeline p,
.tariff-list p,
.service-detail-grid p,
.plan-comparison li,
.included-note p {
    margin: 0;
    color: var(--ink-soft);
}

.price-preview {
    color: var(--white);
    background: var(--teal-dark);
}

.price-preview-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.price-preview h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4.2vw, 4.2rem);
    line-height: 1.02;
}

.price-preview p {
    color: rgba(255, 255, 255, 0.78);
}

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

.price-tickets div {
    min-height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    color: var(--ink);
    background: #fff6e5;
    border: 1px solid rgba(243, 180, 63, 0.34);
    border-left: 6px solid var(--sun);
    border-radius: 18px 18px 18px 6px;
}

.price-tickets span {
    color: var(--ink-soft);
    font-weight: 800;
}

.price-tickets strong {
    color: var(--teal-dark);
    font-size: 1.72rem;
}

.care-section {
    background: var(--paper);
}

.care-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 50px;
    align-items: center;
}

.care-image {
    border-radius: 24px 24px 6px 24px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.care-copy {
    padding: 24px 0;
}

.timeline {
    position: relative;
    display: grid;
    gap: 0;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: rgba(22, 107, 93, 0.2);
}

.timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 18px;
    padding: 18px 0;
}

.timeline span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--teal);
    border: 5px solid var(--paper-2);
    border-radius: 999px;
    font-weight: 950;
}

.timeline div {
    padding: 2px 0 18px;
    border-bottom: 1px solid rgba(96, 74, 45, 0.2);
}

.privacy-strip {
    color: var(--white);
    background: var(--ink);
}

.privacy-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.privacy-layout p {
    color: rgba(255, 255, 255, 0.78);
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--white);
    border-bottom: 2px solid var(--sun);
    font-weight: 900;
}

.faq-section {
    background: var(--paper);
}

.faq-section .section-intro h2 {
    font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 50px;
}

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

details {
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d4c2a6;
    border-radius: 14px;
}

summary {
    cursor: pointer;
    padding: 18px 0;
    font-weight: 900;
}

details p {
    margin: 0 0 20px;
    color: var(--ink-soft);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    max-width: 360px;
    margin-top: 14px;
    padding: 6px 0 6px 18px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-left: 4px solid var(--teal);
    border-radius: 0;
}

.contact-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.contact-card a {
    color: var(--teal-dark);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.is-hidden {
    display: none !important;
}

.contact-form {
    padding: 10px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(221, 207, 185, 0.9);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.form-row,
.form-grid {
    margin: 0;
}

.form-row {
    display: grid;
    gap: 11px;
    padding: 12px;
}

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

.form-row label {
    font-weight: 900;
    line-height: 1.2;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid #d6c5aa;
    border-radius: 12px;
}

.form-row textarea {
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: 4px solid rgba(243, 180, 63, 0.26);
    border-color: var(--teal);
}

.form-consent-note {
    margin: 12px 12px 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.form-consent-note a {
    color: var(--teal-dark);
    font-weight: 700;
    text-decoration: underline;
}

.form-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.cf-turnstile {
    min-height: 65px;
    margin: 0 12px 16px;
}

.form-status {
    min-height: 24px;
    margin: 14px 12px 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.form-status.error {
    color: #9d2f24;
}

.form-status.success {
    color: var(--teal-dark);
}

.footer {
    padding: 54px 0 24px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--teal-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.7fr 0.8fr;
    gap: 42px;
}

.footer .footer-brand {
    color: var(--white);
    font-weight: 900;
}

.footer p {
    max-width: 430px;
}

.footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 1rem;
}

.footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
}

.page-hero {
    padding: 126px 0 74px;
}

.page-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 44px;
    align-items: center;
}

.page-hero-image {
    border-radius: 28px 28px 8px 28px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.tariff-list {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.tariff-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.tariff-list article:last-child {
    border-bottom: 1px solid var(--line);
}

.tariff-list strong {
    min-width: 148px;
    color: var(--teal-dark);
    font-size: 1.25rem;
    text-align: right;
}

.tariff-tag {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 10px;
    color: #073b35;
    background: #c7e1d5;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 950;
}

.travel-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 44px;
    align-items: center;
}

.travel-layout h2,
.subscriptions-section h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.03;
}

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

.distance-board div {
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px 16px 16px 4px;
}

.distance-board span {
    color: var(--muted);
    font-weight: 900;
}

.distance-board strong {
    color: var(--teal-dark);
    font-size: 1.28rem;
}

.subscriptions-section {
    background: var(--paper);
}

.subscription-layout {
    display: grid;
    gap: 34px;
}

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

.plan-comparison article {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px 18px 18px 4px;
}

.plan-comparison .featured-plan {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-tight);
}

.plan-comparison strong {
    display: block;
    margin: 10px 0 20px;
    color: var(--teal-dark);
    font-size: 2rem;
}

.featured-plan strong,
.featured-plan li {
    color: rgba(255, 255, 255, 0.88);
}

.plan-comparison ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
}

.included-note {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: center;
    padding: 28px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.included-note picture {
    border-radius: 18px;
    overflow: hidden;
}

.included-note h3 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    line-height: 1.08;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.service-detail-grid article {
    padding-top: 16px;
    border-top: 4px solid var(--sun);
}

.pricing-cta {
    max-width: 860px;
    text-align: center;
}

.privacy-content {
    max-width: 860px;
}

.privacy-content h2 {
    margin-top: 42px;
    font-size: 1.6rem;
}

.privacy-content p,
.privacy-content li {
    color: var(--ink-soft);
}

.privacy-content a {
    color: var(--teal-dark);
    font-weight: 900;
}

@media (max-width: 1000px) {

    .hello-layout,
    .services-layout,
    .price-preview-layout,
    .care-layout,
    .privacy-layout,
    .faq-layout,
    .contact-layout,
    .page-hero-layout,
    .travel-layout,
    .included-note,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        grid-column: auto;
        grid-row: auto;
        position: static;
    }

    .distance-board,
    .service-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 74px;
    }

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

    .nav-container {
        min-height: 68px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-text small {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        inset: 68px 0 auto;
        display: grid;
        gap: 0;
        padding: 12px 14px 20px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-tight);
        transform: translateY(calc(-100% - 74px));
        pointer-events: none;
        transition: transform 0.2s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        display: flex;
        min-height: 46px;
        align-items: center;
    }

    .nav-cta {
        margin-top: 8px;
        justify-content: center;
    }

    .home-hero {
        min-height: 92svh;
        align-items: end;
    }

    .hero-photo {
        background-image:
            image-set(url("../img/hero-mobile.webp") type("image/webp"), url("../img/hero-mobile.png") type("image/png"));
        background-position: center top;
    }

    .hero-shade {
        background:
            linear-gradient(180deg, rgba(22, 18, 12, 0.08) 0%, rgba(22, 18, 12, 0.34) 34%, rgba(18, 25, 25, 0.94) 84%),
            linear-gradient(90deg, rgba(18, 25, 25, 0.76), rgba(18, 25, 25, 0.18));
    }

    .hero-inner {
        padding: 104px 0 28px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4rem);
        max-width: 10ch;
    }

    .hero-copy {
        max-width: 32ch;
        font-size: 1.02rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .service-ribbon {
        gap: 6px;
        margin-top: 28px;
    }

    .service-ribbon span {
        min-height: 32px;
        font-size: 0.82rem;
    }

    .section {
        padding: 66px 0;
    }

    .hello-title {
        padding-left: 18px;
    }

    .hello-note {
        padding: 0;
        border-left: 0;
    }

    .service-image,
    .care-image,
    .page-hero-image {
        border-width: 7px;
        transform: none;
    }

    .price-tickets,
    .form-grid,
    .distance-board,
    .plan-comparison,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .plan-comparison .featured-plan {
        transform: none;
    }

    .tariff-list article {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tariff-list strong {
        text-align: left;
    }

    .page-hero {
        padding-top: 104px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}