/*
Theme Name: impro
Author: Aleksander Banaszak
Author URI: https://aleksander.cloud/
*/
:root {
    --white: #ffffff;
    --off-white: #F8F9FB;
    --light: #F0F2F5;
    --border: #E4E7EC;
    --text-muted: #8A8FA8;
    --text-body: #322F55;
    --text-dark: #08003f;
    --accent: #00c599;
    --accent-light: #E6FAF5;
    --accent-dark: #00a882;
    --accent2: #ef9900;
    --accent2-light: #FFF8EB;
    --accent2-dark: #d88100;
    --crimson: #cf1e4e;
    --crimson-light: #FDF0F3;
    --crimson-dark: #b21540;
    --green: #00c599;
    --yellow: #ffc050;
    --yellow-light: #FFFBEB;
    --yellow-dark: #e0a236;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(26, 29, 46, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 29, 46, 0.10);
    --shadow-lg: 0 20px 60px rgba(26, 29, 46, 0.12);
    --font-head: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 6px 14px;
    border-radius: 100px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.nav-list a:hover {
    background: var(--light);
    color: var(--text-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.25s, background 0.25s;
}

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--accent);
}

.btn-primary {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(91, 106, 240, 0.35);
}

.btn-large {
    padding: 16px 32px;
    font-size: 15px;
    border-radius: 12px;
}


.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--white);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

.hero-bg-shape {
    position: absolute;
    top: -100px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 106, 240, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg-shape-2 {
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 107, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    order: 2;
}

.hero-visual {
    order: 1;
}

.hero-desc-lead {
    font-size: 19px;
    font-weight: 700;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 12px;
    max-width: 480px;
}

.hero-desc-body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px 6px 8px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    opacity: 0.2;
    border-radius: 2px;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-avatars {
    display: flex;
}

.hero-avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -10px;
    object-fit: cover;
}

.hero-avatars img:first-child {
    margin-left: 0;
}

.hero-proof-text {
    font-size: 14px;
    color: var(--text-body);
}

.hero-proof-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.hero-proof-text small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
}

.hero-visual {
    position: relative;
}

.hero-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1;
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-img-main:hover img {
    transform: scale(1.04);
}

.hero-card-float {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
}

.hero-card-float.top-left {
    top: 30px;
    left: -40px;
}

.hero-card-float.bottom-right {
    bottom: 40px;
    right: -30px;
}

.float-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.float-card-value {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.float-card-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.float-card-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


.trust-bar {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.trust-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
}

.trust-items {
    display: flex;
    align-items: center;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item-icon {
    font-size: 20px;
}

.trust-item-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-item-text small {
    display: block;
    font-weight: 400;
    color: var(--text-muted);
    font-size: 12px;
}

.trust-item-text .locations-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.loc-pill {
    background: var(--accent2);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(239, 153, 0, 0.3);
    margin-right: 2px;
}
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--off-white);
}

.section-label {
    margin-bottom: 14px;
}

.section-heading {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-dark);
    max-width: 540px;
    line-height: 1.7;
    background: var(--accent-light);
    padding: 12px 20px;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-weight: 500;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.25s;
}

.link-arrow:hover {
    gap: 12px;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 28px;
}

.badge-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.badge-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.about-content {}

.about-desc {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.stats-strip {
    display: flex;
    gap: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat-item {}

.stat-num {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1;
}

.stat-num span {
    color: var(--accent);
}

.stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}


.methods-showcase {
    margin-top: 64px;
    border-top: 1px solid var(--border);
    padding-top: 56px;
}

.methods-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 36px;
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.method-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    --theme-color: var(--accent);
    --theme-color-light: var(--accent-light);
    --theme-color-dark: var(--accent-dark);
}

.method-card.tak-theme {
    --theme-color: var(--accent);
    --theme-color-light: var(--accent-light);
    --theme-color-dark: var(--accent-dark);
}

.method-card.skok-theme {
    --theme-color: var(--accent2);
    --theme-color-light: var(--accent2-light);
    --theme-color-dark: var(--accent2-dark);
}

.method-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--theme-color);
}

.method-name {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.method-tagline {
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.method-intro {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 24px;
}

.tile-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tile-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.method-card .tile-btn:hover {
    border-color: var(--theme-color);
    background: var(--theme-color-light);
    color: var(--theme-color);
}

.method-card .tile-btn.active {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}

.tile-panes {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    min-height: 110px;
}

.tile-pane {
    display: none;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
}

.tile-pane.active {
    display: block;
    animation: tileFadeIn 0.3s ease-out;
}

@keyframes tileFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

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


.courses-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.course-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.course-row.reverse .course-image-col {
    order: 2;
}

.course-row.reverse .course-card {
    order: 1;
}

.course-image-col {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-md);
    position: relative;
    background: var(--light);
}

.course-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .course-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .course-row.reverse .course-image-col,
    .course-row.reverse .course-card {
        order: unset;
    }
    .course-image-col {
        min-height: 250px;
    }
}

.course-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    --card-theme: var(--accent);
    --card-theme-light: var(--accent-light);
    --card-theme-dark: var(--accent-dark);
}

.course-card.theme-turquoise {
    --card-theme: var(--accent);
    --card-theme-light: var(--accent-light);
    --card-theme-dark: var(--accent-dark);
}

.course-card.theme-orange {
    --card-theme: var(--accent2);
    --card-theme-light: var(--accent2-light);
    --card-theme-dark: var(--accent2-dark);
}

.course-card.theme-crimson {
    --card-theme: var(--crimson);
    --card-theme-light: var(--crimson-light);
    --card-theme-dark: var(--crimson-dark);
}

.course-card.theme-yellow {
    --card-theme: var(--yellow);
    --card-theme-light: var(--yellow-light);
    --card-theme-dark: var(--yellow-dark);
}

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

.course-card.featured {
    background: var(--card-theme);
    border-color: var(--card-theme);
    color: #fff;
}

.course-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--card-theme-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    color: var(--card-theme);
    transition: background 0.3s, color 0.3s;
}

.course-card:hover .course-icon {
    background: var(--card-theme);
    color: #fff;
}

.course-card.featured .course-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.course-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 800;
    color: var(--light);
    line-height: 1;
    transition: color 0.3s;
}

.course-card:hover .course-num {
    color: var(--card-theme-light);
}

.course-card.featured .course-num {
    color: rgba(255, 255, 255, 0.12);
}

.course-name {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.course-card.featured .course-name {
    color: #fff;
}

.course-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.course-card.featured .course-desc {
    color: rgba(255, 255, 255, 0.75);
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.course-meta-item i {
    color: var(--card-theme);
    font-size: 14px;
}

.course-card.featured .course-meta-item {
    color: rgba(255, 255, 255, 0.7);
}

.course-card.featured .course-meta-item i {
    color: rgba(255, 255, 255, 0.8);
}

.course-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--card-theme);
    margin-top: 20px;
    transition: gap 0.25s;
}

.course-card.featured .course-link {
    color: rgba(255, 255, 255, 0.9);
}

.course-link:hover {
    gap: 10px;
}


.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.loc-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    --loc-theme: var(--accent);
    --loc-theme-light: var(--accent-light);
}

.loc-card.theme-turquoise {
    --loc-theme: var(--accent);
    --loc-theme-light: var(--accent-light);
}

.loc-card.theme-orange {
    --loc-theme: var(--accent2);
    --loc-theme-light: var(--accent2-light);
}

.loc-card.theme-crimson {
    --loc-theme: var(--crimson);
    --loc-theme-light: var(--crimson-light);
}

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

.loc-emoji {
    font-size: 36px;
    margin-bottom: 18px;
    color: var(--loc-theme);
    display: inline-block;
}

.loc-city {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.loc-address {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.loc-schedule {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.loc-day {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--light);
    color: var(--text-body);
}

.loc-courses {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.loc-course-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.loc-course-name {
    color: var(--text-body);
}

.loc-course-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 100px;
    background: var(--loc-theme-light);
    color: var(--loc-theme);
}


.signup-wrap {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
}

.signup-sidebar {
    background: var(--accent);
    padding: 56px 48px;
    color: #fff;
}

.signup-sidebar-title {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.signup-sidebar-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 40px;
}

.signup-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.signup-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.signup-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.signup-feature-text {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.signup-feature-text small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.signup-form-area {
    padding: 56px 48px;
}

.form-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-dark);
    transition: border-color 0.25s, box-shadow 0.25s;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8FA8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select option {
    background: #fff;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(91, 106, 240, 0.12);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: none;
    height: 110px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.form-privacy {
    font-size: 12px;
    color: var(--text-muted);
}


.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

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

.testi-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.star {
    width: 16px;
    height: 16px;
    background: #F5A623;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-quote {
    font-size: 36px;
    color: var(--accent-light);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 8px;
}

.testi-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testi-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

.testi-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.testi-verified {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    background: rgba(45, 198, 123, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
}


.trainers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.trainer-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

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

.trainer-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    flex-shrink: 0;
}

.trainer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.trainer-card:hover .trainer-img img {
    transform: scale(1.05);
}

.trainer-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.trainer-role-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
    width: fit-content;
}

.trainer-name {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trainer-bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}


.faq-wrap {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-intro {}

.faq-intro-title {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.faq-intro-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.faq-list {}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: var(--accent);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    background: var(--white);
    transition: background 0.2s;
}

.faq-item.open .faq-q {
    background: var(--accent-light);
}

.faq-q-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}

.faq-item.open .faq-toggle {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}


.faq-a p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}


.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-bg-circle.c1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.cta-bg-circle.c2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 100px;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.cta-title {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-white {
    background: #fff;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-white-outline {
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 34px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: background 0.25s, border-color 0.25s;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}


.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 34px;
    height: 34px;
    background: var(--accent);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    font-family: var(--font-head);
}

.footer-logo-text {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.footer-tagline {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.footer-col-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.25s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links-bottom {
    display: flex;
    gap: 24px;
}

.footer-links-bottom a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.25s;
}

.footer-links-bottom a:hover {
    color: var(--text-dark);
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.fade-up {
    animation: fadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.35s;
}


@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-title {
        font-size: clamp(38px, 6vw, 56px);
    }

    .hero-card-float.top-left {
        left: 0;
    }

    .hero-card-float.bottom-right {
        right: 0;
    }

    .about-grid {
        gap: 40px;
    }

    .faq-wrap {
        gap: 40px;
        grid-template-columns: 320px 1fr;
    }

    .trust-items {
        gap: 24px;
        flex-wrap: wrap;
    }

    .nav-list {
        gap: 4px;
    }

    .nav-list a {
        padding: 8px 10px;
        font-size: 13px;
    }

    .logo img {
        height: 60px !important;
    }

    .footer-top {
        gap: 32px;
    }

    .header-actions .btn-primary {
        padding: 10px 16px;
        font-size: 13px;
    }
}


@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        order: 1;
        max-width: 100%;
    }

    .hero-desc-lead,
    .hero-desc-body,
    .hero-desc {
        max-width: 100%;
    }

    .hero-visual {
        order: 2;
    }

    .hero-card-float.top-left {
        left: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signup-wrap {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-list,
    .btn-outline {
        display: none;
    }

    .hero-title {
        font-size: clamp(34px, 9vw, 48px);
    }

    .methods-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

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

    .trainers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .trust-items {
        flex-wrap: wrap;
        gap: 20px;
    }

    .trust-label {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .signup-form-area,
    .signup-sidebar {
        padding: 36px 28px;
    }
}

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

@media (max-width: 992px) {
    .trainer-img {
        height: 300px;
    }
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 56px auto 0;
    padding-left: 24px;
}

.timeline-track {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 24px;
    width: 4px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    --card-theme: var(--accent);
    --card-theme-light: var(--accent-light);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.theme-turquoise {
    --card-theme: var(--accent);
    --card-theme-light: var(--accent-light);
}

.timeline-item.theme-orange {
    --card-theme: var(--accent2);
    --card-theme-light: var(--accent2-light);
}

.timeline-item.theme-crimson {
    --card-theme: var(--crimson);
    --card-theme-light: var(--crimson-light);
}

.timeline-item.theme-yellow {
    --card-theme: var(--yellow);
    --card-theme-light: var(--yellow-light);
}

.timeline-item.theme-navy {
    --card-theme: var(--text-dark);
    --card-theme-light: var(--light);
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--card-theme);
    color: var(--card-theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
    transform: translateX(-50%);
    box-shadow: var(--shadow-sm);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.timeline-item:hover .timeline-marker {
    background: var(--card-theme);
    color: var(--white);
    transform: translateX(-50%) scale(1.1);
}

.timeline-content {
    margin-left: 48px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: var(--shadow-sm);
}

.timeline-item:hover .timeline-content {
    border-color: var(--card-theme);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.timeline-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.timeline-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-quote {
    font-size: 13px;
    font-weight: 600;
    color: var(--card-theme);
    border-left: 3px solid var(--card-theme);
    padding-left: 12px;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .timeline-container {
        padding-left: 16px;
    }

    .timeline-track {
        left: 16px;
    }

    .timeline-marker {
        left: 0;
        width: 38px;
        height: 38px;
        font-size: 15px;
        top: 16px;
    }

    .timeline-content {
        margin-left: 36px;
        padding: 24px;
    }
}

.adults-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.adults-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.adults-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.adults-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .adults-image {
        min-height: 300px;
        max-height: 400px;
        margin-top: 24px;
    }
}

.adults-lead {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.4;
}

.adults-values {
    margin-bottom: 32px;
}

.value-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.value-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.value-tag {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--light);
    color: var(--text-body);
}

.value-tag.value-turquoise {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.value-tag.value-orange {
    background: var(--accent2-light);
    color: var(--accent2-dark);
}

.value-tag.value-crimson {
    background: var(--crimson-light);
    color: var(--crimson);
}

.value-tag.value-yellow {
    background: var(--yellow-light);
    color: var(--yellow-dark);
}

.value-tag.value-navy {
    background: var(--light);
    color: var(--text-dark);
}

.adults-highlight-box {
    background: var(--white);
    border-left: 4px solid var(--accent);
    padding: 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-box-icon {
    font-size: 24px;
    color: var(--accent);
    margin-top: 2px;
}

.highlight-box-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
    font-weight: 500;
}

.adults-benefits {
    background: var(--accent-light);
    border: 1px solid rgba(0, 197, 153, 0.2);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.adults-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--accent);
}

.benefits-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .adults-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .adults-benefits {
        padding: 28px;
    }
}

.course-card.theme-navy {
    --card-theme: var(--text-dark);
    --card-theme-light: var(--light);
    --card-theme-dark: #050025;
}

.course-subtitle {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--card-theme);
    opacity: 0.75;
    margin-bottom: 12px;
}

.course-card.featured .course-subtitle {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.course-price {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--card-theme);
    background: var(--card-theme-light);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.course-card.featured .course-price {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}


.pricing-block {
    margin-top: 56px;
    border-top: 1px solid var(--border);
    padding-top: 56px;
}

.pricing-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.pricing-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pricing-detail-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.pricing-detail-item span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-disclaimer {
    background: var(--accent-light);
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius);
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    box-shadow: var(--shadow-sm);
}

.wpisowe-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}

.wpisowe-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.wpisowe-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.wpisowe-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.wpisowe-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.wpisowe-amount {
    font-family: var(--font-head);
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.wpisowe-amount > span:first-child {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
}

.wpisowe-amount > span:last-child,
.wpisowe-amount > span:last-child span {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
}

.wpisowe-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

.wpisowe-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.wpisowe-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

.wpisowe-list li i {
    color: var(--accent);
    margin-top: 2px;
    font-size: 13px;
    flex-shrink: 0;
}

.bank-transfer {
    background: var(--off-white);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.bank-transfer-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-transfer-account {
    font-family: monospace;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.bank-transfer-title {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.bank-transfer-title em {
    color: var(--text-body);
    font-style: normal;
    font-weight: 500;
}

.guarantee-box {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a0a50 100%);
    border-radius: var(--radius);
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 197, 153, 0.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.guarantee-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.guarantee-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 28px;
    flex-grow: 1;
}

.guarantee-desc strong {
    color: var(--accent);
}

.guarantee-badge {
    display: inline-block;
    background: rgba(0, 197, 153, 0.2);
    color: var(--accent);
    border: 1px solid rgba(0, 197, 153, 0.3);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .pricing-info-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {

    .wpisowe-box,
    .guarantee-box {
        padding: 28px;
    }
}


.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.skill-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    --skill-color: var(--accent);
    --skill-color-light: var(--accent-light);
}

.skill-card.skill-turquoise {
    --skill-color: var(--accent);
    --skill-color-light: var(--accent-light);
}

.skill-card.skill-orange {
    --skill-color: var(--accent2);
    --skill-color-light: var(--accent2-light);
}

.skill-card.skill-crimson {
    --skill-color: var(--crimson);
    --skill-color-light: var(--crimson-light);
}

.skill-card.skill-yellow {
    --skill-color: var(--yellow);
    --skill-color-light: var(--yellow-light);
}

.skill-card.skill-navy {
    --skill-color: var(--text-dark);
    --skill-color-light: var(--light);
}

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

.skill-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--skill-color-light);
    color: var(--skill-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: background 0.3s, color 0.3s;
}

.skill-card:hover .skill-icon {
    background: var(--skill-color);
    color: #fff;
}

.skill-name {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.skill-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
}

.wef-quote {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 36px 40px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.wef-quote-icon {
    font-size: 32px;
    color: var(--accent-light);
    flex-shrink: 0;
    margin-top: 4px;
}

.wef-quote-text {
    font-size: 17px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 10px;
}

.wef-quote-source {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .wef-quote {
        flex-direction: column;
        gap: 12px;
    }
}


.rl-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rl-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.rl-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.rl-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.rl-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.rl-icon.rl-icon-turquoise {
    background: var(--accent-light);
    color: var(--accent);
}

.rl-icon.rl-icon-orange {
    background: var(--accent2-light);
    color: var(--accent2);
}

.rl-icon.rl-icon-crimson {
    background: var(--crimson-light);
    color: var(--crimson);
}

.rl-icon.rl-icon-yellow {
    background: var(--yellow-light);
    color: var(--yellow-dark);
}

.rl-icon.rl-icon-navy {
    background: var(--light);
    color: var(--text-dark);
}

.rl-area {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.rl-area-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.rl-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.rl-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rl-before,
.rl-after {
    border-radius: var(--radius-sm);
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.rl-before {
    background: #fff5f7;
    border-left: 4px solid var(--crimson);
    color: #7a1030;
}

.rl-after {
    background: #f0fdf8;
    border-left: 4px solid var(--accent);
    color: #035c44;
}

.rl-compare-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .rl-compare {
        grid-template-columns: 1fr;
    }

    .rl-card {
        padding: 24px;
    }
}

.signup-form-area {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.signup-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.progress-line {
    height: 2px;
    background: var(--border);
    flex-grow: 1;
    margin: 0 16px;
    margin-top: -22px;
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-step.active .step-num {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 197, 153, 0.2);
}

.progress-step.active .step-text {
    color: var(--text-dark);
}

.progress-line.active {
    background: var(--accent);
}

.form-step {
    display: none;
    opacity: 0;
}

.form-step.active {
    display: block;
    opacity: 1;
}

.form-step-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.group-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.loc-card,
.group-card {
    display: block;
    cursor: pointer;
    position: relative;
}

.loc-card input[type="radio"],
.group-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.loc-card-inner,
.group-card-inner {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.loc-card-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    min-height: 100px;
}

.loc-card-inner i {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: all 0.25s ease;
}

.loc-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
}

.group-card-inner {
    flex-direction: column;
    padding: 14px 16px;
    height: 100%;
    min-height: 84px;
    justify-content: center;
}

.group-age {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.group-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.loc-card:hover .loc-card-inner,
.group-card:hover .group-card-inner {
    border-color: rgba(0, 197, 153, 0.4);
    background: var(--off-white);
    transform: translateY(-2px);
}

.loc-card:hover .loc-card-inner i {
    color: var(--accent);
}

.loc-card input:checked + .loc-card-inner,
.group-card input:checked + .group-card-inner {
    border-color: var(--accent);
    background: var(--accent-light);
    box-shadow: 0 4px 15px rgba(0, 197, 153, 0.1);
    transform: translateY(-2px);
}

.loc-card input:checked + .loc-card-inner i {
    color: var(--accent);
    transform: scale(1.15);
}

.loc-card input:checked + .loc-card-inner .loc-name,
.group-card input:checked + .group-card-inner .group-title {
    color: var(--text-dark);
    font-weight: 700;
}

.group-card input:checked + .group-card-inner .group-age {
    color: var(--accent-dark);
}

.conditional-child-fields {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin: 24px 0;
    animation: slideDown 0.3s ease-out;
}

.conditional-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.consent-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.consent-checkbox:hover .checkbox-custom {
    border-color: var(--accent);
}

.consent-checkbox input:checked + .checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}

.consent-checkbox input:checked + .checkbox-custom::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--white);
    font-size: 11px;
}

.consent-text {
    font-size: 12.5px;
    color: var(--text-body);
    line-height: 1.5;
}

.consent-text a {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: underline;
}

.signup-success-screen {
    padding: 32px 0;
}

.success-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 197, 153, 0.2);
}

.success-icon i {
    font-size: 28px;
    color: var(--accent);
}

.success-title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.success-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--crimson);
    background: var(--crimson-light);
}

.error-msg {
    color: var(--crimson);
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    display: block;
    animation: slideDown 0.2s ease-out;
}

.location-cards-grid.grid-has-error .location-card-inner,
.group-cards-grid.grid-has-error .group-card-inner {
    border-color: var(--crimson);
}

.card-error-msg {
    margin-top: 8px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.hamburger:hover {
    background: var(--light);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#main-nav {
    transition: none;
}

@media (max-width: 991px) {
    .signup-form-area {
        padding: 32px 24px;
    }
}

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

    .loc-card-inner {
        min-height: auto;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .group-cards-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    .section {
        padding: 72px 0;
    }
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
        align-items: flex-start;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-content {
        order: 1;
        max-width: 100%;
    }
    .hero-desc-lead,
    .hero-desc-body,
    .hero-desc {
        max-width: 100%;
    }
    .hero-visual {
        order: 2;
        max-width: 520px;
        margin: 0 auto;
    }
    .hero-card-float {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .adults-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-info-row {
        grid-template-columns: 1fr 1fr;
    }
    .wpisowe-grid {
        grid-template-columns: 1fr;
    }
    .faq-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .signup-wrap {
        grid-template-columns: 1fr;
    }
    .signup-sidebar {
        padding: 40px 36px;
    }
    .signup-sidebar-title {
        font-size: 28px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .section {
        padding: 56px 0;
    }
    .section-heading {
        font-size: clamp(26px, 7vw, 38px);
    }
    .hamburger {
        display: flex;
    }
    .nav-list,
    .btn-outline {
        display: none;
    }
    #main-nav.nav-open {
        display: block;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        background: var(--white);
        z-index: 999;
        padding: 32px 24px;
        border-top: 1px solid var(--border);
        overflow-y: auto;
    }
    #main-nav.nav-open .nav-list {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    #main-nav.nav-open .nav-list a {
        font-size: 22px;
        font-weight: 600;
        padding: 14px 8px;
        border-bottom: 1px solid var(--border);
        display: block;
        color: var(--text-dark);
    }
    #main-nav.nav-open .nav-list a:hover {
        color: var(--accent);
        background: none;
    }
    .header-actions .btn-primary {
        font-size: 12px;
        padding: 8px 14px;
    }
    .hero {
        padding-top: 88px;
        padding-bottom: 48px;
        min-height: auto;
    }
    .hero-title {
        font-size: clamp(30px, 9vw, 44px);
        letter-spacing: -0.5px;
    }
    .hero-bg-shape,
    .hero-bg-shape-2 {
        display: none;
    }
    .hero-visual {
        width: 100%;
        max-width: 100%;
        margin-top: 32px;
    }
    .hero-img-main {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
    }
    .hero-desc-lead {
        font-size: 16px;
    }
    .hero-desc-body,
    .hero-desc {
        font-size: 15px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        width: 100%;
    }
    .hero-desc-lead,
    .hero-desc-body,
    .hero-desc {
        max-width: 100%;
    }
    .hero-social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .trust-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .trust-items {
        flex-wrap: wrap;
        gap: 16px;
    }
    .trust-label {
        display: none;
    }
    .stats-strip {
        flex-wrap: wrap;
        gap: 24px;
    }
    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .trainer-img {
        height: 200px;
    }
    .trainer-info {
        padding: 16px;
    }
    .trainer-name {
        font-size: 16px;
    }
    .methods-grid {
        grid-template-columns: 1fr;
    }
    .courses-grid {
        grid-template-columns: 1fr;
    }
    .course-card {
        padding: 28px 24px;
    }
    .pricing-info-row {
        grid-template-columns: 1fr;
    }
    .wpisowe-box,
    .guarantee-box {
        padding: 28px 24px;
    }
    .skills-grid {
        grid-template-columns: 1fr;
    }
    .wef-quote {
        flex-direction: column;
        padding: 24px;
        gap: 12px;
    }
    .signup-wrap {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .signup-sidebar {
        padding: 32px 24px;
    }
    .signup-sidebar-title {
        font-size: 24px;
    }
    .signup-form-area {
        padding: 32px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .adults-benefits {
        padding: 24px;
    }
    .faq-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .timeline-container {
        padding-left: 16px;
    }
    .timeline-track {
        left: 16px;
    }
    .timeline-marker {
        left: 0;
        width: 36px;
        height: 36px;
        font-size: 14px;
        top: 16px;
    }
    .timeline-content {
        margin-left: 32px;
        padding: 20px;
    }
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-actions .btn-primary,
    .cta-actions .btn-white {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 36px;
    }
    .location-cards-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .group-cards-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .signup-progress {
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 48px 0;
    }
    .trainers-grid {
        grid-template-columns: 1fr;
    }
    .trainer-img {
        height: 260px;
    }
    .hero-visual {
        display: none;
    }
    .logo img {
        height: 60px !important;
    }
}
.legal-content h2 {
    font-family: var(--font-head);
    color: var(--text-dark);
    font-size: 24px;
    margin: 40px 0 20px;
}

.legal-content p {
    margin-bottom: 24px;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 12px;
}

.legal-content strong {
    color: var(--text-dark);
}

.cta-banner-proper {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    margin: 60px 0;
    border-radius: 30px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner-proper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-banner-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.cta-banner-info {
    flex: 1;
    min-width: 300px;
}

.cta-banner-info h3 {
    margin: 0 0 12px 0;
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
}

.cta-banner-info p {
    margin: 0;
    font-size: 18px;
    opacity: 0.95;
    font-weight: 500;
}

.cta-banner-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-banner-phone-link, .cta-banner-phone-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    background: rgba(255,255,255,0.15);
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.cta-banner-phone-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.cta-banner-main-btn, .cta-banner-btn-mock {
    background: var(--white);
    color: var(--accent) !important;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.cta-banner-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #fdfdfd;
}

@media (max-width: 768px) {
    .cta-banner-proper {
        border-radius: 0;
        margin: 40px -20px;
        padding: 50px 0;
    }
    .cta-banner-container {
        padding: 0 32px;
        text-align: center;
        justify-content: center;
    }
    .cta-banner-actions {
        justify-content: center;
        width: 100%;
    }
    .cta-banner-info {
        min-width: 100%;
    }
}
