:root {
    --ink: #0b1520;
    --ink-soft: #3d4b58;
    --mist: #e8eef2;
    --paper: #f4f7f9;
    --white: #ffffff;
    --teal: #00b3a6;
    --teal-deep: #008f85;
    --slate: #13202c;
    --line: rgba(11, 21, 32, 0.1);
    --glow: rgba(0, 179, 166, 0.28);
    --radius: 18px;
    --font-display: "Outfit", "Avenir Next", sans-serif;
    --font-body: "Manrope", "Avenir Next", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(1200px 600px at 85% -10%, rgba(0, 179, 166, 0.12), transparent 55%),
        radial-gradient(900px 500px at -10% 20%, rgba(19, 32, 44, 0.06), transparent 50%),
        var(--paper);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 20;
    padding: .8rem 1rem;
    background: var(--white);
    border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(145deg, #07131a 0%, #102433 48%, #0a3d3a 100%);
}

.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: min(70vw, 760px);
    height: min(70vw, 760px);
    right: -12%;
    top: 8%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow), transparent 68%);
    animation: drift 14s ease-in-out infinite alternate;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 72%);
    opacity: 0.55;
}

.hero-scene {
    position: absolute;
    inset: 0;
}

.plane {
    position: absolute;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(2px);
    animation: float-y 9s ease-in-out infinite;
}

.plane-a {
    width: min(42vw, 420px);
    height: min(28vw, 260px);
    right: 8%;
    bottom: 18%;
    transform: rotate(-8deg);
}

.plane-b {
    width: min(28vw, 260px);
    height: min(18vw, 170px);
    right: 28%;
    bottom: 12%;
    transform: rotate(6deg);
    animation-delay: -2.5s;
    opacity: 0.85;
}

.plane-c {
    width: min(18vw, 160px);
    height: min(18vw, 160px);
    right: 14%;
    top: 28%;
    border-radius: 50%;
    animation-delay: -4s;
    opacity: 0.7;
}

.orbit {
    position: absolute;
    right: 18%;
    top: 34%;
    width: min(34vw, 320px);
    height: min(34vw, 320px);
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    animation: spin 36s linear infinite;
}

.site-header {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: var(--font-display);
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
    max-width: min(62vw, 420px);
    line-height: 1.2;
}

.header-cta {
    padding: 0.65rem 1rem;
    color: var(--ink);
    background: var(--white);
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
}
.header-cta:hover { transform: translateY(-1px); background: #e8fffc; }

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(2rem, 8vh, 5rem) 0 clamp(4rem, 10vh, 7rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-hero {
    margin: 0 0 1.4rem;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #9ff3ea;
    animation: rise 0.8s ease both;
}

h1, h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

h1 {
    max-width: 12ch;
    font-size: clamp(3.1rem, 8vw, 5.6rem);
    font-weight: 400;
    animation: rise 0.9s ease 0.08s both;
}

.hero-intro {
    max-width: 36ch;
    margin: 1.5rem 0 2.1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.55;
    font-weight: 500;
    animation: rise 1s ease 0.16s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    animation: rise 1.05s ease 0.24s both;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-2px); }

.button-primary {
    padding: 0.95rem 1.4rem;
    color: var(--ink);
    background: var(--teal);
    box-shadow: 0 10px 30px rgba(0, 179, 166, 0.28);
}
.button-primary:hover { background: #17c9bb; }

.button-ghost {
    padding: 0.95rem 1.25rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.button-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--teal-deep);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-copy h2,
.quote-heading h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.section-lead {
    max-width: 38ch;
    margin: 1rem 0 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.6;
}

.steps {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(4.5rem, 10vw, 7.5rem) 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}

.step-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}

.step-list li {
    padding: 1.35rem 1.4rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
}

.step-index {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: var(--teal-deep);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
}

.step-list h3,
.service-rail h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.step-list p,
.service-rail p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}

.services {
    padding: clamp(3rem, 8vw, 5.5rem) 0;
    background:
        linear-gradient(180deg, transparent, rgba(0, 179, 166, 0.05)),
        linear-gradient(90deg, rgba(11, 21, 32, 0.03) 1px, transparent 1px);
    background-size: auto, 56px 56px;
}

.services .section-copy,
.service-rail {
    width: min(1120px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

.services .section-copy { margin-bottom: 2rem; }

.service-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-rail article {
    min-height: 180px;
    padding: 1.6rem;
    color: var(--white);
    background: linear-gradient(160deg, #13202c, #0f3a38);
    border-radius: var(--radius);
}

.service-rail p { color: rgba(255, 255, 255, 0.72); }

.quote-section {
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.quote-shell {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: start;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(11, 21, 32, 0.06);
}

.quote-heading p:last-of-type {
    max-width: 34ch;
    margin: 1rem 0 0;
    color: var(--ink-soft);
    line-height: 1.6;
}

.quote-form { min-width: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field, .pickup-options { margin: 0 0 1.2rem; padding: 0; border: 0; }

.field > label:not(.upload-box),
.pickup-options legend {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0 0 0.45rem;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 600;
}

.field > label:not(.upload-box) span { color: #7a8894; font-weight: 500; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    color: var(--ink);
    background: var(--mist);
    border: 1px solid transparent;
    border-radius: 12px;
    outline: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

textarea { resize: vertical; min-height: 110px; }
input:focus, textarea:focus {
    background: var(--white);
    border-color: rgba(0, 179, 166, 0.55);
}
::placeholder { color: #8a97a3; }

.pickup-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.pickup-options legend { grid-column: 1 / -1; }
.pickup-options label { position: relative; cursor: pointer; }
.pickup-options input { position: absolute; opacity: 0; }
.pickup-options label span {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background: var(--mist);
    border: 1px solid transparent;
    border-radius: 14px;
}
.pickup-options input:checked + span {
    background: rgba(0, 179, 166, 0.1);
    border-color: rgba(0, 179, 166, 0.45);
}
.pickup-options input:focus-visible + span {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}
.pickup-options strong { font-size: 0.9rem; }
.pickup-options small { color: #6f7e8b; font-size: 0.75rem; }

.upload-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    margin: 0;
    padding: 1.25rem;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(0, 179, 166, 0.06), transparent),
        var(--mist);
    border: 1.5px dashed rgba(0, 143, 133, 0.45);
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.upload-box:hover {
    background: rgba(0, 179, 166, 0.08);
    border-color: var(--teal);
}
.upload-box input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}
.upload-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0 auto;
    text-align: center;
    pointer-events: none;
}
.upload-prompt strong,
.upload-prompt small {
    display: block;
    margin: 0;
    text-align: center;
}
.upload-icon {
    display: block;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    margin: 0 auto;
    border-radius: 50%;
    background:
        linear-gradient(var(--teal), var(--teal)) center / 2px 14px no-repeat,
        linear-gradient(var(--teal), var(--teal)) center / 14px 2px no-repeat,
        rgba(0, 179, 166, 0.15);
}
.upload-box small { color: #6f7e8b; font-weight: 500; }

.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.preview-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.55rem 0.35rem 0.35rem;
    background: var(--mist);
    border-radius: 10px;
    font-size: 0.72rem;
    color: var(--ink-soft);
}
.preview-item img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 8px;
}

.button-submit {
    width: 100%;
    justify-content: space-between;
    padding: 1.05rem 1.25rem;
    color: var(--white);
    background: var(--slate);
    border-radius: 14px;
    font-size: 0.92rem;
}
.button-submit:hover { background: #1a2d3d; }
.button-submit:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.privacy-note {
    margin: 0.85rem 0 0;
    color: #7a8894;
    font-size: 0.72rem;
    line-height: 1.5;
}

.form-status {
    display: none;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
}
.form-status.error {
    display: block;
    color: #8a2e24;
    background: #ffe4df;
}
.form-status.success {
    display: block;
    color: #0b4f49;
    background: #d7f7f2;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

footer {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 2.5rem 0 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: var(--ink-soft);
    font-size: 0.8rem;
}
.footer-brand { color: var(--ink); }
.footer-email {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
}
.footer-email:hover { color: var(--teal-deep); }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}
@keyframes drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-4%, 6%, 0) scale(1.08); }
}
@keyframes float-y {
    0%, 100% { transform: translateY(0) rotate(var(--rot, -8deg)); }
    50% { transform: translateY(-14px) rotate(var(--rot, -8deg)); }
}
.plane-a { --rot: -8deg; }
.plane-b { --rot: 6deg; }
.plane-c { --rot: 0deg; }
@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .steps,
    .quote-shell,
    .service-rail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-header,
    .hero-content,
    .steps,
    .services .section-copy,
    .service-rail,
    .quote-shell,
    footer {
        width: min(100% - 28px, 1120px);
    }

    .site-header { padding-top: 1.1rem; }
    .hero-content { padding-top: 2.5rem; padding-bottom: 4rem; }
    h1 { font-size: clamp(2.8rem, 12vw, 3.8rem); max-width: none; }
    .form-row,
    .pickup-options { grid-template-columns: 1fr; }
    .quote-shell {
        padding: 1.25rem;
        border-radius: 22px;
    }
    footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .plane-a, .plane-b, .plane-c, .orbit { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
