@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-soft: #eef4fb;
    --surface-dark: #0b1f33;
    --surface-dark-2: #102943;
    --text: #112031;
    --text-muted: #556277;
    --text-light: rgba(255, 255, 255, 0.78);
    --border: rgba(17, 32, 49, 0.09);
    --accent: #0ea5e9;
    --accent-2: #14b8a6;
    --accent-3: #f97316;
    --success: #16a34a;
    --shadow-lg: 0 30px 70px rgba(11, 31, 51, 0.14);
    --shadow-md: 0 18px 40px rgba(11, 31, 51, 0.1);
    --shadow-sm: 0 10px 24px rgba(11, 31, 51, 0.07);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100% - 2rem));
    --header-height: 76px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.09), transparent 32%),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 30%),
        var(--bg);
    line-height: 1.65;
}

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

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

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

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 4.5rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(233, 242, 250, 0.75));
}

.section-dark {
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.2), transparent 28%),
        linear-gradient(135deg, var(--surface-dark), var(--surface-dark-2));
}

.section-cta {
    background:
        radial-gradient(circle at center, rgba(249, 115, 22, 0.12), transparent 28%),
        linear-gradient(135deg, #102943, #0b1f33);
    color: #fff;
}

.top-strip {
    background: #081524;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.top-strip__inner,
.footer-shell,
.header-shell,
.top-strip__badge,
.top-strip__text {
    display: flex;
    align-items: center;
}

.top-strip__inner {
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
}

.top-strip__badge {
    gap: 0.5rem;
    white-space: nowrap;
}

.top-strip__badge::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-3), #facc15);
    box-shadow: 0 0 0 0.32rem rgba(249, 115, 22, 0.15);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0.9rem 0;
    transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-compact {
    padding: 0.55rem 0;
    background: rgba(245, 247, 251, 0.85);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(11, 31, 51, 0.08);
}

.header-shell {
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-height);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.logo__mark {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 1rem;
    display: inline-grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.25);
}

.logo__text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo__text strong {
    font-size: 1rem;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3.3rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

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

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 14px 28px rgba(14, 165, 233, 0.24);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(17, 32, 49, 0.12);
    box-shadow: 0 10px 20px rgba(17, 32, 49, 0.06);
}

.section-dark .button-secondary,
.section-cta .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.button-large {
    min-height: 3.7rem;
    padding-inline: 1.6rem;
}

.header-cta {
    min-height: 3rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.1);
    color: #0c6fa0;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.section-kicker--light {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 2rem;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.1;
}

h1,
h2 {
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.15rem;
}

p {
    margin: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 3.3rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 50%;
    width: min(34rem, 70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translateX(-10%);
    background: radial-gradient(circle, rgba(249, 115, 22, 0.16), transparent 66%);
    pointer-events: none;
}

.hero-grid,
.solution-grid,
.mentor-grid {
    display: grid;
    gap: 2rem;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-lead {
    margin-top: 1.2rem;
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 40rem;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.7rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-proof span::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.trust-chip,
.proof-item,
.icon-card,
.feature-card,
.audience-card,
.reason-card,
.investment-note,
.offer-box,
.faq-item,
.mentor-note,
.testimonial-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.trust-chip {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius-md);
}

.icon-wrap {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
    display: inline-grid;
    place-items: center;
    border-radius: 0.9rem;
    background: rgba(14, 165, 233, 0.1);
    color: #0f6b99;
}

.icon-wrap svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-wrap--accent {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(20, 184, 166, 0.14));
}

.icon-wrap--dark {
    background: rgba(11, 31, 51, 0.08);
    color: var(--surface-dark);
}

.hero-visual {
    position: relative;
}

.product-card {
    position: relative;
    max-width: 36rem;
    margin-inline: auto;
    padding: 1.1rem;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 251, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-lg);
}

.product-card__media {
    overflow: hidden;
    border-radius: calc(var(--radius-xl) - 0.4rem);
    background: linear-gradient(135deg, #0d243b, #163a5d);
}

.product-card__content {
    padding: 1.25rem 0.4rem 0.2rem;
}

.eyebrow {
    color: var(--accent-3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.84rem;
}

.product-card__content h2 {
    margin-top: 0.35rem;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.product-card__content p:last-of-type {
    margin-top: 0.7rem;
    color: var(--text-muted);
}

.offer-ribbon,
.value-pill,
.proof-item strong,
.testimonial-card__tag,
.offer-box__label {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(250, 204, 21, 0.18));
    color: #994200;
}

.offer-ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.84rem;
    z-index: 1;
}

.price-stack,
.offer-price {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.price-main,
.offer-price__current {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1;
    color: var(--surface-dark);
}

.price-side {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.price-original,
.offer-price__original {
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 700;
}

.price-save,
.offer-price__save {
    font-size: 0.95rem;
    color: var(--success);
    font-weight: 700;
}

.floating-stat {
    position: absolute;
    width: min(14rem, 65%);
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 32, 49, 0.09);
    box-shadow: var(--shadow-md);
}

.floating-stat strong {
    display: block;
    font-size: 0.98rem;
}

.floating-stat span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.floating-stat--top {
    top: 10%;
    left: -5%;
}

.floating-stat--bottom {
    bottom: 8%;
    right: -4%;
}

.proof-strip {
    margin-top: -0.8rem;
}

.proof-strip__grid {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(11, 31, 51, 0.94), rgba(14, 49, 82, 0.96));
    box-shadow: var(--shadow-md);
}

.proof-item {
    padding: 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.proof-item strong {
    display: inline-flex;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    font-size: 0.94rem;
    margin-bottom: 0.65rem;
}

.proof-item span {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
}

.testimonials .section-heading p,
.testimonials .section-heading h2 {
    color: #fff;
}

.testimonials .section-heading p {
    color: var(--text-light);
}

.testimonial-slider {
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 min(88vw, 23rem);
    scroll-snap-align: start;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.97);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-card__header img {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    border-radius: 1.2rem;
}

.testimonial-card__header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.testimonial-card__result {
    color: var(--text);
    font-weight: 600;
}

.testimonial-card__tag {
    display: inline-flex;
    margin-top: 1rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.impact-banner,
.proof-card,
.authority-card {
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.impact-banner {
    display: grid;
    gap: 1.4rem;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 24%),
        linear-gradient(135deg, #ffffff, #eef6ff);
}

.impact-banner__copy p,
.proof-card__copy p,
.authority-card__copy p {
    color: var(--text-muted);
}

.impact-banner__actions {
    display: grid;
    gap: 1rem;
    align-content: center;
}

.impact-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.impact-bullets span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    color: var(--text);
    font-weight: 700;
}

.impact-bullets span::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
}

.proof-gallery,
.authority-grid {
    display: grid;
    gap: 1rem;
}

.proof-card,
.authority-card {
    overflow: hidden;
    background: #fff;
}

.proof-card__visual,
.authority-card__visual {
    position: relative;
    min-height: 14rem;
    padding: 1rem;
    display: flex;
    align-items: end;
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.94), rgba(20, 184, 166, 0.88)),
        linear-gradient(160deg, #0b1f33, #12395a);
}

.authority-card__visual {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.28), transparent 28%),
        linear-gradient(160deg, #0b1f33, #143b5f);
}

.proof-card__visual::before,
.authority-card__visual::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: calc(var(--radius-xl) - 0.5rem);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
        repeating-linear-gradient(180deg, transparent 0 24px, rgba(255, 255, 255, 0.08) 24px 25px);
}

.proof-card__visual span,
.authority-card__visual span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.proof-card__copy,
.authority-card__copy {
    padding: 1.2rem 1.2rem 1.35rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.25rem;
}

.slider-dots button {
    width: 0.7rem;
    height: 0.7rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.slider-dots button.is-active {
    background: #fff;
    transform: scale(1.16);
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.icon-card,
.feature-card,
.audience-card,
.reason-card {
    padding: 1.35rem;
    border-radius: var(--radius-lg);
}

.icon-card h3,
.feature-card h3,
.audience-card h3,
.reason-card h3 {
    margin-top: 1rem;
}

.icon-card p,
.feature-card p,
.audience-card p,
.reason-card p,
.section-heading p,
.solution-copy > p,
.offer-box p,
.footer-shell p {
    margin-top: 0.7rem;
    color: var(--text-muted);
}

.solution-panel {
    position: relative;
    padding: 1.3rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(11, 31, 51, 0.97), rgba(15, 59, 95, 0.94));
    box-shadow: var(--shadow-lg);
}

.solution-panel .section-kicker {
    margin-bottom: 1.2rem;
}

.solution-panel img {
    border-radius: calc(var(--radius-xl) - 0.4rem);
}

.value-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    margin-top: 1rem;
    font-weight: 700;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.check-list li {
    display: flex;
    align-items: start;
    gap: 0.8rem;
}

.check-list__icon {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    display: inline-grid;
    place-items: center;
    border-radius: 0.75rem;
    background: rgba(14, 165, 233, 0.12);
    color: #0b6f9d;
}

.check-list__icon svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.inline-note {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.mentor-section .section-kicker,
.final-cta .section-kicker {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
}

.mentor-photo img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.mentor-copy > p,
.mentor-copy h2,
.final-cta h2,
.final-cta p,
.section-cta p {
    color: #fff;
}

.mentor-copy > p,
.final-cta p {
    color: var(--text-light);
}

.mentor-note {
    margin: 1.5rem 0;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.mentor-note p {
    margin-top: 0;
    color: #fff;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.1rem;
}

.check-list--compact {
    gap: 0.75rem;
}

.check-list--compact .check-list__icon {
    width: 1.9rem;
    height: 1.9rem;
    flex-basis: 1.9rem;
}

.pricing-section {
    overflow: hidden;
}

.offer-box {
    display: grid;
    gap: 1.5rem;
    padding: 1.35rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.offer-box__summary,
.offer-box__details {
    padding: 0.4rem;
}

.offer-box__label {
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.offer-box__summary h3 {
    margin-top: 0.85rem;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.offer-price__save {
    display: block;
    margin-top: 0.6rem;
}

.offer-box__summary .button + .button {
    margin-top: 0.75rem;
}

.offer-box__meta {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.offer-box__meta h4 {
    font-size: 1rem;
}

.purchase-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.purchase-badges span {
    display: inline-flex;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    color: var(--text);
    font-weight: 700;
}

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

.faq-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.25rem;
    border: 0;
    background: transparent;
    text-align: left;
    font-weight: 800;
    color: var(--text);
    cursor: pointer;
}

.faq-icon {
    position: relative;
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    inset: 50% 0 auto;
    height: 2px;
    background: var(--text);
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.faq-icon::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    transform: translateY(-50%) rotate(0);
}

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

.faq-answer p {
    padding: 0 1.25rem 1.2rem;
    color: var(--text-muted);
}

.final-cta {
    text-align: center;
}

.cta-group--center {
    justify-content: center;
}

.site-footer {
    padding: 1.6rem 0 6rem;
    background: #081524;
    color: rgba(255, 255, 255, 0.7);
}

.footer-shell {
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: end;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #fff;
}

.mobile-buy-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
    background: rgba(8, 21, 36, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-buy-bar__text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.mobile-buy-bar__text strong {
    font-size: 1.15rem;
}

.mobile-buy-bar__text span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.mobile-buy-bar__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.mobile-buy-bar .button {
    min-height: 3rem;
    padding-inline: 0.8rem;
    font-size: 0.94rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (min-width: 640px) {
    .proof-strip__grid,
    .card-grid--pain,
    .card-grid--features,
    .card-grid--audience,
    .card-grid--reasons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .impact-banner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: center;
    }

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

@media (min-width: 860px) {
    body {
        padding-bottom: 0;
    }

    .section {
        padding: 6rem 0;
    }

    .hero-grid,
    .solution-grid,
    .mentor-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: center;
    }

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

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

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

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

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

    .offer-box {
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
        padding: 1.8rem;
    }

    .testimonial-track {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
        scroll-snap-type: none;
    }

    .testimonial-card {
        min-height: 100%;
    }

    .testimonial-card:nth-child(4n + 2),
    .testimonial-card:nth-child(4n + 4) {
        transform: translateY(1.25rem);
    }

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

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

    .slider-dots,
    .mobile-buy-bar {
        display: none;
    }

    .site-footer {
        padding-bottom: 2rem;
    }
}

@media (max-width: 859px) {
    body {
        padding-bottom: 7.7rem;
    }
}

@media (max-width: 639px) {
    .top-strip__inner,
    .header-shell,
    .footer-shell,
    .footer-links {
        align-items: flex-start;
    }

    .top-strip__inner,
    .footer-shell {
        flex-direction: column;
    }

    .header-shell {
        min-height: auto;
    }

    .header-cta {
        display: none;
    }

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

    .floating-stat--top {
        left: 1rem;
        top: 1rem;
    }

    .floating-stat--bottom {
        right: 1rem;
        bottom: 1rem;
    }

    .offer-box__summary .button,
    .offer-box__summary .button + .button {
        width: 100%;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
