
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --so-primary: #00bfa5;
    --so-primary-dark: #00897b;
    --so-ink: #1e1e1e;
    --so-muted: #5f6b6a;
    --so-alt: #f3faf9;
    --so-line: #dde6eb;
    --so-card-shadow: 0 8px 30px rgba(0, 80, 70, 0.08);
}

/* the onboarding page uses its own header/footer (below) — hide the shared site nav */
.so-service-page #mainNav {
    display: none !important;
}

.so-service-page .so-section--hero {
    padding-top: 36px;
}

/* ===== Dedicated dark header for the onboarding page (Figma) ===== */
.so-topbar {
    background-color: #16181a;
    padding: 18px 0;
}

.so-topbar__inner {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.so-topbar__brand {
    display: inline-flex;
    flex-shrink: 0;
}

.so-topbar__logo {
    height: 42px;
    width: auto;
    display: block;
}

.so-topbar__nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 36px;
}

.so-topbar__nav a {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: color 0.3s;
}

.so-topbar__nav a:hover {
    color: var(--so-primary);
}

.so-topbar__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.so-topbar__actions .so-btn {
    padding: 9px 22px;
    font-size: 14px;
}

/* burger toggle — hidden on desktop, shown on mobile */
.so-topbar__burger {
    display: none;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 9px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.so-topbar__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.so-topbar.is-open .so-topbar__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.so-topbar.is-open .so-topbar__burger span:nth-child(2) {
    opacity: 0;
}

.so-topbar.is-open .so-topbar__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Dedicated dark footer for the onboarding page (Figma) ===== */
.so-sitefooter {
    background-color: #16181a;
    padding: 40px 0 30px;
}

.so-sitefooter__top,
.so-sitefooter__bottom {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.so-sitefooter__top {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.so-sitefooter__bottom {
    padding-top: 24px;
}

.so-sitefooter__logo {
    height: 42px;
    width: auto;
    display: block;
}

.so-sitefooter__nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.so-sitefooter__nav a {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: color 0.3s;
}

.so-sitefooter__nav a:hover {
    color: var(--so-primary);
}

.so-sitefooter__copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.so-sitefooter__social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.so-sitefooter__social a {
    color: #ffffff;
    font-size: 17px;
    transition: color 0.3s;
}

.so-sitefooter__social a:hover {
    color: var(--so-primary);
}

/* ===== Responsive: dedicated header collapses to a burger, footer stacks ===== */
@media (max-width: 992px) {
    .so-topbar__inner {
        flex-wrap: wrap;
    }

    .so-topbar__burger {
        display: flex;
    }

    .so-topbar__nav,
    .so-topbar__actions {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-left: 0;
    }

    .so-topbar.is-open .so-topbar__nav {
        display: flex;
        margin-top: 18px;
    }

    .so-topbar.is-open .so-topbar__actions {
        display: flex;
        margin-top: 4px;
        padding-bottom: 6px;
    }

    .so-topbar.is-open .so-topbar__actions .so-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .so-sitefooter__top,
    .so-sitefooter__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 22px;
    }

    .so-sitefooter__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 24px;
    }

    .so-sitefooter__bottom {
        flex-direction: column-reverse;
    }
}

/* ----- Promo banner: fixed to bottom, scrolls with the user ----- */
.onboarding-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: flex;
    align-items: center;
    min-height: 110px;
    padding: 14px 48px;
    background-color: #050606;
    background-image: url('../pictures/driver-onboarding/banner-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.28);
}

.onboarding-banner.is-hidden {
    display: none;
}

.onboarding-banner__inner {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.onboarding-banner__text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #ffffff;
    text-align: left;
}

.onboarding-banner__text span {
    color: var(--so-primary);
}

.onboarding-banner__btn {
    flex-shrink: 0;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 6px;
    background-color: var(--so-primary);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
}

.onboarding-banner__btn:hover {
    background-color: var(--so-primary-dark);
    color: #ffffff;
}

.onboarding-banner__close {
    position: absolute;
    top: 10px;
    right: 18px;
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.onboarding-banner__close:hover {
    opacity: 1;
}

/* ----- Layout primitives ----- */
.so-section {
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.so-section--alt,
.so-section--contact {
    background-color: var(--so-alt);
}

/* dark bands: "Who Is This Service For?" and "What Happens After the Session?" */
.so-section--dark {
    background-color: #272b2d;
}

/* slim light strip that holds the rating box (between the dark band and bestseller) */
.so-section--rating {
    padding: 48px 0 0;
}

.so-section--dark .so-h1,
.so-section--dark .so-h2,
.so-section--dark .so-sub,
.so-section--dark .so-card__title {
    color: #ffffff;
}

.so-section--dark .so-text,
.so-section--dark .so-list,
.so-section--dark .so-steps,
.so-section--dark .so-arrow-list {
    color: rgba(255, 255, 255, 0.82);
}

.so-container {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 24px;
}

.so-center {
    text-align: center;
}

/* ----- Typography ----- */
.so-h1 {
    margin: 0 0 22px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--so-ink);
    text-align: left;
    text-transform: uppercase;
}

.so-h2 {
    margin: 0 0 22px;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--so-ink);
    text-align: center;
    text-transform: uppercase;
}

/* two-column sections (Who, After) have the heading in a side column -> left */
.so-two-col__content .so-h2 {
    text-align: left;
}

.so-sub {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--so-ink);
    text-align: left;
}

.so-text {
    margin: 0 0 16px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--so-muted);
    text-align: left;
}

.so-text--center {
    text-align: center;
}

.so-list {
    margin: 8px 0 28px;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 17px;
    line-height: 1.5;
    color: var(--so-muted);
    text-align: left;
}

/* ----- Buttons ----- */
.so-btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    background-color: var(--so-primary);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.so-btn:hover {
    background-color: var(--so-primary-dark);
    color: #ffffff;
    text-decoration: none;
}

.so-btn--ghost {
    background-color: transparent;
    border: 1px solid var(--so-primary);
    color: var(--so-primary);
}

.so-btn--ghost:hover {
    background-color: var(--so-primary);
    color: #ffffff;
}

.so-btn--light {
    background-color: #ffffff;
    border: 1px solid var(--so-line);
    color: var(--so-ink);
}

.so-btn--light:hover {
    background-color: var(--so-alt);
    color: var(--so-ink);
}

/* dark filled button (Bestseller "Show More") */
.so-btn--dark {
    background-color: var(--so-ink);
    color: #ffffff;
}

.so-btn--dark:hover {
    background-color: #000000;
    color: #ffffff;
}

/* ----- Hero meta (breadcrumb left + share right) ----- */
.so-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
}

.so-breadcrumb {
    font-size: 15px;
    color: var(--so-muted);
}

.so-breadcrumb a {
    color: var(--so-muted);
    text-decoration: none;
}

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

.so-breadcrumb .so-breadcrumb__current {
    color: var(--so-ink);
}

.so-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.so-stars {
    font-size: 18px;
    letter-spacing: 2px;
    color: #f5a623;
}

.so-star--empty {
    color: var(--so-line);
}

.so-reviews {
    font-size: 15px;
    color: var(--so-muted);
}

.so-share {
    display: flex;
    align-items: center;
    gap: 16px;
}

.so-share__label {
    font-size: 15px;
    color: var(--so-muted);
}

.so-share a,
.so-contact__social a {
    font-size: 18px;
    color: var(--so-primary);
    transition: color 0.3s;
}

.so-share a:hover,
.so-contact__social a:hover {
    color: var(--so-primary-dark);
}

/* ----- Hero & two-column ----- */
.so-hero,
.so-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* hero image stretches to the content height (no empty gap beside it) */
.so-hero {
    align-items: stretch;
}

.so-hero__img {
    height: 100%;
}

.so-hero__img img {
    width: 100%;
    height: 100%;
    max-height: 640px;
    border-radius: 16px;
    object-fit: cover;
}

.so-two-col__img img {
    width: 100%;
    height: 430px;
    border-radius: 16px;
    object-fit: cover;
}

/* ----- 3-card grids ----- */
.so-cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    text-align: left;
}

.so-card {
    padding: 30px 26px;
    background-color: #eef1f2;
    border: 1px solid #e4e8ea;
    border-radius: 14px;
}

.so-card__title {
    margin: 0 0 18px;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--so-ink);
    text-align: left;
}

.so-arrow-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--so-muted);
}

.so-arrow-list li {
    position: relative;
    padding-left: 26px;
}

.so-arrow-list li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: var(--so-primary);
    font-weight: 800;
}

/* ----- Process steps ----- */
.so-steps {
    margin: 8px 0 28px;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 17px;
    line-height: 1.5;
    color: var(--so-muted);
}

.so-callout {
    padding: 20px 24px;
    background-color: var(--so-alt);
    border-left: 4px solid var(--so-primary);
    border-radius: 10px;
    font-size: 26px;
    text-transform:capitalize;
    font-weight: 700;
    line-height: 1.5;
    color: var(--so-ink);
}

.so-lang__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 26px;
    font-size: 22px;
    font-weight: 700;
    color: var(--so-ink);
    background-color: var(--so-alt);
}

.so-flag {
    width: 32px;
    height: 24px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

/* ----- Pricing (notes left, price card right) ----- */
.so-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.so-price-card {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 32px 52px;
    background-color: #ffffff;
    border: 1px solid var(--so-line);
    border-radius: 14px;
}

.so-price {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: var(--so-ink);
}

.so-price__unit {
    font-size: 22px;
    font-weight: 700;
    color: var(--so-ink);
}

.so-price-notes {
    margin: 0;
}

/* ----- After the session (wide image) ----- */
.so-wide-img {
    margin-bottom: 40px;
}

.so-wide-img img {
    width: 100%;
    height: auto;
    max-height: 380px;
    border-radius: 16px;
    object-fit: cover;
}

/* ----- CTA banner ----- */
.so-cta-banner {
    margin-top: 48px;
    padding: 48px;
    background-color: #1a1c1e;
    border-radius: 16px;
    text-align: center;
}

.so-cta-banner .so-h2,
.so-cta-banner .so-text {
    color: #ffffff;
}

.so-cta-banner__accent {
    margin: 8px 0 0;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
}

/* rating + share bar — white bordered box on its own light strip (below the dark band) */
.so-ratingbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 28px;
    background-color: #ffffff;
    border: 1px solid var(--so-line);
    border-radius: 10px;
}

.so-ratingbar .so-reviews {
    color: var(--so-muted);
}

.so-reviews__link {
    margin-left: 6px;
    color: var(--so-primary);
    text-decoration: underline;
}

/* ----- Bestseller services ----- */
.so-bs-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid var(--so-line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--so-card-shadow);
    text-align: left;
}

.so-bs-card__img img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.so-bs-card__title {
    margin: 22px 22px 12px;
    font-size: 21px;
    font-weight: 700;
    color: var(--so-ink);
}

.so-bs-card .so-text {
    margin: 0 22px 20px;
    font-size: 15px;
}

.so-bs-card__actions {
    margin: auto 22px 22px;
    display: flex;
    gap: 12px;
}

.so-viewmore {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ----- Contact us ----- */
.so-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.so-contact__logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 16px;
}

.so-contact__list {
    margin: 24px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
    color: var(--so-ink);
}

.so-contact__list span {
    display: inline-block;
    min-width: 90px;
    color: var(--so-muted);
}

.so-contact__list a {
    color: var(--so-ink);
    text-decoration: none;
}

.so-contact__list a:hover {
    text-decoration: underline;
}

.so-contact__social {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--so-muted);
}

.so-contact__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.so-contact__form input,
.so-contact__form textarea {
    width: 100%;
    padding: 15px 18px;
    background-color: #ffffff;
    border: 1px solid var(--so-line);
    border-radius: 10px;
    color: var(--so-ink);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    resize: vertical;
}

.so-contact__form input::placeholder,
.so-contact__form textarea::placeholder {
    color: #9aa3a2;
}

.so-contact__form input:focus,
.so-contact__form textarea:focus {
    outline: none;
    border-color: var(--so-primary);
}

.so-contact__send {
    align-self: flex-start;
    padding: 12px 40px;
}

/* ----- Page footer (copyright bar) ----- */
.so-footer {
    padding: 24px 0;
    background-color: var(--so-ink);
    text-align: center;
}

.so-footer .so-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.so-footer a {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.so-footer a:hover {
    color: var(--so-primary);
}

.so-footer span {
    color: rgba(255, 255, 255, 0.4);
}

/* ----- Responsive ----- */
@media (max-width: 992px) {
    .so-hero,
    .so-two-col,
    .so-contact {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .so-hero__content,
    .so-two-col__content {
        order: -1;
    }

    .so-cards-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .onboarding-banner {
        padding: 14px 40px 14px 20px;
    }

    .onboarding-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .onboarding-banner__text {
        font-size: 17px;
    }

    .so-section {
        padding: 48px 0;
    }

    .so-h1,
    .so-h2 {
        font-size: 28px;
    }

    .so-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .so-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}
