@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #020712;
    --bg-2: #030816;
    --panel: rgba(8, 18, 34, .82);
    --panel-2: rgba(10, 22, 40, .68);
    --border: rgba(80, 130, 255, .22);
    --border-strong: rgba(80, 130, 255, .58);
    --blue: #2563ff;
    --cyan: #18d8ff;
    --text: #fff;
    --secondary: rgba(255, 255, 255, .68);
    --muted: rgba(255, 255, 255, .45);
    --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 76% 2%, rgba(37, 99, 255, .2), transparent 22%),
        linear-gradient(180deg, #020712 0%, #030816 48%, #020712 100%);
}
.container {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
}

.header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
}
.header-inner {
    width: min(var(--max), calc(100% - 48px));
    height: 68px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 220px 1fr 250px;
    align-items: center;
}
.brand img { width: 154px; height: auto; display: block; }
.nav {
    display: flex;
    justify-content: center;
    gap: 56px;
    font-size: 12px;
    color: rgba(255,255,255,.86);
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.035);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}
.button-primary {
    border-color: transparent;
    background: linear-gradient(135deg, #1468ff, #3568ff);
    box-shadow: 0 14px 35px rgba(37,99,255,.32);
}
.button-secondary { background: rgba(5, 12, 24, .78); }
.header-cta {
    justify-self: end;
    width: 116px;
    min-height: 42px;
    border-radius: 10px;
}
.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}
.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
}
.language-switcher a {
    min-width: 30px;
    padding: 5px 8px;
    border-radius: 999px;
    color: rgba(235,242,255,.68);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}
.language-switcher a.is-active {
    color: #fff;
    background: rgba(38,120,255,.84);
}

.road-background {
    position: relative;
    overflow: hidden;
}
.road-background::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(140deg, transparent 0 58%, rgba(255,255,255,.08) 59%, transparent 60%),
        radial-gradient(ellipse at 76% 54%, rgba(14, 34, 62, .86), transparent 40%),
        linear-gradient(150deg, transparent 0 54%, rgba(9, 15, 24, .78) 55% 63%, transparent 64%),
        linear-gradient(132deg, transparent 0 66%, rgba(255,255,255,.14) 66.4%, transparent 67%),
        linear-gradient(165deg, transparent 0 47%, rgba(20, 32, 48, .8) 48% 54%, transparent 55%);
    opacity: .75;
}
.road-background::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 88% 22%, rgba(255, 209, 160, .16), transparent 11%),
        linear-gradient(135deg, transparent 0 55%, rgba(12, 26, 45, .9) 55.5% 64%, transparent 64.5%),
        linear-gradient(150deg, transparent 0 68%, rgba(5, 9, 16, .95) 69% 100%);
    opacity: .84;
}
.gradient-line {
    position: absolute;
    pointer-events: none;
}
.gradient-line::before {
    content: "";
    position: absolute;
    inset: 0;
    border-bottom: 2px solid rgba(37, 99, 255, .85);
    border-radius: 50%;
    filter: drop-shadow(0 0 9px rgba(37, 99, 255, .85));
}

.hero {
    position: relative;
    min-height: 640px;
    padding-top: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 35%, rgba(42,95,255,.15), transparent 34%),
        linear-gradient(180deg, #050b14 0%, #030812 100%);
}
.hero::before,
.hero::after { display: none; }
.hero-grid {
    position: relative;
    z-index: 3;
    width: min(var(--max), calc(100% - 48px));
    min-height: 640px;
    margin: 0 auto;
    padding: 84px 0 56px;
    display: grid;
    grid-template-columns: minmax(500px, 43%) minmax(0, 1fr);
    align-items: center;
    gap: 0;
}
.hero-content {
    position: relative;
    z-index: 4;
    max-width: 520px;
    padding-top: 4px;
}
.kicker {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    margin-bottom: 18px;
    padding: 0 12px;
    border: 1px solid rgba(38,120,255,.22);
    border-radius: 999px;
    background: rgba(38,120,255,.10);
    color: #4a8cff;
    font-size: 12px;
    font-weight: 500;
}
.hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 3.85vw, 56px);
    line-height: 1.01;
    letter-spacing: -.055em;
    font-weight: 500;
}
.hero h1 span {
    color: #8587ff;
}
.hero p {
    margin: 22px 0 0;
    width: auto;
    max-width: 430px;
    color: rgba(235,242,255,.82);
    font-size: 16px;
    line-height: 1.55;
}
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 30px;
}
.hero-actions .button-primary,
.hero-actions .button-secondary {
    width: 274px;
    min-height: 52px;
    border-radius: 11px;
    justify-content: space-between;
    white-space: nowrap;
    flex-wrap: nowrap;
    font-weight: 600;
}
.hero-actions .button-primary { box-shadow: 0 18px 42px rgba(37,99,255,.28); }
.hero-actions .button-secondary {
    min-height: 46px;
    background: rgba(255,255,255,.02);
    color: rgba(255,255,255,.88);
}
.circle-arrow {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-visual {
    position: relative;
    z-index: 1;
    grid-column: 2;
    width: 100%;
    height: 560px;
    margin: 0;
    overflow: hidden;
}
.hero-visual::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5,11,20,.58) 0%, rgba(5,11,20,.28) 18%, rgba(5,11,20,.08) 38%, rgba(5,11,20,0) 60%),
        linear-gradient(180deg, rgba(3,8,14,0) 70%, rgba(3,8,14,.75) 100%);
}
.hero-visual::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(3,8,14,.1), rgba(3,8,14,0) 42%, rgba(3,8,14,.05));
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
}

@media (max-width: 1199px) {
    .header-inner {
        width: min(100% - 32px, var(--max));
        grid-template-columns: 190px 1fr 230px;
    }
    .nav { gap: 30px; }
    .hero-grid {
        grid-template-columns: 42% 58%;
        width: min(100% - 32px, var(--max));
    }
    .hero h1 {
        font-size: clamp(48px, 5.6vw, 64px);
    }
    .hero p {
        max-width: 410px;
        font-size: 16px;
    }
    .hero-visual {
        right: 0;
        width: 62%;
        opacity: .86;
    }
}
.hero-line {
    left: -10px;
    right: -65px;
    bottom: 132px;
    height: 160px;
    transform: rotate(-7deg);
}
.mockup-phone {
    width: 260px;
    min-height: 470px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(12, 22, 39, .98), rgba(4, 9, 18, .98));
    box-shadow: 0 32px 90px rgba(0,0,0,.62), inset 0 0 0 7px rgba(0,0,0,.3);
}
.hero-phone {
    position: absolute;
    top: 15px;
    left: 210px;
    transform: rotate(8deg);
    padding: 21px 20px;
}
.phone-top {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.75);
    font-size: 10px;
}
.app-brand {
    margin-top: 10px;
    color: #527dff;
    font-weight: 800;
    font-size: 18px;
}
.mockup-phone h2 {
    margin: 10px 0 16px;
    font-size: 26px;
    line-height: 1;
}
.training-card,
.why-card,
.phone-option,
.mockup-panel {
    border: 1px solid rgba(110, 150, 255, .16);
    background: rgba(16, 27, 48, .66);
    border-radius: 14px;
}
.training-card.main {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 14px;
}
.round-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37, 99, 255, .13);
    color: #5790ff;
    display: grid;
    place-items: center;
}
.training-card strong { font-size: 13px; }
.metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 12px;
    color: var(--muted);
    font-size: 10px;
}
.metrics b { color: #6f9cff; font-size: 17px; }
.mockup-phone small {
    display: block;
    margin: 14px 0 8px;
    color: var(--secondary);
}
.phone-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.phone-option {
    min-height: 78px;
    padding: 10px;
}
.phone-option.active { border-color: rgba(37,99,255,.72); }
.phone-option b { display: block; font-size: 11px; }
.phone-option span { display: block; margin-top: 7px; color: var(--muted); font-size: 9px; line-height: 1.25; }
.why-card { margin-top: 12px; padding: 13px; }
.why-card b { display: block; font-size: 12px; }
.why-card span { color: var(--muted); font-size: 10px; line-height: 1.4; }
.week-row {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 9px;
}

.section {
    position: relative;
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,.065);
    background: linear-gradient(180deg, rgba(4,10,20,.98), rgba(3,8,16,.98));
}
.section-title {
    margin: 0;
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: -.45px;
    font-weight: 500;
}
.centered { text-align: center; }
.card {
    min-height: 124px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--panel);
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.card-icon {
    display: block;
    color: #3d82ff;
    font-size: 30px;
    margin-bottom: 12px;
}
.card h3,
.option-card h3,
.benefits h3 {
    margin: 0 0 10px;
    font-size: 15px;
}
.card p,
.option-card p,
.criteria-grid span,
.benefits p,
.pricing-copy p,
.price-card li,
.recommendation-side p,
.why-copy p,
.steps p {
    color: var(--secondary);
    font-size: 12px;
    line-height: 1.65;
}

.problem-strip {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 219px;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: #050d16;
}
.problem-strip__inner {
    position: relative;
    width: min(100%, 1200px);
    min-height: 219px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28%;
    align-items: stretch;
}
.problem-strip__main {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 30px 16px 24px clamp(16px, 2vw, 28px);
}
.problem-strip__title {
    position: relative;
    margin: 0 0 20px;
    text-align: center;
    color: #fff;
    font-size: clamp(22px, 1.8vw, 26px);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: 0;
}
.problem-strip__cards {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}
.problem-card {
    height: 120px;
    min-height: 120px;
    max-height: 120px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 16px;
    align-items: flex-start;
    padding: 19px 20px;
    border: 1px solid rgba(80,120,170,.24);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(10,23,39,.9), rgba(5,15,28,.9));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.problem-card__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: #2678ff;
}
.problem-card__icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.problem-card__content {
    min-width: 0;
}
.problem-card__title {
    margin: 0 0 9px;
    color: #fff;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 700;
}
.problem-card__text {
    margin: 0;
    max-width: none;
    color: rgba(220,230,245,.78);
    font-size: 10.5px;
    line-height: 1.55;
    font-weight: 400;
    overflow-wrap: break-word;
}
.problem-strip__visual {
    position: relative;
    height: 100%;
    min-height: 219px;
    overflow: hidden;
    background:
        url("../images/problem-cyclist-replacement.png") center right / cover no-repeat;
}
.problem-strip__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(5,13,22,.9) 0%,
            rgba(5,13,22,0) 18%,
            rgba(5,13,22,0) 78%,
            rgba(5,13,22,.92) 100%),
        linear-gradient(90deg,
            rgba(5,13,22,1) 0%,
            rgba(5,13,22,.72) 18%,
            rgba(5,13,22,.22) 50%,
            rgba(5,13,22,.18) 72%,
            rgba(5,13,22,1) 100%);
}

@media (max-width: 1199px) {
    .problem-strip {
        min-height: 252px;
    }
    .problem-strip__inner {
        width: 100%;
        min-height: 252px;
        grid-template-columns: minmax(0, 1fr) 21%;
    }
    .problem-strip__main {
        padding: 30px 18px 26px 24px;
    }
    .problem-strip__title {
        margin-bottom: 20px;
        font-size: 24px;
    }
    .problem-strip__cards {
        gap: 12px;
    }
    .problem-card {
        height: 146px;
        min-height: 146px;
        max-height: 146px;
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 14px;
        padding: 21px 16px;
    }
    .problem-card__icon,
    .problem-card__icon svg {
        width: 40px;
        height: 40px;
    }
    .problem-card__title {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .problem-card__text {
        font-size: 10.5px;
        line-height: 1.55;
    }
    .problem-strip__visual {
        min-height: 252px;
        background-position: 72% center;
    }
}

.daily-options-strip {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.06);
    background:
        radial-gradient(circle at 56% 0%, rgba(38,120,255,.09), transparent 31%),
        linear-gradient(180deg, #06111d 0%, #030916 100%);
}
.daily-options-strip__inner {
    width: min(100%, 1200px);
    min-height: 206px;
    margin: 0 auto;
    padding: 28px 38px 30px;
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr) 195px;
    align-items: center;
    gap: 20px;
}
.daily-options-strip__intro h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -.03em;
}
.daily-options-strip__intro p {
    max-width: 300px;
    margin: 18px 0 0;
    color: rgba(220,230,245,.78);
    font-size: 14px;
    line-height: 1.6;
}
.daily-options-strip__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}
.daily-option-card {
    position: relative;
    height: 172px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(80,120,170,.22);
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(180deg, rgba(10,22,36,.95), rgba(5,13,22,.95));
}
.daily-option-card--active {
    border-color: rgba(38,120,255,.85);
    background: linear-gradient(180deg, rgba(12,30,54,.98), rgba(5,14,28,.98));
    box-shadow: 0 0 0 1px rgba(38,120,255,.16);
}
.daily-option-card__header {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 10px;
    align-items: start;
}
.daily-option-card__icon {
    width: 26px;
    height: 26px;
    color: #4a8cff;
}
.daily-option-card__icon svg,
.daily-option-card__bike svg,
.daily-option-card__mini svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.daily-option-card__icon--check svg circle {
    fill: #2f7dff;
    stroke: #2f7dff;
}
.daily-option-card__icon--check svg path {
    stroke: #fff;
}
.daily-option-card h3 {
    margin: 1px 0 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}
.daily-option-card p {
    margin: 0;
    color: rgba(220,230,245,.74);
    font-size: 11px;
    line-height: 1.45;
}
.daily-option-card__rule {
    height: 1px;
    margin: 16px 0 14px;
    background: rgba(255,255,255,.06);
}
.daily-option-card em {
    display: block;
    margin: 0 0 8px;
    color: #4a8cff;
    font-style: normal;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
}
.daily-option-card strong {
    color: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 500;
}
.daily-option-card__bike,
.daily-option-card__mini {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,.72);
}
.daily-options-strip__note {
    align-self: center;
}
.daily-options-strip__note p {
    max-width: 260px;
    margin: 0;
    color: rgba(235,242,255,.86);
    font-size: 13px;
    line-height: 1.55;
}
.daily-options-strip__chart {
    width: min(100%, 220px);
    height: 84px;
    margin-top: 22px;
    overflow: visible;
}
.daily-options-strip__chart path,
.daily-options-strip__chart circle {
    fill: none;
    stroke: #2678ff;
    stroke-width: 2;
}
.daily-options-strip__chart circle {
    fill: #06111d;
}
@media (max-width: 1199px) {
    .daily-options-strip__inner {
        min-height: 0;
        padding: 28px 28px 30px;
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 22px;
    }
    .daily-options-strip__intro h2 {
        font-size: 27px;
    }
    .daily-options-strip__cards {
        gap: 12px;
    }
    .daily-option-card {
        height: 166px;
        padding: 17px 15px 16px;
    }
    .daily-option-card h3 {
        font-size: 13px;
    }
    .daily-option-card p {
        font-size: 10.5px;
    }
    .daily-option-card em {
        font-size: 12px;
    }
    .daily-option-card strong {
        font-size: 23px;
    }
    .daily-options-strip__note {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 26px;
    }
    .daily-options-strip__chart {
        width: 190px;
        height: 64px;
        margin-top: 0;
    }
}
.criteria-grid {
    margin-top: 26px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: rgba(8,18,34,.58);
}
.criteria-grid div { padding-left: 34px; position: relative; }
.criteria-grid div::before {
    content: "◌";
    position: absolute;
    left: 0;
    top: 1px;
    color: #3d82ff;
    font-size: 22px;
}
.criteria-grid b { display: block; font-size: 12px; margin-bottom: 4px; }
.criteria-grid span { display: block; }
.recommendation-side {
    position: relative;
    padding-top: 70px;
    min-height: 520px;
}
.recommendation-side > p {
    width: 220px;
    margin: 0 0 14px;
}
.product-stack {
    position: absolute;
    top: 4px;
    right: 0;
    width: 310px;
    height: 300px;
}
.mockup-panel {
    position: absolute;
    right: 54px;
    top: 0;
    width: 170px;
    height: 260px;
    transform: rotate(9deg);
    background:
        linear-gradient(180deg, rgba(14,27,49,.92), rgba(4,9,18,.94)),
        repeating-linear-gradient(180deg, transparent 0 36px, rgba(255,255,255,.05) 37px 38px);
}
.mini-phone {
    position: absolute;
    right: 0;
    bottom: 6px;
    width: 110px;
    min-height: 210px;
    transform: rotate(10deg);
}
.side-line {
    left: 0;
    right: -20px;
    bottom: 20px;
    height: 110px;
}
.why-copy {
    position: absolute;
    left: 0;
    bottom: 18px;
}
.why-copy p { width: 260px; margin: 14px 0 0; }

.objectives-section {
    padding: 30px 0;
    background:
        radial-gradient(circle at 91% 48%, rgba(37,99,255,.14), transparent 22%),
        linear-gradient(180deg, rgba(4,10,20,.98), rgba(4,9,17,.98));
}
.objectives-grid {
    display: grid;
    grid-template-columns: 1fr 286px;
    gap: 24px;
    align-items: center;
}
.objectives-grid .section-title { grid-column: 1 / -1; margin-bottom: 10px; }
.goals {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 13px;
}
.goals div {
    min-height: 122px;
    padding: 18px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--panel);
    color: #4d8fff;
    text-align: center;
    font-size: 27px;
}
.goals span {
    display: block;
    margin-top: 18px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1.3;
}
.objective-card {
    min-height: 208px;
    padding: 22px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(10,22,40,.9), rgba(5,10,20,.86)),
        radial-gradient(circle at 100% 0, rgba(37,99,255,.18), transparent 36%);
}
.objective-card small,
.objective-card span { color: var(--muted); font-size: 12px; }
.objective-card h3 { margin: 8px 0; font-size: 19px; }
.objective-card p { margin: 0 0 18px; color: var(--secondary); font-size: 12px; }
.objective-card p b { color: #5d9dff; }
.progress {
    height: 7px;
    margin: 10px 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
}
.progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563ff, #55a2ff);
}
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    color: var(--muted);
    font-size: 9px;
    text-align: center;
}
.calendar b { color: #fff; background: #2563ff; border-radius: 50%; padding: 3px; font-weight: 600; }

.recommendation-grid {
    display: block;
}

.insight-objectives-band {
    padding: 0;
    background: #030916;
}
.insight-objectives-inner {
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.why-row {
    min-height: 224px;
    display: grid;
    grid-template-columns: 18% 25% minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background:
        linear-gradient(90deg, rgba(5,13,22,.06), rgba(5,13,22,.74) 20%, rgba(5,13,22,.98) 48%, rgba(5,13,22,1) 100%),
        radial-gradient(circle at 88% 15%, rgba(37,99,255,.11), transparent 24%);
}
.why-road {
    position: relative;
    align-self: stretch;
    min-height: 210px;
    margin-left: -24px;
    background:
        url("../images/why-road-replacement.png") center left / cover no-repeat;
    opacity: 1;
}
.why-road::before {
    display: none;
}
.why-road::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,13,22,.82) 0%, rgba(5,13,22,.14) 24%, rgba(5,13,22,.1) 58%, rgba(5,13,22,.94) 100%),
        linear-gradient(180deg, rgba(5,13,22,.28) 0%, rgba(5,13,22,0) 22%, rgba(5,13,22,0) 78%, rgba(5,13,22,.28) 100%);
}
.why-intro h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 2.15vw, 34px);
    line-height: 1.1;
    letter-spacing: -.035em;
    font-weight: 600;
}
.why-intro p {
    margin: 18px 0 0;
    max-width: 330px;
    color: rgba(220,230,245,.78);
    font-size: 14px;
    line-height: 1.65;
}
.why-factors {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 38px;
    align-items: start;
}
.why-factors article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
}
.factor-icon,
.goal-tiles svg {
    color: #2f7cff;
}
.factor-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.why-factors h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}
.why-factors p {
    margin: 0;
    color: rgba(220,230,245,.74);
    font-size: 12px;
    line-height: 1.45;
}
.objectives-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.16;
    letter-spacing: -.3px;
    font-weight: 500;
}
.objectives-copy p {
    margin: 18px 0 0;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    line-height: 1.65;
}
.objectives-row {
    min-height: 305px;
    display: grid;
    grid-template-columns: 25% minmax(0, 38%) minmax(280px, 31%);
    gap: 26px;
    align-items: center;
    padding: 28px 0 34px;
    background:
        linear-gradient(90deg, #030916 0%, rgba(3,9,22,.97) 62%, rgba(3,9,22,.75) 100%);
}
.objectives-copy {
    padding-left: 34px;
}
.objectives-copy p {
    max-width: 230px;
    margin-top: 20px;
}
.objectives-copy a {
    display: inline-flex;
    gap: 8px;
    margin-top: 24px;
    color: #3d82ff;
    font-size: 13px;
}
.goal-tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.goal-tiles div {
    min-height: 103px;
    padding: 16px 10px 13px;
    border: 1px solid rgba(80,130,255,.2);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(9,22,39,.84), rgba(6,16,30,.84));
    text-align: center;
}
.goal-tiles svg {
    width: 35px;
    height: 35px;
    margin: 0 auto 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.goal-tiles span {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 11px;
    line-height: 1.35;
}
.insight-objectives-band .objective-card--image {
    position: relative;
    overflow: hidden;
    min-height: 232px;
    padding: 0;
    transform: translateX(20px);
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(3,9,22,1) 0%, rgba(3,9,22,.76) 12%, rgba(3,9,22,.08) 30%, rgba(3,9,22,.08) 70%, rgba(3,9,22,.78) 88%, rgba(3,9,22,1) 100%),
        linear-gradient(180deg, rgba(3,9,22,.18) 0%, rgba(3,9,22,0) 12%, rgba(3,9,22,0) 88%, rgba(3,9,22,.18) 100%),
        var(--objective-image) center / contain no-repeat;
    box-shadow: none;
}

.start-strip {
    position: relative;
    height: 226px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: #050d16;
}
.start-strip__visual {
    position: absolute;
    z-index: 1;
    top: 0;
    right: max(24px, calc((100vw - 1200px) / 2));
    bottom: 0;
    width: min(340px, 28vw);
    background:
        linear-gradient(90deg, rgba(5,13,22,1) 0%, rgba(5,13,22,.82) 32%, rgba(5,13,22,.34) 68%, rgba(5,13,22,.18) 86%, rgba(5,13,22,1) 100%),
        url("../images/start-cyclist.png") center center / cover no-repeat;
}
.start-strip__inner {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 27px 0 28px;
}
.start-strip__title {
    margin: 0 0 28px;
    text-align: center;
    color: #fff;
    font-size: clamp(26px, 2vw, 30px);
    line-height: 1.15;
    letter-spacing: -.03em;
    font-weight: 600;
}
.start-strip__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(22px, 2.8vw, 38px);
    align-items: start;
    padding-right: 22%;
}
.start-step {
    position: relative;
    display: grid;
    grid-template-columns: 28px 50px minmax(0, 1fr);
    column-gap: 14px;
    align-items: flex-start;
}
.start-step b {
    position: static;
    width: 27px;
    height: 27px;
    margin-top: 3px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #1f67ff;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}
.start-step__icon {
    display: block;
    width: 52px;
    height: 52px;
    color: rgba(255,255,255,.88);
}
.start-step__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.start-step__icon--strava {
    color: #fc4c02;
}
.start-step__icon--strava svg {
    fill: currentColor;
    stroke: none;
    transform: translateY(1px);
}
.start-step h3 {
    max-width: 170px;
    margin: 0 0 12px;
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}
.start-step p {
    max-width: 175px;
    margin: 0;
    color: rgba(220,230,245,.74);
    font-size: 11px;
    line-height: 1.55;
}

.premium-pricing {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at 72% 12%, rgba(38,120,255,.12), transparent 28%),
        linear-gradient(180deg, #050d16 0%, #030812 100%);
}
.premium-pricing__main {
    display: grid;
    grid-template-columns: 42% 58%;
    width: min(var(--max), calc(100% - 48px));
    min-height: 392px;
    margin: 0 auto;
}
.premium-pricing__visual {
    position: relative;
    min-height: 392px;
    background: url("../images/premium-gear.png") center left / cover no-repeat;
}
.premium-pricing__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,13,22,1) 0%, rgba(5,13,22,.62) 8%, rgba(5,13,22,.06) 24%, rgba(5,13,22,.18) 56%, rgba(5,13,22,1) 100%),
        linear-gradient(180deg, rgba(5,13,22,0) 0%, rgba(5,13,22,.18) 100%);
}
.premium-pricing__content {
    padding: 34px 58px 32px 30px;
    display: grid;
    grid-template-rows: auto auto;
    gap: 24px;
}
.premium-pricing__benefits h2 {
    max-width: 650px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(32px, 2.55vw, 40px);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 600;
}
.premium-pricing__benefits h2 span { color: #2678ff; }
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.benefit-item__icon {
    display: block;
    width: 26px;
    height: 26px;
    margin-bottom: 10px;
    color: #2678ff;
}
.benefit-item__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.benefit-item h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
}
.benefit-item p {
    margin: 0;
    color: rgba(220,230,245,.72);
    font-size: 11px;
    line-height: 1.45;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.18fr;
    gap: 18px;
    align-items: stretch;
    max-width: 640px;
}
.price-card {
    display: flex;
    flex-direction: column;
    min-height: 166px;
    padding: 20px 24px 22px;
    border: 1px solid rgba(80,120,170,.26);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(10,22,36,.9), rgba(5,13,22,.94));
}
.price-card--featured {
    border-color: rgba(38,120,255,.72);
    background: linear-gradient(180deg, rgba(12,28,52,.92), rgba(5,13,22,.96));
}
.price-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
}
.price-card h3 span {
    display: inline-flex;
    vertical-align: middle;
    margin-left: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #f4d89a;
    color: #1b160b;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
}
.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    gap: 5px;
}
.price-card li {
    color: rgba(235,242,255,.82);
    font-size: 12px;
    line-height: 1.45;
}
.price-card li::before {
    content: "✓";
    margin-right: 9px;
    color: #dce8ff;
}
.price-card .button {
    width: 100%;
    min-height: 40px;
    margin-top: auto;
    border-radius: 8px;
    font-size: 12px;
}
.landing-footer {
    min-height: 76px;
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,.06);
    background: rgba(3,8,14,.72);
}
.landing-footer__center {
    display: grid;
    gap: 10px;
    justify-items: center;
}
.landing-footer nav {
    display: flex;
    justify-content: center;
    gap: 34px;
    color: rgba(235,242,255,.7);
    font-size: 12px;
}
.socials {
    display: flex;
    justify-content: end;
    gap: 18px;
    color: var(--secondary);
}
.landing-footer p {
    margin: 0;
    text-align: center;
    color: rgba(235,242,255,.44);
    font-size: 11px;
}

@media (min-width: 981px) and (max-width: 1199px) {
    .hero {
        min-height: 640px;
    }
    .hero-grid {
        grid-template-columns: minmax(0, 40%) minmax(0, 60%);
        min-height: 640px;
        gap: 18px;
        padding: 72px 0 58px;
    }
    .hero-content {
        max-width: 410px;
    }
    .hero h1 {
        max-width: 390px;
        font-size: clamp(42px, 5vw, 50px);
        overflow-wrap: break-word;
    }
    .hero p {
        max-width: 390px;
        font-size: 15px;
    }
    .hero-visual {
        width: calc(100% + 42px);
        height: 520px;
        margin-right: -42px;
    }
    .hero-visual::before {
        background:
            linear-gradient(90deg, rgba(5,11,20,.82) 0%, rgba(5,11,20,.48) 14%, rgba(5,11,20,.18) 34%, rgba(5,11,20,0) 56%),
            linear-gradient(180deg, rgba(3,8,14,0) 70%, rgba(3,8,14,.75) 100%);
    }
    .problem-strip__inner {
        grid-template-columns: minmax(0, 1fr) 21%;
    }
    .problem-strip__main {
        padding-left: 24px;
        padding-right: 20px;
    }
    .problem-strip__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    .problem-card {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 14px;
        padding: 21px 18px;
    }
    .problem-card__text {
        max-width: none;
    }
    .why-row {
        grid-template-columns: 24% 25% minmax(0, 1fr);
        gap: 18px;
        padding: 26px 0;
    }
    .why-road {
        margin-left: 0;
    }
    .why-intro h2 {
        font-size: 28px;
    }
    .why-factors {
        gap: 24px 22px;
    }
    .why-factors article {
        grid-template-columns: 34px minmax(0, 1fr);
        column-gap: 12px;
    }
    .factor-icon svg {
        width: 32px;
        height: 32px;
    }
    .objectives-row {
        grid-template-columns: 210px minmax(0, 1fr) 260px;
        gap: 18px;
        overflow: hidden;
        padding: 28px 24px 32px;
    }
    .objectives-copy {
        padding-left: 0;
    }
    .goal-tiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    .goal-tiles div {
        min-height: 94px;
        padding: 14px 8px 12px;
    }
    .goal-tiles svg {
        width: 31px;
        height: 31px;
        margin-bottom: 10px;
    }
    .goal-tiles span {
        font-size: 10.5px;
    }
    .insight-objectives-band .objective-card--image {
        grid-column: auto;
        min-height: 244px;
        transform: none;
        background:
            linear-gradient(90deg, rgba(3,9,22,1) 0%, rgba(3,9,22,.62) 18%, rgba(3,9,22,.08) 40%, rgba(3,9,22,.08) 66%, rgba(3,9,22,.82) 100%),
            linear-gradient(180deg, rgba(3,9,22,.18) 0%, rgba(3,9,22,0) 12%, rgba(3,9,22,0) 88%, rgba(3,9,22,.18) 100%),
            var(--objective-image) center / cover no-repeat;
    }
    .start-strip {
        height: auto;
        min-height: 330px;
    }
    .start-strip__visual {
        right: max(24px, calc((100vw - 1200px) / 2));
        width: min(315px, 31vw);
        opacity: .66;
    }
    .start-strip__inner {
        padding: 30px 24px 34px;
    }
    .start-strip__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 34px;
        padding-right: min(330px, 32%);
    }
    .start-step {
        grid-template-columns: 28px 46px minmax(0, 1fr);
        column-gap: 14px;
    }
    .start-step b {
        margin-top: 1px;
    }
    .start-step__icon {
        width: 46px;
        height: 46px;
    }
    .start-step h3,
    .start-step p {
        max-width: none;
    }
    .premium-pricing__main {
        grid-template-columns: 36% minmax(0, 64%);
    }
    .premium-pricing__visual {
        background-position: 22% center;
    }
    .premium-pricing__content {
        padding: 30px 28px 32px 28px;
        gap: 26px;
    }
    .premium-pricing__benefits h2 {
        font-size: 32px;
        max-width: 590px;
        margin-bottom: 22px;
    }
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 34px;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
        gap: 18px;
    }
    .price-card {
        min-height: 176px;
        padding: 20px 22px 22px;
    }
    .price-card .button {
        min-width: 0;
        min-height: 42px;
        padding-right: 14px;
        padding-left: 14px;
        line-height: 1.15;
        white-space: normal;
    }
    .landing-footer {
        gap: 18px;
    }
    .landing-footer nav {
        gap: 22px;
    }
}

@media (max-width: 980px) {
    .container { width: min(100% - 32px, var(--max)); }
    .header { position: relative; background: #020712; }
    .header-inner {
        width: min(100% - 32px, var(--max));
        grid-template-columns: 1fr auto;
        height: 68px;
        margin: 0 auto;
        padding: 0;
    }
    .nav { display: none; }
    .hero {
        min-height: 620px;
        padding-top: 0;
    }
    .hero-grid,
    .recommendation-grid,
    .objectives-grid,
    .benefits-grid,
    .pricing-grid { grid-template-columns: 1fr; }
    .premium-pricing__main {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .premium-pricing__visual {
        min-height: 260px;
        background-position: 28% center;
    }
    .premium-pricing__visual::after {
        background:
            linear-gradient(180deg, rgba(5,13,22,.06) 0%, rgba(5,13,22,.2) 52%, rgba(5,13,22,.96) 100%),
            linear-gradient(90deg, rgba(5,13,22,1) 0%, rgba(5,13,22,.42) 12%, rgba(5,13,22,.06) 30%, rgba(5,13,22,.14) 70%, rgba(5,13,22,1) 100%);
    }
    .premium-pricing__content {
        padding: 34px 32px 36px;
    }
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pricing-grid {
        max-width: none;
    }
    .landing-footer {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 18px;
        padding: 24px 32px;
    }
    .landing-footer__center {
        justify-items: start;
    }
    .landing-footer nav {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 18px;
    }
    .hero-grid {
        min-height: 552px;
        gap: 20px;
        padding: 48px 32px 52px;
    }
    .hero-content { max-width: 470px; }
    .hero h1 { font-size: 44px; }
    .hero p,
    .pricing-copy p { width: auto; }
    .hero-visual {
        width: 62%;
        height: 100%;
        opacity: .32;
    }
    .hero-visual::before {
        background: linear-gradient(90deg, rgba(3,8,14,.96), rgba(3,8,14,.72));
    }
    .hero-phone { left: 50%; transform: translateX(-50%) rotate(6deg); }
    .cards-3,
    .option-cards,
    .benefits { grid-template-columns: 1fr; }
    .daily-options-strip__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .daily-options-strip__intro {
        max-width: 360px;
    }
    .daily-options-strip__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    .daily-option-card {
        min-width: 0;
    }
    .daily-option-card em {
        white-space: normal;
    }
    .daily-options-strip__note {
        grid-column: auto;
        justify-content: flex-end;
    }
    .start-strip {
        height: auto;
        min-height: 0;
    }
    .start-strip__visual {
        width: 38%;
        opacity: .34;
    }
    .start-strip__inner {
        padding: 30px 32px 32px;
    }
    .start-strip__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 34px;
        padding-right: 0;
    }
    .cards-3 { width: auto; }
    .cyclist-scene { display: none; }
    .problem-strip { min-height: 252px; }
    .problem-strip__inner {
        width: 100%;
        min-height: 252px;
        grid-template-columns: minmax(0, 1fr) 18%;
    }
    .problem-strip__main { padding: 30px 18px 26px 24px; }
    .problem-strip__title {
        margin-bottom: 20px;
        font-size: 24px;
    }
    .problem-strip__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    .problem-card {
        height: 146px;
        min-height: 146px;
        max-height: 146px;
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 14px;
        padding: 21px 16px;
    }
    .problem-card__icon,
    .problem-card__icon svg {
        width: 40px;
        height: 40px;
    }
    .problem-card__title { font-size: 13px; }
    .problem-card__text { font-size: 10.5px; line-height: 1.55; }
    .problem-strip__visual { min-height: 252px; }
    .why-row {
        grid-template-columns: 22% minmax(0, 1fr);
        gap: 22px;
        min-height: 0;
        padding: 30px 0;
    }
    .why-road { min-height: 220px; }
    .why-factors {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 28px;
    }
    .objectives-row {
        grid-template-columns: minmax(0, .36fr) minmax(0, .64fr);
        gap: 24px;
        overflow: hidden;
        padding: 30px 16px 34px;
    }
    .objectives-copy {
        padding-left: 0;
    }
    .objectives-copy h2 {
        font-size: 26px;
    }
    .objectives-copy p {
        max-width: none;
    }
    .goal-tiles {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .insight-objectives-band .objective-card--image {
        display: none;
    }
    .goals { grid-template-columns: repeat(2, 1fr); }
    .recommendation-side { min-height: 360px; padding-top: 0; }
    .product-stack { position: relative; margin: 20px auto; }
    .why-copy { position: relative; }
    .benefit-phone { display: none; }
}

@media (max-width: 620px) {
    .header-cta { display: none; }
    .hero { min-height: auto; }
    .hero-grid {
        min-height: 0;
        display: block;
        padding: 48px 16px 0;
    }
    .hero h1 { font-size: 40px; letter-spacing: -.04em; }
    .hero p { width: 100%; max-width: 330px; overflow-wrap: break-word; }
    .hero-actions { flex-direction: column; max-width: 330px; }
    .hero-actions .button { width: 100%; }
    .start-strip__visual { display: none; }
    .start-strip__inner {
        padding: 32px 16px;
    }
    .start-strip__title {
        max-width: 300px;
        margin-bottom: 26px;
        margin-left: auto;
        margin-right: auto;
        font-size: 24px;
        text-wrap: balance;
    }
    .start-strip__steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .start-step {
        grid-template-columns: 28px 50px minmax(0, 1fr);
        column-gap: 14px;
    }
    .start-step b {
        margin-top: 3px;
    }
    .start-step__icon {
        width: 50px;
        height: 50px;
    }
    .hero-visual {
        position: relative;
        width: calc(100% + 64px);
        height: 340px;
        margin: 28px -32px 0;
        opacity: 1;
    }
    .hero-visual img {
        object-position: 62% center;
    }
    .hero-visual::before {
        background:
            linear-gradient(180deg, #030812 0%, rgba(3,8,14,.18) 22%, rgba(3,8,14,.1) 70%, #030812 100%),
            linear-gradient(90deg, rgba(3,8,14,.62), rgba(3,8,14,0) 54%);
    }
    .section { padding: 40px 0; }
    .section-title { font-size: 26px; overflow-wrap: break-word; }
    .centered { max-width: 340px; margin-left: auto; margin-right: auto; }
    .problem-strip__inner {
        display: block;
        min-height: 0;
    }
    .problem-strip__main { padding: 28px 16px 26px; }
    .problem-strip__title {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
        font-size: 24px;
    }
    .problem-strip__cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .problem-card {
        height: auto;
        min-height: 116px;
        max-height: none;
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 19px 18px 18px;
    }
    .problem-card__icon,
    .problem-card__icon svg {
        width: 40px;
        height: 40px;
    }
    .problem-card__title { font-size: 14px; }
    .problem-card__text { font-size: 11px; line-height: 1.55; }
    .problem-card__text { max-width: none; }
    .problem-strip__visual {
        position: absolute;
        inset: 0;
        min-height: 0;
        opacity: .2;
    }
    .problem-strip__visual::before {
        background: linear-gradient(90deg, rgba(5,13,22,.95), rgba(5,13,22,.78));
    }
    .daily-options-strip__inner {
        padding: 32px 16px;
        display: block;
    }
    .daily-options-strip__intro h2 {
        font-size: 28px;
    }
    .daily-options-strip__intro p {
        max-width: none;
    }
    .daily-options-strip__cards {
        margin-top: 24px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .daily-option-card {
        height: 168px;
    }
    .daily-option-card h3 {
        font-size: 14px;
    }
    .daily-option-card p {
        font-size: 11px;
    }
    .daily-options-strip__note {
        display: block;
        margin-top: 24px;
    }
    .daily-options-strip__chart {
        width: min(100%, 220px);
        height: 74px;
        margin-top: 18px;
    }
    .why-row {
        display: block;
        padding: 34px 16px;
    }
    .why-road {
        display: none;
    }
    .why-intro p {
        max-width: none;
    }
    .why-factors {
        margin-top: 26px;
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .objectives-row {
        display: block;
        padding: 34px 16px;
    }
    .objectives-copy h2 {
        font-size: 28px;
    }
    .goal-tiles {
        margin-top: 26px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .criteria-grid,
    .goals { grid-template-columns: 1fr; }
    .premium-pricing__visual {
        min-height: 220px;
        background-size: cover;
        background-position: left center;
    }
    .premium-pricing__content {
        padding: 34px 16px 42px;
    }
    .premium-pricing__benefits h2 {
        max-width: 340px;
        font-size: 24px;
        overflow-wrap: break-word;
    }
    .benefit-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .benefit-grid {
        gap: 26px;
    }
    .pricing-grid {
        gap: 22px;
        margin-top: 8px;
    }
    .price-card {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .landing-footer {
        padding: 24px 16px;
    }
    .socials { justify-content: flex-start; }
}
