/* ═══════════════════════════════════════════════
   SOUL FAMILY — Design System
   Style: Bold Red · White · Black
   Fonts: Lora (headings) + Raleway (body)
   ═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    /* Colors — Red / White / Black */
    --c-primary: #CC1A1A;        /* Soul Family Red */
    --c-primary-dark: #A81212;
    --c-primary-light: #E84040;
    --c-secondary: #F5F5F5;      /* Light Grey */
    --c-accent: #CC1A1A;
    --c-accent-soft: #FFB3B3;
    --c-bg: #FFFFFF;             /* White */
    --c-bg-dark: #111111;        /* Deep Black */
    --c-bg-card: #FFFFFF;
    --c-text: #111111;
    --c-text-light: #555555;
    --c-text-inv: #FFFFFF;
    --c-border: #E0E0E0;
    --c-success: #059669;

    /* Typography */
    --ff-heading: 'Lora', Georgia, serif;
    --ff-body: 'Raleway', 'Segoe UI', sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.5rem;
    --fs-hero: clamp(2.5rem, 6vw, 5rem);

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.20);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast: 200ms;
    --dur-base: 350ms;
    --dur-slow: 500ms;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--dur-fast) var(--ease-out);
}

ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--ff-heading);
    line-height: 1.2;
    font-weight: var(--fw-semibold);
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--ff-body);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--dur-base) var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform var(--dur-base) var(--ease-out);
}

.btn:hover::after {
    transform: translateX(0);
}

.btn--primary {
    background: var(--c-primary);
    color: white;
    border-color: var(--c-primary);
}

.btn--primary:hover {
    background: var(--c-primary-dark);
    border-color: var(--c-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(204, 26, 26, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-primary);
}

.btn--outline:hover {
    background: var(--c-primary);
    color: white;
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.25);
    border-color: white;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: var(--fs-base);
}

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

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--dur-base) var(--ease-out);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--c-primary);
}

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

.logo-text {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--c-text);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--c-primary);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--c-text-light);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-primary);
    border-radius: 1px;
    transition: width var(--dur-base) var(--ease-out);
}

.nav-link:hover {
    color: var(--c-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    background: var(--c-primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-weight: var(--fw-semibold);
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
    background: var(--c-primary-dark);
    transform: translateY(-1px);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--dur-base) var(--ease-out);
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════
   HERO — Split Layout
   ══════════════════════════════════════════ */
.hero--split {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-bg);
    padding-top: 72px;
}

.hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    min-height: calc(100vh - 72px);
}

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

.hero__tag {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__pretitle {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-medium);
    color: var(--c-text-light);
    margin-bottom: var(--space-sm);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__pretitle em {
    font-style: italic;
    color: var(--c-primary);
}

.hero__title {
    font-size: var(--fs-hero);
    color: var(--c-text);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__title em {
    font-style: italic;
    color: var(--c-primary);
}

.hero__subtitle {
    font-size: var(--fs-md);
    color: var(--c-text-light);
    margin-bottom: var(--space-xl);
    font-weight: var(--fw-regular);
    max-width: 480px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

/* Outline Dark button (for light bg hero) */
.btn--outline-dark {
    background: transparent;
    color: var(--c-text);
    border-color: var(--c-border);
}

.btn--outline-dark:hover {
    background: var(--c-text);
    color: white;
    border-color: var(--c-text);
    transform: translateY(-2px);
}

.hero__stats {
    display: flex;
    gap: var(--space-xl);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.stat {
    text-align: center;
}

.stat--dark .stat__number {
    color: var(--c-text);
}

.stat--dark .stat__plus {
    color: var(--c-primary);
}

.stat--dark .stat__label {
    color: var(--c-text-light);
}

.stat__number {
    display: block;
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: white;
    line-height: 1;
}

.stat__plus {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    color: var(--c-primary-light);
}

.stat__label {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    display: block;
}

/* Hero Image — Right side */
.hero__right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) 0;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero__image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.hero__image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--c-primary-light) 0%, var(--c-primary) 100%);
    opacity: 0.2;
    z-index: 1;
}

/* Ghost button kept for backwards compat */
.btn--ghost {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.25);
    border-color: white;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   USP
   ══════════════════════════════════════════ */
.usp {
    padding: var(--space-2xl) 0;
    background: #F5F5F5;
    position: relative;
}

.usp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-primary), transparent);
}

.usp__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.usp__card {
    text-align: center;
    padding: var(--space-lg) var(--space-sm);
    border-radius: var(--radius-lg);
    transition: all var(--dur-base) var(--ease-out);
    position: relative;
}

.usp__card:hover {
    background: var(--c-bg);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.usp__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.usp__title {
    font-size: var(--fs-md);
    margin-bottom: var(--space-xs);
    color: var(--c-text);
}

.usp__text {
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: var(--space-xs);
}

.section-title {
    font-size: var(--fs-3xl);
    color: var(--c-text);
    margin-bottom: var(--space-sm);
}

.section-title--left { text-align: left; }

.section-subtitle {
    font-size: var(--fs-md);
    color: var(--c-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header--light .section-title,
.section-header--light .section-subtitle {
    color: var(--c-text-inv);
}

.section-header--light .section-subtitle {
    color: rgba(250,247,244,0.7);
}

/* ══════════════════════════════════════════
   DIRECTIONS
   ══════════════════════════════════════════ */
.directions {
    padding: var(--space-3xl) 0;
}

/* Filter */
.directions__filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.filter-btn {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--c-border);
    background: white;
    color: var(--c-text-light);
    cursor: pointer;
    transition: all var(--dur-base) var(--ease-out);
}

.filter-btn:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.filter-btn.active {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: white;
}

/* Grid */
.directions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

/* Card */
.direction-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--dur-base) var(--ease-out);
    cursor: pointer;
}

.direction-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.direction-card.hidden {
    display: none;
}

.direction-card__img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.direction-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease-out);
}

.direction-card:hover .direction-card__img img {
    transform: scale(1.08);
}

.direction-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(45,41,38,0.9) 0%, rgba(45,41,38,0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--dur-base) var(--ease-out);
}

.direction-card:hover .direction-card__overlay {
    opacity: 1;
}

.direction-card__overlay p {
    color: white;
    font-size: var(--fs-sm);
    line-height: 1.6;
}

.direction-card__body {
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.direction-card__body h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
}

.direction-card__tag {
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    background: var(--c-bg);
    padding: 4px 10px;
    border-radius: var(--radius-xl);
    color: var(--c-primary);
    white-space: nowrap;
}

/* ══════════════════════════════════════════
   SCHEDULE
   ══════════════════════════════════════════ */
.schedule {
    padding: var(--space-3xl) 0;
    background: var(--c-bg-dark);
    position: relative;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #FFFFFF;
    clip-path: ellipse(55% 100% at 50% 0%);
}

/* Toggle */
.schedule__toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-xl);
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 4px;
    position: relative;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    border-radius: var(--radius-xl);
    transition: all var(--dur-base) var(--ease-out);
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.toggle-btn.active {
    color: var(--c-text);
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: white;
    border-radius: var(--radius-xl);
    transition: transform var(--dur-base) var(--ease-out);
    z-index: 1;
}

.toggle-slider.right {
    transform: translateX(100%);
}

/* Days */
.schedule__days {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.day-btn {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all var(--dur-base) var(--ease-out);
}

.day-btn:hover {
    border-color: var(--c-primary);
    color: var(--c-primary-light);
}

.day-btn.active {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: white;
}

/* Classes list */
.schedule__classes {
    min-height: 200px;
}

.class-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all var(--dur-base) var(--ease-out);
    animation: fadeUp 0.4s var(--ease-out) forwards;
    opacity: 0;
}

.class-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(4px);
}

.class-item__info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.class-item__time {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--c-primary-light);
    min-width: 60px;
}

.class-item__name {
    font-weight: var(--fw-semibold);
    color: var(--c-text-inv);
}

.class-item__trainer {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

.class-item__action {
    flex-shrink: 0;
}

.schedule__empty {
    text-align: center;
    padding: var(--space-2xl);
    color: rgba(255,255,255,0.4);
    font-size: var(--fs-md);
}

/* ══════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════ */
.pricing {
    padding: var(--space-3xl) 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--dur-base) var(--ease-out);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
    border-color: var(--c-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card--popular:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-primary);
    color: white;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    padding: 4px 16px;
    border-radius: var(--radius-xl);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card__header {
    margin-bottom: var(--space-lg);
}

.pricing-card__header h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-value {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--c-primary);
}

.price-currency {
    font-size: var(--fs-lg);
    color: var(--c-text-light);
}

.pricing-card__desc {
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    margin-top: 4px;
}

.pricing-card__features {
    margin-bottom: var(--space-lg);
}

.pricing-card__features li {
    padding: var(--space-xs) 0;
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    border-bottom: 1px solid var(--c-border);
}

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

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about {
    padding: var(--space-3xl) 0;
    background: white;
}

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

.about__lead {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-medium);
    color: var(--c-text);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.about__text p {
    margin-bottom: var(--space-md);
    color: var(--c-text-light);
}

.about__list {
    margin-top: var(--space-md);
}

.about__list li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
    color: var(--c-text);
    font-weight: var(--fw-medium);
}

.about__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--c-primary);
}

.about__visual {
    position: relative;
}

.about__img-stack {
    position: relative;
    height: 500px;
}

.about__img {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about__img--1 {
    width: 70%;
    height: 65%;
    top: 0;
    right: 0;
    z-index: 2;
}

.about__img--2 {
    width: 60%;
    height: 55%;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* ══════════════════════════════════════════
   SIGNUP
   ══════════════════════════════════════════ */
.signup {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f7f7f7 0%, #ececec 100%);
}

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

.signup__price {
    margin: var(--space-lg) 0;
}

.signup__price span {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--c-primary);
}

.signup__perks li {
    padding: var(--space-xs) 0;
    font-size: var(--fs-md);
}

/* Form */
.signup__form {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

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

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 6px;
    color: var(--c-text);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--c-text);
    background: var(--c-bg);
    transition: all var(--dur-fast) var(--ease-out);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(204, 26, 26, 0.12);
    background: white;
}

.form-group input::placeholder {
    color: var(--c-text-light);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A706B' d='M6 8.5L1 3.5h10L6 8.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-note {
    font-size: var(--fs-xs);
    color: var(--c-text-light);
    text-align: center;
    margin-top: var(--space-sm);
}

/* Spinner */
.spinner {
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
}

/* Success */
.form-success {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    animation: scaleIn 0.5s var(--ease-spring);
}

.form-success__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--c-success);
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.form-success h3 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-xs);
}

.form-success p {
    color: var(--c-text-light);
}

/* ══════════════════════════════════════════
   CONTACTS
   ══════════════════════════════════════════ */
.contacts {
    padding: var(--space-3xl) 0;
    background: var(--c-bg-dark);
}

.contacts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.contact-card {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all var(--dur-base) var(--ease-out);
}

.contact-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.contact-card__icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.contact-card h3 {
    color: var(--c-text-inv);
    font-size: var(--fs-md);
    margin-bottom: var(--space-xs);
}

.contact-card p {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

.contact-card a {
    color: var(--c-primary-light);
}

.contact-card a:hover {
    color: var(--c-primary);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
    padding: var(--space-xl) 0;
    background: #1A1716;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.logo-text--footer {
    font-size: var(--fs-lg);
}

.footer__brand p {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

.footer__links {
    display: flex;
    gap: var(--space-lg);
}

.footer__links a {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.5);
}

.footer__links a:hover {
    color: var(--c-primary-light);
}

.footer__copy {
    width: 100%;
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: var(--space-md);
}

.footer__copy p {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════
   WHATSAPP FAB
   ══════════════════════════════════════════ */
.fab-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--dur-base) var(--ease-out);
    animation: pulse 2s infinite;
}

.fab-whatsapp svg {
    width: 28px;
    height: 28px;
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

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

@keyframes pulse {
    0% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
}

/* Intersection Observer reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .usp__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: #111111;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px var(--space-lg) var(--space-lg);
        gap: var(--space-xs);
        box-shadow: var(--shadow-xl);
        transition: right var(--dur-base) var(--ease-out);
        z-index: 1000;
    }

    .header__nav.open {
        right: 0;
    }

    .nav-link {
        font-size: var(--fs-lg);
        padding: var(--space-sm) 0;
        width: 100%;
        color: rgba(255,255,255,0.85);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-link--cta {
        margin-top: var(--space-sm);
        text-align: center;
        padding: 14px 28px;
    }

    .burger {
        display: flex;
    }

    /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--dur-base) var(--ease-out);
    }

    .mobile-overlay.visible {
        opacity: 1;
        pointer-events: auto;
    }

    /* Hero — Split to stack on mobile */
    .hero__split {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        min-height: auto;
    }

    .hero__left {
        padding: var(--space-lg) 0 0;
        text-align: center;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
        gap: var(--space-lg);
    }

    .stat__number {
        font-size: var(--fs-2xl);
    }

    .hero__right {
        padding: 0 var(--space-lg) var(--space-lg);
    }

    .hero__image-wrapper {
        max-width: 360px;
    }

    .hero__image-accent {
        top: -10px;
        right: -10px;
    }

    /* USP */
    .usp__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    /* Directions */
    .directions__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .direction-card__img {
        height: 160px;
    }

    /* Schedule */
    .schedule::before {
        height: 60px;
    }

    .schedule__toggle {
        flex-direction: column;
    }

    .toggle-slider {
        width: calc(100% - 8px);
        height: calc(50% - 4px);
    }

    .toggle-slider.right {
        transform: translateY(100%);
    }

    /* Pricing */
    .pricing__grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card--popular {
        transform: none;
    }

    .pricing-card--popular:hover {
        transform: translateY(-6px);
    }

    /* About */
    .about__content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about__img-stack {
        height: 350px;
    }

    /* Signup */
    .signup__inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .section-title--left {
        text-align: center;
    }

    .signup__info {
        text-align: center;
    }

    /* Contacts */
    .contacts__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .usp__grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero__stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .day-btn {
        width: 42px;
        height: 42px;
        font-size: var(--fs-xs);
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
