:root {
    --bg: radial-gradient(circle at top left, rgba(64, 180, 255, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 181, 71, 0.16), transparent 25%),
        linear-gradient(180deg, #f8fbff 0%, #eef5ff 42%, #f6f8fc 100%);
    --surface: linear-gradient(145deg, rgba(7, 20, 44, 0.96), rgba(9, 34, 71, 0.95));
    --surface-strong: linear-gradient(145deg, rgba(12, 32, 66, 0.98), rgba(16, 53, 106, 0.96));
    --accent: #74d7ff;
    --accent-light: rgba(116, 215, 255, 0.12);
    --accent-warm: #ffc76b;
    --text: #ecf5ff;
    --muted: #a9bddc;
    --border: rgba(116, 215, 255, 0.14);
    --footer-bg: #07162d;
    --footer-text: #d9e6ff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 10%, rgba(116, 215, 255, 0.14), transparent 22%),
        radial-gradient(circle at 85% 16%, rgba(255, 199, 107, 0.12), transparent 18%);
    z-index: -1;
}

a,
button {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--accent);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.logo-img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #000000;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.site-nav a {
    padding-block: 0.25rem;
    transition: color 0.2s ease;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.nav-toggle .bar {
    width: 26px;
    height: 3px;
    background-color: var(--text);
    margin: 4px 0;
    border-radius: 999px;
    transition: transform 0.25s ease;
}

.site-main {
    min-height: 60vh;
    padding: 1.4rem 0 0;
}

.site-main.compact-start {
    padding-top: 0.55rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
    align-items: stretch;
}

.glass-panel {
    border-radius: 28px;
    padding: clamp(1rem, 2vw, 1.7rem);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(8, 22, 44, 0.18);
    backdrop-filter: blur(22px);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.hero-copy h1 {
    margin-top: 0.35rem;
    margin-bottom: 0.8rem;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.lead-in {
    color: var(--muted);
    font-weight: 600;
}

.hero-tool {
    background: var(--surface-strong);
}

.lead-copy {
    font-size: 1.06rem;
    color: #d7e7ff;
}

.content-stack {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.center-text {
    text-align: center;
}

.intro p {
    margin: 0 auto 1rem;
    max-width: 820px;
}

.booking-line {
    background: linear-gradient(120deg, rgba(116, 215, 255, 0.15), rgba(22, 99, 164, 0.28));
    border: 1px solid rgba(116, 215, 255, 0.36);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.12rem;
    display: block;
    gap: 0.35rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.booking-line + .booking-line {
    margin-top: 1rem;
}

.booking-line ul {
    margin: 0;
    padding-left: 1.1rem;
}

.booking-line li {
    font-size: 16px;
}

.max-bookable-date {
    color: #ff0000;
}

.booking-status {
    text-align: center;
    color: #000000;
}

.booking-status h2,
.booking-status p {
    color: inherit;
}

.booking-status .booking-line {
    color: #000000;
}

.about-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(4, 45, 96, 0.9));
    border-radius: 28px;
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4);
    display: grid;
}

.about-header h1 {
    margin: 0.25rem 0 0.75rem;
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.2;
}

.about-content {
    display: grid;
}

.about-content ul {
    padding-left: 1.25rem;
    margin: 0;
    display: grid;
    gap: 0.35rem;
    list-style: disc;
}

.about-content li {
    line-height: 1.5;
}

.about-content a {
    color: var(--accent);
    text-decoration: underline;
}

.privacy-section,
.legal-section {
    background: var(--surface-strong);
    border-radius: 24px;
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid var(--border);
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.35);
    max-width: 900px;
    margin-inline: auto;
    display: grid;
    gap: 1rem;
}

.privacy-section h1,
.legal-section h1 {
    margin-top: 0;
}

.privacy-section h2,
.legal-section h2 {
    padding-left: 1.25rem;
}

.privacy-section p,
.legal-section p {
    margin: 0 0 0.75rem;
}

.privacy-section ul,
.legal-section ul {
    padding-left: 1.25rem;
    margin: 0 0 1rem;
    display: grid;
    gap: 0.3rem;
}

.privacy-section a,
.legal-section a {
    color: var(--accent);
    text-decoration: underline;
}

.muted {
    color: var(--muted);
}

.blog-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-block: 2rem;
}

.breadcrumb {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}

.breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb li::after {
    content: "›";
    margin-inline: 0.35rem;
    color: var(--muted);
}

.breadcrumb li:last-child::after {
    content: none;
}

.blog-article {
    background: var(--surface-strong);
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.35);
    padding: clamp(1rem, 3vw, 2.5rem);
}

.post-hero {
    position: relative;
    padding: 1.35rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(116, 215, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

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

.post-hero h1 {
    margin-top: 0.45rem;
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.post-excerpt {
    color: var(--muted);
    font-size: 1.08rem;
    margin-bottom: 1rem;
    max-width: 72ch;
}

.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.article-body section + section {
    margin-top: 1.5rem;
}

.post-hero + .article-body {
    margin-top: 1.75rem;
}

.hero-meta-grid,
.decision-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.hero-meta-card,
.decision-card {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(116, 215, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-meta-card h3,
.decision-card h3 {
    margin-top: 0;
    margin-bottom: 0.45rem;
}

.post-grid {
    display: grid;
    gap: 1.5rem;
}

.post-card {
    background: rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.post-card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.post-card p {
    margin: 0;
    color: var(--muted);
}

.post-card .read-more-btn {
    align-self: flex-start;
    font-weight: 600;
    color: #051225;
    text-decoration: none;
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(120deg, #76f6ff, #5dd8ff, #69ffde);
    box-shadow: 0 10px 25px rgba(118, 246, 255, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card .read-more-btn:hover,
.post-card .read-more-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(118, 246, 255, 0.35);
    color: #051225;
}

.category-hero {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: clamp(1.2rem, 3vw, 2rem);
    background:
        radial-gradient(circle at top right, rgba(255, 199, 107, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(116, 215, 255, 0.16), transparent 28%),
        linear-gradient(145deg, rgba(8, 26, 54, 0.98), rgba(11, 37, 76, 0.96));
    border: 1px solid rgba(116, 215, 255, 0.18);
    box-shadow: 0 26px 55px rgba(4, 14, 28, 0.28);
}

.category-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 40%);
    pointer-events: none;
}

.category-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.2rem;
    align-items: stretch;
}

.category-hero-copy h1 {
    margin-top: 0.35rem;
    margin-bottom: 0.55rem;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.category-hero-copy > p:last-of-type {
    margin-bottom: 0;
}

.category-summary {
    max-width: 68ch;
    color: #d6e8ff;
    font-size: 1.05rem;
}

.category-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #eef7ff;
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-pill:hover,
.category-pill:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(116, 215, 255, 0.38);
    background: rgba(116, 215, 255, 0.1);
}

.category-hero-panel {
    display: grid;
    gap: 0.95rem;
}

.category-stat-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.category-stat-card,
.category-spotlight {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(116, 215, 255, 0.08));
    padding: 1rem 1.05rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.category-stat-card strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.category-stat-card span,
.category-spotlight p,
.category-post-card p,
.category-feature-card p {
    color: var(--muted);
}

.category-spotlight {
    position: relative;
    overflow: hidden;
}

.category-spotlight::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent-warm));
}

.category-spotlight h2,
.category-spotlight h3,
.category-section-head h2 {
    margin-top: 0;
    margin-bottom: 0.45rem;
}

.category-spotlight ul {
    margin: 0.85rem 0 0;
    padding-left: 1.15rem;
}

.category-spotlight li + li {
    margin-top: 0.35rem;
}

.category-main .content-stack {
    gap: 1.5rem;
}

.category-shell {
    display: grid;
    gap: 1.4rem;
}

.category-section {
    display: grid;
    gap: 1.25rem;
}

.category-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.category-section-head p {
    margin: 0;
    max-width: 62ch;
    color: var(--muted);
}

.category-feature-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.category-feature-card,
.category-post-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top right, rgba(116, 215, 255, 0.08), transparent 32%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(8, 26, 54, 0.9));
    padding: 1.2rem;
    box-shadow: 0 18px 40px rgba(7, 19, 37, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-feature-card:hover,
.category-feature-card:focus-within,
.category-post-card:hover,
.category-post-card:focus-within {
    transform: translateY(-3px);
    border-color: rgba(116, 215, 255, 0.28);
    box-shadow: 0 24px 42px rgba(7, 19, 37, 0.24);
}

.category-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.85rem;
}

.category-label,
.category-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
}

.category-label {
    background: rgba(116, 215, 255, 0.12);
    color: #dff7ff;
    border: 1px solid rgba(116, 215, 255, 0.22);
}

.category-index {
    min-width: 2rem;
    padding-inline: 0.55rem;
    color: #09172d;
    background: linear-gradient(120deg, #76f6ff, #5dd8ff, #69ffde);
}

.category-feature-card h3,
.category-post-card h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: 1.5rem;
    line-height: 1.12;
}

.category-post-card h3 {
    font-size: 1.22rem;
}

.category-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0.9rem 0 1rem;
}

.category-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    font-size: 0.82rem;
    color: #dcecff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.category-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.category-link-row .read-more-btn,
.category-feature-card .read-more-btn,
.category-post-card .read-more-btn {
    align-self: flex-start;
}

.category-post-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.category-mini-list {
    margin: 0.9rem 0 0;
    padding-left: 1.15rem;
}

.category-mini-list li + li {
    margin-top: 0.35rem;
}

.note {
    color: var(--muted);
    font-size: 0.95rem;
}

.tool {
    display: grid;
    gap: 0.9rem;
}

.tool label {
    font-weight: 600;
}

.tool input[type="date"] {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.tool input[type="date"]:focus-visible {
    outline: 2px solid var(--accent);
    border-color: transparent;
}

.primary-btn,
.calendar-btn {
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    border: none;
    color: #0a172b;
    background: linear-gradient(120deg, #76f6ff, #5dd8ff, #69ffde);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.primary-btn:hover,
.primary-btn:focus-visible,
.calendar-btn:hover,
.calendar-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 125, 209, 0.25);
}

.calendar-btn {
    display: inline-block;
    margin-top: 0.75rem;
    color: #0a172b;
}

.secondary-btn {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(118, 246, 255, 0.45);
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.secondary-btn:hover,
.secondary-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 125, 209, 0.18);
}

.result-box {
    border: 1px solid rgba(116, 215, 255, 0.28);
    border-radius: 20px;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(3, 12, 25, 0.72), rgba(8, 26, 54, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.result-summary {
    margin: 0.5rem 0 0;
    color: var(--muted);
}

.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.content-section {
    background: var(--surface-strong);
    border-radius: 24px;
    padding: clamp(1rem, 2.4vw, 1.5rem);
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(8, 22, 44, 0.16);
    position: relative;
    overflow: hidden;
}

.content-section h2 {
    margin-top: 0;
    margin-bottom: 0.85rem;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.content-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
    opacity: 0.85;
}

.content-section ul {
    padding-left: 1.25rem;
}

.content-section p,
.content-section li {
    max-width: 74ch;
}

.content-section ul li + li {
    margin-top: 0.4rem;
}

.toc {
    background: linear-gradient(135deg, rgba(7, 20, 44, 0.96), rgba(9, 31, 62, 0.96));
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.3rem 1.4rem;
    box-shadow: 0 18px 35px rgba(8, 22, 44, 0.16);
    backdrop-filter: blur(18px);
}

.toc h2,
.toc > p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.toc-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text);
    border-radius: 999px;
    padding: 0.35rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.toc-toggle:hover,
.toc-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.toc-body[hidden] {
    display: none;
}

.toc ol {
    list-style: decimal;
    margin: 0;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.toc-link {
    appearance: none;
    border: none;
    background: none;
    color: #dff4ff;
    font-weight: 600;
    font: inherit;
    padding: 0;
    text-align: left;
    cursor: pointer;
}

.toc-link:hover,
.toc-link:focus-visible {
    color: var(--accent);
}

.toc-sublist {
    list-style: lower-alpha;
    margin-top: 0.35rem;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.toc-sublist .toc-link {
    font-weight: 500;
    color: var(--muted);
}

.toc-placeholder {
    text-align: center;
    font-style: italic;
    color: var(--muted);
}

.faq-section {
    background: rgba(4, 12, 26, 0.7);
    border: 1px solid rgba(87, 211, 255, 0.1);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #000000;
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    all: unset;
    width: 100%;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.faq-question[aria-expanded="true"]::after {
    content: "-";
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--muted);
}

.updated-meta {
    margin: 0.35rem 0 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.inline-cta {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: rgba(87, 211, 255, 0.08);
    border: 1px solid rgba(87, 211, 255, 0.18);
}

.quick-answer-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.quick-answer-card {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(116, 215, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1rem 1.1rem;
    position: relative;
    overflow: hidden;
}

.quick-answer-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), var(--accent-warm));
}

.quick-answer-card h3 {
    margin-top: 0;
    margin-bottom: 0.45rem;
}

.fact-strip {
    margin-top: 1rem;
}

.quick-answer-card p:last-child,
.inline-cta p:last-child {
    margin-bottom: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 16px;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 0.9rem;
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.32);
}

.related-links {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.related-link-card {
    display: block;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(116, 215, 255, 0.06));
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.related-link-card:hover,
.related-link-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(116, 215, 255, 0.32);
    box-shadow: 0 18px 30px rgba(8, 22, 44, 0.18);
}

.related-link-card strong {
    display: block;
    margin-bottom: 0.35rem;
}

.related-link-card span {
    color: var(--muted);
}

.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    margin-top: 3rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    padding: 1.75rem 0;
}

.footer-widget h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.footer-widget a {
    color: var(--footer-text);
    opacity: 0.85;
}

.footer-widget a:hover,
.footer-widget a:focus-visible {
    opacity: 1;
    color: #fff;
}

.footer-brand .logo-img {
    width: 56px;
    height: 56px;
}

.footer-bar {
    border-top: 1px solid rgba(229, 236, 245, 0.2);
    text-align: center;
    padding: 0.40rem;
    font-size: 0.9rem;
    background: rgba(9, 16, 25, 0.65);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .category-hero-inner,
    .category-feature-grid {
        grid-template-columns: 1fr;
    }

    .category-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 18px 28px rgba(15, 29, 44, 0.08);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem clamp(1.25rem, 5vw, 2rem);
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .booking-line {
        width: 100%;
    }

    .content-section {
        padding: 1.25rem;
    }

    .calculator-block {
        padding: 1.5rem;
    }

    .result-actions {
        flex-direction: column;
    }

    .toc {
        padding: 1rem;
    }
}
