:root {
    --bg: #06111f;
    --bg-soft: #0c1d33;
    --surface: #edf4fb;
    --surface-strong: #ffffff;
    --panel: rgba(8, 22, 38, 0.78);
    --panel-strong: #091727;
    --text: #0e2237;
    --text-soft: #5f7388;
    --text-light: rgba(236, 245, 255, 0.9);
    --line: rgba(134, 169, 205, 0.22);
    --line-strong: rgba(174, 221, 255, 0.3);
    --accent: #4dd7ff;
    --accent-strong: #1da4ff;
    --accent-deep: #83b8ff;
    --glow: rgba(77, 215, 255, 0.38);
    --shadow-xl: 0 30px 90px rgba(3, 11, 24, 0.28);
    --shadow-md: 0 18px 50px rgba(7, 25, 42, 0.12);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --page-shell: clamp(32px, 6vw, 88px);
    --section-space: clamp(72px, 9vw, 100px);
    --section-space-tight: clamp(56px, 7vw, 78px);
    --panel-pad: clamp(22px, 3vw, 28px);
    --panel-pad-lg: clamp(26px, 4vw, 38px);
    --stack-gap: clamp(18px, 3vw, 28px);
    --container: min(1180px, calc(100vw - var(--page-shell)));
    --font-display: "Sora", sans-serif;
    --font-body: "Manrope", sans-serif;
    color-scheme: dark;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(41, 135, 255, 0.22), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(77, 215, 255, 0.18), transparent 24%),
        linear-gradient(180deg, #071425 0%, #091a2d 18%, #eef4fa 18%, #eef4fa 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

.site-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(14px);
    opacity: 0.65;
}

.bg-orb-1 {
    top: 90px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(94, 166, 255, 0.65), transparent 68%);
}

.bg-orb-2 {
    top: 220px;
    right: 8%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(77, 215, 255, 0.5), transparent 72%);
}

.bg-orb-3 {
    top: 980px;
    left: 18%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(115, 136, 255, 0.22), transparent 72%);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(173, 211, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(173, 211, 246, 0.05) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent 85%);
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: clamp(14px, 2.8vw, 18px) 0;
    transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    padding: clamp(8px, 1.8vw, 10px) 0;
    background: rgba(6, 17, 31, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 36px rgba(4, 10, 20, 0.28);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #f4fbff;
    min-width: 0;
}

.brand img {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(23, 70, 120, 0.34);
}

.brand span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.brand strong,
.brand small {
    white-space: nowrap;
}

.brand strong {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand small {
    color: rgba(228, 243, 255, 0.7);
    font-size: 0.82rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(236, 245, 255, 0.84);
}

.site-nav a:not(.button) {
    position: relative;
    font-size: 0.96rem;
}

.site-nav a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-nav a:not(.button):hover::after,
.site-nav a:not(.button):focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(193, 226, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #e9f7ff;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:disabled {
    opacity: 0.56;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.button-solid {
    background: linear-gradient(135deg, var(--accent) 0%, #82e7ff 100%);
    color: #04101d;
    box-shadow: 0 20px 40px rgba(77, 215, 255, 0.25);
}

.button-outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 228, 255, 0.18);
    color: #eef7ff;
}

.button-danger {
    background: linear-gradient(135deg, #d9415c 0%, #ff8b6e 100%);
    color: #fff7f8;
    box-shadow: 0 18px 36px rgba(217, 65, 92, 0.24);
}

.button-small {
    padding: 12px 18px;
    font-size: 0.92rem;
}

.hero-section {
    padding: clamp(22px, 4vw, 34px) 0 clamp(46px, 7vw, 64px);
    color: #eef7ff;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: clamp(28px, 4vw, 44px);
    min-height: calc(100vh - 120px);
}

.eyebrow {
    margin: 0 0 18px;
    color: #7ce1ff;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
}

.eyebrow-light {
    color: #86e7ff;
}

.hero-copy h1,
.section-heading h2,
.story-copy h2,
.contact-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.hero-copy h1 {
    font-size: clamp(2.85rem, 6vw, 5.5rem);
    max-width: 12ch;
}

.hero-lead {
    margin: 24px 0 0;
    max-width: 62ch;
    color: rgba(233, 246, 255, 0.82);
    font-size: 1.06rem;
    line-height: 1.85;
}

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

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.metric-card {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(180, 219, 255, 0.12);
    backdrop-filter: blur(14px);
}

.metric-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1;
}

.metric-card span {
    display: block;
    margin-top: 6px;
    color: rgba(228, 243, 255, 0.72);
    font-size: 0.95rem;
}

.promise-chip {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 28px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(77, 215, 255, 0.14), rgba(131, 184, 255, 0.06));
    border: 1px solid rgba(138, 216, 255, 0.18);
}

.promise-chip strong {
    font-size: 0.98rem;
}

.promise-chip span {
    color: rgba(224, 242, 255, 0.74);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
}

.hero-frame {
    position: relative;
    min-height: 610px;
    border-radius: 38px;
    background:
        linear-gradient(160deg, rgba(13, 31, 54, 0.9), rgba(5, 14, 26, 0.98)),
        radial-gradient(circle at top, rgba(110, 193, 255, 0.12), transparent 48%);
    border: 1px solid rgba(167, 220, 255, 0.14);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 30px;
    border: 1px solid rgba(159, 211, 255, 0.08);
}

.radar-ring {
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(127, 196, 255, 0.14);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 220px;
    height: 220px;
}

.ring-2 {
    width: 360px;
    height: 360px;
}

.ring-3 {
    width: 500px;
    height: 500px;
}

.core-card,
.hero-glass,
.orbit-pill {
    position: absolute;
}

.core-card {
    top: 50%;
    left: 50%;
    width: min(72%, 360px);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(181, 220, 255, 0.18);
    backdrop-filter: blur(18px);
    z-index: 2;
}

.core-card img {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    box-shadow: 0 18px 32px rgba(58, 120, 190, 0.35);
}

.core-card span {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(220, 242, 255, 0.7);
}

.core-card strong {
    display: block;
    margin-top: 6px;
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.orbit-pill {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(11, 34, 58, 0.86);
    border: 1px solid rgba(161, 214, 255, 0.16);
    color: rgba(236, 247, 255, 0.9);
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 34px rgba(6, 19, 34, 0.26);
    animation: pulseHalo 6s ease-in-out infinite;
}

.orbit-1 { top: 72px; left: 50%; transform: translateX(-50%); }
.orbit-2 { top: 166px; right: 58px; animation-delay: -1s; }
.orbit-3 { top: 50%; right: 22px; transform: translateY(-50%); animation-delay: -2s; }
.orbit-4 { bottom: 120px; right: 72px; animation-delay: -3s; }
.orbit-5 { bottom: 84px; left: 72px; animation-delay: -4s; }
.orbit-6 { top: 50%; left: 22px; transform: translateY(-50%); animation-delay: -5s; }

.hero-glass {
    padding: 18px 20px;
    width: min(64%, 280px);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(5, 16, 28, 0.75), rgba(16, 38, 62, 0.5));
    border: 1px solid rgba(147, 207, 255, 0.14);
    backdrop-filter: blur(16px);
}

.hero-glass span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(205, 235, 255, 0.64);
}

.hero-glass strong {
    display: block;
    font-family: var(--font-display);
    line-height: 1.3;
}

.hero-glass small {
    display: block;
    margin-top: 5px;
    color: rgba(228, 243, 255, 0.72);
}

.hero-glass-top {
    top: 40px;
    left: 36px;
}

.hero-glass-bottom {
    bottom: 34px;
    right: 34px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 18px);
    margin-top: clamp(18px, 3vw, 24px);
}

.highlight-card {
    padding: var(--panel-pad);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(173, 220, 255, 0.14);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 32px rgba(6, 18, 34, 0.18);
}

.highlight-card h2 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 1.12rem;
    letter-spacing: -0.03em;
}

.highlight-card p {
    margin: 0;
    color: rgba(229, 243, 255, 0.76);
    line-height: 1.75;
}

.coverage-strip {
    padding: 8px 0 20px;
}

.coverage-strip .container {
    display: flex;
    justify-content: center;
}

.coverage-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: min(100%, 960px);
    margin: 0 auto;
    padding: clamp(16px, 3vw, 22px);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 253, 0.96));
    border: 1px solid rgba(143, 180, 214, 0.18);
    box-shadow: var(--shadow-md);
}

.coverage-track span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(29, 164, 255, 0.08);
    border: 1px solid rgba(116, 152, 189, 0.16);
    color: #21415f;
    font-weight: 700;
}

.story-badges span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(8, 24, 40, 0.06);
    border: 1px solid rgba(116, 152, 189, 0.18);
    color: var(--text);
    font-weight: 700;
}

.section {
    padding: var(--section-space) 0;
}

.section-contrast {
    background: linear-gradient(180deg, #0a182a 0%, #091525 100%);
    color: #eef7ff;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(226, 236, 246, 0.88));
}

.section-contact {
    padding-bottom: clamp(84px, 10vw, 120px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(28px, 4vw, 42px);
}

.section-heading h2,
.story-copy h2,
.contact-copy h2 {
    font-size: clamp(2.05rem, 4vw, 3.4rem);
}

.section-heading p,
.story-copy p,
.contact-copy p,
.service-card p,
.insight-card p,
.workflow-card p,
.testimonial-card p,
.faq-item p {
    color: var(--text-soft);
    line-height: 1.85;
}

.section-heading p {
    margin: 18px 0 0;
}

.section-contrast .section-heading p,
.section-contrast .story-copy p,
.section-contrast .insight-card p {
    color: rgba(229, 242, 255, 0.72);
}

.service-grid,
.workflow-grid,
.testimonial-grid {
    display: grid;
    gap: var(--stack-gap);
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.insight-card,
.workflow-card,
.testimonial-card,
.map-card,
.contact-panel,
.faq-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(143, 180, 214, 0.18);
    box-shadow: var(--shadow-md);
}

.service-card {
    position: relative;
    padding: var(--panel-pad);
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-strong), var(--accent));
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(8, 26, 44, 0.14);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.service-index {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: -0.05em;
    color: rgba(8, 28, 46, 0.18);
}

.service-tag {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(29, 164, 255, 0.08);
    color: #177ed0;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-card h3,
.insight-card h3,
.workflow-card h3,
.testimonial-meta strong {
    margin: 16px 0 10px;
    font-family: var(--font-display);
    font-size: 1.32rem;
    letter-spacing: -0.03em;
}

.service-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 20px;
    color: var(--text);
    line-height: 1.75;
}

.service-card li + li {
    margin-top: 10px;
}

.service-card li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    box-shadow: 0 0 0 6px rgba(29, 164, 255, 0.08);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: var(--stack-gap);
    align-items: start;
}

.story-copy {
    position: sticky;
    top: 118px;
}

.story-copy p {
    margin-top: 18px;
}

.story-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.insight-grid {
    display: grid;
    gap: clamp(16px, 2.5vw, 18px);
}

.insight-card {
    padding: var(--panel-pad);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(12, 30, 50, 0.9), rgba(7, 20, 35, 0.98));
    border-color: rgba(176, 223, 255, 0.14);
}

.insight-number,
.workflow-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 54px;
    padding: 0 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(77, 215, 255, 0.12), rgba(131, 184, 255, 0.12));
    border: 1px solid rgba(135, 210, 255, 0.18);
    color: #bce9ff;
    font-family: var(--font-display);
}

.workflow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-card {
    padding: var(--panel-pad);
    border-radius: 28px;
}

.workflow-card:nth-child(odd) {
    background: rgba(255, 255, 255, 0.88);
}

.workflow-card:nth-child(even) {
    background: linear-gradient(180deg, #ffffff, #f2f8fd);
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
    padding: var(--panel-pad-lg);
    border-radius: 30px;
}

.testimonial-stars {
    color: #16a8e8;
    letter-spacing: 0.18em;
    font-size: 1.05rem;
}

.testimonial-quote {
    margin-top: 18px;
    font-size: 1.02rem;
    color: var(--text);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 24px;
}

.testimonial-meta span {
    color: var(--text-soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--stack-gap);
    align-items: start;
}

.faq-heading {
    margin-bottom: 0;
}

.faq-list {
    display: grid;
    gap: clamp(14px, 2.5vw, 16px);
}

.faq-item {
    border-radius: 24px;
    padding: 4px var(--panel-pad) 10px;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 34px 22px 0;
    position: relative;
    font-family: var(--font-display);
    font-size: 1.08rem;
    line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 18px;
    right: 0;
    font-size: 1.6rem;
    color: #177ed0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0 0 16px;
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: var(--stack-gap);
    align-items: stretch;
}

.contact-copy {
    padding: var(--panel-pad-lg);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 250, 255, 0.92));
    border: 1px solid rgba(143, 180, 214, 0.18);
    box-shadow: var(--shadow-md);
}

.contact-copy > p:not(.eyebrow) {
    margin: 18px 0 0;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.contact-panel {
    display: grid;
    gap: 14px;
    padding: var(--panel-pad);
    margin-top: 24px;
    border-radius: 24px;
}

.contact-panel article {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(6, 24, 40, 0.04);
}

.contact-panel span {
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5d7a98;
    font-size: 0.78rem;
    font-weight: 800;
}

.contact-panel a,
.contact-panel p {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
}

.site-alert {
    padding: 14px 16px;
    border-radius: 18px;
    margin-bottom: 16px;
    border: 1px solid rgba(143, 180, 214, 0.2);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    box-shadow: var(--shadow-md);
}

.site-alert-success {
    border-color: rgba(40, 181, 115, 0.28);
    background: rgba(232, 249, 240, 0.96);
}

.site-alert-error {
    border-color: rgba(220, 72, 72, 0.24);
    background: rgba(255, 239, 239, 0.96);
}

.booking-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: var(--stack-gap);
    margin-top: clamp(20px, 4vw, 28px);
    align-items: start;
}

.booking-intro,
.booking-card {
    padding: var(--panel-pad-lg);
    border-radius: 34px;
    border: 1px solid rgba(143, 180, 214, 0.18);
    box-shadow: var(--shadow-md);
}

.booking-intro {
    background: linear-gradient(180deg, rgba(8, 24, 40, 0.96), rgba(9, 21, 37, 0.98));
    color: var(--text-light);
}

.booking-intro h3,
.booking-card h3 {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    letter-spacing: -0.04em;
}

.booking-intro p {
    color: rgba(232, 244, 255, 0.76);
    line-height: 1.8;
}

.booking-intro > p:not(.eyebrow),
.booking-card > p {
    margin: 18px 0 0;
}

.booking-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.booking-tag-grid span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(168, 214, 255, 0.16);
    color: #eef7ff;
    font-weight: 700;
}

.booking-step-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.booking-step-item {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 214, 255, 0.12);
}

.booking-step-item strong {
    display: block;
    font-family: var(--font-display);
}

.booking-step-item p {
    margin: 8px 0 0;
}

.booking-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 253, 0.98));
}

.booking-form-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5a7794;
}

.booking-form {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.booking-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: var(--text);
}

.booking-form label span {
    font-size: 0.92rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(132, 168, 201, 0.26);
    background: #f7fbff;
    color: var(--text);
}

.booking-grid .booking-grid-full {
    grid-column: 1 / -1;
}

.booking-check {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600 !important;
    color: var(--text-soft) !important;
}

.booking-check input {
    width: auto;
    margin-top: 4px;
}

.booking-check span {
    font-size: 0.95rem !important;
    line-height: 1.7;
}

.booking-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.map-card {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 560px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: 0;
    filter: saturate(1.05) contrast(1.03);
}

.site-footer {
    padding: 0 0 clamp(28px, 4vw, 42px);
}

.footer-shell {
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.footer-brand strong {
    display: block;
    font-family: var(--font-display);
}

.footer-brand span,
.footer-copy {
    color: #63788e;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-links a {
    color: #21415f;
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulseHalo {
    0%, 100% {
        box-shadow: 0 18px 34px rgba(6, 19, 34, 0.26);
    }
    50% {
        box-shadow: 0 22px 40px rgba(6, 19, 34, 0.34), 0 0 0 1px rgba(125, 212, 255, 0.18);
    }
}

@media (max-width: 1120px) {
    .hero-grid,
    .story-grid,
    .faq-grid,
    .contact-shell,
    .booking-shell {
        grid-template-columns: 1fr;
    }

    .hero-frame {
        min-height: 560px;
    }

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

    .story-copy {
        position: static;
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: 20px;
        display: grid;
        gap: 12px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(6, 17, 31, 0.96);
        border: 1px solid rgba(180, 219, 255, 0.12);
        box-shadow: 0 24px 50px rgba(2, 9, 18, 0.34);
        transform-origin: top;
        transform: scaleY(0.88);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        transform: scaleY(1);
        pointer-events: auto;
    }

    .metric-grid,
    .highlight-grid,
    .service-grid,
    .testimonial-grid,
    .booking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-copy h1 {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .hero-section {
        padding-top: 14px;
    }

    .section {
        padding: var(--section-space-tight) 0;
    }

    .metric-grid,
    .highlight-grid,
    .service-grid,
    .workflow-grid,
    .testimonial-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .hero-frame {
        min-height: 500px;
    }

    .core-card {
        width: min(80%, 320px);
        padding: 18px;
    }

    .core-card img {
        width: 68px;
        height: 68px;
    }

    .orbit-pill {
        font-size: 0.84rem;
        padding: 10px 14px;
    }

    .orbit-2,
    .orbit-4 {
        right: 24px;
    }

    .orbit-5 {
        left: 24px;
    }

    .hero-glass {
        width: calc(100% - 48px);
    }

    .hero-glass-top {
        top: 24px;
        left: 24px;
    }

    .hero-glass-bottom {
        right: 24px;
        bottom: 24px;
    }

    .map-card,
    .map-card iframe {
        min-height: 420px;
    }
}

@media (max-width: 520px) {
    body {
        background:
            radial-gradient(circle at top left, rgba(41, 135, 255, 0.22), transparent 34%),
            linear-gradient(180deg, #071425 0%, #091a2d 19%, #eef4fa 19%, #eef4fa 100%);
    }

    .brand strong,
    .brand small {
        white-space: normal;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 15vw, 3.8rem);
    }

    .hero-frame {
        min-height: 480px;
        border-radius: 28px;
    }

    .ring-3 {
        width: 420px;
        height: 420px;
    }

    .orbit-1 {
        top: 88px;
    }

    .orbit-3,
    .orbit-6 {
        display: none;
    }

    .hero-glass strong {
        font-size: 0.96rem;
    }

    .coverage-strip {
        padding-bottom: 16px;
    }

    .coverage-track {
        padding: 14px;
        border-radius: 24px;
    }

    .faq-item {
        padding-inline: 18px;
    }

    .footer-brand {
        flex-direction: column;
    }
}


.contact-copy .button-outline {
    background: rgba(6, 24, 40, 0.04);
    border-color: rgba(33, 65, 95, 0.16);
    color: var(--text);
}

.section-contrast .story-badges span {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(164, 213, 255, 0.16);
    color: #eef7ff;
}
