/* =========================================
   WORKMASTER - WORLD-CLASS STYLESHEET
   ========================================= */

/* -------------------------
   CSS VARIABLES
   ------------------------- */
:root {
    /* Colors - Refined Gold/Navy Palette */
    --deep-navy: #0A0F1C;
    --midnight: #121829;
    --card-bg: #161D2F;
    --border-subtle: rgba(201, 162, 39, 0.1);
    --border-hover: rgba(201, 162, 39, 0.3);
    
    --gold-primary: #C9A227;
    --gold-light: #E8D48A;
    --gold-dark: #9A7B1C;
    
    --ivory: #F5F2E8;
    --ivory-muted: rgba(245, 242, 232, 0.85);
    --silver: #8B9AAD;
    --silver-dark: #5A6478;
    
    --signal-red: #C44536;
    --signal-green: #2D6A4F;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;
    
    /* Layout */
    --max-width: 1200px;
    --max-width-narrow: 800px;
    --max-width-text: 680px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ivory);
    background-color: var(--deep-navy);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background-color: var(--gold-primary);
    color: var(--deep-navy);
}

/* Links */
a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Focus States */
:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 4px;
}

/* -------------------------
   TYPOGRAPHY
   ------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ivory);
}

h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw + 0.5rem, 3rem); }
h3 { font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--silver);
    max-width: var(--max-width-text);
}

.text-gold { color: var(--gold-primary); }
.text-signal { color: var(--signal-red); }
.text-strike { text-decoration: line-through; opacity: 0.6; }

/* -------------------------
   LAYOUT
   ------------------------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--narrow {
    max-width: var(--max-width-narrow);
}

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

.section__header {
    margin-bottom: var(--space-xl);
}

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

.section__header--center p {
    margin: 0 auto;
}

.section__label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: var(--space-sm);
}

.section__title {
    margin-bottom: var(--space-md);
}

.section__title--white {
    color: var(--ivory);
}

.section__description {
    font-size: 1.125rem;
    color: var(--silver);
}

.section__description--white {
    color: var(--ivory-muted);
}

/* -------------------------
   BUTTONS
   ------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--gold-primary);
    color: var(--deep-navy);
}

.btn--primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--nav {
    background-color: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn--nav:hover {
    background-color: var(--gold-primary);
    color: var(--deep-navy);
}

.btn--large {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

.btn__price {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    opacity: 0.9;
    margin-left: var(--space-xs);
}

/* Button Loading State */
.btn__loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* -------------------------
   HEADER
   ------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background-color: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.header--scrolled {
    padding: var(--space-xs) 0;
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.brand__logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.brand__text {
    display: flex;
    flex-direction: column;
}

.brand__name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ivory);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.brand__tagline {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--silver);
    transition: color var(--transition-fast);
}

.nav__link:hover {
    color: var(--ivory);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold-primary);
    transition: all var(--transition-fast);
}

.nav__toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav__mobile {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background-color: var(--midnight);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    gap: var(--space-md);
}

.nav__mobile.active {
    display: flex;
}

.nav__mobile-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ivory);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-subtle);
}

/* -------------------------
   HERO
   ------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(73px + var(--space-2xl));
    padding-bottom: var(--space-3xl);
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background-color: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-primary);
    margin-bottom: var(--space-lg);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--signal-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero__title {
    margin-bottom: var(--space-md);
}

.hero__title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    font-style: italic;
    color: var(--gold-primary);
    margin-bottom: var(--space-xs);
}

.hero__title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw + 1rem, 5.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ivory);
}

.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: var(--ivory-muted);
    margin-bottom: var(--space-md);
    max-width: 600px;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--silver);
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

.hero__cta {
    margin-bottom: var(--space-2xl);
}

.hero__guarantee {
    font-size: 0.875rem;
    color: var(--silver-dark);
    margin-top: var(--space-sm);
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 500;
    color: var(--gold-primary);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: var(--silver);
    margin-top: var(--space-xs);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-subtle);
}

.hero__gradient {
    position: absolute;
    top: 0;
    right: -20%;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.problem__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.problem__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.125rem;
    color: var(--ivory-muted);
}

.problem__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--signal-red);
}

.problem__statement {
    padding: var(--space-lg);
    background-color: rgba(201, 162, 39, 0.05);
    border-left: 3px solid var(--gold-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.problem__statement p {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--ivory);
    max-width: none;
}

.problem__statement-emphasis {
    color: var(--gold-primary) !important;
    font-weight: 600;
    margin-top: var(--space-sm);
}

/* -------------------------
   METHOD SECTION
   ------------------------- */
.method__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.method__card {
    position: relative;
    padding: var(--space-lg);
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.method__card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.method__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.method__card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
}

.method__card-title {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: var(--space-sm);
}

.method__card-description {
    font-size: 0.9375rem;
    color: var(--silver);
    margin-bottom: var(--space-md);
}

.method__card-value {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-primary);
    letter-spacing: 0.05em;
}

.method__summary {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.method__summary-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.method__summary-total {
    font-size: 1rem;
    color: var(--silver);
}

.method__summary-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ivory);
}

/* -------------------------
   GUARANTEE SECTION
   ------------------------- */
.section--guarantee {
    background-color: var(--midnight);
}

.guarantee__card {
    padding: var(--space-xl);
    background-color: var(--card-bg);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
}

.guarantee__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
}

.guarantee__icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold-primary);
}

.guarantee__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: var(--space-md);
}

.guarantee__description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--ivory-muted);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.guarantee__steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    counter-reset: step;
}

.guarantee__step {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

.guarantee__step--highlight {
    background-color: rgba(45, 106, 79, 0.15);
    border: 1px solid rgba(45, 106, 79, 0.3);
}

.guarantee__step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold-primary);
    color: var(--deep-navy);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.guarantee__step-content strong {
    display: block;
    font-size: 1rem;
    color: var(--ivory);
    margin-bottom: var(--space-xs);
}

.guarantee__step-content p {
    font-size: 0.9375rem;
    color: var(--silver);
    margin: 0;
}

/* -------------------------
   RESULTS SECTION
   ------------------------- */
.results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.testimonial {
    padding: var(--space-lg);
    background-color: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.testimonial:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial__stars {
    font-size: 1rem;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.testimonial__quote {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--ivory-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    max-width: none;
}

.testimonial__author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.testimonial__name {
    font-weight: 600;
    color: var(--gold-primary);
}

.testimonial__location {
    font-size: 0.875rem;
    color: var(--silver-dark);
}

/* -------------------------
   COACH SECTION
   ------------------------- */
.section--coach {
    background-color: var(--midnight);
}

.coach__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
}

.coach__image-wrapper {
    position: relative;
}

.coach__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.coach__image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.coach__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.coach__intro {
    font-size: 1.125rem;
    color: var(--ivory-muted);
    margin-bottom: var(--space-lg);
}

.coach__credentials {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.coach__credential {
    display: flex;
    gap: var(--space-md);
}

.coach__credential-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--gold-primary);
}

.coach__credential strong {
    display: block;
    color: var(--ivory);
    margin-bottom: var(--space-xs);
}

.coach__credential p {
    font-size: 0.9375rem;
    color: var(--silver);
    margin: 0;
}

.coach__promise {
    padding: var(--space-lg);
    background-color: rgba(201, 162, 39, 0.05);
    border-left: 3px solid var(--gold-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.coach__promise p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--ivory);
    max-width: none;
    margin-bottom: var(--space-sm);
}

.coach__promise p:last-child {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--silver);
}

/* -------------------------
   BOOKING SECTION
   ------------------------- */
.section--booking {
    background: linear-gradient(180deg, var(--deep-navy) 0%, #070B14 100%);
}

.booking__card {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--midnight) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
}

.booking__action {
    max-width: 480px;
    margin: 0 auto;
}

.booking__assurances {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.booking__assurances li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--silver);
}

.booking__assurances svg {
    width: 16px;
    height: 16px;
    color: var(--signal-green);
}

/* -------------------------
   FOOTER
   ------------------------- */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background-color: #050810;
    border-top: 1px solid var(--border-subtle);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.brand--footer .brand__name {
    font-size: 1.125rem;
}

.footer__description {
    font-size: 0.9375rem;
    color: var(--silver);
    margin-top: var(--space-md);
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: var(--space-md);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    font-size: 0.9375rem;
    color: var(--silver);
}

.footer__links a:hover {
    color: var(--ivory);
}

.footer__contact address {
    font-style: normal;
    font-size: 0.9375rem;
    color: var(--silver);
}

.footer__contact address p {
    margin-bottom: var(--space-sm);
}

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--silver-dark);
    max-width: none;
}

/* -------------------------
   ANIMATIONS
   ------------------------- */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------
   RESPONSIVE
   ------------------------- */
@media (max-width: 1024px) {
    .coach__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .coach__image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 6rem;
        --space-2xl: 4rem;
    }
    
    .nav__link,
    .btn--nav {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: calc(73px + var(--space-xl));
    }
    
    .hero__stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .hero__stat-divider {
        display: none;
    }
    
    .method__grid {
        grid-template-columns: 1fr;
    }
    
    .results__grid {
        grid-template-columns: 1fr;
    }
    
    .booking__card {
        padding: var(--space-xl) var(--space-md);
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-3xl: 4rem;
        --space-2xl: 3rem;
        --space-xl: 2rem;
    }
    
    .brand__text {
        display: none;
    }
    
    .guarantee__card {
        padding: var(--space-lg) var(--space-md);
    }
    
    .guarantee__step {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee__step-number {
        margin: 0 auto;
    }
}

/* -------------------------
   PRINT STYLES
   ------------------------- */
@media print {
    .header,
    .hero__gradient,
    .btn,
    .nav__mobile {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 2rem 0;
    }
}
