/* ── Self-hosted Fonts ── */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/static/fonts/inter-400-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/static/fonts/inter-400-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/static/fonts/inter-600-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/static/fonts/inter-600-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/static/fonts/montserrat-700-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/static/fonts/montserrat-700-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Design Tokens ── */
:root {
    --primary-deep: #0A2342;
    --mid-ocean: #0F3057;
    --accent-teal: #1FB6A6;
    --accent-teal-hover: #179e90;
    --bg: #F4F8FB;
    --bg-alt: #EAF0F6;
    --text: #1E293B;
    --text-secondary: #64748B;
    --card-bg: #FFFFFF;
    --card-border: #E2E8F0;
    --max-width: 1100px;
}

/* ── Base ── */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ── Shared Layout ── */
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navbar ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--primary-deep);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-tri {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-dot {
    color: var(--accent-teal);
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent-teal);
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-nav {
    background: var(--accent-teal);
    color: #fff;
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: var(--accent-teal-hover);
}

.btn-cta {
    background: var(--accent-teal);
    color: #fff;
    font-size: 1.1rem;
    padding: 14px 36px;
}

.btn-cta:hover {
    background: var(--accent-teal-hover);
}

.btn-outline {
    background: transparent;
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
    padding: 12px 28px;
}

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

.btn-full {
    width: 100%;
    text-align: center;
}

/* ── Hero ── */
.hero {
    padding: 80px 0 70px;
}

.hero .section-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-text {
    flex: 0 0 55%;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-deep);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-sub strong {
    color: var(--text);
}

.hero-ctas {
    margin-bottom: 20px;
}

.hero .btn-cta {
    border-radius: 10px;
    padding: 18px 44px;
    font-size: 1.2rem;
}

.hero-link {
    display: inline-block;
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}

.hero-link strong {
    font-weight: 700;
}

.hero-link:hover {
    color: var(--accent-teal);
}

.hero-mockup {
    flex: 0 0 48%;
}

.hero-image {
    display: block;
    width: 100%;
    max-width: 100%;
    box-shadow: 12px 16px 40px rgba(10, 35, 66, 0.35), 6px 8px 16px rgba(10, 35, 66, 0.18);
}

/* ── Section 2: Differentiators ── */
.differentiators {
    padding: 48px 0;
    background: var(--bg-alt);
}

.differentiators h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.diff-card {
    text-align: center;
    background: var(--card-bg);
    border: none;
    border-radius: 16px;
    padding: 28px 20px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.diff-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.diff-icon svg {
    width: 72px;
    height: 72px;
}

.diff-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.diff-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Section 3: Product Showcase ── */
.showcase {
    padding: 80px 0;
}

.showcase .section-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.showcase-text {
    flex: 1;
}

.showcase h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.showcase-checklist {
    list-style: none;
}

.showcase-checklist li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--card-border);
}

.showcase-checklist li:last-child {
    border-bottom: none;
}

.showcase-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
}

.showcase-visual {
    flex: 0 0 42%;
}

.showcase-mockup {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.showcase-img {
    position: absolute;
    width: 300px;
    border-radius: 8px;
    box-shadow: 4px 6px 20px rgba(10, 35, 66, 0.2);
}

.showcase-img-1 {
    top: 10px;
    left: 5px;
    transform: rotate(-3deg);
}

.showcase-img-2 {
    top: 0;
    left: 70px;
    transform: rotate(3deg);
}

/* ── Section 4: Built Around Your Life ── */
.lifestyle-rest {
    padding: 80px 0;
    background: var(--bg-alt);
}

.lifestyle-rest .section-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.lifestyle-rest-text {
    flex: 1;
}

.lifestyle-rest h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.lifestyle-rest p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.lifestyle-rest-visual {
    flex: 0 0 38%;
}

.dropdown-mockup {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.dropdown-mockup-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
}

.dropdown-mockup-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
}

.dropdown-mockup-select .arrow {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ── Section 5: How It Works ── */
.how-it-works {
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-teal);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ── Pricing Card (inside How It Works) ── */
.pricing-card {
    max-width: 420px;
    margin: 48px auto 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent-teal);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-headline {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 16px;
}

.pricing-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid var(--card-border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
}

.pricing-reassurance {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-card .btn-cta {
    border-radius: 10px;
    padding: 16px 40px;
    font-size: 1.15rem;
}

/* ── Section 6: Lifestyle / Motivation ── */
.lifestyle-motivation {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F3057, #00587A);
    text-align: center;
    color: #fff;
}

.lifestyle-motivation h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.lifestyle-motivation p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Section 7: Testimonial ── */
.testimonial {
    padding: 80px 0;
}

.testimonial-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.4rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ── Footer ── */
.site-footer {
    padding: 40px 0;
    text-align: center;
    background: var(--primary-deep);
    color: #fff;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.footer-brand .logo-tri {
    color: #fff;
}

.footer-brand .logo-dot {
    color: var(--accent-teal);
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ── Create Page (Form) ── */
.create-page {
    padding: 60px 0 80px;
}

.form-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 24px;
}

.form-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 8px;
}

.form-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.form-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
    appearance: auto;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(31, 182, 166, 0.15);
}

/* ── Sample Page (Blueprint Preview) ── */
.bp-page {
    padding: 60px 0 80px;
}

.bp-badge {
    display: inline-block;
    background: var(--accent-teal);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 24px;
}

.bp-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.bp-header-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 4px;
}

.bp-header-plan {
    font-size: 1rem;
    color: var(--accent-teal);
    margin-bottom: 20px;
}

.bp-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.bp-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.bp-legend-chip {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
}

.bp-legend-chip.swim { background: #0F3057; }
.bp-legend-chip.bike { background: #228B22; }
.bp-legend-chip.run  { background: #EA580C; }
.bp-legend-chip.rest { background: #AFBCca; }

.bp-month-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.bp-phase-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.bp-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 24px;
}

.bp-cal-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 6px 0;
    background: var(--bg-alt);
    border-radius: 4px;
}

.bp-cal-cell {
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 6px 4px;
    min-height: 56px;
    font-size: 0.75rem;
    text-align: center;
    background: var(--bg);
}

.bp-cal-cell.empty {
    background: var(--bg);
    border-color: transparent;
    min-height: 0;
}

.bp-cell-day {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text);
    margin-bottom: 2px;
}

.bp-cell-label {
    font-size: 0.7rem;
    font-weight: 600;
}

.bp-cell-label.swim { color: #0F3057; }
.bp-cell-label.bike { color: #228B22; }
.bp-cell-label.run  { color: #EA580C; }
.bp-cell-label.brick { color: #6D28D9; }
.bp-cell-label.rest { color: #94A3B8; }
.bp-cell-label.race { color: #B22828; font-weight: 700; }

.bp-cal-cell.race-day {
    background: #B22828;
    border-color: #B22828;
}

.bp-cal-cell.race-day .bp-cell-day,
.bp-cal-cell.race-day .bp-cell-label {
    color: #fff;
}

.bp-totals {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--card-border);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.bp-total-item {
    font-weight: 600;
    font-size: 0.9rem;
}

.bp-total-item.swim { color: #0F3057; }
.bp-total-item.bike { color: #228B22; }
.bp-total-item.run  { color: #EA580C; }

.bp-cta-section {
    text-align: center;
}

.bp-cta-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

/* ── Contact Page ── */
.contact-page {
    padding: 60px 0 80px;
}

.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(31, 182, 166, 0.15);
}

/* ── FAQ Page ── */
.faq-page {
    padding: 60px 0 80px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    gap: 12px;
}

.faq-question:hover {
    color: var(--accent-teal);
}

.faq-chevron {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.faq-item.open .faq-chevron {
    transform: rotate(-135deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Terms Page ── */
.terms-page {
    padding: 60px 0 80px;
}

.terms-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.terms-content h2 {
    font-size: 1.15rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text);
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.terms-content p strong {
    color: var(--text);
}

/* ── Footer Link ── */
.footer-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--accent-teal);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero .section-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        flex: 1 1 100%;
    }

    .hero-mockup {
        flex: 1 1 100%;
        max-width: 360px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .showcase .section-inner {
        flex-direction: column;
        align-items: center;
    }

    .showcase-visual {
        flex: 1 1 100%;
        width: 260px;
        margin: 0 auto;
    }

    .lifestyle-rest .section-inner {
        flex-direction: column;
    }

    .lifestyle-rest-visual {
        flex: 1 1 100%;
        width: 100%;
        max-width: 300px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 20px;
        margin-top: 36px;
    }

    .lifestyle-motivation h2 {
        font-size: 1.8rem;
    }

    .differentiators,
    .showcase,
    .lifestyle-rest,
    .how-it-works,
    .testimonial {
        padding: 50px 0;
    }
}
