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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main, #111827);
    background: #ffffff;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

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

p,
h1,
h2,
h3 {
    margin-top: 0;
}

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

:root {
    --bg-dark: #0B0F14;
    --bg-dark-soft: #111827;
    --bg-light: #F8F5EF;
    --bg-white: #FFFFFF;
    --accent: #C9A86A;
    --accent-soft: rgba(201, 168, 106, 0.16);
    --text-main: #111827;
    --text-muted: #6B7280;
    --text-light: #F9FAFB;
    --border-light: rgba(255, 255, 255, 0.12);
    --border-dark: rgba(17, 24, 39, 0.10);
    --shadow-soft: 0 24px 70px rgba(11, 15, 20, 0.12);
    --shadow-card: 0 18px 44px rgba(17, 24, 39, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --container: 1200px;
}

::selection {
    background: var(--accent);
    color: var(--bg-dark);
}

:focus-visible {
    outline: 3px solid rgba(201, 168, 106, 0.72);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--bg-dark);
    background: var(--accent);
    border-radius: 999px;
    transform: translateY(-140%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(17, 24, 39, 0.07);
    backdrop-filter: blur(18px);
    transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 82px;
    transition: min-height 220ms ease;
}

.site-header.is-scrolled .header-inner {
    min-height: 68px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-link img {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
}

.brand-link span {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.brand-link strong {
    font-size: 0.98rem;
    line-height: 1.1;
    letter-spacing: 0;
}

.brand-link small {
    max-width: 230px;
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}

.desktop-nav a,
.mobile-nav a {
    color: rgba(17, 24, 39, 0.72);
    font-size: 0.88rem;
    font-weight: 700;
}

.desktop-nav a {
    padding: 11px 12px;
    border-radius: 999px;
    transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--text-main);
    background: rgba(17, 24, 39, 0.06);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--border-dark);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: var(--bg-dark);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
    display: grid;
    grid-template-rows: 0fr;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(17, 24, 39, 0.07);
    transition: grid-template-rows 220ms ease;
}

.mobile-nav nav {
    overflow: hidden;
    display: grid;
    gap: 8px;
}

.mobile-nav.is-open {
    grid-template-rows: 1fr;
}

.mobile-nav a {
    padding: 12px 0;
}

.mobile-nav a.active {
    color: var(--bg-dark);
}

.mobile-nav .btn {
    margin: 10px 0 18px;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.92rem;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
    color: #101419;
    background: var(--accent);
    box-shadow: 0 14px 30px rgba(201, 168, 106, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 18px 40px rgba(201, 168, 106, 0.32);
}

.btn-secondary {
    color: var(--text-main);
    background: #ffffff;
    border-color: var(--border-dark);
}

.btn-secondary:hover {
    border-color: rgba(17, 24, 39, 0.24);
    box-shadow: var(--shadow-card);
}

.btn-outline {
    color: var(--bg-dark);
    background: transparent;
    border-color: rgba(17, 24, 39, 0.16);
}

.btn-small {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.82rem;
}

.hero {
    position: relative;
    color: var(--text-light);
    background:
        linear-gradient(135deg, rgba(11, 15, 20, 0.96), rgba(17, 24, 39, 0.98)),
        var(--bg-dark);
    overflow: hidden;
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.55), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 64px;
    align-items: center;
    min-height: 680px;
    padding-block: 96px;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

h1,
.hero h1 {
    max-width: 880px;
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 5vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.2vw, 3.55rem);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.hero p,
.page-hero p,
.section-heading p,
.split-grid p,
.two-column p {
    color: rgba(249, 250, 251, 0.72);
    font-size: 1.08rem;
}

.hero-copy > p {
    max-width: 690px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 22px;
}

.trust-line {
    color: rgba(249, 250, 251, 0.62);
    font-size: 0.95rem;
}

.trip-panel {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
}

.trip-panel::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    pointer-events: none;
}

.panel-topline,
.panel-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(249, 250, 251, 0.72);
    font-size: 0.82rem;
}

.panel-topline strong {
    color: #151515;
    background: var(--accent);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.72rem;
}

.route-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    margin: 42px 0;
    padding: 30px;
    border-radius: 22px;
    background: rgba(11, 15, 20, 0.62);
    border: 1px solid var(--border-light);
}

.route-card span {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 900;
    letter-spacing: 0;
}

.route-card i {
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 106, 0.2), var(--accent), rgba(201, 168, 106, 0.2));
}

.trip-status-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.trip-status-grid div {
    padding: 18px;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.trip-status-grid small {
    display: block;
    margin-bottom: 4px;
    color: rgba(249, 250, 251, 0.58);
}

.trip-status-grid strong {
    display: block;
    color: #ffffff;
}

.panel-footer {
    margin-top: 18px;
    justify-content: flex-start;
}

.panel-footer span {
    padding: 7px 10px;
    border: 1px solid var(--border-light);
    border-radius: 999px;
}

.trust-strip {
    background: #ffffff;
    border-bottom: 1px solid var(--border-dark);
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    align-items: center;
    gap: 28px;
    padding: 28px 0;
}

.trust-strip p {
    margin: 0;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 800;
}

.pill-row,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pill-row span,
.tag-list li,
.panel-footer span {
    color: rgba(17, 24, 39, 0.78);
    background: rgba(201, 168, 106, 0.12);
    border: 1px solid rgba(201, 168, 106, 0.26);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 800;
}

.panel-footer span {
    color: rgba(249, 250, 251, 0.76);
    background: transparent;
}

.section,
.split-section,
.world-clocks,
.legal-section {
    padding: 96px 0;
}

.section-soft {
    background: var(--bg-light);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.section-heading-center {
    margin-inline: auto;
    text-align: center;
}

.section-heading-center .eyebrow {
    justify-content: center;
}

.section-heading p,
.split-grid p,
.two-column p {
    color: var(--text-muted);
}

.service-grid,
.audience-grid,
.three-grid,
.value-grid {
    display: grid;
    gap: 18px;
}

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

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

.audience-grid,
.three-grid {
    grid-template-columns: repeat(3, 1fr);
}

.value-grid {
    grid-template-columns: repeat(5, 1fr);
}

.service-card,
.audience-card,
.insight-card,
.value-card,
.mini-card,
.premium-panel,
.feature-list-card,
.contact-form,
.contact-card,
.faq-item,
.notice-card,
.legal-content {
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.02);
}

.service-card,
.audience-card,
.insight-card,
.value-card,
.mini-card {
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.audience-card:hover,
.insight-card:hover,
.value-card:hover,
.mini-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 106, 0.45);
    box-shadow: var(--shadow-card);
}

.card-index,
.insight-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 30px;
    margin-bottom: 22px;
    color: var(--bg-dark);
    background: var(--accent-soft);
    border: 1px solid rgba(201, 168, 106, 0.28);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
}

.service-card p,
.audience-card p,
.insight-card p,
.value-card p,
.mini-card p,
.premium-panel p,
.feature-list-card p,
.contact-card p,
.faq-item p,
.notice-card p,
.legal-content p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #ffffff;
}

.process-grid-six {
    grid-template-columns: repeat(3, 1fr);
}

.process-step {
    position: relative;
    min-height: 240px;
    padding: 30px 24px;
    border-right: 1px solid var(--border-dark);
}

.process-step:last-child,
.process-grid-six .process-step:nth-child(3n) {
    border-right: 0;
}

.process-grid-six .process-step:nth-child(n + 4) {
    border-top: 1px solid var(--border-dark);
}

.process-step span {
    display: block;
    margin-bottom: 54px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
}

.process-step p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.94rem;
}

.split-dark {
    color: var(--text-light);
    background: var(--bg-dark);
}

.split-grid,
.two-column,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 54px;
    align-items: center;
}

.split-dark .split-grid p {
    color: rgba(249, 250, 251, 0.72);
}

.dark-feature-card {
    padding: 34px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
}

.dark-feature-card > span {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dark-feature-card h3 {
    margin-top: 14px;
    color: #ffffff;
    font-size: 1.65rem;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    color: inherit;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(201, 168, 106, 0.14);
}

.feature-list-card,
.premium-panel {
    padding: 34px;
}

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

.metric-grid div {
    padding: 26px;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.metric-grid strong {
    display: block;
    color: var(--accent);
    font-size: 2rem;
    line-height: 1;
}

.metric-grid span {
    display: block;
    margin-top: 8px;
    color: rgba(249, 250, 251, 0.72);
}

.page-hero {
    position: relative;
    color: var(--text-light);
    background:
        linear-gradient(135deg, rgba(11, 15, 20, 0.96), rgba(17, 24, 39, 0.98)),
        var(--bg-dark);
    overflow: hidden;
}

.page-hero-inner {
    max-width: 880px;
    padding: 128px 0 92px;
}

.page-hero h1 {
    margin-bottom: 22px;
}

.page-hero p {
    max-width: 760px;
}

.stacked-cards {
    display: grid;
    gap: 16px;
}

.notice-section {
    padding: 36px 0 96px;
}

.notice-card {
    padding: 28px;
    background: var(--bg-light);
    border-color: rgba(201, 168, 106, 0.34);
}

.notice-card strong {
    display: block;
    margin-bottom: 8px;
}

.world-clocks {
    background: #ffffff;
}

.clock-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(140px, 1fr));
    gap: 14px;
}

.world-clock-card {
    display: grid;
    gap: 3px;
    min-height: 150px;
    padding: 20px;
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    background: #ffffff;
}

.clock-label {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.clock-city {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.clock-time {
    margin-top: 12px;
    color: var(--text-main);
    font-size: 1.58rem;
    line-height: 1;
}

.clock-time .clock-colon {
    display: inline-block;
    animation: colonPulse 1s steps(2, start) infinite;
}

.clock-date {
    color: var(--text-muted);
}

.world-clocks-compact {
    padding: 0 0 36px;
    background: transparent;
}

.footer-clock-shell {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.clock-grid-compact {
    grid-template-columns: repeat(6, 1fr);
}

.clock-grid-compact .world-clock-card {
    min-height: 106px;
    padding: 14px;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.clock-grid-compact .clock-time,
.clock-grid-compact .clock-label {
    color: #ffffff;
}

.clock-grid-compact .clock-city,
.clock-grid-compact .clock-date {
    color: rgba(249, 250, 251, 0.62);
}

.clock-grid-compact .clock-time {
    font-size: 1.1rem;
}

@keyframes colonPulse {
    50% {
        opacity: 0.35;
    }
}

.cta-band {
    padding: 72px 0;
    background: var(--bg-light);
}

.cta-band-dark {
    color: var(--text-light);
    background: var(--bg-dark);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 44px;
    border: 1px solid rgba(201, 168, 106, 0.24);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
}

.cta-band-dark .cta-inner {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-light);
}

.cta-inner h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.cta-inner p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--text-muted);
}

.cta-band-dark .cta-inner p {
    color: rgba(249, 250, 251, 0.72);
}

.site-footer {
    color: var(--text-light);
    background: #080B10;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(150px, 0.65fr));
    gap: 42px;
    padding: 76px 0 28px;
}

.footer-brand p {
    max-width: 420px;
    color: rgba(249, 250, 251, 0.64);
}

.footer-logo small {
    color: rgba(249, 250, 251, 0.58);
}

.footer-line {
    color: var(--accent) !important;
    font-weight: 800;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 0.84rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    color: rgba(249, 250, 251, 0.62);
    font-size: 0.92rem;
}

.footer-column a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(249, 250, 251, 0.52);
    font-size: 0.86rem;
}

.contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.58fr);
    align-items: start;
}

.contact-form {
    padding: 28px;
}

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

.field {
    display: grid;
    gap: 8px;
}

.field label,
.checkbox-panel legend {
    color: var(--text-main);
    font-size: 0.86rem;
    font-weight: 900;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--text-main);
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 12px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(201, 168, 106, 0.85);
    box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.14);
}

.field-error {
    margin: 0;
    color: #9F1D1D;
    font-size: 0.82rem;
}

.checkbox-panel {
    margin: 22px 0;
    padding: 22px;
    border: 1px solid var(--border-dark);
    border-radius: 16px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 12px;
    cursor: pointer;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.form-note {
    margin: 14px 0 0;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.form-alert {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    font-weight: 800;
}

.form-alert strong {
    display: block;
}

.form-alert ul {
    margin: 10px 0 0;
    padding-left: 20px;
    font-weight: 700;
}

.form-alert-success {
    color: #14532D;
    background: #DCFCE7;
    border: 1px solid #86EFAC;
}

.form-alert-error {
    color: #7F1D1D;
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
}

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

.contact-sidebar {
    display: grid;
    gap: 14px;
}

.contact-card {
    padding: 22px;
}

.contact-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-card a {
    color: var(--text-main);
    font-weight: 900;
    word-break: break-word;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin-inline: auto;
}

.faq-item {
    padding: 20px 22px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 900;
}

.faq-item p {
    margin-top: 12px;
}

.legal-content {
    max-width: 880px;
    padding: 42px;
}

.legal-content h2 {
    margin: 30px 0 8px;
    font-size: 1.35rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content a {
    color: var(--bg-dark);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: var(--accent);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--bg-dark);
    background: var(--accent);
    border: 0;
    border-radius: 999px;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1180px) {
    .desktop-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

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

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

@media (max-width: 1024px) {
    .hero-grid,
    .split-grid,
    .two-column,
    .contact-layout,
    .trust-strip-inner {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
        padding-block: 78px;
    }

    .trip-panel {
        max-width: 620px;
    }

    .audience-grid,
    .three-grid,
    .service-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-step,
    .process-step:last-child,
    .process-grid-six .process-step:nth-child(3n) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--border-dark);
    }

    .process-step:last-child {
        border-bottom: 0;
    }

    .process-grid-six .process-step:nth-child(n + 4) {
        border-top: 0;
    }

    .process-step span {
        margin-bottom: 24px;
    }

    .clock-grid,
    .clock-grid-compact {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container,
    .footer-clock-shell {
        width: min(100% - 28px, var(--container));
    }

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

    .brand-link small {
        max-width: 160px;
    }

    .header-actions .btn {
        display: none;
    }

    h1,
    .hero h1 {
        font-size: clamp(2.42rem, 12vw, 3.45rem);
    }

    h2 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .hero-grid,
    .page-hero-inner {
        padding-block: 64px;
    }

    .hero-actions,
    .cta-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .btn-full-mobile,
    .cta-inner .btn {
        width: 100%;
    }

    .trip-panel,
    .route-card,
    .feature-list-card,
    .premium-panel,
    .dark-feature-card,
    .contact-form,
    .legal-content,
    .cta-inner {
        padding: 24px;
        border-radius: 18px;
    }

    .trip-status-grid,
    .form-grid,
    .checkbox-grid,
    .metric-grid,
    .audience-grid,
    .three-grid,
    .value-grid,
    .service-grid,
    .service-grid-detailed,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .section,
    .split-section,
    .world-clocks,
    .legal-section {
        padding: 70px 0;
    }

    .clock-grid,
    .clock-grid-compact {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .world-clock-card {
        min-width: 172px;
        scroll-snap-align: start;
    }

    .cta-band {
        padding: 58px 0;
    }
}

@media (min-width: 1280px) {
    .container {
        width: min(100% - 64px, 1240px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}
