/* ═══════════════════════════════════════════════
   SHARED UTILITIES
═══════════════════════════════════════════════ */
body {
    position: relative;
    overflow-x: hidden;
}

.section {
    padding: var(--space-xl) 0;
}

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

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

.max-w-readable {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 600;
    color: var(--text-heading);
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-heading);
    margin-bottom: 8px;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
}

/* Section eyebrow label */
.section-eyebrow,
.section-kicker {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-green);
    margin-bottom: 14px;
    display: block;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 540px;
    margin-top: 12px;
}

/* Store buttons */
.store-btn {
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Fade-in on scroll */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
    padding-top: calc(var(--nav-height) + var(--space-lg));
    padding-bottom: var(--space-xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 0 0 auto;
    max-width: 560px;
}

/* Hero badge pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border: 1.5px solid rgba(26, 27, 24, 0.22);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-heading);
    margin-bottom: 28px;
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-heading);
    flex-shrink: 0;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.subheadline {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 460px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-heading) !important;
    padding: 15px 28px;
    font-size: 0.95rem;
    border: 1.5px solid rgba(26, 27, 24, 0.28);
    border-radius: 12px;
}

.btn-secondary:hover {
    background: rgba(26, 27, 24, 0.05);
    transform: translateY(-1px);
}

.btn-secondary:disabled {
    opacity: 0.45;
    cursor: default;
}

/* Hero visual mockup */
.hero-visual {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-mockup {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mockup-right-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Mockup cards base */
.mockup-card {
    background: #FFFFFF;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    padding: 16px;
}

.mockup-journey-card {
    padding: 18px 20px;
}

.mockup-journey-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.mockup-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mockup-date {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.mockup-journey-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.mockup-crew-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-avatars {
    display: flex;
}

.mockup-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    margin-right: -6px;
    border: 2px solid #FFFFFF;
    flex-shrink: 0;
}

.mockup-crew-label {
    font-size: 0.8rem;
    color: var(--text-body);
    margin-left: 10px;
}

/* Progress photo card */
.mockup-progress-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mockup-photo {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #F0E8D8 0%, #E4D4BC 50%, #D8C8A8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(var(--radius-card) - 1px) calc(var(--radius-card) - 1px) 0 0;
    overflow: hidden;
    position: relative;
}

.mockup-photo svg {
    opacity: 1;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mockup-progress-info {
    padding: 12px 14px 14px;
}

.mockup-progress-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.mockup-boosts {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-green);
}

.mockup-boosts svg {
    fill: var(--accent-green);
    width: 12px;
    height: 12px;
}

/* Notification card */
.mockup-notification {
    background: #E8F2EA;
    border: none;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-heading);
    line-height: 1.5;
}

.mockup-notification strong {
    font-weight: 600;
}

/* Month card */
.mockup-month-card {
    flex: 1;
    padding: 14px;
}

.mockup-month-card .mockup-label {
    margin-bottom: 10px;
    display: block;
}

.mockup-month-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mockup-month-list li {
    font-size: 0.75rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.mockup-month-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-muted);
    margin-top: 5px;
    flex-shrink: 0;
}

/* Small avatar */
.mockup-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-it-works {
    background: var(--bg-main);
}

.hiw-header {
    margin-bottom: 60px;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.hiw-step {
    padding-right: 2rem;
}

.hiw-step-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
}

.hiw-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-sm);
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-heading);
}

.hiw-step-num {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.hiw-connector {
    flex: 1;
    height: 1.5px;
    background: var(--border-subtle);
    margin: 0 4px;
}

.hiw-step:last-child .hiw-connector {
    display: none;
}

.hiw-step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.hiw-step p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   WHAT YOU GET
═══════════════════════════════════════════════ */
.what-you-get {
    background: var(--bg-main);
}

.wyg-header {
    margin-bottom: 48px;
}

.wyg-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}

.wyg-card {
    background: #FFFFFF;
    border: 1px solid var(--border-card);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wyg-illustration {
    padding: 24px;
    background: var(--bg-tint-light);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Journey card illustration */
.mini-journey-card {
    background: #FFFFFF;
    border: 1px solid var(--border-card);
    border-radius: 10px;
    padding: 14px 16px;
}

.mini-journey-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.mini-journey-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.mini-journey-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-journey-bullets li {
    font-size: 0.75rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 7px;
}

.mini-journey-bullets li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
}

/* Progress illustration swatches */
.progress-swatches {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.swatch {
    flex: 1;
    height: 80px;
    border-radius: 10px;
}

.swatch-sage { background: #8FAD87; }
.swatch-tan  { background: #B8965A; }
.swatch-blue { background: #8DB5C8; }

.swatch-caption {
    font-size: 0.8rem;
    color: var(--text-body);
    font-style: italic;
    margin: 0;
}

/* Crew illustration */
.crew-avatars-row {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.crew-boost-notification {
    background: #E8F2F8;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 0.78rem;
    color: var(--text-heading);
    line-height: 1.4;
}

.crew-boost-notification strong {
    font-weight: 600;
}

/* What you get card body */
.wyg-card-body {
    padding: 22px 24px 26px;
    flex: 1;
}

.wyg-card-eyebrow {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-green);
    margin-bottom: 8px;
}

.wyg-card-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.wyg-card-body p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   TOGETHER
═══════════════════════════════════════════════ */
.together {
    padding: var(--space-xl) 0;
}

.together-card {
    background: var(--accent-blue);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.together-text h2 {
    margin-top: 14px;
    margin-bottom: 20px;
}

.together-text > p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.75;
    margin-bottom: 28px;
}

.together-quote {
    border-left: 3px solid var(--accent-green);
    padding-left: 20px;
    margin: 0;
}

.together-quote p {
    font-size: 0.95rem;
    color: var(--text-heading);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 8px;
}

.together-quote cite {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.together-quote cite .cite-name {
    color: var(--text-heading);
    font-weight: 500;
}

.together-quote cite strong {
    color: var(--accent-green);
    font-weight: 600;
}

/* Progress grid */
.progress-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.progress-grid-card {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
}

.progress-swatch {
    width: 100%;
    aspect-ratio: 3/2;
    position: relative;
    overflow: hidden;
}

.swatch-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Card 1: Deadlift — dark gym floor, warm amber overhead spotlight */
.progress-swatch-1 {
    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(200, 130, 40, 0.55) 0%, transparent 62%),
        linear-gradient(180deg, #2C2416 0%, #181410 60%, #1C1810 100%);
}

/* Card 2: First pull-up — bright gym daylight, natural blue-white light */
.progress-swatch-2 {
    background: linear-gradient(175deg, #D8EAF6 0%, #B8D0E4 50%, #94B8D0 100%);
}

/* Card 3: 6am session — pre-dawn navy with sunrise glow from horizon */
.progress-swatch-3 {
    background:
        radial-gradient(ellipse 80% 50% at 50% 102%, rgba(220, 110, 40, 0.7) 0%, transparent 55%),
        linear-gradient(180deg, #080E1A 0%, #101828 50%, #141C28 100%);
}

/* Card 4: Mirror selfie / clothes fitting — warm neutral tones */
.progress-swatch-4 {
    background: linear-gradient(145deg, #EAD8C4 0%, #D8C4AC 50%, #C8B09A 100%);
}

.progress-card-info {
    padding: 10px 12px 12px;
}

.progress-card-joined {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
}

.joined-avatars {
    display: flex;
}

.joined-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    color: #fff;
    margin-right: -4px;
    border: 1.5px solid #FFFFFF;
    flex-shrink: 0;
}

.joined-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent-green);
    margin-left: 8px;
    white-space: nowrap;
}

.progress-card-title {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-heading);
    line-height: 1.4;
    margin-bottom: 6px;
}

.progress-card-boosts {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent-green);
}

.progress-card-boosts svg {
    fill: var(--accent-green);
    width: 11px;
    height: 11px;
}

/* ═══════════════════════════════════════════════
   WHERE IT FITS
═══════════════════════════════════════════════ */
.where-it-fits {
    background: var(--bg-main);
}

.wif-header {
    margin-bottom: 12px;
}

.wif-list {
    margin-top: 8px;
}

.wif-item {
    border-top: 1px solid var(--border-subtle);
    padding: 36px 0;
}

.wif-item:last-child {
    border-bottom: 1px solid var(--border-subtle);
}

.wif-item-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.wif-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0;
}

.wif-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   JOURNEY PROOF
═══════════════════════════════════════════════ */
.journey-proof {
    background: var(--bg-main);
    text-align: center;
    padding: var(--space-xl) 0;
}

.journey-proof-inner {
    max-width: 640px;
    margin: 0 auto;
}

.journey-proof h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-top: 12px;
    margin-bottom: 28px;
}

.journey-proof-statements {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.journey-proof-statements p {
    font-size: 1.05rem;
    color: var(--text-heading);
    margin: 0;
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

.faq-left h2 {
    margin-top: 14px;
    margin-bottom: var(--space-sm);
    word-break: initial;
    font-size: 2.4rem;
}

.faq-left p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-of-type {
    border-top: 1px solid var(--border-subtle);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-heading);
    gap: 1.5rem;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding-bottom: 1.25rem;
    color: var(--text-body);
    line-height: 1.75;
    font-size: 0.9rem;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════ */
.final-cta {
    padding: var(--space-xl) 0;
}

.cta-card {
    background: var(--accent-green);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
}

.cta-badge {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.cta-badge .badge-dot {
    background: rgba(255,255,255,0.7);
}

.cta-card h2 {
    color: #FFFFFF;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
}

.cta-card p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 36px;
}

.btn-cta-primary {
    background: #FFFFFF;
    color: var(--text-heading) !important;
    padding: 15px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1.5px solid transparent !important;
    transition: all 0.25s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-cta-secondary {
    background: transparent;
    color: #FFFFFF !important;
    padding: 15px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.45) !important;
    transition: all 0.25s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   BLOG TEASER (kept for blog section usage)
═══════════════════════════════════════════════ */
.blog-teaser-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.blog-teaser-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    text-decoration: none;
    background: var(--bg-surface);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-teaser-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 4px 20px rgba(49, 91, 63, 0.08);
}

.blog-teaser-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.4;
    margin: 0;
}

.blog-teaser-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.blog-teaser-read {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-top: 0.5rem;
}

.blog-card-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-green);
}

/* ═══════════════════════════════════════════════
   CREATORS PAGE CLASSES (preserved)
═══════════════════════════════════════════════ */
.comparison-card {
    border-radius: var(--radius-card);
    padding: 28px;
}

.comparison-card-light {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
}

.comparison-card-dark {
    background: var(--text-heading);
    color: #fff;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    background: var(--bg-surface);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-tint-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .section {
        padding: var(--space-lg) 0;
    }

    .hero {
        padding-top: calc(var(--nav-height) + var(--space-md));
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .subheadline {
        max-width: 100%;
    }

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

    .hero-badge {
        display: inline-flex;
    }

    .hero-visual {
        justify-content: center;
        width: 100%;
    }

    .hero-mockup {
        max-width: 420px;
    }

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

    .hiw-step:nth-child(2) .hiw-connector,
    .hiw-step:last-child .hiw-connector {
        display: none;
    }

    .wyg-cards {
        grid-template-columns: 1fr;
    }

    .together-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .wif-item-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .cta-card {
        padding: 50px 36px;
    }

    .blog-teaser-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hiw-step {
        padding-right: 0;
    }

    .hiw-connector {
        display: none;
    }

    .together-card {
        padding: 32px 24px;
    }

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

    .cta-card {
        padding: 40px 24px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .store-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .cta-card h2 {
        font-size: 2rem;
    }
}

/* Two Ways to Journey Section */
.two-ways-header {
    margin-bottom: 48px;
}
.two-ways-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .two-ways-cards {
        grid-template-columns: 1fr 1fr;
    }
}
.way-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.way-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #F4F3ED;
    border-radius: 12px;
    margin-bottom: 24px;
    color: #315B3F;
}
.way-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #111;
}
.way-card p {
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}
.way-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 24px 0;
}
.way-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.way-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 500;
}
.way-check-list li svg {
    color: #315B3F;
}
