/* =========================================
        RUNNING TRACK STYLESHEET (MOBILE FIXED & RESPONSIVE)
========================================= */
:root {
    --primary-color: #0D8A45;
    --primary-hover: #0a6f37;
    --primary-light: #EAF8EF;
    --dark-color: #101828;
    --text-muted: #667085;
    --bg-light: #F8FBF9;
    --white: #ffffff;
    --gold-accent: #D97706;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    width: min(100%, 1240px);
    margin: 0 auto;
    padding: 0 20px;
}

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

/* =========================================
        HERO SECTION (.running-track-hero)
========================================= */

.running-track-hero {
    position: relative;
    padding: 90px 0 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbf8 100%);
}

.running-track-hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -260px;
    right: -220px;
    background: rgba(13, 138, 69, .08);
    border-radius: 50%;
    z-index: 0;
}

.running-track-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -120px;
    bottom: -120px;
    background: rgba(13, 138, 69, .05);
    border-radius: 50%;
    z-index: 0;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
    flex-wrap: wrap;
}

.hero-breadcrumb a {
    color: #777;
    transition: .3s;
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    color: var(--primary-color);
}

.hero-breadcrumb .active-page {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 50px;
    background: #eaf8ef;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 14px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #101828;
    margin: 0 0 24px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.8;
    color: #667085;
    margin: 0 0 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    min-width: 200px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(13, 138, 69, .25);
    transition: .35s;
    text-decoration: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-4px);
    background: var(--primary-hover);
}

.hero-buttons .btn-secondary {
    min-width: 200px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    transition: .35s;
    text-decoration: none;
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-4px);
    background: var(--primary-color);
    color: #fff;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hero-highlights div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .35s;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.hero-highlights div:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.hero-highlights i {
    color: var(--primary-color);
    font-size: 18px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image img {
    width: 100%;
    max-height: 520px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

/* =========================================
            OVERVIEW
========================================= */

.running-track-overview {
    padding: 80px 0;
    background: #fff;
}

.overview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.overview-image {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

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

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #EAF8EF;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

.overview-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 20px;
}

.overview-content>p {
    font-size: 16px;
    line-height: 1.8;
    color: #667085;
    margin-bottom: 30px;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.overview-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .35s;
}

.overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, .12);
}

.overview-card i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EAF8EF;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.overview-card h4 {
    margin: 0 0 4px;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.overview-card p {
    font-size: 13px;
    color: #667085;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
        TRACK SYSTEMS SHOWCASE SECTION
========================================= */

.track-systems-section {
    padding: 80px 0;
    background: #F8FBF9;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-title span {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    margin: 10px 0 14px;
}

.section-title p {
    font-size: 15px;
    color: #667085;
    line-height: 1.6;
}

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

.system-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    border: 1px solid #E8ECEA;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.system-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13, 138, 69, .12);
    border-color: var(--primary-color);
}

.premium-card {
    border: 2px solid var(--gold-accent);
}

.premium-card:hover {
    box-shadow: 0 25px 50px rgba(217, 119, 6, .18);
    border-color: var(--gold-accent);
}

.system-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #EAF8EF;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
}

.gold-badge {
    background: #FEF3C7;
    color: #B45309;
}

.system-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-right: 120px; /* space for absolute badge */
}

.system-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #EAF8EF;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.gold-icon {
    background: #FEF3C7;
    color: #B45309;
}

.system-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 4px;
}

.thickness-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.gold-label {
    color: #B45309;
}

.system-desc {
    font-size: 14px;
    color: #667085;
    line-height: 1.65;
    margin-bottom: 24px;
}

.system-specs {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #E2E8F0;
}

.spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-row span {
    color: #667085;
    font-weight: 600;
}

.spec-row strong {
    color: #111827;
    font-weight: 700;
    text-align: right;
}

.system-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.system-bullet-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.system-bullet-list li i {
    color: var(--primary-color);
    font-size: 15px;
}

/* =========================================
        TRACK COLOURS
========================================= */

.court-colours {
    padding: 80px 0;
    background: #fff;
}

.colour-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.colour-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    transition: .35s;
    border: 1px solid #E8ECEA;
}

.colour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(13, 138, 69, .12);
}

.colour-image {
    overflow: hidden;
    height: 220px;
}

.colour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.colour-card:hover img {
    transform: scale(1.06);
}

.colour-content {
    padding: 24px;
    text-align: center;
}

.colour-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111827;
}

.colour-content p {
    font-size: 14px;
    color: #667085;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
        COURT STRUCTURE / LAYERS
========================================= */

.court-structure {
    padding: 80px 0;
    background: #F8FBF9;
}

.structure-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
    margin-top: 40px;
}

.structure-image {
    position: sticky;
    top: 100px;
    width: 100%;
}

.structure-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
    object-fit: cover;
}

.structure-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.layer-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .35s;
    border: 1px solid #F1F1F1;
}

.layer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
    border-color: var(--primary-color);
}

.layer-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
}

.layer-card h3 {
    font-size: 18px;
    margin: 0 0 6px;
    color: #111827;
    font-weight: 700;
}

.layer-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #667085;
    margin: 0;
}

/* =========================================
        MATERIALS WE USE
========================================= */

.materials-section {
    padding: 80px 0;
    background: #fff;
}

.materials-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    gap: 15px;
}

.timeline-line {
    position: absolute;
    top: 28px;
    left: 4%;
    width: 92%;
    height: 3px;
    background: #d9e5dc;
    z-index: 1;
}

.material-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    transition: .35s;
}

.step-circle {
    width: 58px;
    height: 58px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #d9e5dc;
    color: #777;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    transition: .35s;
}

.material-step h4 {
    margin-top: 18px;
    margin-bottom: 6px;
    font-size: 16px;
    color: #111827;
    font-weight: 700;
}

.material-step p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.material-step:hover .step-circle,
.material-step.active .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.08);
}

.material-step:hover h4,
.material-step.active h4 {
    color: var(--primary-color);
}

/* =========================================
        CONSTRUCTION PROCESS
========================================= */

.construction-process {
    padding: 80px 0;
    background: #F8FBF9;
}

.process-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 16px;
}

.process-line {
    position: absolute;
    top: 28px;
    left: 5%;
    width: 90%;
    height: 3px;
    background: #dce7df;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
}

.process-circle {
    width: 58px;
    height: 58px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #dce7df;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: .35s;
}

.process-step:hover .process-circle {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-6px);
}

.process-step h4 {
    margin-top: 18px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

/* =========================================
        COURT SPECIFICATIONS
========================================= */

.court-specifications {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.specification-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.court-blueprint {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    border: 1px solid #ECECEC;
    width: 100%;
}

.blueprint-header {
    padding: 22px 28px;
    border-bottom: 1px solid #ECECEC;
    background: #fff;
}

.blueprint-header h3 {
    font-size: 24px;
    color: #111827;
    margin: 0 0 8px;
    font-weight: 800;
}

.blueprint-header span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 40px;
    background: #EAF8EF;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
}

.court-blueprint img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 10px;
}

.blueprint-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-top: 1px solid #ECECEC;
    font-size: 14px;
    line-height: 1.6;
    color: #667085;
}

.blueprint-footer i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.specification-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #F1F1F1;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.spec-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: .35s;
}

.spec-item:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.spec-item:hover::before {
    background: var(--primary-color);
}

.spec-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EAF8EF;
    color: var(--primary-color);
    font-size: 20px;
    transition: .35s;
}

.spec-item:hover .spec-icon {
    background: var(--primary-color);
    color: #fff;
}

.spec-info flex: 1;

.spec-info h4 {
    font-size: 17px;
    color: #111827;
    margin: 0 0 4px;
    font-weight: 700;
}

.spec-info p {
    font-size: 14px;
    color: #667085;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
        WHY SPORTSCAMP INFRA
========================================= */

.why-choose {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.why-image {
    margin-top: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
    width: 100%;
}

.why-image img {
    width: 100%;
    height: 480px;
    display: block;
    object-fit: cover;
    transition: .5s;
}

.why-stats {
    margin-top: -40px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(90deg, #0B8B44, #17B45C);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.stat-item {
    text-align: center;
    padding: 28px 16px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, .25);
}

.stat-item h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 4px;
}

.stat-item p {
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.why-features {
    margin-top: 60px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #E8E8E8;
    transition: .35s;
}

.feature-row:first-child {
    border-top: 1px solid #E8E8E8;
}

.feature-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EAF8EF;
    color: var(--primary-color);
    font-size: 22px;
    transition: .35s;
}

.feature-left h3 {
    font-size: 22px;
    color: #111827;
    margin: 0 0 8px;
    font-weight: 700;
}

.feature-left p {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.7;
    color: #667085;
    margin: 0;
}

/* =========================================
        BEFORE & AFTER
========================================= */

.before-after {
    padding: 80px 0;
    background: #F8FBF9;
    overflow: hidden;
}

.comparison-wrapper {
    margin-top: 40px;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    cursor: ew-resize;
    touch-action: pan-y;
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

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

.label {
    position: absolute;
    top: 20px;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, .45);
    z-index: 5;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

.slider-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #16A34A;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    border: 3px solid #fff;
    transition: .3s;
    cursor: grab;
}

.comparison-benefits {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #E5E7EB;
    transition: .35s;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.benefit-item span {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* =========================================
            FINAL CTA
========================================= */

.final-cta {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #08120D 0%, #0D1E15 50%, #07110C 100%);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, .35);
    background: rgba(34, 197, 94, .08);
    color: #4ADE80;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 48px;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 800;
    margin: 0;
}

.cta-content h2 span {
    display: block;
    color: var(--primary-color);
    font-size: 60px;
    margin: 6px 0;
}

.cta-content p {
    margin-top: 24px;
    max-width: 560px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
}

.primary-btn {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 15px 30px rgba(34, 197, 94, .25);
}

.secondary-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
}

.cta-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cta-image img {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 2;
    object-fit: cover;
}

.cta-features {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
}

.cta-feature i {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(34, 197, 94, .12);
    color: #4ADE80;
    font-size: 18px;
}

.cta-feature h4 {
    color: #fff;
    font-size: 15px;
    margin: 0 0 2px;
    font-weight: 600;
}

.cta-feature span {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
}

/* =========================================
            FAQ SECTION
========================================= */

.faq-section {
    padding: 80px 0;
    background: #F8FBF9;
}

.faq-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #E8ECEA;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: .35s;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    text-align: left;
}

.faq-question span {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
}

.faq-question i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #F1F8F4;
    color: var(--primary-color);
    font-size: 15px;
    transition: .35s;
}

.faq-item.active .faq-question span {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
        MOBILE RESPONSIVE BREAKPOINTS (FIXED)
========================================= */

@media(max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .hero-content h1 {
        font-size: 46px;
    }
    .systems-grid {
        grid-template-columns: 1fr;
    }
    .specification-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .court-blueprint, .structure-image {
        position: relative;
        top: 0;
    }
}

@media(max-width: 992px) {
    .running-track-hero {
        padding: 50px 0 40px;
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .hero-content {
        text-align: center;
        align-items: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        order: -1;
    }
    .hero-image img {
        max-height: 360px;
    }
    .overview-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .overview-image {
        height: 320px;
        order: -1;
    }
    .overview-content {
        text-align: center;
    }
    .colour-wrapper {
        grid-template-columns: 1fr;
    }
    .structure-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .materials-timeline {
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
        gap: 25px;
    }
    .material-step {
        min-width: 140px;
    }
    .timeline-line {
        width: 900px;
    }
    .process-wrapper {
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
        gap: 25px;
    }
    .process-step {
        min-width: 130px;
    }
    .process-line {
        width: 900px;
    }
    .why-image img {
        height: 320px;
    }
    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -25px;
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cta-image {
        order: -1;
    }
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }
    .hero-content p {
        font-size: 15px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons a {
        width: 100%;
    }
    .hero-highlights, .overview-features {
        grid-template-columns: 1fr;
    }
    .system-header {
        padding-right: 0;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 25px;
    }
    .system-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
    .comparison-container {
        height: 300px;
    }
    .comparison-benefits {
        grid-template-columns: 1fr;
    }
    .cta-content h2 {
        font-size: 32px;
    }
    .cta-content h2 span {
        font-size: 40px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    .cta-features {
        grid-template-columns: 1fr;
    }
    .faq-question span {
        font-size: 15px;
    }
}

@media(max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .overview-content h2 {
        font-size: 28px;
    }
    .why-stats {
        grid-template-columns: 1fr;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .stat-item {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
}
