:root {
    --gs-navy: #101820;
    --gs-navy-soft: #1a2834;
    --gs-red: #b6282f;
    --gs-red-dark: #8f1f25;
    --gs-cream: #f7f4ee;
    --gs-muted: #66717a;
    --gs-border: #dfe4e7;
    --gs-white: #ffffff;
    --gs-shadow: 0 22px 55px rgba(16, 24, 32, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gs-navy);
    background: var(--gs-white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 2000;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    color: var(--gs-white);
    background: var(--gs-navy);
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    border-bottom: 1px solid rgba(16, 24, 32, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 22px rgba(16, 24, 32, 0.05);
    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 82px;
}

.navbar-brand img {
    display: block;
    max-height: 58px;
    width: auto;
}

.nav-link {
    padding: 0.7rem 0.8rem !important;
    color: var(--gs-navy);
    font-weight: 700;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--gs-red);
}

.btn {
    border-radius: 0.7rem;
    font-weight: 700;
}

.btn-brand {
    border-color: var(--gs-red);
    color: var(--gs-white);
    background: var(--gs-red);
}

.btn-brand:hover,
.btn-brand:focus {
    border-color: var(--gs-red-dark);
    color: var(--gs-white);
    background: var(--gs-red-dark);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 6.5rem 0;
    background:
        linear-gradient(120deg, rgba(247, 244, 238, 0.98), rgba(255, 255, 255, 0.98));
}

.hero-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(16, 24, 32, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 24, 32, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.hero-shape-one {
    top: -160px;
    right: -100px;
    width: 430px;
    height: 430px;
    background: rgba(182, 40, 47, 0.08);
}

.hero-shape-two {
    bottom: -200px;
    left: 35%;
    width: 380px;
    height: 380px;
    background: rgba(16, 24, 32, 0.05);
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--gs-red);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-section h1 {
    max-width: 800px;
    margin-bottom: 1.35rem;
    font-size: clamp(2.65rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-lead {
    max-width: 720px;
    margin-bottom: 2rem;
    color: #44515a;
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-actions .btn {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
}

.hero-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 2rem;
}

.hero-contact a {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    color: var(--gs-navy);
    font-weight: 700;
    text-decoration: none;
}

.hero-contact a:hover {
    color: var(--gs-red);
}

.course-summary {
    position: relative;
    overflow: hidden;
    padding: 2.2rem;
    border-radius: 1.4rem;
    color: var(--gs-white);
    background:
        linear-gradient(145deg, var(--gs-navy), var(--gs-navy-soft));
    box-shadow: var(--gs-shadow);
}

.course-summary::after {
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border: 25px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.summary-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 1.4rem;
    border-radius: 1rem;
    place-items: center;
    color: var(--gs-white);
    background: var(--gs-red);
    font-size: 1.5rem;
}

.summary-kicker {
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.course-summary h2 {
    margin-bottom: 1rem;
    font-size: 1.85rem;
    font-weight: 800;
}

.price-line {
    display: flex;
    gap: 0.65rem;
    align-items: end;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.price {
    font-size: 3.35rem;
    font-weight: 800;
    line-height: 1;
}

.price-detail {
    padding-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.68);
}

.summary-list {
    display: grid;
    gap: 0.85rem;
    margin: 1.45rem 0;
    padding: 0;
    list-style: none;
}

.summary-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.summary-list i {
    margin-top: 0.28rem;
    color: #70d49b;
}

.trust-strip {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    padding: 1.3rem 0;
    color: var(--gs-white);
    background: var(--gs-red);
}

.trust-item {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    padding: 0.7rem 0;
}

.trust-item > i {
    font-size: 1.45rem;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.section-padding {
    padding: 6rem 0;
}

.section-muted {
    background: var(--gs-cream);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-heading h2,
.section-padding h2,
.cta-panel h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-heading p,
.section-lead {
    color: var(--gs-muted);
    font-size: 1.08rem;
}

.location-card {
    position: relative;
    overflow: hidden;
    padding: 1.7rem;
    border: 1px solid var(--gs-border);
    border-radius: 1rem;
    background: var(--gs-white);
    box-shadow: 0 12px 35px rgba(16, 24, 32, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(16, 24, 32, 0.12);
}

.location-accent {
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
}

.location-accent-blue {
    background: #2f6fbd;
}

.location-accent-amber {
    background: #c78117;
}

.location-accent-green {
    background: #26845b;
}

.location-accent-red {
    background: var(--gs-red);
}

.location-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0.35rem 0 1.2rem;
    border-radius: 0.8rem;
    place-items: center;
    color: var(--gs-red);
    background: rgba(182, 40, 47, 0.09);
}

.location-region {
    margin-bottom: 0.3rem;
    color: var(--gs-muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.location-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.location-card p:not(.location-region) {
    color: var(--gs-muted);
}

.location-link {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    margin-top: 0.6rem;
    color: var(--gs-red);
    font-weight: 800;
    text-decoration: none;
}

.location-link:hover {
    color: var(--gs-red-dark);
}

.steps-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.75);
}

.step-item > span {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    place-items: center;
    color: var(--gs-white);
    background: var(--gs-red);
    font-weight: 800;
}

.step-item h3 {
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.step-item p {
    margin: 0;
    color: var(--gs-muted);
}

.support-panel {
    padding: clamp(2rem, 6vw, 3.5rem);
    border-radius: 1.3rem;
    color: var(--gs-white);
    background: var(--gs-navy);
    box-shadow: var(--gs-shadow);
}

.support-panel .eyebrow {
    color: #f19ca0;
}

.support-panel p {
    color: rgba(255, 255, 255, 0.72);
}

.support-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    place-items: center;
    color: var(--gs-white);
    background: var(--gs-red);
    font-size: 1.55rem;
}

.video-shell {
    overflow: hidden;
    max-width: 980px;
    margin: 0 auto;
    padding: 0.8rem;
    border-radius: 1.3rem;
    background: var(--gs-navy);
    box-shadow: var(--gs-shadow);
}

.video-shell iframe {
    border: 0;
    border-radius: 0.8rem;
}

.cta-section {
    padding: 0 0 6rem;
}

.cta-panel {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    padding: clamp(2rem, 6vw, 4rem);
    border-radius: 1.4rem;
    color: var(--gs-white);
    background:
        linear-gradient(125deg, var(--gs-red), var(--gs-red-dark));
    box-shadow: var(--gs-shadow);
}

.cta-panel p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.74);
}

.cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-footer {
    padding: 4rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    background: #0b1117;
}

.footer-logo {
    display: block;
    margin-bottom: 1.2rem;
    padding: 0.45rem;
    border-radius: 0.55rem;
    background: var(--gs-white);
}

.site-footer h2 {
    color: var(--gs-white);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--gs-white);
}

.footer-contact a {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
}

.footer-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0 1.25rem;
    }

    .hero-section {
        padding: 4.5rem 0;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2.65rem;
    }

    .hero-actions,
    .hero-actions .btn,
    .cta-actions,
    .cta-actions .btn {
        width: 100%;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        justify-content: center;
    }

    .hero-contact {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.8rem;
    }

    .course-summary {
        padding: 1.6rem;
    }

    .section-padding {
        padding: 4.5rem 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
