/* ================================================
   PLAN YOUR LAUNCH IN A DAY - RESTRUCTURED LAYOUT
   Inspired by Elizabeth Goddard's proven template
   Jillian Thomas & Co Brand Identity
   ================================================ */

/* ================== RESET & BASE ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --black: #000000;
    --white: #ffffff;
    --electric-pink: #ff33eb;
    --sunshine-yellow: #f1ec2e;
    --aqua: #00cfca;
    
    /* Color Usage */
    --text-highlight: var(--aqua);      /* Teal for text/prices - readable */
    --box-highlight: var(--sunshine-yellow);  /* Yellow for backgrounds/boxes */
    
    /* Grays */
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #333333;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Spacing - Tighter rhythm */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ================== CONTAINERS ================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* ================== SPACERS ================== */
.spacer-xs { height: 0.5rem; }
.spacer-sm { height: 1rem; }
.spacer-md { height: 2rem; }
.spacer-lg { height: 3rem; }
.spacer-xl { height: 5rem; }

/* ================== DIVIDERS ================== */
.divider-line {
    height: 2px;
    background: var(--gray-medium);
    max-width: 100px;
    margin: 0 auto;
}

/* ================== TYPOGRAPHY ================== */
.section-header {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--black);
}

.section-header.centered {
    text-align: center;
}

.section-header.white {
    color: var(--white);
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    color: var(--gray-dark);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.hero-hook-line {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.hero-bold {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.hero-emphasis {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    text-align: center;
    font-style: italic;
}

.large-text {
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.medium-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.centered {
    text-align: center;
}

.bold {
    font-weight: 700;
}

.white-text {
    color: var(--white);
}

.emoji {
    font-style: normal;
    display: inline-block;
}

/* Video Watch Label */
.video-watch-label {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--electric-pink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: gentle-pulse 2s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Video Container */
.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.2);
    background-color: var(--black);
    position: relative;
    border: 3px solid var(--electric-pink);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.video-container:hover {
    transform: translateY(-4px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 70px rgba(255, 51, 235, 0.3);
}

/* ================== EXPIRED BANNER ================== */
.expired-banner {
    background: linear-gradient(135deg, #ffed4e 0%, #f1ec2e 100%);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 3px solid var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.expired-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--black);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .expired-text {
        font-size: 0.875rem;
        line-height: 1.4;
        padding: 0 1rem;
    }
}

/* ================== HERO SECTION ================== */
.hero {
    background: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Video Watch Label */
.video-watch-label {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--electric-pink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: gentle-pulse 2s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Video Container - PRIORITY ELEMENT */
.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.2);
    background-color: var(--black);
    position: relative;
    border: 3px solid var(--electric-pink);
}

.video-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--electric-pink);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.video-container:hover {
    transform: translateY(-4px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 70px rgba(255, 51, 235, 0.3);
}

/* ================== STICKY VIDEO (Minimized on Scroll) ================== */
.video-container.sticky-video {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    width: 400px;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-container.sticky-video:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 51, 235, 0.4);
}

/* Close button for sticky video */
.video-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--electric-pink);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.video-container.sticky-video .video-close-btn {
    opacity: 1;
}

.video-close-btn:hover {
    background: var(--electric-pink);
    color: var(--black);
    transform: rotate(90deg);
}

/* Mobile sticky video */
@media (max-width: 768px) {
    .video-container.sticky-video {
        max-width: 280px;
        width: 280px;
        bottom: 10px;
        right: 10px;
    }
}

/* ================== BUTTONS ================== */
.btn {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-large {
    padding: 1.375rem 3rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
}

.btn-primary {
    background-color: var(--electric-pink);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 51, 235, 0.3);
}

.btn-primary:hover {
    background-color: #e01fd4;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 51, 235, 0.4);
}

.btn-black {
    background-color: var(--black);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-black:hover {
    background-color: var(--gray-dark);
    transform: translateY(-2px);
}

/* ================== CTA BOXES ================== */
.cta-box, .cta-box-final {
    text-align: center;
    margin: var(--spacing-md) 0;
}

.cta-subtext {
    font-size: 1rem;
    margin-top: 0.75rem;
    color: var(--gray-dark);
    line-height: 1.4;
}

.cta-subtext.white {
    color: var(--white);
}

.price-highlight {
    color: var(--aqua);
    font-weight: 800;
    font-size: 1.375rem;
    text-shadow: none;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

/* ================== CALLOUT BOXES ================== */
.callout-box {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) auto;
    max-width: 700px;
}

.callout-dark {
    background-color: var(--black);
    color: var(--white);
}

.callout-light {
    background-color: var(--gray-light);
    border: 2px solid var(--black);
}

.callout-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    margin: 0;
}

/* ================== HIGHLIGHT BOX ================== */
.highlight-box {
    background: var(--electric-pink);
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.highlight-text {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0.25rem 0;
}

/* ================== OUTCOME BOX ================== */
.outcome-box {
    background-color: var(--sunshine-yellow);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 6px 25px rgba(241, 236, 46, 0.3);
    border: 2px solid var(--black);
}

.outcome-text {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.4;
    margin: 0.25rem 0;
}

/* ================== PROBLEM SECTION ================== */
.problem-section {
    background-color: var(--black);
    color: var(--white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: var(--spacing-md) 0;
}

.pain-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pain-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.pain-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* ================== SHIFT SECTION ================== */
.shift-section {
    background-color: var(--white);
}

.checklist {
    max-width: 700px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background-color: var(--gray-light);
    border-radius: var(--radius-sm);
}

.check {
    font-size: 1.75rem;
    color: var(--aqua);
    font-weight: 900;
    flex-shrink: 0;
    line-height: 1;
}

.checklist-item p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.5;
}

/* ================== OFFER INTRO ================== */
.offer-intro {
    background: var(--white);
}

/* ================== FEATURES SECTION ================== */
.whats-inside {
    background-color: var(--white);
}

.feature-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.feature-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: var(--electric-pink);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.feature-note {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-dark);
    margin-top: 1rem;
}

/* Mini List */
.mini-list {
    background-color: var(--gray-light);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.mini-list-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.mini-list-item {
    padding: 0.5rem 0;
    padding-left: 1rem;
    line-height: 1.5;
    font-size: 1rem;
}

/* Phase Grid */
.phase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: var(--spacing-md) 0;
}

.phase-box {
    background-color: var(--gray-light);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    text-align: center;
}

.phase-name {
    font-weight: 800;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--electric-pink);
}

.phase-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

/* ================== VALUE SECTION ================== */
.value-section {
    background-color: var(--black);
    color: var(--white);
}

.value-stack {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-label {
    font-size: 1.0625rem;
}

.value-amount {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--aqua);
}

.value-divider {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

.value-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.value-total-label {
    font-size: 1.375rem;
    font-weight: 800;
}

.value-total-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--aqua);
}

.value-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    border: 3px solid var(--sunshine-yellow);
    box-shadow: 0 0 20px rgba(241, 236, 46, 0.4), 
                0 0 40px rgba(241, 236, 46, 0.2),
                inset 0 0 20px rgba(241, 236, 46, 0.1);
}

.value-price-label {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
}

.value-price-amount {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.strike-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
}

.final-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--aqua);
}

/* ================== HOW IT WORKS ================== */
.how-it-works {
    background-color: var(--white);
}

.steps-simple {
    max-width: 500px;
    margin: 0 auto;
}

.step-simple {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--gray-light);
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.step-number-badge {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--black);
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--electric-pink);
    box-shadow: 0 4px 15px rgba(255, 51, 235, 0.3);
}

.step-title-simple {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 0;
}

.step-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--electric-pink);
    margin: 0.5rem 0;
}

/* Explanation Box */
.explanation-box {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    max-width: 650px;
    margin: 0 auto;
}

.explanation-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0;
}

.explanation-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0;
}

/* ================== WHO THIS IS FOR ================== */
.who-section {
    background: var(--black);
    color: var(--white);
}

.who-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.who-column {
    padding: 2rem;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.who-heading {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0;
}

.who-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.who-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.arrow-icon {
    color: var(--electric-pink);
    font-weight: 900;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.who-list-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* ================== FAQ SECTION ================== */
.faq-section {
    background-color: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid var(--black);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    text-align: left;
    transition: all var(--transition);
}

.faq-question:hover {
    background-color: var(--gray-light);
}

.faq-q-text {
    font-size: 1.125rem;
    font-weight: 700;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--electric-pink);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: var(--gray-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.25rem 1.5rem;
    margin: 0;
    line-height: 1.7;
}

/* ================== FINAL CTA ================== */
.final-cta {
    background: var(--electric-pink);
    color: var(--white);
}

/* ================== SIGN-OFF ================== */
.signoff-section {
    background-color: var(--white);
    padding: var(--spacing-lg) 0;
}

.signoff-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.signoff-line {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.signature {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 1.5rem;
}

/* ================== P.S. SECTION ================== */
.ps-section {
    background-color: var(--gray-light);
    padding: var(--spacing-lg) 0;
}

.ps-content {
    max-width: 700px;
    margin: 0 auto;
}

.ps-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ================== FOOTER ================== */
.footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

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

/* ================== ANIMATIONS ================== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.pulse {
    animation: pulse 2.5s ease-in-out infinite;
}

.pulse-big {
    animation: pulse 1.8s ease-in-out infinite;
}

/* Disable scroll animations between sections */
section,
section * {
    opacity: 1 !important;
    transform: none !important;
}

section {
    transition: none !important;
}

/* Ensure all content appears immediately */
.hero-content,
.container,
.container-narrow,
.problem-section *,
.shift-section *,
.offer-intro *,
.whats-inside *,
.value-section *,
.how-it-works *,
.who-section *,
.faq-section *,
.final-cta *,
.signoff-section *,
.ps-section * {
    opacity: 1 !important;
}

/* Remove any transition delays */
* {
    transition-delay: 0s !important;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    /* Keep video prominent on mobile */
    .video-container {
        max-width: 100%;
        border-width: 2px;
    }
        max-width: 100%;
        border-width: 2px;
    }
    
    .video-watch-label {
        font-size: 1rem;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .phase-grid {
        grid-template-columns: 1fr;
    }
    
    .who-columns {
        grid-template-columns: 1fr;
    }
    
    .value-row,
    .value-total-row,
    .value-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .value-price-amount {
        justify-content: flex-start;
    }
    
    .btn {
        width: 100%;
        padding: 1.125rem 2rem;
    }
    
    .btn-large,
    .btn-xl {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-icon-large {
        font-size: 3rem;
    }
    
    .step-number-badge {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}