/* ==========================================================================
   AQUAWAVE SPOR KULÜBÜ - ANTALYA YÜZME KURSU (İLK EKRAN)
   ========================================================================== */

.swimming-intro {
    padding: 20px 0 60px;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, .95fr);
    gap: 52px;
    align-items: center;
}

.intro-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    z-index: 2;
}

.intro-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #001d40;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

@media (min-width: 993px) {
    .intro-title {
        white-space: nowrap;
        font-size: clamp(2.25rem, 3.9vw, 3.45rem);
        letter-spacing: -0.06em;
    }
}

.intro-eyebrow {
    margin-bottom: 10px;
}

.intro-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 30px;
}

/* Google Sosyal Kanıtı */
.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-white);
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 35px;
    width: fit-content;
}
.social-proof .stars {
    display: flex;
    gap: 2px;
}
.rating-score {
    font-weight: 800;
    font-size: 1.1rem;
    color: #1e293b;
}
.rating-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #64748b;
    border-left: 1px solid #e2e8f0;
    padding-left: 12px;
    transition: color var(--transition-speed) ease;
}
.rating-label svg {
    transition: transform var(--transition-speed) ease;
}
.rating-label:hover, 
.rating-label:focus-visible {
    color: var(--color-primary);
}
.rating-label:hover svg,
.rating-label:focus-visible svg {
    transform: translate(2px, -2px); /* Oku premium bir hissiyatla sağ üste kaydırır */
}

/* Güven Unsurları Listesi */
.trust-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.trust-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #334155;
}
.trust-features .feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #EAF6FF; /* Su dalgası konseptine uygun hafif mavi */
    color: var(--color-primary);
    border-radius: 10px;
    flex-shrink: 0;
}

/* CTA Alanı */
.intro-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.intro-actions .btn {
    gap: 10px; /* Her iki butondaki ikon ve metin aralığını eşitler */
}
.scroll-btn svg {
    transition: transform var(--transition-speed) ease;
}
.scroll-btn:hover svg {
    transform: translateY(4px); /* Üzerine gelindiğinde oku aşağı doğru hareket ettirir */
}
.wp-btn {
    background-color: var(--color-white);
    border-color: rgba(0, 86, 179, 0.32);
    color: #004b9b;
    box-shadow: 0 4px 14px rgba(0, 29, 64, 0.07);
    transition: background-color var(--transition-speed) ease,
                border-color var(--transition-speed) ease,
                color var(--transition-speed) ease,
                transform var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease;
}
.wp-btn svg {
    color: #128c4a;
}
.wp-btn:hover,
.wp-btn:focus-visible {
    background-color: #eef7ff;
    border-color: var(--color-primary);
    color: #003f83;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 86, 179, 0.15);
}

/* Sağ Kolon LCP Görseli */
.intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
    z-index: 1;
}

@media (min-width: 993px) {
    .intro-visual { transform: translateY(36px); }
}
.hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; /* Layout Shift'i engeller, görsel yüklenmeden alan ayrılır */
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 30, 64, 0.15);
    position: relative;
    z-index: 2;
    animation: fadeZoom 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Görsel Arkası Dekorasyon */
.visual-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 24px;
    z-index: 1;
    opacity: 0.08;
}

/* Erişilebilirlik - CSS Performans Animasyonları */
@media (prefers-reduced-motion: no-preference) {
    .hero-img {
        animation: fadeZoom 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    @keyframes fadeZoom {
        from { opacity: 0; transform: scale(0.97); }
        to { opacity: 1; transform: scale(1); }
    }
}

/* Mobil Öncelikli Responsive Uyum */
@media (max-width: 992px) {
    .swimming-intro {
        padding: 50px 0 30px;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-content {
        text-align: left;
    }
    .intro-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .intro-actions .btn {
        width: 100%;
    }
    .visual-shape {
        top: 15px;
        right: -15px;
    }
}

@media (max-width: 480px) {
    .intro-title {
        overflow-wrap: anywhere;
    }

    .social-proof {
        gap: 5px;
        max-width: 100%;
        padding: 9px 7px;
        margin-bottom: 30px;
        white-space: nowrap;
    }
    .social-proof .stars {
        gap: 0;
    }
    .social-proof .stars svg {
        width: 19px;
        height: 19px;
    }
    .rating-score {
        font-size: 1.1rem;
    }
    .rating-label {
        gap: 4px;
        padding-left: 7px;
        font-size: 1rem;
        white-space: nowrap;
    }
    .rating-label svg {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
    }
}

/* ========================================================================== 
   HERO ALTI ORTAK SAYFA SİSTEMİ
   ========================================================================== */
.swim-section {
    padding: clamp(68px, 8vw, 104px) 0;
    scroll-margin-top: 100px;
}

.program-grid > *,
.schedule-grid > *,
.pool-grid > *,
.system-grid > *,
.why-grid > *,
.reviews-layout > *,
.faq-layout > *,
.final-cta-card > * {
    min-width: 0;
}

.swim-section h2,
.swim-section h3,
.swim-section p,
.program-facts dd {
    overflow-wrap: anywhere;
}

.swim-section:nth-of-type(even) {
    background: var(--color-white);
}

.swim-section-heading {
    max-width: 760px;
    margin-bottom: clamp(30px, 5vw, 46px);
}

.swim-eyebrow {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.swim-section-heading h2,
.final-cta-card h2 {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.swim-section-heading > p:last-child,
.final-cta-card > div > p:last-child {
    margin-top: 14px;
    color: #5f6f82;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.75;
}

.swim-icon {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: #eaf5ff;
    color: var(--color-primary);
}

.swim-text-link {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    color: #004b9b;
    font-weight: 750;
    transition: color var(--transition-speed) ease, gap var(--transition-speed) ease;
}

.swim-text-link:hover,
.swim-text-link:focus-visible {
    gap: 12px;
    color: var(--color-secondary);
}

.btn-outline {
    border-color: #b8c9db;
    background: var(--color-white);
    color: #003f83;
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: var(--color-primary);
    background: #eef7ff;
    transform: translateY(-2px);
}

/* Programlar */
.program-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

@media (prefers-reduced-motion: reduce) {
    .hero-img { animation: none; }
}

.program-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e0e8f1;
    border-top: 3px solid rgba(0, 168, 255, 0.62);
    border-radius: 22px;
    background: var(--color-white);
    box-shadow: 0 12px 32px rgba(0, 29, 64, 0.055);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-top-color var(--transition-speed) ease;
}

.program-card:hover {
    border-top-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 86, 179, 0.1);
}

.program-media,
.pool-media {
    min-height: 100%;
    overflow: hidden;
    background: #eaf5ff;
}

.program-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-bottom: 1px solid #e0e8f1;
}

.program-media img,
.pool-media img,
.coach-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-media img {
    max-width: 480px;
    margin-inline: auto;
}

.program-media--portrait img {
    object-position: center 38%;
}

.program-media--placeholder,
.pool-media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 86, 179, 0.32);
    background: linear-gradient(145deg, #e9f6ff, #dff1fb);
}

.program-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 21px 20px 22px;
}

.program-content h3,
.pool-content h3,
.schedule-card h3 {
    font-size: clamp(1.18rem, 2.2vw, 1.45rem);
    line-height: 1.3;
}

.program-content h3 {
    padding-bottom: 12px;
    border-bottom: 1px solid #e8eef5;
    font-size: 1.08rem;
}

.program-content > p {
    flex: 1 1 auto;
    margin: 15px 0 14px;
    color: #556679;
    font-size: 0.88rem;
    line-height: 1.6;
}

.program-content .swim-text-link {
    margin-top: auto;
}

.program-facts {
    display: grid;
    min-height: 103px;
    align-content: start;
    gap: 0;
    margin-top: 11px;
    border-bottom: 1px solid #e6edf4;
}

.program-facts div {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    min-width: 0;
    gap: 8px;
    padding: 8px 0;
    border-top: 1px solid #e6edf4;
}

.program-facts dt {
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 650;
    line-height: 1.45;
}

.program-facts dd {
    color: #263b52;
    font-size: 0.79rem;
    font-weight: 750;
    line-height: 1.45;
}

/* Fiyatlar */
.prices-section {
    background: var(--color-white);
}

.price-table-wrap {
    overflow: hidden;
    border: 1px solid #dfe7f0;
    border-top: 3px solid rgba(0, 168, 255, 0.62);
    border-radius: 20px;
    background: var(--color-white);
    box-shadow: 0 12px 34px rgba(0, 29, 64, 0.05);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.price-table th,
.price-table td {
    padding: 21px 24px;
    border-bottom: 1px solid #e7edf3;
    text-align: left;
    vertical-align: middle;
}

.price-table thead th {
    background: #001d40;
    color: var(--color-white);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.price-table tbody th {
    color: #001d40;
    font-size: 1.02rem;
}

.price-table tbody tr:last-child > * {
    border-bottom: 0;
}

.price-fees span {
    display: block;
    color: #004b9b;
    font-weight: 800;
}

.price-fees span + span {
    margin-top: 3px;
    color: #52657a;
    font-size: 0.88rem;
    font-weight: 650;
}

.section-note {
    margin-top: 16px;
    color: #64748b;
    font-size: 0.92rem;
}

/* Ders programı */
.schedule-grid,
.pool-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.schedule-card {
    min-width: 0;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid #dfe7f0;
    border-top: 3px solid rgba(0, 168, 255, 0.62);
    border-radius: 22px;
    background: var(--color-white);
}

.schedule-card > header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e7edf3;
}

.schedule-card > header p {
    margin-top: 4px;
    color: #64748b;
    font-size: 0.92rem;
}

.schedule-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-top: 24px;
}

.schedule-groups h4 {
    margin-bottom: 11px;
    color: var(--color-primary);
    font-size: 1rem;
}

.schedule-groups ul {
    display: grid;
    gap: 8px;
}

.schedule-groups li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 9px;
    background: #f4f8fc;
    color: #41546a;
    font-size: 0.88rem;
}

.schedule-groups time {
    color: #003f83;
    font-weight: 800;
}

.schedule-duration {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: -8px 0 22px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #eaf5ff;
    color: #214f73;
    font-size: 0.9rem;
    font-weight: 750;
}

.schedule-duration .swim-icon {
    width: 34px;
    height: 34px;
}

.schedule-empty {
    padding-top: 24px;
    color: #556679;
}

.schedule-empty .swim-text-link {
    margin-top: 12px;
}

.schedule-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.schedule-notes p {
    padding: 17px 19px;
    border-left: 3px solid var(--color-secondary);
    border-radius: 0 10px 10px 0;
    background: #edf7ff;
    color: #44586d;
}

/* Havuzlar */
.pools-section {
    background: var(--color-white);
}

.pool-card {
    overflow: hidden;
    border: 1px solid #dfe7f0;
    border-top: 3px solid rgba(0, 168, 255, 0.62);
    border-radius: 22px;
    background: var(--color-white);
    box-shadow: 0 12px 34px rgba(0, 29, 64, 0.055);
}

.pool-media {
    min-height: 0;
    aspect-ratio: 3 / 2;
}

.pool-content {
    padding: clamp(24px, 4vw, 34px);
}

.pool-business {
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pool-location {
    margin-top: 8px;
    color: #64748b;
}

.pool-address {
    margin-top: 11px;
    color: #52677b;
    font-size: 0.88rem;
    line-height: 1.55;
}

.pool-hours {
    margin-top: 8px;
    color: #52677b;
    font-size: 0.86rem;
}

.review-write-link {
    color: #bcd9ee;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review-write-link:hover,
.review-write-link:focus-visible {
    color: #fff;
}

.pool-programs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 20px;
}

.pool-programs li {
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf6fd;
    color: #36536f;
    font-size: 0.8rem;
    font-weight: 650;
}

.pool-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 26px;
}

.pool-actions .btn {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.92rem;
}

.pool-phone {
    min-height: 44px;
    align-content: center;
    color: #004b9b;
    font-weight: 800;
}

/* Eğitim sistemi */
.system-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.system-grid article,
.why-grid article {
    padding: 26px;
    border: 1px solid #dfe7f0;
    border-radius: 18px;
    background: var(--color-white);
}

.system-icon,
.why-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    margin-bottom: 20px;
    border: 1px solid #d3e5f3;
    border-radius: 15px;
    background: #f1f8fd;
    color: #076da8;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}

.system-icon svg,
.why-icon svg {
    width: 25px;
    height: 25px;
}

.system-grid article {
    position: relative;
    overflow: hidden;
}

.system-grid article::after {
    content: '';
    position: absolute;
    top: 0;
    left: 26px;
    width: 42px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: var(--color-secondary);
}

.system-grid h3,
.why-grid h3 {
    margin-bottom: 11px;
    font-size: 1.1rem;
    line-height: 1.35;
}

.system-grid p,
.why-grid p {
    color: #596b7e;
    font-size: 0.94rem;
    line-height: 1.65;
}

.progress-path {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid #cfe2f3;
    border-radius: 16px;
    background: #edf7ff;
}

.progress-path li {
    position: relative;
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    color: #214462;
    font-size: 0.88rem;
    font-weight: 750;
    text-align: center;
}

.progress-path li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    z-index: 1;
    width: 12px;
    height: 12px;
    border-top: 2px solid #8fb9d8;
    border-right: 2px solid #8fb9d8;
    transform: translateY(-50%) rotate(45deg);
}

/* Eğitmenler */
.coaches-section {
    background: var(--color-white);
}

.coach-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.coach-card {
    display: grid;
    grid-template-columns: 144px minmax(0, 1fr);
    align-items: start;
    overflow: hidden;
    border: 1px solid #dfe7f0;
    border-radius: 18px;
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(22, 59, 89, 0.05);
}

.coach-card img {
    width: 144px;
    height: 100%;
    min-height: 180px;
    aspect-ratio: 4 / 5;
    align-self: stretch;
}

.coach-card-body {
    min-width: 0;
    padding: 18px 18px 17px;
}

.coach-card-body h3 {
    margin-bottom: 5px;
    font-size: 1.08rem;
}

.coach-title {
    color: #17679a;
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.4;
}

.coach-description {
    margin-top: 10px;
    color: #5c6d7e;
    font-size: 0.82rem;
    line-height: 1.52;
}

.coach-details {
    display: grid;
    gap: 6px;
    margin: 12px 0 0;
    padding: 11px 0 0;
    border-top: 1px solid #e5edf4;
}

.coach-details > div {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 8px;
    font-size: 0.76rem;
    line-height: 1.4;
}

.coach-details dt {
    color: #64748b;
    font-weight: 650;
}

.coach-details dd {
    margin: 0;
    color: #213b52;
    font-weight: 650;
}

.verified-data-note {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 760px;
    padding: 22px;
    border: 1px solid #d9e6f1;
    border-radius: 16px;
    background: #f4f9fd;
    color: #4e6276;
}

.section-action {
    margin-top: 28px;
}

.coaches-section .section-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    border: 1px solid #d9e6f1;
    border-radius: 16px;
    background: #f4f9fd;
}

.coaches-section .section-action p {
    max-width: 580px;
    color: #4e6276;
    line-height: 1.6;
}

.coaches-section .section-action .btn {
    flex: 0 0 auto;
}

/* Neden AquaWave */
.why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-grid article {
    border-top: 3px solid rgba(0, 168, 255, 0.62);
}

/* Yorum özeti */
.swim-section.reviews-section {
    background: #001d40;
}

.reviews-section .swim-eyebrow {
    color: #70cfff;
}

.reviews-section .swim-section-heading h2 {
    color: var(--color-white);
}

.reviews-section .swim-section-heading > p:last-child {
    color: #c4d2e2;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: center;
    gap: 60px;
}

.reviews-layout .swim-section-heading {
    margin-bottom: 0;
}

.review-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: clamp(25px, 3vw, 34px);
    border: 1px solid rgba(255,255,255,0.28);
    border-top: 3px solid var(--color-secondary);
    border-radius: 20px;
    background: var(--color-white);
    box-shadow: 0 22px 48px rgba(0, 11, 28, 0.24);
}

.review-summary-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #52697f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.review-google-mark {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #dce6ef;
    border-radius: 50%;
    color: #086ca8;
    background: #f5f9fc;
}

.review-google-mark svg {
    width: 17px;
    height: 17px;
}

.review-score {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #001d40;
}

.review-score-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-stars {
    color: #9a6500;
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: 0.1em;
}

.review-score strong {
    font-size: clamp(3rem, 5vw, 4rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.review-score-details > span:last-child {
    color: #64788c;
    font-size: 0.82rem;
    font-weight: 650;
}

.review-count {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border: 1px solid #dce7f0;
    border-radius: 12px;
    color: #52697f;
    background: #f5f9fc;
}

.review-count svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: #0879b8;
}

.review-count strong {
    color: #001d40;
    font-size: 1.05rem;
}

.review-summary-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.review-write-link {
    color: #086ca8;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(8, 108, 168, 0.35);
    text-underline-offset: 4px;
}

.review-write-link:hover,
.review-write-link:focus-visible {
    color: #001d40;
    text-decoration-color: currentColor;
}

.review-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.review-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #e0e8f1;
    border-top: 3px solid var(--color-secondary);
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: 0 10px 26px rgba(0, 29, 64, 0.08);
}

.review-card blockquote,
.review-card-quote {
    color: #4e6276;
    line-height: 1.68;
}

.review-details summary {
    cursor: pointer;
    list-style: none;
}

.review-details summary::-webkit-details-marker {
    display: none;
}

.review-card-quote {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.review-details[open] .review-card-quote {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.review-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--color-primary);
    font-size: 0.86rem;
    font-weight: 800;
}

.review-toggle svg {
    transition: transform var(--transition-speed) ease;
}

.review-toggle-less {
    display: none;
}

.review-details[open] .review-toggle-more {
    display: none;
}

.review-details[open] .review-toggle-less {
    display: inline;
}

.review-details[open] .review-toggle svg {
    transform: rotate(180deg);
}

.review-card-stars {
    margin-bottom: 14px;
    color: #9a6500;
    letter-spacing: 0.08em;
}

.review-card footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: auto;
    padding-top: 18px;
}

.review-card footer strong {
    color: #001d40;
    font-weight: 750;
}

.review-card footer span {
    color: #526579;
    font-size: 0.78rem;
}

/* SSS */
.faq-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(30px, 7vw, 80px);
}

.faq-layout .swim-section-heading {
    position: sticky;
    top: 120px;
    margin-bottom: 0;
}

.faq-list {
    border-top: 1px solid #d9e3ed;
}

.faq-list details {
    border-bottom: 1px solid #d9e3ed;
}

.faq-list summary {
    position: relative;
    padding: 21px 48px 21px 0;
    color: #102d4d;
    font-size: 1.02rem;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    position: absolute;
    top: 17px;
    right: 4px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: #eaf5ff;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.faq-list details[open] summary::after {
    content: '–';
}

.faq-list details p {
    padding: 0 48px 22px 0;
    color: #586b7f;
    line-height: 1.75;
}

/* Son CTA */
.final-cta-section {
    background: var(--color-white);
}

.final-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: center;
    gap: 46px;
    padding: clamp(30px, 6vw, 60px);
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(135deg, #eaf6ff, #f6fbff);
    box-shadow: inset 0 0 0 1px #d4e8f7;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

@media (max-width: 1100px) {
    .program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .program-media {
        aspect-ratio: 16 / 9;
    }

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

@media (max-width: 820px) {
    .schedule-grid,
    .pool-grid,
    .why-grid,
    .reviews-layout,
    .faq-layout,
    .final-cta-card {
        grid-template-columns: 1fr;
    }

    .schedule-groups,
    .schedule-notes {
        grid-template-columns: 1fr;
    }

    .progress-path {
        grid-template-columns: 1fr;
    }

    .progress-path li {
        min-height: 58px;
    }

    .progress-path li:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -5px;
        transform: translateX(50%) rotate(135deg);
    }

    .reviews-layout {
        gap: 30px;
    }

    .review-grid,
    .coach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coach-card {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .coach-card img {
        width: 112px;
        min-height: 140px;
    }

    .coach-card-body {
        padding: 15px;
    }


    .faq-layout .swim-section-heading {
        position: static;
    }
}

@media (max-width: 620px) {
    .swim-section {
        padding: 62px 0;
        scroll-margin-top: 86px;
    }

    .program-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .program-content {
        padding: 23px 21px;
    }

    .price-table-wrap {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .price-table,
    .price-table tbody,
    .price-table tr,
    .price-table th,
    .price-table td {
        display: block;
        width: 100%;
    }

    .price-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .price-table tbody {
        display: grid;
        gap: 12px;
    }

    .price-table tr {
        padding: 19px;
        border: 1px solid #dfe7f0;
        border-radius: 14px;
        background: var(--color-white);
        box-shadow: 0 8px 22px rgba(0,29,64,0.04);
    }

    .price-table th,
    .price-table td {
        padding: 0;
        border: 0;
    }

    .price-table td {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px;
        margin-top: 13px;
        padding-top: 13px;
        border-top: 1px solid #e7edf3;
    }

    .price-table td::before {
        content: attr(data-label);
        color: #64748b;
        font-size: 0.76rem;
        font-weight: 750;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .price-fees {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .price-fees span {
        color: #004b9b;
        font-size: 1rem;
        line-height: 1.25;
    }

    .price-fees span + span {
        margin-top: 0;
        color: #68798b;
        font-size: .76rem;
        font-weight: 700;
    }

    .system-grid,
    .coach-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-summary-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .review-summary-actions .btn {
        width: 100%;
        text-align: center;
    }

    .review-write-link {
        align-self: center;
    }

    .program-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .program-media {
        min-height: 0;
        aspect-ratio: 3 / 2;
        border-right: 0;
        border-bottom: 1px solid #e0e8f1;
    }

    .program-facts div {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 10px;
    }

    .program-facts dt {
        font-size: 0.76rem;
    }

    .program-facts dd {
        font-size: 0.88rem;
    }

    .program-facts {
        min-height: 0;
    }

    .coach-card {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .coach-card img {
        width: 104px;
        min-height: 130px;
    }

    .coaches-section .section-action {
        align-items: stretch;
        flex-direction: column;
        padding: 20px;
    }

    .coaches-section .section-action .btn {
        width: 100%;
    }


    .verified-data-note {
        align-items: flex-start;
    }

    .final-cta-card {
        gap: 28px;
        border-radius: 20px;
    }

    .final-cta-actions .btn {
        width: 100%;
        padding-inline: 18px;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .program-facts div {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .schedule-groups li {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .pool-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .pool-phone {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .swim-text-link,
    .btn-outline {
        transition: none;
    }
}

.swim-guidance-section { background: var(--surface-soft, #f4f8fb); }
.swim-guidance-section .swim-section-heading,
.system-section .swim-section-heading { max-width: 100%; }
.swim-guidance-section .swim-section-heading > p:last-child,
.system-section .swim-section-heading > p:last-child { max-width: 760px; }
.swim-guidance-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.swim-guidance-grid article { padding: 1.35rem; border: 1px solid rgba(0,29,64,.12); border-radius: 1rem; background: #fff; }
.swim-guidance-grid h3 { margin: 0 0 .5rem; }
.swim-guidance-grid p, .swim-guidance-system { margin: 0; }
.swim-guidance-system { max-width: 960px; margin: 1.25rem auto 0; padding: .9rem 1.1rem; border: 1px solid rgba(0,29,64,.1); border-radius: .9rem; background: rgba(255,255,255,.72); color: #344b63; font-weight: 600; }
.system-section { background: #f8fbfe; }
@media (max-width: 760px) { .swim-guidance-grid { grid-template-columns: 1fr; } }
