/* ============================================
   Trener Łukasz Sysik – Bielsko-Biała
   Professional stylesheet
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
    --bg:           #0a0a0b;
    --bg-alt:       #101013;
    --bg-soft:      #16161a;
    --surface:      #16161a;
    --surface-2:    #1e1e24;
    --surface-3:    #26262e;
    --border:       #2a2a32;
    --border-light: #3a3a44;

    --accent:       #3b82f6;
    --accent-hover: #2563eb;
    --accent-soft:  rgba(59, 130, 246, 0.14);
    --accent-bright:#60a5fa;

    --energy:       #ff5722;
    --energy-soft:  rgba(255, 87, 34, 0.12);

    --text:         #f4f4f5;
    --text-muted:   #a1a1aa;
    --text-dim:     #909099;

    --green:        #22c55e;
    --gold:         #f59e0b;

    --radius:       1rem;
    --radius-sm:    0.625rem;
    --shadow:       0 8px 30px rgba(0, 0, 0, 0.35);
    --shadow-md:    0 10px 35px rgba(0, 0, 0, 0.4);
    --shadow-lg:    0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow:  0 10px 40px rgba(59, 130, 246, 0.2);
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    max-width: 100vw;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    transition: color var(--transition);
}

img {
    max-width: 100%;
}

/* ---------- Layout helpers ---------- */
.section {
    position: relative;
    max-width: 100%;
    overflow-x: clip;
}

.section-divider-top {
    background: linear-gradient(180deg, var(--bg-alt) 0%, transparent 100%);
    height: 80px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.bg-surface {
    background-color: var(--surface);
}

.bg-surface-2 {
    background-color: var(--surface-2);
}

/* ---------- Navigation ---------- */
.navbar {
    background-color: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar .nav-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text);
    min-width: 0;
    overflow: hidden;
}

.navbar .nav-logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-logo .logo-icon {
    width: 32px;
    height: 32px;
    padding: 4px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    flex-shrink: 0;
}

.navbar .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.navbar .nav-link:hover {
    color: var(--text);
}

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

.navbar .nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.navbar .nav-cta:hover {
    background: var(--accent-hover);
    color: #fff;
}

#mobile-menu {
    background-color: var(--surface);
    border-top: 1px solid var(--border);
}

#mobile-menu a {
    color: var(--text-muted);
    font-weight: 500;
}

#mobile-menu a:hover {
    background-color: var(--surface-2);
    color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 10, 11, 0.92) 0%, rgba(10, 10, 11, 0.55) 50%, rgba(10, 10, 11, 0.2) 100%),
        linear-gradient(0deg, var(--bg) 0%, transparent 35%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-soft);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--accent);
    padding: 0.375rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transition: all var(--transition);
}

.hero-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.4);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust .trust-item {
    display: flex;
    flex-direction: column;
}

.hero-trust .trust-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-trust .trust-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* ---------- Section headers ---------- */
.section-title {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: block;
    text-align: center;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

/* ---------- O mnie ---------- */
.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: calc(var(--radius) + 12px);
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    opacity: 0.12;
    z-index: -1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.about-stat {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-stat .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
    line-height: 1.3;
}

/* ---------- Pricing ---------- */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 100%;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 300px;
    text-align: center;
    color: var(--text);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--energy) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, 0.18);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.is-popular {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow), var(--shadow);
}

.pricing-card.is-popular::before {
    transform: scaleX(1);
}

.pricing-card.is-popular:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow), var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, 0.3);
}

/* Badge – centered pill at top of card */
.popular-badge {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    z-index: 4;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* Make room for the badge so it doesn't overlap the title */
.pricing-card.is-popular .card-body {
    padding-top: 3rem;
}

.pricing-card .card-body {
    padding: 2rem 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card .card-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.pricing-card .card-desc {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card .price-block {
    margin-bottom: 1.5rem;
}

.pricing-card .price-main {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-card .price-unit {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.pricing-card .price-quarter {
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    padding: 0.625rem;
    margin-bottom: 1.5rem;
}

.pricing-card .price-quarter .pq-amount {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-card .price-quarter .pq-save {
    color: var(--text-dim);
    font-size: 0.8rem;
}

.pricing-card .feature-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0;
    flex-grow: 1;
}

.pricing-card .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.925rem;
    color: var(--text-muted);
}

.pricing-card .feature-item.is-highlight {
    color: var(--gold);
    font-weight: 600;
}

.pricing-card .feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    transition: transform 0.3s ease;
}

.pricing-card:hover .feature-icon {
    transform: scale(1.12);
}

.pricing-card .feature-icon.green {
    color: var(--green);
}

.pricing-card .feature-icon.gold {
    color: var(--gold);
}

.pricing-card .card-cta {
    display: block;
    background: var(--surface-2);
    color: var(--text);
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-top: 1px solid var(--border);
    transition: background var(--transition);
}

.pricing-card .card-cta:hover {
    background: var(--surface-3);
    color: var(--accent);
}

.pricing-card.is-popular .card-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    border-top: none;
    color: #fff;
}

.pricing-card.is-popular .card-cta:hover {
    color: #fff;
    filter: brightness(1.08);
}

/* ---------- Metamorfozy (Swiper) ---------- */
.swiper-container-metamorfozy {
    width: 100%;
    overflow: hidden;
    padding-bottom: 3rem;
    cursor: grab;
}

.swiper-container-metamorfozy:active {
    cursor: grabbing;
}

.swiper-container-metamorfozy.swiper-container-horizontal > * {
    user-select: none;
    -webkit-user-select: none;
}

.swiper-slide {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}

.morph-info {
    text-align: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.morph-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.morph-time {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.morph-results {
    display: inline-flex;
    flex-direction: column;
    text-align: left;
    gap: 0.5rem;
    max-width: 100%;
}

.morph-results li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.925rem;
    color: var(--text-muted);
}

.morph-results .feature-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.morph-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.morph-img-wrap {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.morph-img-wrap img {
    width: 100%;
    aspect-ratio: 12 / 16;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.morph-label {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.morph-label.before {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    backdrop-filter: blur(4px);
}

.morph-label.after {
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent) !important;
}

.swiper-pagination-bullet {
    background: var(--text-dim) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
}

/* ---------- Pierwsze spotkanie (Steps) ---------- */
.steps-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: border-color var(--transition), transform var(--transition);
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 0.625rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
}

.step-body {
    flex-grow: 1;
}

.step-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.step-sub-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.step-sub-item .sub-label {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
}

.step-sub-item .sub-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---------- Pierwsze spotkanie – karta ceny (krok 4) ---------- */
.step-card-price {
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg-soft) 100%);
    border-color: rgba(37, 99, 235, 0.2);
}

.price-inline {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    margin: 0.5rem 0;
}

.price-inline-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-inline-unit {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}

.price-includes {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}

.price-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-includes .feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
}

.price-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--energy) 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.28);
    transition: all var(--transition);
}

.price-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    filter: brightness(1.08);
}

/* ---------- Kontakt ---------- */
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 0.625rem;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info .ci-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info .ci-value {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

.contact-info a.ci-value:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity var(--transition);
}

.contact-social a:hover {
    opacity: 0.88;
}

.contact-social .social-ig {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: #fff;
}

.contact-social .social-fb {
    background: #1877f2;
    color: #fff;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 340px;
    max-width: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    max-width: 100%;
    border: 0;
    filter: grayscale(0.4) contrast(1.05) invert(0.92) hue-rotate(180deg);
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    padding: 3rem 0 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .nav-logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-col h3 {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ---------- Animations ---------- */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-10px); }
}

.slide-down { animation: slideDown 0.3s ease forwards; }
.slide-up   { animation: slideUp 0.3s ease forwards; }

/* ---------- Mobile menu button ---------- */
#mobile-menu-button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 0.625rem;
    border-radius: 0.5rem;
    transition: all var(--transition);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#mobile-menu-button:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ---------- Scroll indicator ---------- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-muted);
    animation: bounce 2s infinite;
    max-width: 24px;
}

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

/* ---------- Utilities ---------- */
.text-muted { color: var(--text-muted); }
.text-dim   { color: var(--text-dim); }
.text-accent { color: var(--accent); }

/* ---------- Mobile responsive fixes ---------- */
@media (max-width: 640px) {
    .navbar .nav-logo {
        font-size: 1.05rem;
        gap: 0.5rem;
    }

    .nav-logo .logo-icon {
        width: 28px;
        height: 28px;
    }

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

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

    .hero-trust {
        gap: 1.25rem;
    }

    .hero-trust .trust-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .pricing-card {
        max-width: 100%;
    }

    .step-card {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .price-inline-amount {
        font-size: 2.75rem;
    }

    .swiper-slide {
        padding: 1.25rem;
    }

    .morph-images {
        gap: 0.5rem;
    }
}
