:root {
    --ink: #101827;
    --muted: #5f6b7f;
    --blue: #1596df;
    --orange: #f47a20;
    --line: #e7edf5;
    --soft: #f5f8fd;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

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

.container {
    width: min(100% - 48px, 1110px);
    margin: 0 auto;
}

.site-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    color: var(--white);
    background: transparent;
    transition: background 0.22s ease, box-shadow 0.22s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
    background: #000000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.header-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: 230px 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 164px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.site-nav a {
    padding: 24px 0;
    white-space: nowrap;
}

.site-nav a:hover {
    color: rgba(255, 255, 255, 0.78);
}

.site-nav .has-dropdown::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    vertical-align: 3px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.business-btn {
    min-height: 34px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    border-radius: 6px;
    color: var(--white);
    background: transparent;
    font-size: 14px;
    font-weight: 900;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 4px;
    color: var(--white);
    background: transparent;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: currentColor;
}

.hero-section {
    min-height: 610px;
    color: var(--white);
    background:
        linear-gradient(105deg, rgba(21, 17, 75, 0.88) 0%, rgba(112, 34, 102, 0.82) 48%, rgba(203, 0, 76, 0.8) 100%),
        url("../images/banner-2.jpg") center 18% / cover no-repeat;
}

.hero-grid {
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 348px;
    align-items: center;
    gap: 92px;
    padding: 72px 0 42px;
}

.hero-copy {
    padding-top: 56px;
}

.hero-copy h1 {
    margin: 0 0 24px;
    text-transform: uppercase;
    font-size: 39px;
    line-height: 1.28;
    font-weight: 600;
    color: var(--white);
}

.hero-copy p {
    width: min(100%, 780px);
    margin: 0;
    color: var(--white);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 600;
}

.login-panel {
    width: 100%;
    margin-top: 34px;
    padding: 29px 24px 30px;
    border-radius: 5px;
    color: var(--ink);
    background: var(--white);
}

.login-panel h2 {
    margin: 0 0 25px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.login-alert {
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid #ffc7c7;
    border-radius: 4px;
    color: #b91c1c;
    background: #fff1f1;
    font-size: 13px;
    font-weight: 700;
}

.login-field {
    display: grid;
    margin-bottom: 24px;
}

.login-field input {
    width: 100%;
    height: 50px;
    border: 1px solid #dfe5ed;
    border-radius: 4px;
    padding: 0 15px;
    outline: none;
    font-size: 13px;
}

.login-field input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(21, 150, 223, 0.14);
}

.login-submit {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 4px;
    color: var(--white);
    background: #363d43;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

.password-login-btn {
    width: 100%;
    min-height: 60px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blue);
    border-radius: 4px;
    color: #0079bd;
    background: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.login-help {
    margin: 52px 0 0;
    color: #657084;
    text-align: center;
    font-size: 12px;
    line-height: 1.55;
}

.login-help a {
    color: #1596df;
}

.login-page .site-header {
    background: transparent;
    box-shadow: none;
}

.login-page .header-inner {
    min-height: 78px;
    grid-template-columns: 230px 1fr auto;
    width: min(100% - 48px, 1110px);
}

.login-page .brand img {
    width: 164px;
}

.login-page .site-nav {
    gap: 36px;
    font-size: 14px;
}

.login-page .site-nav a {
    padding: 24px 0;
}

.login-page .business-btn {
    min-height: 34px;
    padding: 0 10px;
    font-size: 14px;
    border-radius: 5px;
}

.login-hero {
    min-height: 606px;
}

.login-hero-grid {
    min-height: 606px;
    grid-template-columns: minmax(0, 1fr) 348px;
    gap: 92px;
    padding: 72px 0 42px;
    width: min(100% - 48px, 1060px);
}

.login-hero .hero-copy {
    padding-top: 56px;
    padding-left: 0;
}

.login-hero .hero-copy h1 {
    margin-bottom: 24px;
    font-size: 39px;
    line-height: 1.28;
}

.login-hero .hero-copy p {
    width: min(100%, 780px);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 600;
}

.password-login-panel {
    margin-top: 34px;
    padding: 29px 24px 30px;
    border-radius: 5px;
}

.password-login-panel h2 {
    margin-bottom: 25px;
    font-size: 18px;
}

.password-login-panel .login-field {
    margin-bottom: 24px;
}

.password-login-panel .login-field input {
    height: 50px;
    font-size: 13px;
}

.password-login-panel .login-submit {
    height: 50px;
    font-size: 11px;
}

.otp-login-link {
    display: block;
    margin-top: 17px;
    color: #167fc5;
    text-align: center;
    font-size: 13px;
}

.password-login-panel .login-help {
    margin-top: 52px;
    font-size: 12px;
}

.help-section,
.journey-section,
.partners-section {
    padding: 150px 0 76px;
    background: var(--soft);
}

.help-section {
    padding-top: 92px;
}

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

.partners-section .section-heading {
    margin-bottom: 78px;
}

.help-section .section-heading h2 {
    font-size: 36px;
}

.help-section .section-heading p {
    width: min(100%, 920px);
    font-size: 17px;
    line-height: 1.55;
}

.section-heading {
    width: min(1120px, 100%);
    margin: 0 auto 72px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 18px;
    text-transform: uppercase;
    font-size: clamp(34px, 3.1vw, 36px);
    line-height: 1.14;
    font-weight: 800;
}

.section-heading p {
    margin: 0 auto;
    width: min(100%, 1070px);
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

.section-heading.compact {
    margin-bottom: 44px;
}

.journey-section .section-heading h2 {
    font-size: 35px;
    font-weight: 800;
}

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

.help-card,
.stat-card,
.partner-card {
    border-radius: 6px;
    overflow: hidden;
}

.help-card {
    min-height: 0;
    padding-bottom: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.help-card img {
    width: 100%;
    height: 212px;
    object-fit: cover;
    border-radius: 4px;
}

.help-card h3,
.help-card p {
    margin-left: auto;
    margin-right: auto;
}

.help-card h3 {
    width: min(100%, 285px);
    margin-top: 30px;
    margin-bottom: 16px;
    color: #17223a;
    text-transform: uppercase;
    font-size: 21px;
    line-height: 1.22;
    font-weight: 700;
}

.help-card p,
.stat-card p,
.booking-points p,
.partner-card p {
    color: var(--muted);
    line-height: 1.65;
}

.help-card p {
    width: min(100%, 335px);
    font-size: 17px;
    line-height: 1.38;
    font-weight: 400;
}

.solutions-section {
    position: relative;
    min-height: 675px;
    display: grid;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
        url("../images/6.jpg") center / cover fixed no-repeat;
}

.solutions-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 530px;
    align-items: center;
    gap: 64px;
    padding: 72px 0;
}

.solution-device {
    display: flex;
    justify-content: flex-end;
}

.solution-device img {
    width: min(100%, 610px);
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.42));
}

.solution-list {
    display: grid;
    gap: 34px;
}

.solution-copy h3 {
    margin: 0 0 10px;
    text-transform: uppercase;
    color: var(--white);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
}

.solution-copy p {
    width: min(100%, 410px);
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}

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

.stat-card {
    min-height: 340px;
    padding: 26px 26px 30px;
    text-align: center;
}

.stat-card img {
    width: 122px;
    height: 122px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.stat-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
}

.stat-card p {
    width: min(100%, 240px);
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.55;
}

.booking-section {
    min-height: 640px;
    display: grid;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
        url("../images/6.jpg") center / cover fixed no-repeat;
}

.booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 560px;
    align-items: center;
    gap: 86px;
    padding: 76px 0;
}

.booking-device {
    display: flex;
    justify-content: flex-end;
}

.booking-device img {
    width: min(100%, 370px);
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.48));
}

.booking-points {
    display: grid;
    gap: 30px;
}

.booking-points article {
    padding-left: 0;
    border-left: 0;
}

.booking-points h3 {
    margin: 0 0 10px;
    text-transform: uppercase;
    color: var(--white);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
}

.booking-points p {
    width: min(100%, 460px);
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
}

.booking-points article:first-child p {
    width: min(100%, 440px);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px;
    align-items: start;
    width: min(100%, 980px);
    margin: 0 auto;
}

.partner-card {
    min-height: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    overflow: visible;
}

.partner-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin: 0 auto 26px;
}

.partner-card .tvs-logo {
    width: 250px;
    height: 72px;
    margin-bottom: 28px;
}

.partner-card h3 {
    margin: 0 0 16px;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 800;
}

.partner-card p {
    margin: 0 auto;
    width: min(100%, 360px);
    color: #000;
    font-size: 18px;
    line-height: 1.4;
}

.partner-card p a {
    color: #1596df;
}

.team-speaks-section {
    padding: 132px 0 104px;
    background: var(--soft);
}

.team-speaks-heading {
    width: min(100%, 830px);
    margin: 0 auto 68px;
    text-align: center;
}

.team-speaks-heading h2 {
    margin: 0 0 14px;
    text-transform: uppercase;
    color: #111827;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.team-speaks-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.team-speaks-grid {
    width: min(100%, 840px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 24px;
}

.team-speak-card {
    position: relative;
    min-height: 174px;
    padding: 28px 28px 26px;
    border-radius: 0 28px 0 0;
    background: var(--white);
    overflow: hidden;
}

.team-speak-card::after {
    content: "”";
    position: absolute;
    right: 28px;
    bottom: 4px;
    color: #edf0f5;
    font-family: Georgia, serif;
    font-size: 76px;
    line-height: 1;
    font-weight: 700;
}

.team-speak-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.team-speak-head img {
    width: 64px;
    height: 64px;
    border: 5px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px #e5eaf2;
}

.team-speak-head strong {
    text-transform: uppercase;
    color: #0f172a;
    font-size: 9px;
    font-style: italic;
    font-weight: 900;
}

.team-speak-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #5f6b7f;
    text-align: center;
    font-size: 12px;
    font-style: italic;
    line-height: 1.7;
}

.site-footer {
    background: var(--white);
}

.contact-grid {
    padding: 70px 0 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
    align-items: start;
    width: min(100% - 48px, 1810px);
}

.contact-grid > div {
    grid-column: 1 / -1;
    text-align: center;
}

.contact-grid h2 {
    margin: 0 0 8px;
    text-transform: uppercase;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-grid article {
    min-height: 156px;
    padding: 18px 16px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(31, 45, 76, 0.08);
}

.contact-grid h3 {
    margin: 0 0 10px;
    text-transform: uppercase;
    color: #101827;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-grid p {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
}

.contact-grid > div p {
    margin-bottom: 0;
    font-size: 16px;
}

.contact-grid a {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
}

.footer-main {
    color: rgba(255, 255, 255, 0.58);
    background:
        linear-gradient(rgba(18, 18, 18, 0.94), rgba(18, 18, 18, 0.94)),
        url("../images/wi") center / cover no-repeat;
}

.footer-grid {
    width: min(100% - 48px, 1090px);
    padding: 86px 0 22px;
    display: grid;
    grid-template-columns: 1.7fr 1.15fr .75fr .9fr;
    gap: 74px;
    align-items: start;
}

.footer-logo img {
    width: 205px;
}

.footer-grid h3 {
    margin: 0 0 36px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.footer-grid a {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.25;
}

.footer-grid .social-link {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-grid .social-link span {
    width: 12px;
    flex: 0 0 12px;
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
    font-size: 12px;
    font-weight: 800;
}

.footer-bottom {
    margin-top: 0;
    width: 100%;
    max-width: none;
    padding: 34px 0;
    border-top: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
    background: #101010;
}

.footer-bottom p {
    margin: 0;
    font-size: 16px;
}

.footer-bottom span {
    color: #1596df;
}

@media (max-width: 1160px) {
    .header-inner {
        grid-template-columns: 220px auto auto;
        justify-content: space-between;
    }

    .brand img {
        width: 180px;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .business-btn {
        order: 2;
    }

    .site-nav {
        position: absolute;
        left: 24px;
        right: 24px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 6px;
        color: var(--white);
        background: #000000;
        box-shadow: 0 18px 50px rgba(17, 24, 39, 0.15);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 13px 14px;
        border-radius: 4px;
    }

    .site-nav a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .login-panel {
        width: min(100%, 430px);
    }

    .login-hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .login-hero .hero-copy {
        padding-left: 0;
    }

    .password-login-panel {
        margin: 0 auto;
    }

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

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .solution-device {
        justify-content: center;
    }

    .solution-list {
        width: min(100%, 560px);
        margin: 0 auto;
    }

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

    .booking-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .booking-grid {
        gap: 42px;
    }

    .booking-device {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 30px, 1278px);
    }

    .header-inner {
        min-height: 74px;
        grid-template-columns: 150px auto auto;
        gap: 10px;
    }

    .brand img {
        width: 142px;
    }

    .business-btn {
        min-height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }

    .hero-section,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        padding: 104px 0 46px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .login-panel {
        padding: 24px 20px 28px;
    }

    .login-page .header-inner {
        min-height: 72px;
    }

    .login-page .brand img {
        width: 142px;
    }

    .login-hero-grid {
        padding: 104px 0 40px;
    }

    .login-hero .hero-copy h1 {
        font-size: 32px;
    }

    .login-hero .hero-copy p {
        font-size: 15px;
    }

    .password-login-panel {
        width: 100%;
    }

    .help-section,
    .journey-section,
    .partners-section,
    .booking-section {
        padding: 52px 0;
    }

    .section-heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .section-heading p {
        font-size: 16px;
    }

    .help-grid,
    .stats-grid,
    .booking-grid,
    .partner-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .solutions-section {
        min-height: auto;
        background-attachment: scroll;
    }

    .booking-section {
        min-height: auto;
        padding: 0;
        background-attachment: scroll;
    }

    .solutions-grid {
        padding: 48px 0;
    }

    .booking-grid {
        padding: 48px 0;
    }

    .solution-copy h3 {
        font-size: 21px;
    }

    .solution-copy p {
        font-size: 16px;
    }

    .booking-points h3 {
        font-size: 21px;
    }

    .booking-points p {
        font-size: 16px;
    }
}
