/* ============================================
   SG Booking Platform - Core Styles
   Build: 4.2.1
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --c-mint: #10b981;
    --c-mint-deep: #059669;
    --c-mint-pale: #34d399;
    --c-ink: #0f172a;
    --c-ink-soft: #1e293b;
    --c-graphite: #334155;
    --c-ash: #94a3b8;
    --c-cloud: #f1f5f9;
    --c-pure: #ffffff;
    --c-amber: #f59e0b;
    --c-rose: #f43f5e;
    
    --ff-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --ff-accent: Georgia, 'Times New Roman', serif;
    
    --motion-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --motion-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-main);
    background: var(--c-pure);
    color: var(--c-ink);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================
   Container System
   ============================================ */

.mx-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.mx-container--narrow { max-width: 800px; }
.mx-container--wide { max-width: 1440px; }

/* ============================================
   TopBar Navigation
   ============================================ */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--motion-smooth);
}

.topbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.topbar.is-scrolled::before {
    opacity: 1;
}

.topbar__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.topbar__home {
    display: flex;
    align-items: center;
}

.topbar__emblem {
    height: 56px;
    width: auto;
    transition: transform 0.3s ease;
}

.topbar__home:hover .topbar__emblem {
    transform: scale(1.05);
}

.topbar__nav {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.topbar__item {
    color: var(--c-ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.topbar__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-mint), var(--c-mint-pale));
    transition: width 0.3s var(--motion-smooth);
}

.topbar__item:hover,
.topbar__item.is-current {
    color: var(--c-mint);
}

.topbar__item:hover::after,
.topbar__item.is-current::after {
    width: 100%;
}

.topbar__burger {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.topbar__burger span {
    display: block;
    height: 3px;
    background: var(--c-ink);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.topbar__burger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.topbar__burger.is-open span:nth-child(2) {
    opacity: 0;
}

.topbar__burger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 900px) {
    .topbar__burger {
        display: flex;
    }
    
    .topbar__nav {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--c-pure);
        flex-direction: column;
        justify-content: flex-start;
        padding: 48px 24px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s var(--motion-smooth);
    }
    
    .topbar__nav.is-visible {
        transform: translateX(0);
    }
    
    .topbar__nav li {
        width: 100%;
        border-bottom: 1px solid var(--c-cloud);
    }
    
    .topbar__item {
        display: block;
        padding: 20px 0;
        font-size: 18px;
    }
}

/* ============================================
   Banner Section
   ============================================ */

.banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.banner__clip {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.banner__fallback {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: none;
}

.banner__clip:not([src]) ~ .banner__fallback {
    display: block;
}

.banner__veil {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.3) 0%,
        rgba(15, 23, 42, 0.5) 50%,
        rgba(15, 23, 42, 0.8) 100%
    );
}

.banner__content {
    text-align: center;
    color: var(--c-pure);
    padding: 120px 24px 80px;
    max-width: 900px;
}

.banner__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--c-mint);
    color: var(--c-mint-pale);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.5); }
}

.banner__heading {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.banner__heading em {
    font-style: normal;
    background: linear-gradient(135deg, var(--c-mint-pale), var(--c-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner__tagline {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.banner__metrics {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.banner__metric {
    text-align: center;
}

.banner__metric-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--c-mint-pale);
}

.banner__metric-txt {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Action Buttons
   ============================================ */

.act {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--ff-main);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--motion-smooth);
    position: relative;
    overflow: hidden;
}

.act--xl {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 16px;
}

.act--block { width: 100%; }

.act--accent {
    background: linear-gradient(135deg, var(--c-mint) 0%, var(--c-mint-deep) 100%);
    color: var(--c-pure);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.act--accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.act--accent:active {
    transform: translateY(-1px);
}

.act--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-pure);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.act--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--c-pure);
}

.act--frame {
    background: transparent;
    color: var(--c-mint);
    border: 2px solid var(--c-mint);
}

.act--frame:hover {
    background: var(--c-mint);
    color: var(--c-pure);
}

.act--solid {
    background: var(--c-ink);
    color: var(--c-pure);
}

.act--solid:hover {
    background: var(--c-ink-soft);
}

.act svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Panels
   ============================================ */

.panel {
    padding: 100px 0;
}

.panel--muted {
    background: var(--c-cloud);
}

.panel--dark {
    background: var(--c-ink);
    color: var(--c-pure);
}

.panel--tinted {
    background: linear-gradient(135deg, var(--c-mint) 0%, var(--c-mint-deep) 100%);
    color: var(--c-pure);
}

.panel__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.panel__label {
    display: inline-block;
    color: var(--c-mint);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.panel--dark .panel__label {
    color: var(--c-mint-pale);
}

.panel__heading {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.panel__blurb {
    font-size: 18px;
    color: var(--c-graphite);
    line-height: 1.8;
}

.panel--dark .panel__blurb {
    color: var(--c-ash);
}

/* ============================================
   Highlight Cards
   ============================================ */

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.hl-card {
    background: var(--c-pure);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--motion-smooth);
    position: relative;
}

.hl-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--c-mint), var(--c-mint-pale));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.hl-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.hl-card__symbol {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.hl-card__name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--c-ink);
}

.hl-card__info {
    color: var(--c-graphite);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hl-card__more {
    color: var(--c-mint);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.hl-card__more:hover {
    gap: 12px;
}

/* ============================================
   Metrics Strip
   ============================================ */

.metrics-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
    padding: 48px 0;
}

.metric-block__num {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--c-pure), rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.metric-block__txt {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Venue Cards
   ============================================ */

.venues {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.venue-tile {
    background: var(--c-pure);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--motion-smooth);
}

.venue-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.venue-tile__visual {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.venue-tile__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--c-ink) 0%, transparent 60%);
}

.venue-tile__tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--c-amber);
    color: var(--c-ink);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    z-index: 1;
}

.venue-tile__details {
    padding: 32px;
}

.venue-tile__title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--c-ink);
}

.venue-tile__copy {
    color: var(--c-graphite);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ============================================
   Assurance Section
   ============================================ */

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.assure-box {
    background: var(--c-pure);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.assure-box__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--c-mint), var(--c-mint-deep));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-pure);
    font-size: 28px;
}

.assure-box__name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-ink);
}

.assure-box__desc {
    color: var(--c-graphite);
    font-size: 15px;
}

/* ============================================
   Promo Block
   ============================================ */

.promo-wrap {
    text-align: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-ink-soft) 100%);
    border-radius: 32px;
    margin: 0 24px;
    position: relative;
    overflow: hidden;
}

.promo-wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    animation: orbit 20s linear infinite;
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.promo-wrap__inner {
    position: relative;
    z-index: 1;
}

.promo-wrap__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--c-pure);
    margin-bottom: 16px;
}

.promo-wrap__copy {
    color: var(--c-ash);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.promo-wrap__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Site Footer
   ============================================ */

.site-foot {
    background: var(--c-ink);
    color: var(--c-pure);
    padding: 80px 0 32px;
}

.site-foot__cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.site-foot__heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--c-mint-pale);
}

.site-foot__copy {
    color: var(--c-ash);
    line-height: 1.8;
}

.site-foot__links {
    list-style: none;
}

.site-foot__links li {
    margin-bottom: 12px;
}

.site-foot__links a {
    color: var(--c-ash);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-foot__links a:hover {
    color: var(--c-mint-pale);
}

.site-foot__end {
    padding-top: 32px;
    border-top: 1px solid var(--c-graphite);
    text-align: center;
    color: var(--c-graphite);
}

/* ============================================
   Dialog Layer
   ============================================ */

.dialog-layer {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.dialog-layer.is-shown {
    display: flex;
}

.dialog-pane {
    background: var(--c-pure);
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: pane-rise 0.4s var(--motion-smooth);
}

.dialog-pane--expanded {
    max-width: 900px;
}

@keyframes pane-rise {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.dialog-pane__dismiss {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--c-cloud);
    border: none;
    border-radius: 12px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--c-graphite);
}

.dialog-pane__dismiss:hover {
    background: var(--c-mint);
    color: var(--c-pure);
    transform: rotate(90deg);
}

.dialog-pane__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--c-ink);
}

.dialog-pane__note {
    color: var(--c-graphite);
    font-size: 15px;
    margin-bottom: 32px;
    padding: 16px;
    background: var(--c-cloud);
    border-radius: 12px;
    border-left: 4px solid var(--c-mint);
}

/* ============================================
   Form Elements
   ============================================ */

.f-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.f-field {
    display: flex;
    flex-direction: column;
}

.f-field__tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-ink);
    margin-bottom: 8px;
}

.f-field__box,
.f-field__picker,
.f-field__area {
    padding: 16px;
    background: var(--c-cloud);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--ff-main);
    color: var(--c-ink);
    transition: all 0.3s ease;
}

.f-field__box:focus,
.f-field__picker:focus,
.f-field__area:focus {
    outline: none;
    border-color: var(--c-mint);
    background: var(--c-pure);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.f-field__box::placeholder {
    color: var(--c-ash);
}

.f-break {
    height: 1px;
    background: var(--c-cloud);
    margin: 28px 0;
}

.f-hint {
    font-size: 14px;
    color: var(--c-graphite);
    padding: 16px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.qty-picker {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--c-cloud);
    border-radius: 12px;
    padding: 8px;
}

.qty-picker__trigger {
    width: 44px;
    height: 44px;
    background: var(--c-mint);
    color: var(--c-pure);
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-picker__trigger:hover {
    background: var(--c-mint-deep);
    transform: scale(1.05);
}

.qty-picker__amount {
    font-size: 20px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

/* ============================================
   Schedule Buttons
   ============================================ */

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding: 8px;
    margin-bottom: 24px;
}

.schedule-opt {
    background: linear-gradient(135deg, var(--c-mint) 0%, var(--c-mint-deep) 100%);
    color: var(--c-pure);
    padding: 20px 16px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s var(--motion-smooth);
}

.schedule-opt:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
}

.schedule-opt__when {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.schedule-opt__meta {
    font-size: 14px;
    opacity: 0.9;
}

.confirm-banner {
    background: var(--c-cloud);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    color: var(--c-mint-deep);
    margin-bottom: 24px;
    border: 2px solid var(--c-mint);
}

/* ============================================
   Page Header
   ============================================ */

.pg-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-ink-soft) 100%);
    color: var(--c-pure);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pg-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.pg-header__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.pg-header__sub {
    font-size: 20px;
    color: var(--c-ash);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ============================================
   Content Layouts
   ============================================ */

.split-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-view--flip {
    direction: rtl;
}

.split-view--flip > * {
    direction: ltr;
}

@media (max-width: 900px) {
    .split-view {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .split-view--flip {
        direction: ltr;
    }
}

.split-view__photo {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.split-view__photo img {
    width: 100%;
    display: block;
}

.split-view__prose h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--c-ink);
}

.split-view__prose h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--c-mint);
    margin-bottom: 16px;
}

.split-view__prose p {
    color: var(--c-graphite);
    line-height: 1.8;
    margin-bottom: 16px;
}

.tick-list {
    list-style: none;
    margin: 24px 0;
}

.tick-list li {
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    color: var(--c-ink);
}

.tick-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: var(--c-mint);
    color: var(--c-pure);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* ============================================
   Q&A Section
   ============================================ */

.qa-stack {
    max-width: 900px;
    margin: 0 auto;
}

.qa-entry {
    background: var(--c-pure);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--c-mint);
}

.qa-entry--highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
    border-left-width: 6px;
}

.qa-entry__q {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-mint-deep);
    margin-bottom: 12px;
}

.qa-entry__a {
    color: var(--c-graphite);
    line-height: 1.8;
}

/* ============================================
   Reach Us Section
   ============================================ */

.reach-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}

@media (max-width: 900px) {
    .reach-layout {
        grid-template-columns: 1fr;
    }
}

.reach-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reach-item {
    background: var(--c-cloud);
    border-radius: 16px;
    padding: 28px;
}

.reach-item__label {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-mint);
    margin-bottom: 12px;
}

.reach-item a {
    color: var(--c-mint);
    text-decoration: none;
}

.reach-item a:hover {
    text-decoration: underline;
}

.reach-form-panel {
    background: var(--c-pure);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.reach-form-panel__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--c-ink);
}

/* ============================================
   Trail Navigation
   ============================================ */

.trail {
    padding-top: 100px;
}

.trail__path {
    display: flex;
    gap: 12px;
    list-style: none;
    font-size: 14px;
    padding: 16px 0;
}

.trail__path a {
    color: var(--c-mint);
    text-decoration: none;
}

.trail__path a:hover {
    text-decoration: underline;
}

.trail__sep,
.trail__here {
    color: var(--c-graphite);
}

/* ============================================
   Helpers
   ============================================ */

.txt-center { text-align: center; }
.is-hidden { display: none !important; }

.gap-sm { margin-top: 16px; }
.gap-md { margin-top: 24px; }
.gap-lg { margin-top: 40px; }
.gap-xl { margin-top: 64px; }

.under-sm { margin-bottom: 16px; }
.under-md { margin-bottom: 24px; }
.under-lg { margin-bottom: 40px; }
.under-xl { margin-bottom: 64px; }

/* ============================================
   Scrollbar & Selection
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--c-cloud);
}

::-webkit-scrollbar-thumb {
    background: var(--c-mint);
    border-radius: 4px;
}

::selection {
    background: var(--c-mint);
    color: var(--c-pure);
}

:focus-visible {
    outline: 3px solid var(--c-mint);
    outline-offset: 2px;
}

@media print {
    .topbar, .site-foot, .dialog-layer, .act, .banner__actions {
        display: none;
    }
}

