:root {
    --ink: #111827;
    --muted: #667085;
    --line: #e4e7ec;
    --bg: #f7f8fa;
    --brand:#DD8537;
    --brand-dark:#C87228;
    --dark: #0b1018;
    --radius: 22px;
    --shadow: 0 18px 50px rgba(16, 24, 40, .10)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px
}

body {
    margin: 0;
    font-family: Manrope, system-ui, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.1rem;
}

:root {
    --brand: #DD8537;
    --brand-dark: #C87228;
    --dark: #1F1F1F;
}

img {
    max-width: 100%
}

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

button, input, select, textarea {
    font: inherit
}

.site-header {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 76px);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(228, 231, 236, .8);
    z-index: 30
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    white-space: nowrap
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--brand);
    color: #fff;
    font-size: 21px
}

.site-header nav {
    display: flex;
    gap: 32px;
    font-weight: 600;
    font-size: 14px
}

.site-header nav a:hover {
    color: var(--brand)
}

.header-cta {
    padding: 11px 18px;
    background: var(--dark);
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: .2s
}

.mobile-booking-bar {
    display: none
}

.hero {
    min-height: 720px;
    padding: clamp(70px, 9vw, 120px) clamp(20px, 7vw, 100px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: 40px;
    overflow: hidden;
    background: radial-gradient(circle at 85% 25%, #fff1f2 0, transparent 31%), linear-gradient(180deg, #fff 0, #fafafa 100%)
}

.hero-copy {
    max-width: 690px
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    margin: 0 0 14px
}

.hero h1 {
    font-size: clamp(46px, 6vw, 84px);
    line-height: 1.02;
    letter-spacing: -.055em;
    margin: 0 0 24px
}

.hero-text {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--muted);
    max-width: 650px;
    margin: 0 0 34px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 12px;
    padding: 14px 22px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .2s;
    text-align: center
}

.button:hover {
    transform: translateY(-2px)
}

.button.primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 25px rgba(227, 6, 19, .22)
}

.button.primary:hover {
    background: var(--brand-dark)
}

.button.secondary {
    background: #fff;
    border-color: var(--line)
}

.hero-stats {
    display: flex;
    gap: 34px;
    margin-top: 46px;
    padding-top: 28px;
    border-top: 1px solid var(--line)
}

.hero-stats div {
    display: flex;
    flex-direction: column
}

.hero-stats strong {
    font-size: 19px
}

.hero-stats span {
    font-size: 12px;
    color: var(--muted)
}

.hero-visual {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center
}

.glow {
    position: absolute;
    width: min(480px, 90vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd9dd 0, #fff3f4 43%, transparent 70%)
}

.screen-shell {
    position: relative;
    z-index: 2;
    height: 540px;
    max-width: 100%;
    filter: drop-shadow(0 28px 24px rgba(15, 23, 42, .18))
}

.screen-shell img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply
}

.floating-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    padding: 13px 16px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700
}

.floating-card span {
    color: var(--brand)
}

.card-one {
    left: 0;
    top: 28%
}

.card-two {
    right: 0;
    bottom: 19%
}

.trust-strip {
    padding: 22px clamp(20px, 7vw, 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
    border-block: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
    color: #475467
}

.trust-strip span {
    color: #98a2b3;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 10px
}

.section {
    padding: clamp(75px, 9vw, 125px) clamp(20px, 7vw, 100px)
}

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

.section h2 {
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.1;
    letter-spacing: -.04em;
    margin: 0 0 18px
}

.section-heading>p:last-child, .specs-copy>p {
    color: var(--muted);
    font-size: 17px
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: auto
}

.feature-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    background: #fff;
    transition: .2s
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.feature-card .icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: #fff0f1;
    color: var(--brand);
    font-weight: 800;
    margin-bottom: 24px
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 18px
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.specs-section {
    background: var(--dark);
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 90px;
    align-items: center
}

.specs-copy>p {
    color: #aab2bf
}

.text-link {
    display: inline-block;
    color: #fff;
    margin-top: 16px;
    font-weight: 800
}

.spec-table {
    background: #151c27;
    border: 1px solid #293242;
    border-radius: var(--radius);
    overflow: hidden
}

.spec-table>div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 22px;
    border-bottom: 1px solid #293242
}

.spec-table>div:last-child {
    border-bottom: 0
}

.spec-table span {
    color: #aab2bf
}

.spec-table strong {
    text-align: right;
    overflow-wrap: anywhere
}

.booking-section {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 70px;
    background: var(--bg)
}

.booking-intro {
    padding-top: 28px
}

.booking-intro>p:nth-of-type(2) {
    color: var(--muted);
    font-size: 17px
}

.process {
    margin-top: 35px;
    display: grid;
    gap: 18px
}

.process>div {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.process span {
    flex: 0 0 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--brand);
    font-weight: 800
}

.process p {
    margin: 0;
    font-size: 13px;
    color: var(--muted)
}

.process strong {
    color: var(--ink);
    font-size: 14px
}

.booking-form {
    min-width: 0;
    background: #fff;
    border-radius: 26px;
    padding: clamp(24px, 4vw, 42px);
    box-shadow: var(--shadow)
}

.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px
}

.form-grid label {
    min-width: 0;
    font-size: 12px;
    font-weight: 800;
    color: #344054
}

.form-grid input, .form-grid select, .form-grid textarea {
    display: block;
    width: 100%;
    min-width: 0;
    margin-top: 7px;
    border: 1px solid #d0d5dd;
    border-radius: 11px;
    padding: 12px 13px;
    color: var(--ink);
    background: #fff;
    outline: none;
    font-size: 16px
}

.form-grid textarea {
    resize: vertical
}

.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, .08)
}

.form-grid .full {
    grid-column: 1/-1
}

.booking-summary {
    margin: 18px 0;
    background: #fff8f8;
    border: 1px solid #ffd7da;
    color: #8f1119;
    padding: 13px 15px;
    border-radius: 11px;
    font-size: 13px
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 11px;
    color: var(--muted);
    margin: 16px 0
}

.checkbox input {
    margin-top: 3px;
    flex: 0 0 auto
}

.submit-button {
    width: 100%;
    border: 0
}

.form-status {
    text-align: center;
    font-size: 13px;
    margin: 14px 0 0;
    min-height: 20px
}

.form-status.success {
    color: #067647
}

.form-status.error {
    color: #b42318
}

footer {
    background: #080c12;
    color: #fff;
    padding: 50px clamp(20px, 7vw, 100px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 25px;
    align-items: start
}

footer p {
    color: #98a2b3;
    margin: 6px 0 0;
    font-size: 12px
}

footer>div:nth-child(2) {
    display: flex;
    gap: 24px;
    font-size: 13px
}

footer>p {
    grid-column: 1/-1;
    border-top: 1px solid #252c36;
    padding-top: 22px
}

@media(max-width:980px) {
    .header-cta {
        display: none
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }

    .site-header nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 0;
        padding: 8px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .2s
    }

    .site-header nav.open {
        opacity: 1;
        visibility: visible;
        transform: none
    }

    .site-header nav a {
        padding: 14px 16px;
        border-radius: 10px
    }

    .site-header nav a:hover {
        background: #fff5f5
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto
    }

    .hero-copy {
        margin: auto
    }

    .hero-actions, .hero-stats {
        justify-content: center
    }

    .hero-visual {
        min-height: 520px
    }

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

    .specs-section, .booking-section {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .specs-copy {
        max-width: 700px
    }

    .booking-intro {
        padding-top: 0
    }

    .card-one {
        left: 5%
    }

    .card-two {
        right: 5%
    }
}

@media(max-width:640px) {
    html {
        scroll-padding-top: 74px
    }

    body {
        padding-bottom: 68px
    }

    .site-header {
        height: 64px;
        padding: 0 16px
    }

    .brand {
        font-size: 14px
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        font-size: 18px
    }

    .hero {
        padding: 46px 18px 48px;
        gap: 28px
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 50px);
        line-height: 1.04
    }

    .hero-text {
        font-size: 16px
    }

    .hero-actions {
        display: grid
    }

    .hero-actions .button {
        width: 100%
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 34px;
        padding-top: 22px
    }

    .hero-stats div {
        min-width: 0
    }

    .hero-stats strong {
        font-size: 15px
    }

    .hero-stats span {
        font-size: 10px;
        line-height: 1.3
    }

    .hero-visual {
        min-height: 390px
    }

    .screen-shell {
        height: 365px
    }

    .floating-card {
        position: static;
        font-size: 10px;
        padding: 9px 11px;
        margin-top: 8px
    }

    .hero-visual {
        grid-template-columns: 1fr 1fr;
        align-content: center
    }

    .glow, .screen-shell {
        grid-column: 1/-1;
        grid-row: 1
    }

    .card-one, .card-two {
        grid-row: 2;
        justify-self: stretch
    }

    .card-one {
        grid-column: 1
    }

    .card-two {
        grid-column: 2
    }

    .trust-strip {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 17px 18px;
        gap: 22px;
        scrollbar-width: none
    }

    .trust-strip::-webkit-scrollbar {
        display: none
    }

    .trust-strip>* {
        white-space: nowrap
    }

    .section {
        padding: 64px 18px
    }

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

    .section h2 {
        font-size: 34px
    }

    .section-heading>p:last-child, .specs-copy>p, .booking-intro>p:nth-of-type(2) {
        font-size: 15px
    }

    .feature-grid {
        grid-template-columns: 1fr
    }

    .feature-card {
        padding: 22px
    }

    .specs-section {
        gap: 30px
    }

    .spec-table>div {
        flex-direction: column;
        gap: 2px;
        padding: 15px 17px
    }

    .spec-table strong {
        text-align: left
    }

    .booking-section {
        gap: 32px
    }

    .booking-form {
        border-radius: 18px;
        padding: 20px 16px
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .form-grid .full {
        grid-column: auto
    }

    .checkbox {
        font-size: 12px
    }

    .mobile-booking-bar {
        display: flex;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: max(10px, env(safe-area-inset-bottom));
        z-index: 40;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        background: var(--brand);
        color: #fff;
        font-weight: 800;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(227, 6, 19, .3)
    }

    footer {
        grid-template-columns: 1fr;
        padding: 40px 18px 90px
    }

    footer>div:nth-child(2) {
        flex-wrap: wrap
    }

    footer>p {
        grid-column: auto
    }
}

@media(max-width:390px) {
    .hero h1 {
        font-size: 36px
    }

    .hero-stats {
        grid-template-columns: 1fr
    }

    .hero-stats div {
        padding: 8px 0
    }

    .hero-visual {
        min-height: 350px
    }

    .screen-shell {
        height: 325px
    }

    .floating-card {
        grid-column: 1/-1
    }

    .card-two {
        grid-row: 3
    }
}

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

    *, *:before, *:after {
        transition: none !important;
        animation: none !important
    }
}

@media (max-width:640px){
    .brand span{
        display:none;
    }

    .logo{
        width:42px;
        height:42px;
    }
}