/* ===== Buytola Main Stylesheet ===== */

:root {
    /* Brand Colors */
    --bt-navy: #003554;
    --bt-navy-dark: #0a1628;
    --bt-cyan: #00b2d4;
    --bt-cyan-light: #ebfafc;
    --bt-cyan-bg: #dbedf2;
    --bt-light-bg: #FAFCFD;
    --bt-white: #FFFFFF;

    /* Service Accent Colors */
    --bt-warm: #D4A574;
    --bt-orange: #FF6B35;
    --bt-green: #2D7D46;
    --bt-gold: #E8B930;

    /* Text Colors */
    --bt-text-dark: #003554;
    --bt-text-body: #5a6c76;
    --bt-text-mid: #75868f;
    --bt-text-nav: #3a4952;

    /* Fonts */
    --bt-font-display: 'Playfair Display', 'Noto Serif TC', '思源宋體', Georgia, serif;
    --bt-font-body: 'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
    --bt-font-logo: 'Sora', sans-serif;

    /* Spacing */
    --bt-section-padding: 100px 80px;
    --bt-container-max: 1280px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--bt-font-body);
    color: var(--bt-text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s, opacity 0.3s;
}

/* ===== Kadence Overrides ===== */
.site-header,
#wrapper .site-header {
    display: none !important;
}

.site-footer,
#wrapper .site-footer {
    display: none !important;
}

.site {
    overflow-x: hidden;
}

.entry-content-wrap,
.content-wrap {
    max-width: 100% !important;
    padding: 0 !important;
}

/* ===== Typography ===== */
.bt-heading {
    font-family: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
    color: var(--bt-text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.bt-heading--xl { font-size: 64px; line-height: 1.15; letter-spacing: -1px; }
.bt-heading--lg { font-size: 42px; }
.bt-heading--md { font-size: 36px; }
.bt-heading--sm { font-size: 32px; }

.bt-text { font-size: 16px; line-height: 1.7; color: var(--bt-text-body); }
.bt-text--sm { font-size: 14px; }
.bt-text--xs { font-size: 13px; }

/* ===== Buttons ===== */
.bt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--bt-font-body);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bt-btn--primary {
    background: var(--bt-cyan);
    color: var(--bt-white);
    padding: 16px 36px;
    border-radius: 30px;
}

.bt-btn--primary:hover {
    background: #009db8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 178, 212, 0.3);
}

.bt-btn--outline {
    background: transparent;
    color: var(--bt-white);
    padding: 16px 36px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bt-btn--outline:hover {
    border-color: #06C755;
    background: #06C755;
    color: var(--bt-white);
}

.bt-btn--outline-dark {
    background: transparent;
    color: var(--bt-navy);
    padding: 16px 36px;
    border-radius: 30px;
    border: 1px solid var(--bt-cyan);
}

.bt-btn--outline-dark:hover {
    background: var(--bt-cyan-light);
}

/* ===== Section Utilities ===== */
.bt-section {
    padding: var(--bt-section-padding);
}

.bt-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.bt-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.bt-tag--cyan {
    background: var(--bt-cyan-light);
    color: var(--bt-cyan);
}

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

/* ===== Navigation ===== */
/* Hide Kadence native header, use custom bt-nav */
#masthead.site-header { display: none !important; }

/* Sidebar extras (visible only in mobile sidebar) */
.bt-nav__sidebar-extras { display: none; }
.bt-nav__sidebar-close { display: none; }
.bt-nav__links--open .bt-nav__sidebar-extras {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #e8eef1;
    margin-top: 16px;
    padding-top: 16px;
    border-bottom: none !important;
}
.bt-nav__links--open .bt-nav__sidebar-extras .bt-nav__cta {
    display: block;
    text-align: center;
    padding: 12px 24px;
}
.bt-nav__sidebar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 8px;
    color: var(--bt-navy);
    font-size: 15px;
}
.bt-nav__sidebar-link:hover {
    color: var(--bt-cyan);
}
.bt-nav__links--open .bt-nav__sidebar-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    border-bottom: none !important;
}
.bt-nav__sidebar-close button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.bt-nav {
    position: absolute;
    top: 28px;
    left: 40px;
    right: 40px;
    z-index: 100;
}

.bt-nav__bar {
    display: flex;
    align-items: center;
    background: var(--bt-white);
    border-radius: 32px;
    padding: 0 12px 0 32px;
    height: 56px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    position: relative;
}

.bt-nav__logo {
    font-family: var(--bt-font-logo);
    font-size: 22px;
    font-weight: 700;
    color: var(--bt-navy);
    letter-spacing: -1px;
    flex-shrink: 0;
    line-height: 56px;
}

.bt-nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0 0 0 40px;
    padding: 0;
    height: 100%;
    flex: 1;
}

.bt-nav__links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.bt-nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--bt-text-nav);
    transition: color 0.3s;
    white-space: nowrap;
    line-height: 56px;
}

.bt-nav__links a:hover {
    color: var(--bt-cyan);
}

.bt-nav__mobile-cta {
    display: none;
}

.bt-nav__right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.bt-nav__cta {
    background: var(--bt-cyan);
    color: var(--bt-white) !important;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 24px;
    transition: background 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.bt-nav__cta:hover {
    background: #009db8;
}

.bt-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* ===== Hero ===== */
.bt-hero {
    position: relative;
    min-height: 800px;
    overflow: hidden;
}

.bt-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-hero__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.55;
}

.bt-hero__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
    z-index: 2;
    max-width: 650px;
}

.bt-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(0, 178, 212, 0.2);
    color: var(--bt-cyan);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.bt-hero__title {
    font-family: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--bt-white);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
    white-space: pre-line;
}

.bt-hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    white-space: pre-line;
}

.bt-hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.bt-hero__stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.bt-hero__stat-number {
    font-family: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--bt-cyan);
}

.bt-hero__stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.bt-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.33);
}

/* Hero Floating Cards */
.bt-hero__cards {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.bt-hero__float-card {
    position: absolute;
    border-radius: 20px;
    color: var(--bt-white);
    pointer-events: auto;
    overflow: hidden;
}

.bt-hero__float-card:nth-child(1) { top: 160px; left: 58%; width: 320px; height: 180px; }
.bt-hero__float-card:nth-child(2) { top: 370px; left: 72%; width: 300px; height: 170px; }
.bt-hero__float-card:nth-child(3) { top: 560px; left: 60%; width: 310px; height: 175px; }

.bt-hero__float-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-hero__float-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.bt-hero__float-inner {
    position: relative;
    z-index: 1;
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bt-hero__float-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.bt-hero__float-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.bt-hero__float-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.bt-hero__glow {
    position: absolute;
    top: 300px;
    left: 62.5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 178, 212, 0.08);
    opacity: 0.6;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

/* ===== Services Grid ===== */
.bt-services {
    background: var(--bt-white);
}

.bt-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bt-service-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bt-white);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bt-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.bt-service-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bt-service-card__body {
    padding: 20px 24px;
}

.bt-service-card__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.bt-service-card__title {
    font-family: var(--bt-font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--bt-text-dark);
    margin-bottom: 8px;
}

.bt-service-card__desc {
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.6;
}

/* ===== Why Buytola ===== */
.bt-why {
    display: flex;
    background: var(--bt-navy);
    overflow: hidden;
}

.bt-why__left {
    width: 50%;
    padding: 80px 60px;
}

.bt-why__left .bt-tag {
    background: rgba(0, 178, 212, 0.15);
    color: var(--bt-cyan);
}

.bt-why__left .bt-heading {
    color: var(--bt-white);
    white-space: pre-line;
    margin-bottom: 20px;
}

.bt-why__left .bt-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.bt-why__stats {
    display: flex;
    gap: 20px;
}

.bt-why__stat {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    min-width: 140px;
}

.bt-why__stat-number {
    font-family: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--bt-cyan);
}

.bt-why__stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.bt-why__right {
    width: 50%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bt-benefit {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
}

.bt-benefit__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bt-white);
}

.bt-benefit__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--bt-white);
    margin-bottom: 4px;
}

.bt-benefit__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Process Steps ===== */
.bt-process {
    background: var(--bt-light-bg);
}

.bt-process__steps {
    display: flex;
    justify-content: center;
    gap: 0;
}

.bt-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    gap: 8px;
}

.bt-step__circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--bt-white);
}

.bt-step__connector {
    width: 2px;
    height: 20px;
    background: var(--bt-cyan);
}

.bt-step__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--bt-text-dark);
}

.bt-step__desc {
    font-size: 13px;
    color: var(--bt-text-body);
    line-height: 1.5;
    white-space: pre-line;
}

/* ===== Testimonials ===== */
.bt-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bt-testimonial {
    background: var(--bt-white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.bt-testimonial__stars {
    color: var(--bt-gold);
    font-size: 16px;
    margin-bottom: 16px;
}

.bt-testimonial__quote {
    font-size: 14px;
    font-style: italic;
    color: var(--bt-text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.bt-testimonial__author {
    font-size: 13px;
    font-weight: 500;
    color: var(--bt-text-dark);
}

/* ===== CTA Section ===== */
.bt-cta {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.bt-cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-cta__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.6;
}

.bt-cta__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.bt-cta__title {
    font-family: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    color: var(--bt-white);
    line-height: 1.3;
    margin-bottom: 24px;
    white-space: pre-line;
}

.bt-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.bt-cta__badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== Footer ===== */
.bt-footer {
    background: var(--bt-navy);
    padding: 80px;
    color: var(--bt-white);
}

.bt-footer__content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: var(--bt-container-max);
    margin: 0 auto;
}

.bt-footer__brand {
    flex: 0 0 360px;
}

.bt-footer__logo {
    font-family: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--bt-white);
    margin-bottom: 16px;
}

.bt-footer__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 320px;
}

.bt-footer__col h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--bt-white);
    margin: 0 0 20px;
}

.bt-footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.bt-footer__col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s;
}

.bt-footer__col a:hover {
    color: var(--bt-cyan);
}

.bt-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bt-footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 40px 0 20px;
    max-width: var(--bt-container-max);
    margin-left: auto;
    margin-right: auto;
}

.bt-footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    max-width: var(--bt-container-max);
    margin: 0 auto;
}

/* ===== Service Page Specific ===== */
.bt-svc-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bt-svc-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-svc-hero__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.5;
}

.bt-svc-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 700px;
}

.bt-svc-hero__title {
    font-family: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--bt-white);
    margin-bottom: 16px;
}

.bt-svc-hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.bt-svc-hero__intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* Service sections */
.bt-svc-section {
    padding: 80px;
}

.bt-svc-section__title {
    font-family: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--bt-text-dark);
    margin-bottom: 32px;
}

.bt-svc-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bt-svc-type-card {
    background: var(--bt-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.bt-svc-type-card:hover {
    transform: translateY(-2px);
}

.bt-svc-type-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--bt-white);
}

.bt-svc-type-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--bt-text-dark);
    margin-bottom: 8px;
}

.bt-svc-type-card__desc {
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.6;
}

/* Regions */
.bt-svc-regions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bt-svc-region-pill {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Steps */
.bt-svc-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.bt-svc-step {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bt-white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bt-svc-step__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--bt-white);
    flex-shrink: 0;
}

.bt-svc-step__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--bt-text-dark);
    margin-bottom: 4px;
}

.bt-svc-step__desc {
    font-size: 13px;
    color: var(--bt-text-body);
    line-height: 1.5;
}

/* Pricing */
.bt-svc-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.bt-svc-price-card {
    padding: 24px;
    background: var(--bt-light-bg);
    border-radius: 12px;
}

.bt-svc-price-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--bt-text-dark);
    margin-bottom: 8px;
}

.bt-svc-price-card__desc {
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.6;
}

/* Notes */
.bt-svc-notes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bt-svc-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: #FFF5F5;
    border-radius: 8px;
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.6;
}

/* Excluded items */
.bt-svc-excluded {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bt-svc-excluded__item {
    padding: 8px 16px;
    background: #FFF0E8;
    color: var(--bt-orange);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* ===== Contact Section ===== */
.bt-contact {
    background: var(--bt-cyan-light);
    padding: 60px 80px;
    text-align: center;
}

.bt-contact__title {
    font-family: 'Noto Serif TC', 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--bt-text-dark);
    margin-bottom: 16px;
}

.bt-contact__desc {
    font-size: 16px;
    color: var(--bt-text-body);
    margin-bottom: 32px;
}

.bt-contact__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Contact Form Modal ===== */
.bt-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.bt-modal--open {
    display: flex;
}
.bt-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 53, 84, 0.6);
    backdrop-filter: blur(4px);
}
.bt-modal__content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 560px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    animation: btModalIn 0.3s ease;
}
@keyframes btModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.bt-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5a6c76;
    transition: background 0.2s;
}
.bt-modal__close:hover {
    background: #e0e0e0;
}
.bt-modal__title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #003554;
    margin-bottom: 8px;
}
.bt-modal__desc {
    color: #75868f;
    font-size: 14px;
    margin-bottom: 24px;
}

/* WeChat tooltip */
.bt-wechat-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #003554;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    animation: btTooltipFade 2.5s ease forwards;
    pointer-events: none;
    z-index: 10;
}
.bt-wechat-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #003554;
}
@keyframes btTooltipFade {
    0%, 70% { opacity: 1; }
    100% { opacity: 0; }
}

/* ===== Careers Page ===== */
.bt-careers-jobs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.bt-job-card {
    background: var(--bt-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.bt-job-card__dept {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}

.bt-job-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--bt-text-dark);
    margin-bottom: 12px;
}

.bt-job-card__desc {
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.6;
}

.bt-careers-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.bt-benefit-card {
    padding: 24px;
    background: var(--bt-light-bg);
    border-radius: 12px;
    text-align: center;
}

.bt-benefit-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--bt-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--bt-white);
}

.bt-benefit-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--bt-text-dark);
    margin-bottom: 8px;
}

.bt-benefit-card__desc {
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.6;
}

/* ===== Page: 海外代購 (Overseas Purchasing) ===== */
.op-hero {
    position: relative;
    min-height: 800px;
    overflow: hidden;
}
.op-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.op-hero__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.55;
}
.op-hero__left {
    position: absolute;
    left: 120px;
    top: 180px;
    z-index: 2;
    width: 580px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.op-hero__tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(0, 178, 212, 0.2);
    color: var(--bt-cyan);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    width: fit-content;
}
.op-hero__title {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}
.op-hero__desc {
    font-size: 18px;
    color: var(--bt-cyan-bg);
    line-height: 1.7;
}
.op-hero__buttons {
    display: flex;
    gap: 16px;
}
.op-hero__cards {
    position: absolute;
    right: 120px;
    top: 160px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 500px;
}
.op-hero__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}
.op-hero__card-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.op-hero__card-info { display: flex; flex-direction: column; gap: 6px; }
.op-hero__card-title { font-size: 16px; font-weight: 600; color: #fff; }
.op-hero__card-brands { font-size: 13px; color: var(--bt-cyan-bg); }
.op-hero__card-note { font-size: 12px; color: var(--bt-cyan); }

/* Trust Bar */
.op-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 20px 80px;
    background: var(--bt-navy);
}
.op-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bt-cyan-bg);
}

/* Section Tags & Titles */
.op-section-tag {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--bt-cyan);
    margin-bottom: 16px;
}
.op-section-title {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--bt-navy);
    line-height: 1.3;
    margin-bottom: 20px;
}
.op-section-text {
    font-size: 16px;
    color: var(--bt-text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Intro */
.op-intro {
    display: flex;
    background: #fff;
}
.op-intro__left {
    width: 680px;
    flex-shrink: 0;
    padding: 100px 60px 100px 120px;
}
.op-intro__right {
    flex: 1;
    overflow: hidden;
}
.op-intro__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Countries */
.op-countries {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 80px 120px;
    background: var(--bt-cyan-light);
    min-height: 800px;
    overflow: hidden;
}
.op-countries__left { width: 400px; flex-shrink: 0; }
.op-countries__grid {
    display: grid;
    grid-template-columns: repeat(3, 190px);
    gap: 12px;
    margin-left: auto;
}
.op-country-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 120px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.op-country-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,53,84,0.15); }
.op-country-card__flag {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.op-country-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    z-index: 1;
}
.op-country-card__text {
    position: relative;
    z-index: 2;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.op-country-card__name {
    font-family: var(--bt-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.op-country-card__en {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}
.op-country-card--more {
    background: rgba(0, 178, 212, 0.1);
    color: var(--bt-cyan);
    border: 1px solid rgba(0, 178, 212, 0.2);
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    height: 120px;
}

/* Bento Grid */
.op-types {
    padding: 100px 120px;
    background: #fff;
}
.op-types__header {
    text-align: center;
    margin-bottom: 48px;
}
.op-types__header .op-section-tag { text-align: center; }
.op-bento { max-width: 1200px; margin: 0 auto; }
.op-bento__row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.op-bento__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bt-navy);
    flex: 1;
}
.op-bento__row--1 .op-bento__card { height: 240px; }
.op-bento__row--2 .op-bento__card { height: 200px; }
.op-bento__card--wide { flex: 2; }
.op-bento__row--2 .op-bento__card:first-child { flex: 0 0 400px; }
.op-bento__row--2 .op-bento__card--accent { flex: 0 0 300px; }
.op-bento__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.op-bento__card-content {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 1;
}
.op-bento__card-content h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.op-bento__card-content p { font-size: 13px; color: var(--bt-cyan-bg); }
.op-bento__card--accent {
    background: var(--bt-cyan);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}
.op-bento__card--accent h3 { font-size: 18px; font-weight: 600; color: #fff; }
.op-bento__card--accent p { font-size: 13px; color: rgba(255,255,255,0.8); }

/* Excluded */
.op-excluded {
    display: flex;
    gap: 60px;
    padding: 80px 120px;
    background: #fff;
}
.op-excluded__left { width: 400px; flex-shrink: 0; }
.op-excluded__list { flex: 1; }
.op-excluded__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-size: 15px;
    color: var(--bt-text-body);
}
.op-excluded__item + .op-excluded__item { border-top: 1px solid rgba(0,0,0,0.06); }
.op-excluded__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Process */
.op-process {
    padding: 100px 80px;
    background: var(--bt-navy);
    text-align: center;
}
.op-process__header { margin-bottom: 48px; }
.op-process__tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(0,178,212,0.15);
    color: var(--bt-cyan);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}
.op-process__title {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}
.op-process__steps {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}
.op-process__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    gap: 8px;
}
.op-process__circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.op-process__step:hover .op-process__circle {
    transform: scale(1.1);
}
.op-process__connector {
    width: 2px;
    height: 20px;
    background: rgba(0,178,212,0.3);
}
.op-process__step h3 { font-size: 15px; font-weight: 600; color: #fff; }
.op-process__step p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; white-space: pre-line; }

/* Pricing */
.op-pricing {
    padding: 100px 120px;
    background: #fff;
}
.op-pricing__header { text-align: center; margin-bottom: 48px; }
.op-pricing__cards {
    display: flex;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.op-pricing__card {
    flex: 1;
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid rgba(0,0,0,0.08);
}
.op-pricing__card h3 { font-size: 20px; font-weight: 700; color: var(--bt-navy); margin-bottom: 12px; }
.op-pricing__card p { font-size: 14px; color: var(--bt-text-body); line-height: 1.7; }
.op-pricing__card--dark {
    background: var(--bt-navy);
    border-color: var(--bt-navy);
}
.op-pricing__card--dark h3 { color: #fff; }
.op-pricing__card--dark p { color: var(--bt-cyan-bg); }
.op-pricing__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Notes */
.op-notes {
    display: flex;
    gap: 60px;
    padding: 80px 120px;
    background: var(--bt-cyan-light);
}
.op-notes__left { width: 400px; flex-shrink: 0; }
.op-notes__list { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.op-notes__item { display: flex; gap: 16px; align-items: flex-start; }
.op-notes__num {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--bt-cyan);
    opacity: 0.5;
    flex-shrink: 0;
    line-height: 1;
    min-width: 40px;
}
.op-notes__item p { font-size: 15px; color: var(--bt-text-body); line-height: 1.6; padding-top: 4px; }

/* Contact */
.op-contact {
    padding: 100px 120px;
    background: #fff;
}
.op-contact__header { text-align: center; margin-bottom: 48px; }
.op-contact__cards {
    display: flex;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.op-contact__card {
    flex: 1;
    padding: 48px 32px;
    border-radius: 20px;
    border: 2px solid rgba(0,0,0,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.op-contact__card--primary {
    background: var(--bt-cyan-light);
    border-color: transparent;
}
.op-contact__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.op-contact__card h3 { font-size: 22px; font-weight: 700; color: var(--bt-navy); }
.op-contact__card p { font-size: 14px; color: var(--bt-text-body); line-height: 1.6; }

/* CTA */
.op-cta {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.op-cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.op-cta__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.6;
}
.op-cta__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.op-cta__content h2 {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 28px;
}
.op-cta__buttons { display: flex; gap: 16px; justify-content: center; }

/* ===== Page: 在地名產 (Local Specialties) ===== */
.ls-hero {
    position: relative;
    min-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
}
.ls-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.ls-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}
.ls-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    gap: 16px;
}
.ls-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.ls-hero__title {
    font-family: var(--bt-font-display);
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.ls-hero__sub {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 2px;
}
.ls-hero__divider {
    width: 60px;
    height: 3px;
    background: #00b2d4;
    border-radius: 2px;
}
.ls-hero__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 700px;
}

/* LS Common */
.ls-tag {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #00b2d4;
    margin-bottom: 16px;
    text-align: center;
}
.ls-section-title {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 44px;
    font-weight: 700;
    color: var(--bt-navy);
    text-align: center;
    margin-bottom: 16px;
}
.ls-section-text {
    font-size: 18px;
    color: var(--bt-text-body);
    text-align: center;
}
.ls-divider {
    width: 60px;
    height: 3px;
    background: #00b2d4;
    border-radius: 2px;
    margin: 0 auto;
}

/* Map */
.ls-map {
    padding: 100px 80px;
    background: #fff;
}
.ls-map__header { margin-bottom: 48px; }
.ls-map__container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ls-map__img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 53, 84, 0.12);
}

/* Regions */
.ls-regions {
    padding: 100px 80px;
    background: #dbedf2;
}
.ls-regions__header { margin-bottom: 48px; }
.ls-regions__panels { display: flex; gap: 32px; min-height: 500px; }
.ls-regions__panel {
    flex: 1;
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.ls-regions__panel--light { background: #fff; }
.ls-regions__panel--dark {
    background: linear-gradient(180deg, #003554, #00587a);
    color: #fff;
}
.ls-regions__panel-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
}
.ls-regions__panel--dark .ls-regions__panel-title { color: #fff; }
.ls-regions__panel-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
}
.ls-regions__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ls-chip {
    padding: 10px 18px;
    border-radius: 8px;
    background: var(--bt-cyan-light);
    font-size: 14px;
    font-weight: 500;
    color: var(--bt-navy);
}
.ls-regions__islands {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ls-island-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

/* Products */
.ls-products {
    padding: 100px 80px;
    background: var(--bt-cyan-bg);
}
.ls-products__header { margin-bottom: 56px; }
.ls-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ls-product-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 53, 84, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ls-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 53, 84, 0.12);
}
.ls-product-card__img {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.ls-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ls-product-card:hover .ls-product-card__img img {
    transform: scale(1.05);
}
.ls-product-card__icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bt-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.ls-product-card__body {
    padding: 20px;
}
.ls-product-card h3 { font-size: 17px; font-weight: 600; color: var(--bt-navy); margin-bottom: 8px; }
.ls-product-card p { font-size: 14px; color: var(--bt-text-body); line-height: 1.6; }

/* Process */
.ls-process { padding: 100px 80px; background: var(--bt-navy); text-align: center; }
.ls-process__header { margin-bottom: 48px; }
.ls-process__tag { display: inline-block; padding: 8px 20px; border-radius: 20px; background: rgba(0,178,212,0.15); color: var(--bt-cyan); font-size: 13px; font-weight: 500; margin-bottom: 16px; }
.ls-process__title { font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 42px; font-weight: 700; color: #fff; }
.ls-process__steps { display: flex; justify-content: center; gap: 0; max-width: 1200px; margin: 0 auto; }
.ls-process__step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; gap: 8px; }
.ls-process__circle { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 22px; font-weight: 700; color: #fff; transition: transform 0.2s; }
.ls-process__step:hover .ls-process__circle { transform: scale(1.1); }
.ls-process__connector { width: 2px; height: 20px; background: rgba(0,178,212,0.3); }
.ls-process__step h3 { font-size: 15px; font-weight: 600; color: #fff; }
.ls-process__step p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; white-space: pre-line; }

/* Pricing */
.ls-pricing {
    padding: 100px 80px;
    background: #fff;
}
.ls-pricing__header { margin-bottom: 48px; }
.ls-pricing__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ls-pricing__card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 40px;
    border-radius: 16px;
}
.ls-pricing__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ls-pricing__card h3 { font-size: 22px; font-weight: 700; color: var(--bt-navy); margin-bottom: 8px; }
.ls-pricing__card p { font-size: 16px; color: var(--bt-text-body); line-height: 1.5; }

/* Excluded */
.ls-excluded {
    padding: 60px 80px;
    background: #0a1628;
    text-align: center;
}
.ls-excluded__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}
.ls-excluded__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.ls-excluded__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
}

/* Notes */
.ls-notes {
    padding: 80px 120px;
    background: #ebfafc;
}
.ls-notes__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.ls-notes__header h2 {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--bt-navy);
}
.ls-notes__list { display: flex; flex-direction: column; gap: 20px; }
.ls-notes__item { display: flex; gap: 16px; align-items: flex-start; }
.ls-notes__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #003554;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.ls-notes__item p { font-size: 15px; color: var(--bt-text-body); line-height: 1.6; }

/* CTA */
.ls-cta {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.ls-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ls-cta__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1; }
.ls-cta__content {
    position: relative;
    z-index: 2;
}
.ls-cta__content h2 {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.ls-cta__content > p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
}
.ls-cta__buttons { display: flex; gap: 20px; justify-content: center; }

/* ===== Form Section (shared) ===== */
.bt-form-section {
    padding: 100px 80px;
    background: var(--bt-cyan-bg);
}
.bt-form-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.bt-form-section__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(0, 178, 212, 0.1);
    color: var(--bt-cyan);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.bt-form-section__title {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--bt-navy);
    margin-bottom: 16px;
    line-height: 1.3;
}
.bt-form-section__desc {
    font-size: 16px;
    color: var(--bt-text-body);
    line-height: 1.8;
    margin-bottom: 32px;
}
.bt-form-section__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bt-form-section__contact p {
    font-size: 14px;
    font-weight: 600;
    color: var(--bt-text-dark);
    margin-bottom: 4px;
}
.bt-form-section__contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bt-navy);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.bt-form-section__contact a:hover { color: var(--bt-cyan); }
.bt-form-section__form {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0, 53, 84, 0.08);
}
.bt-form-section__form .ff-el-group { margin-bottom: 20px; }
.bt-form-section__form .ff-el-input--label label {
    font-size: 14px;
    font-weight: 600;
    color: var(--bt-navy);
    margin-bottom: 6px;
}
.bt-form-section__form .ff-el-form-control {
    border: 1px solid #d0d9de;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.2s;
}
.bt-form-section__form .ff-el-form-control:focus {
    border-color: var(--bt-cyan);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 178, 212, 0.1);
}
.bt-form-section__form .ff-btn-submit {
    background: var(--bt-navy) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.bt-form-section__form .ff-btn-submit:hover {
    background: var(--bt-cyan) !important;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root {
        --bt-section-padding: 60px 40px;
    }

    .bt-hero { height: auto; min-height: 800px; }
    .bt-hero__content { position: relative; top: auto; transform: none; left: auto; padding: 140px 40px 60px; }
    .bt-hero__title { font-size: 48px; }
    .bt-hero__cards { display: none; }
    .bt-hero__glow { display: none; }

    .bt-services__grid { grid-template-columns: repeat(2, 1fr); }

    .bt-form-section { padding: 60px 40px; }
    .bt-form-section__inner { grid-template-columns: 1fr; gap: 40px; }
    .bt-form-section__title { font-size: 30px; }

    .bt-why { flex-direction: column; }
    .bt-why__left,
    .bt-why__right { width: 100%; }

    .bt-process__steps { flex-wrap: wrap; justify-content: center; }
    .bt-step { flex: 0 0 33%; margin-bottom: 32px; }

    .bt-testimonials__grid { grid-template-columns: repeat(2, 1fr); }

    .bt-footer__content { flex-wrap: wrap; gap: 40px; }
    .bt-footer__brand { flex: 0 0 100%; }

    .bt-svc-types { grid-template-columns: repeat(2, 1fr); }

    /* LS responsive */
    .ls-hero { min-height: 800px; }
    .ls-hero__title { font-size: 48px; }
    .ls-hero { padding: 100px 20px 60px; }
    .ls-hero__content { padding: 0; }
    .ls-regions__panels { flex-direction: column; }
    .ls-products__grid { grid-template-columns: repeat(2, 1fr); }
    .ls-process__steps { flex-wrap: wrap; }
    .ls-process__step { flex: 0 0 33%; margin-bottom: 24px; }
    .ls-map, .ls-regions, .ls-products, .ls-pricing, .ls-notes { padding: 60px 40px; }

    /* OP responsive */
    .op-hero { height: auto; min-height: 800px; }
    .op-hero__left { position: relative; left: auto; top: auto; padding: 140px 40px 40px; width: 100%; }
    .op-hero__cards { display: none; }
    .op-intro { flex-direction: column; }
    .op-intro__left { width: 100%; padding: 60px 40px; }
    .op-intro__right { height: 400px; }
    .op-countries { flex-direction: column; padding: 60px 40px; }
    .op-countries__left { width: 100%; margin-bottom: 32px; }
    .op-countries__grid { grid-template-columns: repeat(3, 1fr); margin-left: 0; }
    .op-types { padding: 60px 40px; }
    .op-bento__row { flex-direction: column; }
    .op-bento__row--2 .op-bento__card:first-child,
    .op-bento__row--2 .op-bento__card--accent { flex: 1; }
    .op-excluded { flex-direction: column; padding: 60px 40px; }
    .op-excluded__left { width: 100%; }
    .op-process { padding: 60px 40px; }
    .op-process__steps { flex-wrap: wrap; justify-content: center; }
    .op-process__step { flex: 0 0 33%; margin-bottom: 32px; }
    .op-pricing { padding: 60px 40px; }
    .op-pricing__cards { flex-direction: column; }
    .op-notes { flex-direction: column; padding: 60px 40px; }
    .op-notes__left { width: 100%; }
    .op-contact { padding: 60px 40px; }
    .op-contact__cards { flex-direction: column; }
}

/* ===== Animations ===== */
.bt-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Mobile nav open state */
.bt-nav__links--open {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--bt-white);
    flex-direction: column;
    padding: 80px 24px 32px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    gap: 0;
    z-index: 9998;
    overflow-y: auto;
}
.bt-nav__links--open li {
    height: auto;
    border-bottom: 1px solid #f0f0f0;
}
.bt-nav__links--open li:last-child {
    border-bottom: none;
}
.bt-nav__links--open a {
    line-height: 1.4;
    padding: 14px 8px;
    display: block;
    font-size: 16px;
    color: var(--bt-navy);
}
.bt-nav__links--open a:hover {
    color: var(--bt-cyan);
}
/* Backdrop overlay */
.bt-nav__backdrop {
    display: none;
}
.bt-nav__backdrop--open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9997;
}

@media (max-width: 768px) {
    :root {
        --bt-section-padding: 48px 20px;
    }

    .bt-nav { left: 16px; right: 16px; top: 16px; }
    .bt-nav__links { display: none; }
    .bt-nav__toggle { display: block; }
    .bt-nav__bar { padding: 0 12px 0 16px; }
    .bt-nav__cta--desktop { display: none; }
    .bt-nav__icon-link { display: none; }

    .bt-heading--xl { font-size: 36px; }
    .bt-heading--lg { font-size: 28px; }
    .bt-heading--md { font-size: 24px; }

    .bt-form-section { padding: 48px 20px; }
    .bt-form-section__form { padding: 24px; }
    .bt-form-section__title { font-size: 26px; }

    .bt-hero { min-height: 800px; }
    .bt-hero__content { padding: 120px 20px 40px; }
    .bt-hero__title { font-size: 36px; }
    .bt-hero__subtitle { font-size: 15px; }
    .bt-hero__stats { flex-wrap: wrap; gap: 20px; }
    .bt-hero__buttons { flex-direction: column; }

    .bt-services__grid { grid-template-columns: 1fr; }
    .bt-testimonials__grid { grid-template-columns: 1fr; }

    .bt-why__stats { flex-wrap: wrap; gap: 12px; }
    .bt-why__stat { min-width: 120px; flex: 1; }

    .bt-step { flex: 0 0 50%; }

    .bt-cta { height: 350px; }
    .bt-cta__title { font-size: 24px; }
    .bt-cta__buttons { flex-direction: column; align-items: center; }

    .bt-footer { padding: 40px 20px; }
    .bt-footer__content { flex-direction: column; gap: 32px; }

    .bt-svc-hero { min-height: 400px; height: auto; }
    .bt-svc-hero__title { font-size: 32px; }
    .bt-svc-hero__content { padding: 0 20px; }
    .bt-svc-section { padding: 48px 20px; }
    .bt-svc-types { grid-template-columns: 1fr; }

    .bt-contact { padding: 48px 20px; }
    .bt-contact__buttons { flex-direction: column; align-items: center; }

    /* LS mobile */
    .ls-hero__title { font-size: 40px; }
    .ls-hero__content { padding: 100px 20px 40px; gap: 20px; }
    .ls-section-title { font-size: 28px; }
    .ls-products__grid { grid-template-columns: 1fr; }
    .ls-process__step { flex: 0 0 50%; }
    .ls-excluded { padding: 40px 20px; }
    .ls-cta__content h2 { font-size: 28px; }
    .ls-cta__buttons { flex-direction: column; align-items: center; }
    .ls-map, .ls-regions, .ls-products, .ls-pricing, .ls-notes { padding: 48px 20px; }

    /* OP mobile */
    .op-hero__left { padding: 120px 20px 40px; }
    .op-hero__title { font-size: 40px; }
    .op-hero__buttons { flex-direction: column; }
    .op-trust { flex-wrap: wrap; gap: 20px; padding: 20px; }
    .op-countries__grid { grid-template-columns: repeat(2, 1fr); }
    .op-section-title { font-size: 28px; }
    .op-process__step { flex: 0 0 50%; margin-bottom: 24px; }
    .op-bento__row--1 .op-bento__card,
    .op-bento__row--2 .op-bento__card { height: 180px; }
    .op-excluded,
    .op-notes,
    .op-types,
    .op-pricing,
    .op-contact,
    .op-countries,
    .op-intro__left,
    .op-process { padding: 48px 20px; }
    .op-cta__content h2 { font-size: 28px; }
}

/* ============================================================
   QUEUE SERVICE (qs-) — 預約代排
   ============================================================ */
.qs-hero { position: relative; min-height: 800px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 40px 80px; overflow: hidden; }
.qs-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.qs-hero__gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.85) 100%); z-index: 1; }
.qs-hero__accent { position: absolute; top: 50%; left: 50%; width: 600px; height: 3px; background: linear-gradient(90deg, transparent, #00b2d4, transparent); transform: translate(-50%, -50%); z-index: 2; opacity: 0.4; }
.qs-hero__tag { position: relative; z-index: 3; display: inline-block; background: #00b2d420; color: #00b2d4; font-size: 13px; font-weight: 600; letter-spacing: 1px; padding: 8px 20px; border-radius: 100px; margin-bottom: 24px; }
.qs-hero__title { position: relative; z-index: 3; font-family: var(--bt-font-display); font-size: 64px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.qs-hero__sub { position: relative; z-index: 3; font-size: 20px; color: rgba(255,255,255,0.7); letter-spacing: 2px; margin-bottom: 16px; font-weight: 400; }
.qs-hero__desc { position: relative; z-index: 3; font-size: 15px; color: rgba(255,255,255,0.5); max-width: 700px; line-height: 1.8; margin-bottom: 32px; }
.qs-hero__timer { position: relative; z-index: 3; display: flex; gap: 12px; margin-bottom: 8px; }
.qs-timer__item { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.08); border-radius: 10px; padding: 10px 20px; min-width: 68px; }
.qs-timer__num { font-family: var(--bt-font-display); font-size: 28px; font-weight: 700; color: #00b2d4; }
.qs-timer__label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.qs-hero__timer-caption { position: relative; z-index: 3; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.qs-hero__decor { position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; border: 2px solid rgba(0,178,212,0.1); z-index: 2; }

/* QS Section Common */
.qs-section-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--bt-navy); background: #00b2d420; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.qs-section-title { font-family: var(--bt-font-display); font-size: 36px; font-weight: 700; color: var(--bt-navy); }

/* QS Services Zigzag */
.qs-services { padding: 80px 80px 40px; max-width: var(--bt-container-max); margin: 0 auto; }
.qs-services__header { text-align: center; margin-bottom: 48px; }
.qs-zigzag { display: flex; align-items: center; gap: 40px; margin-bottom: 40px; }
.qs-zigzag--reverse { flex-direction: row-reverse; }
.qs-zigzag__img { flex: 0 0 45%; border-radius: 16px; overflow: hidden; }
.qs-zigzag__img img { width: 100%; height: 280px; object-fit: cover; display: block; }
.qs-zigzag__content { flex: 1; }
.qs-zigzag__num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.qs-zigzag__content h3 { font-family: var(--bt-font-display); font-size: 22px; font-weight: 700; color: var(--bt-navy); margin-bottom: 8px; }
.qs-zigzag__content p { font-size: 15px; color: var(--bt-text-body); line-height: 1.7; }
.qs-services__last { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
.qs-services__lastcard { padding: 32px; border-radius: 16px; }
.qs-services__lastcard h3 { font-family: var(--bt-font-display); font-size: 20px; font-weight: 700; color: var(--bt-navy); margin-top: 16px; margin-bottom: 8px; }
.qs-services__lastcard p { font-size: 14px; color: var(--bt-text-body); line-height: 1.6; }

/* QS Coverage */
.qs-coverage { background: #1a1a2e; padding: 80px; text-align: center; }
.qs-coverage__tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 1px; color: #00b2d4; background: #00b2d420; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.qs-coverage__title { font-family: var(--bt-font-display); font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.qs-coverage__sub { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.qs-coverage__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 900px; margin: 0 auto; }
.qs-chip { display: inline-block; padding: 10px 20px; border-radius: 100px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; border: 1px solid rgba(255,255,255,0.08); }
.qs-chip--highlight { background: #00b2d420; color: #00b2d4; border-color: #00b2d440; }

/* QS Process Timeline */
.qs-process { padding: 100px 80px; background: var(--bt-light-bg); text-align: center; }
.qs-process__header { margin-bottom: 48px; }
.qs-process__tag { display: inline-block; padding: 8px 20px; border-radius: 20px; background: rgba(0,178,212,0.1); color: var(--bt-cyan); font-size: 13px; font-weight: 500; margin-bottom: 16px; }
.qs-process__title { font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 42px; font-weight: 700; color: var(--bt-navy); }
.qs-process__steps { display: flex; justify-content: center; gap: 0; max-width: 1200px; margin: 0 auto; }
.qs-process__step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; gap: 8px; }
.qs-process__circle { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 22px; font-weight: 700; color: #fff; transition: transform 0.2s; }
.qs-process__step:hover .qs-process__circle { transform: scale(1.1); }
.qs-process__connector { width: 2px; height: 20px; background: var(--bt-cyan); }
.qs-process__step h3 { font-size: 15px; font-weight: 600; color: var(--bt-text-dark); }
.qs-process__step p { font-size: 13px; color: var(--bt-text-body); line-height: 1.5; white-space: pre-line; }

/* QS Pricing */
.qs-pricing { padding: 80px; background: var(--bt-light-bg); }
.qs-pricing__header { text-align: center; margin-bottom: 48px; }
.qs-pricing__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--bt-container-max); margin: 0 auto; }
.qs-pricing__card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,53,84,0.06); }
.qs-pricing__stripe { height: 4px; }
.qs-pricing__body { padding: 32px; }
.qs-pricing__body h3 { font-family: var(--bt-font-display); font-size: 20px; font-weight: 700; color: var(--bt-navy); margin-bottom: 8px; }
.qs-pricing__body p { font-size: 14px; color: var(--bt-text-body); line-height: 1.6; }

/* QS Live Status */
.qs-live { background: #1a1a2e; padding: 80px; }
.qs-live__header { display: flex; align-items: center; justify-content: space-between; max-width: var(--bt-container-max); margin: 0 auto 40px; }
.qs-live__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--bt-container-max); margin: 0 auto; }
.qs-live__card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px; }
.qs-live__badge { display: inline-block; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.qs-live__time { font-family: var(--bt-font-display); font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.qs-live__card h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.qs-live__card p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.qs-live__bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.qs-live__bar div { height: 100%; border-radius: 2px; }

/* QS Excluded */
.qs-excluded { background: #2a1215; padding: 60px 80px; }
.qs-excluded__header { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 32px; }
.qs-excluded__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.qs-excluded__item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(239,68,68,0.15); border-radius: 10px; padding: 16px 20px; color: rgba(255,255,255,0.8); font-size: 14px; }

/* QS Notes */
.qs-notes { padding: 80px; }
.qs-notes__header { text-align: center; margin-bottom: 40px; }
.qs-notes__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.qs-notes__item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; background: #fff; border-radius: 12px; border: 1px solid #dbedf2; }
.qs-notes__num { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: var(--bt-navy); color: #fff; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.qs-notes__item p { font-size: 14px; color: var(--bt-text-body); line-height: 1.6; padding-top: 4px; }

/* QS CTA */
.qs-cta { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.qs-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.qs-cta__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1; }
.qs-cta__content { position: relative; z-index: 2; padding: 40px; }
.qs-cta__content h2 { font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 40px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.qs-cta__content p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.qs-cta__buttons { display: flex; justify-content: center; gap: 16px; margin-bottom: 24px; }
.qs-cta__trust { display: flex; justify-content: center; gap: 32px; }
.qs-cta__trust span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ============================================================
   TICKET SERVICE (ts-) — 搶票服務
   ============================================================ */
.ts-hero { min-height: 800px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 40px 80px; position: relative; overflow: hidden; }
.ts-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ts-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%); z-index: 1; }
.ts-hero__badge { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: #FF6B3520; color: #FF6B35; font-size: 13px; font-weight: 600; letter-spacing: 1px; padding: 8px 20px; border-radius: 100px; margin-bottom: 24px; }
.ts-hero__title { position: relative; z-index: 2; font-family: var(--bt-font-display); font-size: 64px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ts-hero__neon { position: relative; z-index: 2; width: 200px; height: 3px; background: linear-gradient(90deg, transparent, #FF6B35, transparent); margin: 0 auto 24px; }
.ts-hero__sub { position: relative; z-index: 2; font-size: 20px; color: rgba(255,255,255,0.7); letter-spacing: 2px; margin-bottom: 16px; }
.ts-hero__desc { position: relative; z-index: 2; font-size: 15px; color: rgba(255,255,255,0.5); max-width: 700px; line-height: 1.8; margin-bottom: 32px; }
.ts-hero__buttons { position: relative; z-index: 2; display: flex; gap: 16px; }
.ts-hero__cta { display: inline-flex; align-items: center; gap: 8px; background: #FF6B35; color: #fff; padding: 16px 36px; border-radius: 100px; font-weight: 700; font-size: 16px; text-decoration: none; box-shadow: 0 4px 16px rgba(255,107,53,0.4); transition: transform 0.2s; }
.ts-hero__cta:hover { transform: translateY(-2px); }

/* TS Section Common */
.ts-section-header { text-align: center; margin-bottom: 48px; }
.ts-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--bt-navy); background: #FF6B3520; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.ts-title { font-family: var(--bt-font-display); font-size: 36px; font-weight: 700; color: var(--bt-navy); }

/* TS Platforms */
.ts-platforms { padding: 80px; }
.ts-platforms__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: var(--bt-container-max); margin: 0 auto; }
.ts-platform-card { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: #fff; border: 1px solid #dbedf2; border-radius: 14px; transition: box-shadow 0.2s; }
.ts-platform-card:hover { box-shadow: 0 4px 16px rgba(0,53,84,0.08); }
.ts-platform-card__icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ts-platform-card__logo { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.ts-platform-card__text-logo { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; font-weight: 800; letter-spacing: -0.3px; text-align: center; line-height: 1.1; }
.ts-platform-card span { font-size: 15px; font-weight: 600; color: var(--bt-navy); }

/* TS Ticket Types */
.ts-types { padding: 60px 80px; background: var(--bt-light-bg); }
.ts-types__strip { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.ts-type-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; min-width: 160px; height: 120px; border-radius: 16px; flex-shrink: 0; }
.ts-type-card span { color: #fff; font-size: 14px; font-weight: 600; }

/* TS Process */
.ts-process { padding: 100px 80px; background: var(--bt-navy); text-align: center; }
.ts-process__header { margin-bottom: 48px; }
.ts-process__tag { display: inline-block; padding: 8px 20px; border-radius: 20px; background: rgba(0,178,212,0.15); color: var(--bt-cyan); font-size: 13px; font-weight: 500; margin-bottom: 16px; }
.ts-process__title { font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 42px; font-weight: 700; color: #fff; }
.ts-process__steps { display: flex; justify-content: center; gap: 0; max-width: 1200px; margin: 0 auto; }
.ts-process__step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; gap: 8px; }
.ts-process__circle { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 22px; font-weight: 700; color: #fff; transition: transform 0.2s; }
.ts-process__step:hover .ts-process__circle { transform: scale(1.1); }
.ts-process__connector { width: 2px; height: 20px; background: rgba(0,178,212,0.3); }
.ts-process__step h3 { font-size: 15px; font-weight: 600; color: #fff; }
.ts-process__step p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; white-space: pre-line; }

/* TS Pricing */
.ts-pricing { padding: 80px; }
.ts-pricing__row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.ts-pricing__card { border-radius: 20px; padding: 40px; border: 1px solid #dbedf2; }
.ts-pricing__card--dark { background: #0a1628; border-color: transparent; }
.ts-pricing__card--dark h3 { color: #fff; }
.ts-pricing__card--dark p { color: rgba(255,255,255,0.6); }
.ts-pricing__card h3 { font-family: var(--bt-font-display); font-size: 22px; font-weight: 700; color: var(--bt-navy); margin-bottom: 12px; }
.ts-pricing__card p { font-size: 14px; color: var(--bt-text-body); line-height: 1.7; margin-bottom: 16px; }
.ts-pricing__note { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; }

/* TS Success Stories */
.ts-success { padding: 80px; background: var(--bt-light-bg); }
.ts-success__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--bt-container-max); margin: 0 auto; }
.ts-success__card { background: #fff; border-radius: 16px; padding: 32px; border: 1px solid #dbedf2; }
.ts-success__badge { display: inline-block; background: #22c55e20; color: #22c55e; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.ts-success__card h3 { font-family: var(--bt-font-display); font-size: 18px; font-weight: 700; color: var(--bt-navy); margin-bottom: 8px; }
.ts-success__meta { font-size: 13px; color: var(--bt-text-mid); margin-bottom: 16px; }
.ts-success__quote { font-size: 15px; color: var(--bt-text-body); font-style: italic; line-height: 1.7; margin-bottom: 12px; }
.ts-success__author { font-size: 13px; color: var(--bt-text-mid); }

/* TS Excluded */
.ts-excluded { background: #0a1628; padding: 80px; }
.ts-excluded__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: var(--bt-container-max); margin: 0 auto; }
.ts-excluded__item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,107,53,0.15); border-radius: 10px; padding: 16px 20px; color: rgba(255,255,255,0.8); font-size: 14px; }

/* TS Notes */
.ts-notes { padding: 80px; }
.ts-notes__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.ts-notes__item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; background: #fff; border-radius: 12px; border: 1px solid #dbedf2; }
.ts-notes__num { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; color: #fff; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.ts-notes__item p { font-size: 14px; color: var(--bt-text-body); line-height: 1.6; padding-top: 4px; }

/* TS CTA */
.ts-cta { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.ts-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ts-cta__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1; }
.ts-cta__content { position: relative; z-index: 2; padding: 40px; }
.ts-cta__content h2 { font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 40px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.ts-cta__content p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.ts-cta__btn { display: inline-flex; align-items: center; gap: 8px; background: #FF6B35; color: #fff; padding: 18px 48px; border-radius: 100px; font-weight: 700; font-size: 18px; text-decoration: none; box-shadow: 0 4px 16px rgba(255,107,53,0.4); margin-bottom: 24px; transition: transform 0.2s; }
.ts-cta__btn:hover { transform: translateY(-2px); }
.ts-cta__contact { display: flex; justify-content: center; gap: 32px; }
.ts-cta__contact a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: none; }
.ts-cta__contact a:hover { color: #fff; }

/* ============================================================
   LOCAL TOUR (lt-) — 在地伴遊
   ============================================================ */
.lt-hero { position: relative; min-height: 800px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 120px 40px 80px; }
.lt-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.lt-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.65) 100%); z-index: 1; }
.lt-hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0; gap: 16px; }
.lt-hero__tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 1px; padding: 8px 20px; border-radius: 100px; margin-bottom: 24px; }
.lt-hero__title { font-family: var(--bt-font-display); font-size: 64px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.lt-hero__sub { font-size: 20px; color: rgba(255,255,255,0.85); letter-spacing: 2px; }
.lt-hero__divider { width: 60px; height: 3px; background: #00b2d4; border-radius: 2px; }
.lt-hero__desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 700px; margin: 0 auto; }

/* LT Section Common */
.lt-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--bt-navy); background: #E8B93020; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.lt-section-title { font-family: var(--bt-font-display); font-size: 36px; font-weight: 700; color: var(--bt-navy); }

/* LT Intro */
.lt-intro { padding: 80px; text-align: center; max-width: 900px; margin: 0 auto; }
.lt-intro__tag { display: inline-flex; align-items: center; gap: 8px; background: #E8B93015; padding: 8px 20px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--bt-navy); margin-bottom: 20px; }
.lt-intro__title { font-family: var(--bt-font-display); font-size: 36px; font-weight: 700; color: var(--bt-navy); margin-bottom: 16px; }
.lt-intro__divider { width: 60px; height: 3px; background: #E8B930; margin: 0 auto 24px; border-radius: 2px; }
.lt-intro__text { font-size: 16px; color: var(--bt-text-body); line-height: 1.8; }

/* LT Destinations */
.lt-dest { padding: 60px 80px 80px; }
.lt-dest__header { text-align: center; margin-bottom: 40px; }
.lt-dest__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: var(--bt-container-max); margin: 0 auto; }
.lt-dest__card { position: relative; border-radius: 16px; overflow: hidden; height: 300px; cursor: pointer; }
.lt-dest__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.lt-dest__card:hover img { transform: scale(1.05); }
.lt-dest__card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent); }
.lt-dest__card-overlay h3 { font-family: var(--bt-font-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.lt-dest__card-overlay p { font-size: 13px; color: rgba(255,255,255,0.7); }

/* LT Service Types */
.lt-services { padding: 80px; background: var(--bt-light-bg); }
.lt-services__header { text-align: center; margin-bottom: 48px; }
.lt-services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: var(--bt-container-max); margin: 0 auto; }
.lt-service-card { background: #fff; border-radius: 16px; padding: 28px; border: 1px solid #dbedf2; transition: box-shadow 0.2s; }
.lt-service-card:hover { box-shadow: 0 4px 20px rgba(0,53,84,0.08); }
.lt-service-card__icon { width: 48px; height: 48px; border-radius: 12px; background: #2D7D4615; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.lt-service-card h3 { font-size: 16px; font-weight: 700; color: var(--bt-navy); margin-bottom: 8px; }
.lt-service-card p { font-size: 13px; color: var(--bt-text-body); line-height: 1.6; }

/* LT Regions */
.lt-regions { padding: 80px; }
.lt-regions__header { text-align: center; margin-bottom: 48px; }
.lt-regions__panels { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: var(--bt-container-max); margin: 0 auto; }
.lt-regions__panel { background: #fff; border-radius: 20px; padding: 40px; border: 1px solid #dbedf2; }
.lt-regions__panel h3 { display: flex; align-items: center; gap: 12px; font-family: var(--bt-font-display); font-size: 22px; font-weight: 700; color: var(--bt-navy); margin-bottom: 24px; }
.lt-regions__panel--island { background: #003554; border-color: transparent; }
.lt-regions__panel--island h3 { color: #fff; }
.lt-regions__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lt-regions__cols h4 { font-size: 14px; font-weight: 700; color: var(--bt-navy); margin-bottom: 4px; }
.lt-regions__cols p { font-size: 13px; color: var(--bt-text-body); line-height: 1.5; }
.lt-regions__island-list { display: flex; flex-wrap: wrap; gap: 12px; }
.lt-island-chip { display: inline-block; padding: 10px 20px; border-radius: 100px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); font-size: 14px; border: 1px solid rgba(255,255,255,0.15); }

/* LT Process */
.lt-process { padding: 100px 80px; background: var(--bt-navy); text-align: center; }
.lt-process__header { margin-bottom: 48px; }
.lt-process__tag { display: inline-block; padding: 8px 20px; border-radius: 20px; background: rgba(0,178,212,0.15); color: var(--bt-cyan); font-size: 13px; font-weight: 500; margin-bottom: 16px; }
.lt-process__title { font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 42px; font-weight: 700; color: #fff; }
.lt-process__steps { display: flex; justify-content: center; gap: 0; max-width: 1200px; margin: 0 auto; }
.lt-process__step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; gap: 8px; }
.lt-process__circle { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 22px; font-weight: 700; color: #fff; transition: transform 0.2s; }
.lt-process__step:hover .lt-process__circle { transform: scale(1.1); }
.lt-process__connector { width: 2px; height: 20px; background: rgba(0,178,212,0.3); }
.lt-process__step h3 { font-size: 15px; font-weight: 600; color: #fff; }
.lt-process__step p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; white-space: pre-line; }

/* LT Pricing */
.lt-pricing { padding: 80px; }
.lt-pricing__header { text-align: center; margin-bottom: 48px; }
.lt-pricing__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--bt-container-max); margin: 0 auto; }
.lt-pricing__card { background: #fff; border-radius: 16px; overflow: hidden; padding: 32px; border: 1px solid #dbedf2; box-shadow: 0 4px 16px rgba(0,53,84,0.06); }
.lt-pricing__stripe { height: 4px; margin: -32px -32px 24px; }
.lt-pricing__card h3 { font-family: var(--bt-font-display); font-size: 20px; font-weight: 700; color: var(--bt-navy); margin-bottom: 8px; }
.lt-pricing__card p { font-size: 14px; color: var(--bt-text-body); line-height: 1.6; margin-bottom: 12px; }
.lt-pricing__note { font-size: 12px; color: var(--bt-text-mid); }

/* LT Excluded */
.lt-excluded { padding: 40px 80px; }
.lt-excluded__banner { display: flex; align-items: flex-start; gap: 16px; background: #FFF8E7; border: 1px solid #E8B93030; border-radius: 16px; padding: 32px; max-width: var(--bt-container-max); margin: 0 auto; }
.lt-excluded__banner h3 { font-size: 18px; font-weight: 700; color: var(--bt-navy); margin-bottom: 8px; }
.lt-excluded__banner p { font-size: 14px; color: var(--bt-text-body); line-height: 1.7; }

/* LT Notes */
.lt-notes { padding: 80px; background: var(--bt-light-bg); }
.lt-notes__header { text-align: center; margin-bottom: 40px; }
.lt-notes__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 800px; margin: 0 auto; }
.lt-notes__item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; background: #fff; border-radius: 12px; }
.lt-notes__num { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; color: #fff; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.lt-notes__item p { font-size: 14px; color: var(--bt-text-body); line-height: 1.6; padding-top: 4px; }

/* LT CTA */
.lt-cta { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.lt-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.lt-cta__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1; }
.lt-cta__content { position: relative; z-index: 2; text-align: center; padding: 40px; }
.lt-cta__content h2 { font-family: var(--bt-font-display); font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.lt-cta__content p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.lt-cta__buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   RECRUITMENT / CAREERS (rc-) — 徵才服務
   ============================================================ */
.rc-hero { min-height: 800px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 40px 80px; position: relative; overflow: hidden; }
.rc-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.rc-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%); z-index: 1; }
.rc-hero__content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.rc-hero__tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 1px; padding: 8px 20px; border-radius: 100px; margin-bottom: 24px; }
.rc-hero__title { font-family: var(--bt-font-display); font-size: 64px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.rc-hero__subtitle { font-size: 20px; color: #fff; letter-spacing: 2px; font-weight: 500; margin-bottom: 20px; }
.rc-hero__desc { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 700px; line-height: 1.8; margin-bottom: 32px; }
.rc-hero__badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.rc-hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; color: #fff; }
.rc-hero__badge--orange { background: rgba(255,140,66,0.2); }
.rc-hero__badge--green { background: rgba(76,175,80,0.2); }
.rc-hero__badge--cyan { background: rgba(0,178,212,0.2); }

/* RC Section Common */
.rc-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--bt-navy); background: rgba(0,53,84,0.06); padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.rc-tag--cyan { background: rgba(0,178,212,0.12); }
.rc-tag--orange { background: rgba(255,140,66,0.12); }
.rc-tag--green { background: rgba(76,175,80,0.12); }
.rc-section-title { font-family: var(--bt-font-display); font-size: 40px; font-weight: 700; color: var(--bt-navy); margin-bottom: 16px; }
.rc-section-desc { font-size: 16px; color: var(--bt-text-body); line-height: 1.8; max-width: 800px; margin: 0 auto 40px; }

/* RC Why Section */
.rc-why { padding: 80px; background: var(--bt-cyan-bg); text-align: center; }
.rc-why__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--bt-container-max); margin: 0 auto; }
.rc-why__card { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 4px 20px rgba(0,53,84,0.06); text-align: left; }
.rc-why__icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.rc-why__card h3 { font-family: var(--bt-font-display); font-size: 22px; font-weight: 700; color: var(--bt-navy); margin-bottom: 12px; }
.rc-why__card p { font-size: 14px; color: var(--bt-text-body); line-height: 1.7; }

/* RC Jobs */
.rc-jobs { padding: 80px; text-align: center; }
.rc-jobs__list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 24px auto 0; }
.rc-job-item { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; background: #fff; border: 1.5px solid #dbedf2; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,53,84,0.03); transition: box-shadow 0.2s; text-align: left; }
.rc-job-item:hover { box-shadow: 0 4px 16px rgba(0,53,84,0.08); }
.rc-job-item__left { display: flex; flex-direction: column; gap: 4px; }
.rc-job-item__tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; width: fit-content; margin-bottom: 4px; }
.rc-job-item__left h3 { font-size: 18px; font-weight: 700; color: var(--bt-navy); }
.rc-job-item__left p { font-size: 14px; color: var(--bt-text-mid); }

/* RC Requirements */
.rc-req { padding: 80px; background: var(--bt-cyan-bg); text-align: center; }
.rc-req__card { background: #fff; border-radius: 20px; padding: 40px 48px; max-width: 800px; margin: 0 auto; box-shadow: 0 8px 30px rgba(0,53,84,0.07); display: flex; flex-direction: column; gap: 20px; }
.rc-req__item { display: flex; align-items: center; gap: 16px; text-align: left; }
.rc-req__check { width: 32px; height: 32px; border-radius: 50%; background: rgba(76,175,80,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rc-req__item span { font-size: 16px; font-weight: 500; color: var(--bt-navy); }

/* RC Benefits */
.rc-benefits { padding: 80px; text-align: center; }
.rc-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--bt-container-max); margin: 0 auto 24px; }
.rc-benefit-card { border-radius: 16px; padding: 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.rc-benefit-card__icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.rc-benefit-card h3 { font-size: 16px; font-weight: 700; color: var(--bt-navy); }
.rc-benefit-card p { font-size: 13px; color: var(--bt-text-body); line-height: 1.6; max-width: 280px; }
.rc-benefits__featured { display: flex; justify-content: center; }
.rc-benefits__featured .rc-benefit-card { width: 400px; }

/* RC Process */
.rc-process { padding: 100px 80px; background: var(--bt-cyan-bg); text-align: center; }
.rc-process__header { margin-bottom: 48px; }
.rc-process__tag { display: inline-block; padding: 8px 20px; border-radius: 20px; background: rgba(0,178,212,0.1); color: var(--bt-cyan); font-size: 13px; font-weight: 500; margin-bottom: 16px; }
.rc-process__title { font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 42px; font-weight: 700; color: var(--bt-navy); }
.rc-process__steps { display: flex; justify-content: center; gap: 0; max-width: 1200px; margin: 0 auto; }
.rc-process__step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; gap: 8px; }
.rc-process__circle { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 22px; font-weight: 700; color: #fff; transition: transform 0.2s; }
.rc-process__step:hover .rc-process__circle { transform: scale(1.1); }
.rc-process__connector { width: 2px; height: 20px; background: var(--bt-cyan); }
.rc-process__step h3 { font-size: 15px; font-weight: 600; color: var(--bt-text-dark); }
.rc-process__step p { font-size: 13px; color: var(--bt-text-body); line-height: 1.5; white-space: pre-line; }

/* RC CTA */
.rc-cta { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.rc-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.rc-cta__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1; }
.rc-cta__content { position: relative; z-index: 2; padding: 40px; }
.rc-cta__content h2 { font-family: 'Noto Serif TC', var(--bt-font-display); font-size: 40px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.rc-cta__content p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.rc-cta__btn { display: inline-flex; align-items: center; gap: 12px; background: #FF8C42; color: #fff; padding: 18px 48px; border-radius: 100px; font-size: 18px; font-weight: 700; letter-spacing: 1px; text-decoration: none; box-shadow: 0 4px 16px rgba(255,140,66,0.4); margin-bottom: 24px; transition: transform 0.2s; }
.rc-cta__btn:hover { transform: translateY(-2px); }
.rc-cta__contact { display: flex; justify-content: center; align-items: center; gap: 32px; }
.rc-cta__contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: none; }
.rc-cta__contact a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE — QS / TS / LT / RC
   ============================================================ */
@media (max-width: 1024px) {
    .qs-zigzag, .qs-zigzag--reverse { flex-direction: column; }
    .qs-zigzag__img { flex: none; width: 100%; }
    .qs-services__last { grid-template-columns: 1fr; }
    .qs-pricing__cards { grid-template-columns: 1fr; }
    .qs-live__cards { grid-template-columns: 1fr; }
    .qs-excluded__grid { grid-template-columns: 1fr 1fr; }

    .ts-platforms__grid { grid-template-columns: repeat(2, 1fr); }
    .ts-pricing__row { grid-template-columns: 1fr; }
    .ts-success__grid { grid-template-columns: 1fr; }
    .ts-excluded__grid { grid-template-columns: 1fr 1fr; }

    .lt-dest__grid { grid-template-columns: repeat(2, 1fr); }
    .lt-services__grid { grid-template-columns: repeat(2, 1fr); }
    .lt-regions__panels { grid-template-columns: 1fr; }
    .lt-pricing__cards { grid-template-columns: 1fr; }
    .lt-notes__grid { grid-template-columns: 1fr; }

    .rc-why__cards { grid-template-columns: 1fr; }
    .rc-benefits__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* QS mobile */
    .qs-hero { padding: 100px 20px 60px; }
    .qs-hero__title { font-size: 40px; }
    .qs-hero__timer { flex-wrap: wrap; justify-content: center; }
    .qs-timer__item { min-width: 60px; padding: 12px 16px; }
    .qs-timer__num { font-size: 24px; }
    .qs-services, .qs-process, .qs-pricing, .qs-notes { padding: 48px 20px; }
    .qs-coverage { padding: 48px 20px; }
    .qs-live { padding: 48px 20px; }
    .qs-excluded { padding: 40px 20px; }
    .qs-excluded__grid { grid-template-columns: 1fr; }
    .qs-process__steps { flex-wrap: wrap; justify-content: center; }
    .qs-process__step { flex: 0 0 50%; margin-bottom: 24px; }
    .qs-cta { padding: 60px 20px; }
    .qs-cta__watermark { font-size: 80px; }
    .qs-cta__buttons { flex-direction: column; align-items: center; }

    /* TS mobile */
    .ts-hero { padding: 100px 20px 60px; }
    .ts-hero__title { font-size: 40px; }
    .ts-hero__buttons { flex-direction: column; align-items: center; }
    .ts-platforms { padding: 48px 20px; }
    .ts-platforms__grid { grid-template-columns: 1fr; }
    .ts-types { padding: 40px 20px; }
    .ts-process { padding: 48px 20px; }
    .ts-process__steps { flex-wrap: wrap; justify-content: center; }
    .ts-process__step { flex: 0 0 50%; margin-bottom: 24px; }
    .ts-pricing { padding: 48px 20px; }
    .ts-success { padding: 48px 20px; }
    .ts-excluded { padding: 48px 20px; }
    .ts-excluded__grid { grid-template-columns: 1fr; }
    .ts-notes { padding: 48px 20px; }
    .ts-cta { padding: 60px 20px; }
    .ts-section-header { padding: 0; }

    /* LT mobile */
    .lt-hero { min-height: 420px; }
    .lt-hero__title { font-size: 40px; }
    .lt-intro { padding: 48px 20px; }
    .lt-dest { padding: 40px 20px; }
    .lt-dest__grid { grid-template-columns: 1fr; }
    .lt-dest__card { height: 220px; }
    .lt-services { padding: 48px 20px; }
    .lt-services__grid { grid-template-columns: 1fr; }
    .lt-regions { padding: 48px 20px; }
    .lt-regions__cols { grid-template-columns: 1fr; }
    .lt-process { padding: 48px 20px; }
    .lt-process__steps { flex-wrap: wrap; justify-content: center; }
    .lt-process__step { flex: 0 0 50%; margin-bottom: 24px; }
    .lt-pricing { padding: 48px 20px; }
    .lt-excluded { padding: 20px; }
    .lt-notes { padding: 48px 20px; }
    .lt-cta { height: 320px; }
    .lt-cta__content h2 { font-size: 28px; }
    .lt-cta__buttons { flex-direction: column; align-items: center; }

    /* RC mobile */
    .rc-hero { padding: 100px 20px 60px; }
    .rc-hero__title { font-size: 36px; }
    .rc-hero__badges { flex-direction: column; align-items: center; }
    .rc-why { padding: 48px 20px; }
    .rc-jobs { padding: 48px 20px; }
    .rc-req { padding: 48px 20px; }
    .rc-req__card { padding: 28px 20px; }
    .rc-benefits { padding: 48px 20px; }
    .rc-benefits__grid { grid-template-columns: 1fr; }
    .rc-benefits__featured .rc-benefit-card { width: 100%; }
    .rc-process { padding: 48px 20px; }
    .rc-process__steps { flex-wrap: wrap; justify-content: center; }
    .rc-process__step { flex: 0 0 50%; margin-bottom: 24px; }
    .rc-section-title { font-size: 28px; }
    .rc-cta { padding: 60px 20px; }
    .rc-cta h2 { font-size: 28px; }
    .rc-cta__contact { flex-direction: column; gap: 12px; }
}

/* ===========================
   Order Lookup Page (ol-*)
   =========================== */

/* --- Hero --- */
.ol-hero {
    position: relative;
    overflow: hidden;
}
.ol-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #003554 0%, #001a2e 100%);
}
.ol-hero__overlay {
    display: none;
}
.ol-hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--bt-cyan);
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}
.ol-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 40px 20px;
}
.ol-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(0, 178, 212, 0.2);
    color: var(--bt-cyan);
    font-family: var(--bt-font-body);
    font-size: 13px;
    font-weight: 600;
}
.ol-hero__title {
    font-family: var(--bt-font-display);
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    margin: 20px 0 12px;
}
.ol-hero__subtitle {
    font-family: var(--bt-font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Split Hero (left content + right auth) --- */
.ol-hero--split {
    min-height: auto;
}
.ol-hero__split-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    gap: 48px;
}
.ol-hero--split .ol-hero__content {
    padding: 0;
    text-align: left;
}
.ol-hero__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ol-hero__right {
    flex: 0 0 400px;
    display: flex;
    align-items: flex-start;
}
.ol-hero--split .ol-search-card {
    margin: 32px 0 0;
    max-width: 100%;
}
.ol-auth-card.ol-auth-card--hero {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 40px rgba(0, 53, 84, 0.15);
}
/* Non-split hero (logged-in) keeps original centered layout */
.ol-hero:not(.ol-hero--split) .ol-hero__split-wrap {
    display: block;
    padding: 0;
    max-width: none;
}
.ol-hero:not(.ol-hero--split) .ol-hero__content {
    padding: 140px 40px 20px;
    text-align: center;
}
.ol-hero:not(.ol-hero--split) .ol-search-card {
    max-width: 680px;
    margin: 32px auto 60px;
}

/* --- Search Card (floating on hero) --- */
.ol-search-card {
    position: relative;
    z-index: 3;
    max-width: 680px;
    margin: 32px auto 60px;
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 8px 40px rgba(0, 53, 84, 0.12);
}
.ol-search-form__label {
    display: block;
    font-family: var(--bt-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--bt-navy);
    margin-bottom: 16px;
}
.ol-search-form__row {
    display: flex;
    gap: 12px;
    align-items: center;
}
.ol-search-form__input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #F8FAFC;
    border: 1px solid #DBEDF2;
    border-radius: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ol-search-form__input-wrap:focus-within {
    border-color: var(--bt-cyan);
    box-shadow: 0 0 0 3px rgba(0, 178, 212, 0.1);
}
.ol-search-form__input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--bt-font-body);
    font-size: 16px;
    color: var(--bt-navy);
    outline: none;
}
.ol-search-form__input::placeholder {
    color: #8EAAB8;
}
.ol-search-form__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--bt-cyan);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: var(--bt-font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.ol-search-form__btn:hover {
    background: var(--bt-cyan-dark, #009bb8);
}

/* --- Result Section --- */
.ol-result-section {
    padding: 40px 40px 60px;
    background: #FAFCFD;
}
.ol-container {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Loading --- */
.ol-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    color: var(--bt-text-mid);
}
.ol-loading__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #dbedf2;
    border-top-color: var(--bt-cyan);
    border-radius: 50%;
    animation: ol-spin 0.8s linear infinite;
    margin-bottom: 12px;
}
@keyframes ol-spin {
    to { transform: rotate(360deg); }
}

/* --- Result Card --- */
.ol-result-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 53, 84, 0.07);
}
.ol-result-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: #F8FAFC;
    border-bottom: 1px solid #DBEDF2;
}
.ol-result-card__header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ol-result-card__header-left i {
    color: var(--bt-cyan);
}
.ol-result-card__header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bt-navy);
    margin: 0;
}
.ol-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.ol-status-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.ol-result-card__body {
    padding: 28px;
}

/* Info Grid */
.ol-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.ol-info-item__label {
    font-size: 12px;
    font-weight: 500;
    color: #8EAAB8;
    margin-bottom: 4px;
}
.ol-info-item__value {
    font-size: 15px;
    font-weight: 600;
    color: var(--bt-navy);
}

.ol-divider {
    height: 1px;
    background: #DBEDF2;
    margin: 0 0 24px;
}

/* Details */
.ol-details__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.ol-details__label i {
    width: 16px;
    height: 16px;
    color: var(--bt-text-body);
}
.ol-details__label h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--bt-navy);
    margin: 0;
}
.ol-details__content {
    background: #F8FAFC;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: var(--bt-font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--bt-text-body);
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-bottom: 24px;
}

/* Timeline */
.ol-timeline__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.ol-timeline__label i {
    width: 16px;
    height: 16px;
    color: var(--bt-text-body);
}
.ol-timeline__label h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--bt-navy);
    margin: 0;
}
.ol-timeline__row {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.ol-timeline__row::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #DBEDF2;
    z-index: 0;
}
.ol-timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    position: relative;
    z-index: 1;
}
.ol-timeline__dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.ol-timeline__dot--done {
    background: #7ad03a;
}
.ol-timeline__dot--active {
    background: #00a0d2;
    box-shadow: 0 0 12px rgba(0, 160, 210, 0.25);
}
.ol-timeline__dot--pending {
    background: transparent;
    border: 2px solid #D1D5DB;
}
.ol-timeline__step span {
    font-size: 11px;
    font-weight: 500;
    color: #8EAAB8;
}
.ol-timeline__step--done span { color: #7ad03a; }
.ol-timeline__step--active span { color: #00a0d2; font-weight: 600; }

/* Empty State */
.ol-empty {
    text-align: center;
    padding: 48px 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 53, 84, 0.07);
}
.ol-empty p {
    color: var(--bt-text-mid);
    font-size: 16px;
    margin-top: 12px;
}

/* --- Steps Section --- */
.ol-steps {
    padding: 60px 80px 80px;
    background: #fff;
    text-align: center;
}
.ol-steps__header {
    margin-bottom: 48px;
}
.ol-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 16px;
    background: var(--bt-cyan-light, #ebfafc);
    color: var(--bt-cyan);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}
.ol-steps__title {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--bt-navy);
}
.ol-steps__row {
    display: flex;
    gap: 32px;
    justify-content: center;
    max-width: 1080px;
    margin: 0 auto;
}
.ol-step {
    flex: 1;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
}
.ol-step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(180deg, #00b2d4, #009BB8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bt-font-body);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.ol-step__icon {
    width: 32px;
    height: 32px;
    color: var(--bt-cyan);
}
.ol-step__title {
    font-family: var(--bt-font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--bt-navy);
}
.ol-step__desc {
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.6;
}

/* --- CTA --- */
.ol-cta {
    position: relative;
    padding: 80px 40px;
    overflow: hidden;
    text-align: center;
}
.ol-cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #003554, #001a2e);
}
.ol-cta__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--bt-cyan);
    opacity: 0.06;
    pointer-events: none;
}
.ol-cta__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.ol-cta__title {
    font-family: var(--bt-font-display);
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    margin-bottom: 16px;
}
.ol-cta__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}
.ol-cta__btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.ol-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 30px;
    font-family: var(--bt-font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.ol-cta__btn:hover { opacity: 0.9; }
.ol-cta__btn--primary {
    background: var(--bt-cyan);
    color: #fff;
}
.ol-cta__btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .ol-hero { min-height: 480px; }
    .ol-hero__title { font-size: 32px; }
    .ol-hero__content { padding: 100px 20px 16px; }
    .ol-hero__split-wrap { flex-direction: column; padding: 100px 20px 40px; gap: 32px; }
    .ol-hero--split .ol-hero__content { text-align: center; }
    .ol-hero__right { flex: none; width: 100%; }
    .ol-auth-card--hero { padding: 24px 20px; }
    .ol-search-card { margin: 24px 20px 0; padding: 24px 20px; }
    .ol-search-form__row { flex-direction: column; }
    .ol-search-form__btn { justify-content: center; }
    .ol-result-section { padding: 24px 20px 40px; }
    .ol-info-grid { grid-template-columns: 1fr; }
    .ol-steps { padding: 60px 20px; }
    .ol-steps__title { font-size: 28px; }
    .ol-steps__row { flex-direction: column; align-items: center; }
    .ol-cta__title { font-size: 24px; }
    .ol-cta__btns { flex-direction: column; align-items: center; }
    .ol-timeline__row::before { left: 5%; right: 5%; }
    .ol-timeline__step span { font-size: 10px; }
}

/* ===== Auth Section ===== */
.ol-auth-section {
    padding: 60px 80px 80px;
    background: var(--bt-light-bg);
}
.ol-auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
}
.ol-auth-tabs {
    display: flex;
    border-bottom: 2px solid #e8eef1;
}
.ol-auth-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 16px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-family: var(--bt-font-body);
    font-size: 15px;
    font-weight: 500;
    color: #9bafb9;
    cursor: pointer;
    transition: all 0.2s;
}
.ol-auth-tab:hover {
    color: #fff;
    background: #00b2d4;
    border-bottom-color: #00b2d4;
}
.ol-auth-tab--active {
    color: #fff !important;
    font-weight: 600;
    background: #00b2d4 !important;
    border-bottom-color: #00b2d4 !important;
}
.ol-auth-panel {
    display: none;
    padding: 32px;
}
.ol-auth-panel--active { display: block; }
.ol-auth-desc {
    font-size: 14px;
    color: var(--bt-text-mid);
    margin-bottom: 24px;
    text-align: center;
}
.ol-auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ol-auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--bt-text-dark);
    margin-bottom: 6px;
}
.ol-auth-field input {
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #dde5ea;
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--bt-font-body);
    color: var(--bt-navy);
    transition: border-color 0.2s;
    outline: none;
}
.ol-auth-field input:focus {
    border-color: var(--bt-cyan);
    box-shadow: 0 0 0 3px rgba(0,178,212,0.1);
}
.ol-auth-field input:-webkit-autofill,
.ol-auth-field input:-webkit-autofill:hover,
.ol-auth-field input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    -webkit-text-fill-color: var(--bt-navy);
    transition: background-color 5000s ease-in-out 0s;
}
.ol-auth-error {
    padding: 10px 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 13px;
}
.ol-auth-success {
    padding: 10px 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #16a34a;
    font-size: 13px;
}
.ol-auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--bt-cyan);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--bt-font-body);
    cursor: pointer;
    transition: opacity 0.2s;
}
.ol-auth-submit:hover { opacity: 0.9; }
.ol-auth-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== Auth Input with Icon ===== */
.ol-auth-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #dde5ea;
    border-radius: 12px;
    background: #F8FAFC;
    transition: border-color 0.2s;
}
.ol-auth-input-wrap:focus-within {
    border-color: var(--bt-cyan);
    box-shadow: 0 0 0 3px rgba(0,178,212,0.1);
}
.ol-auth-input-wrap i { color: #8EAAB8; flex-shrink: 0; }
.ol-auth-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: var(--bt-font-body);
    outline: none;
    color: var(--bt-text-dark);
}
.ol-auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 36px 0;
}
.ol-auth-divider span {
    flex: 1;
    height: 1px;
    background: #e8eef1;
}
.ol-auth-divider p {
    font-size: 13px;
    color: var(--bt-text-mid);
    margin: 0;
}
.ol-auth-switch {
    text-align: center;
    font-size: 13px;
    color: var(--bt-text-mid);
    padding: 0 36px 32px;
}

/* ===== Benefits Section (Auth Page) ===== */
.ol-benefits {
    padding: 80px;
    background: #fff;
}
.ol-benefits__header {
    text-align: center;
    margin-bottom: 48px;
}
.ol-benefits__header .ol-tag { margin-bottom: 16px; display: inline-flex; }
.ol-benefits__title {
    font-family: var(--bt-font-display);
    font-size: 36px;
    color: var(--bt-navy);
    margin-top: 16px;
}
.ol-benefits__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.ol-benefit-item {
    text-align: center;
    padding: 32px;
    border-radius: 16px;
    background: #FAFCFD;
    border: 1px solid var(--bt-cyan-bg);
}
.ol-benefit-item__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--bt-cyan-light);
    border-radius: 16px;
    color: var(--bt-cyan);
}
.ol-benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bt-navy);
    margin-bottom: 8px;
}
.ol-benefit-item p {
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ol-benefits { padding: 60px 20px; }
    .ol-benefits__title { font-size: 28px; }
    .ol-benefits__row { grid-template-columns: 1fr; }
}

/* ===== My Orders Section ===== */
.ol-my-orders {
    padding: 60px 80px 80px;
    background: var(--bt-light-bg);
}
.ol-my-orders__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.ol-my-orders__header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ol-my-orders__header h2 {
    font-family: var(--bt-font-display);
    font-size: 28px;
    color: var(--bt-navy);
}
.ol-orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}
.ol-order-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
    cursor: pointer;
}
.ol-order-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.ol-order-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.ol-order-card__number {
    font-size: 16px;
    font-weight: 700;
    color: var(--bt-navy);
    font-family: var(--bt-font-body);
}
.ol-order-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ol-order-card__row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.ol-order-card__label {
    color: var(--bt-text-mid);
}
.ol-order-card__value {
    color: var(--bt-text-dark);
    font-weight: 500;
}
.ol-orders-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--bt-text-mid);
}
.ol-orders-empty i {
    display: block;
    margin: 0 auto 16px;
}

/* ===== Nav User Menu ===== */
.bt-nav__actions,
.bt-nav__right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bt-nav__login-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--bt-navy);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}
.bt-nav__login-link:hover {
    background: rgba(0,53,84,0.05);
}
.bt-nav__icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    background: none;
    padding: 0;
    border-radius: 10px;
    color: var(--bt-navy);
    text-decoration: none;
    cursor: pointer;
    font-size: 0;
    transition: background 0.2s, color 0.2s;
}
.bt-nav__icon-link:hover {
    background: rgba(0,53,84,0.06);
    color: var(--bt-cyan);
}
.bt-nav__user {
    position: relative;
}
.bt-nav__user-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    font-family: var(--bt-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--bt-navy);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.bt-nav__user-btn:hover {
    background: #FFFFFF;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.bt-nav__user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid #e8eef1;
    padding: 6px;
    z-index: 1000;
}
.bt-nav__user-dropdown--open { display: block; }
.bt-nav__user-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    font-family: var(--bt-font-body);
    font-size: 14px;
    color: var(--bt-text-body);
    text-decoration: none;
    border: none;
    background: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
}
.bt-nav__user-item:hover {
    background: var(--bt-cyan-light);
    color: var(--bt-navy);
}

/* ===== Auth / Orders Responsive ===== */
@media (max-width: 768px) {
    .ol-auth-section { padding: 40px 20px 60px; }
    .ol-auth-card { border-radius: 12px; }
    .ol-auth-panel { padding: 24px 20px; }
    .ol-my-orders { padding: 40px 20px 60px; }
    .ol-my-orders__header h2 { font-size: 22px; }
    .ol-orders-grid { grid-template-columns: 1fr; }
    .bt-nav__login-link span { display: none; }
    .bt-nav__user-btn span { display: none; }
}

/* ===== Line 懸浮按鈕 ===== */
.bt-line-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #06C755;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bt-line-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(6, 199, 85, 0.4);
}
.bt-line-fab:active {
    transform: scale(0.95);
}
@media (max-width: 768px) {
    .bt-line-fab {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .bt-line-fab svg {
        width: 24px;
        height: 24px;
    }
}

/* =========================================================
   Fluent Forms - Checkbox Chip Style (for runner form)
   ========================================================= */
.rr-form-card .ff_list_inline .ff-el-input--content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.rr-form-card .ff_list_inline .ff-el-form-check {
    margin: 0 !important;
}
.rr-form-card .ff_list_inline .ff-el-form-check-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    background: #ebfafc;
    border: 1px solid #dbedf2;
    color: #003554;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}
.rr-form-card .ff_list_inline .ff-el-form-check-label:hover {
    background: #dbedf2;
    border-color: #00b2d4;
}
.rr-form-card .ff_list_inline .ff-el-form-check-input {
    appearance: none;
    -webkit-appearance: none;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden;
}
.rr-form-card .ff_list_inline .ff-el-form-check-label.ff_selected {
    background: #003554;
    border-color: #003554;
    color: #fff;
}
/* :has() for modern browsers */
.rr-form-card .ff_list_inline .ff-el-form-check-label:has(input:checked) {
    background: #003554;
    border-color: #003554;
    color: #fff;
}

/* =========================================================
   Runner Registration Page (rr-)
   ========================================================= */

/* Hero */
.rr-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rr-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rr-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #003554 0%, #001a2e 100%);
    opacity: 0.88;
}
.rr-hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #00b2d420 0%, transparent 70%);
    pointer-events: none;
}
.rr-hero__content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}
.rr-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00b2d433;
    color: #00b2d4;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.rr-hero__title {
    font-family: var(--bt-font-display);
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.rr-hero__subtitle {
    font-size: 18px;
    color: #ffffff99;
}

/* Shared tag & section title */
.rr-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bt-cyan-light);
    color: var(--bt-cyan);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 16px;
}
.rr-section-title {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 36px;
    font-weight: bold;
    color: var(--bt-navy);
    text-align: center;
}
.rr-section-desc {
    font-size: 16px;
    color: var(--bt-text-body);
    text-align: center;
    max-width: 600px;
}

/* Why Join */
.rr-why {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 80px 120px;
    background: var(--bt-light-bg);
}
.rr-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: var(--bt-container-max);
}
.rr-why__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--bt-cyan-bg);
    border-radius: 16px;
    text-align: center;
}
.rr-why__icon {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background: var(--bt-cyan-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rr-why__card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bt-navy);
}
.rr-why__card p {
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.6;
}

/* Form Section */
.rr-form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 80px 120px;
    background: #fff;
}
.rr-form-card {
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 32px #00355412;
}

/* Process Steps */
.rr-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 80px 120px;
    background: var(--bt-light-bg);
}
.rr-process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: var(--bt-container-max);
}
.rr-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px 24px;
    text-align: center;
}
.rr-process__circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bt-font-body);
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}
.rr-process__step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bt-navy);
}
.rr-process__step p {
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.6;
}

/* CTA */
.rr-cta {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.rr-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #003554 0%, #001a2e 100%);
}
.rr-cta__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #00b2d418 0%, transparent 70%);
    pointer-events: none;
}
.rr-cta__content {
    position: relative;
    text-align: center;
    max-width: 700px;
}
.rr-cta__content h2 {
    font-family: var(--bt-font-display);
    font-size: 32px;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    margin-bottom: 16px;
}
.rr-cta__content p {
    font-size: 16px;
    color: #ffffff99;
    margin-bottom: 24px;
    line-height: 1.6;
}
.rr-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .rr-why, .rr-form-section, .rr-process { padding: 60px 40px; }
    .rr-why__grid { grid-template-columns: repeat(2, 1fr); }
    .rr-process__steps { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
    .rr-hero { height: 360px; }
    .rr-hero__title { font-size: 32px; }
    .rr-why, .rr-form-section, .rr-process { padding: 48px 20px; }
    .rr-why__grid { grid-template-columns: 1fr; }
    .rr-process__steps { grid-template-columns: 1fr; }
    .rr-form-card { padding: 24px; }
    .rr-section-title { font-size: 28px; }
    .rr-cta { height: auto; padding: 60px 20px; }
    .rr-cta__buttons { flex-direction: column; align-items: center; }
}

/* =========================================================
   Contact Page (ct-)
   ========================================================= */

/* Hero */
.ct-hero {
    position: relative;
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ct-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ct-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #003554 0%, #001a2e 100%);
    opacity: 0.88;
}
.ct-hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #00b2d420 0%, transparent 70%);
    pointer-events: none;
}
.ct-hero__content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}
.ct-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00b2d433;
    color: #00b2d4;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.ct-hero__title {
    font-family: var(--bt-font-display);
    font-size: 52px;
    font-weight: bold;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.ct-hero__subtitle {
    font-size: 18px;
    color: #ffffff99;
}

/* Shared tag & section title */
.ct-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bt-cyan-light);
    color: var(--bt-cyan);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 16px;
}
.ct-section-title {
    font-family: 'Noto Serif TC', var(--bt-font-display);
    font-size: 36px;
    font-weight: bold;
    color: var(--bt-navy);
    text-align: center;
}
.ct-section-desc {
    font-size: 16px;
    color: var(--bt-text-body);
    text-align: center;
    max-width: 600px;
}

/* Contact Cards */
.ct-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 80px 120px;
    background: var(--bt-light-bg);
}
.ct-cards__row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1400px;
}
.ct-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 36px;
    background: #fff;
    border: 1px solid var(--bt-cyan-bg);
    border-radius: 20px;
    box-shadow: 0 2px 24px #00355408;
    text-align: center;
}
.ct-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--bt-navy);
}
.ct-card p {
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.7;
}
.ct-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ct-card__icon--line { background: #06C755; }
.ct-card__icon--navy { background: var(--bt-navy); }
.ct-card__icon--cyan { background: var(--bt-cyan); }
.ct-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}
.ct-card__btn:hover { opacity: 0.85; }
.ct-card__btn--line { background: #06C755; }
.ct-card__btn--navy { background: var(--bt-navy); }
.ct-card__btn--cyan { background: var(--bt-cyan); }

/* Contact Form */
.ct-form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 80px 120px;
    background: #fff;
}
.ct-form-card {
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 32px #00355412;
}

/* FAQ */
.ct-faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 80px 120px;
    background: var(--bt-light-bg);
}
.ct-faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 800px;
}
.ct-faq__item {
    background: var(--bt-light-bg);
    border: 1px solid var(--bt-cyan-bg);
    border-radius: 16px;
    overflow: hidden;
}
.ct-faq__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}
.ct-faq__header:hover {
    background: #f0f6f8;
}
.ct-faq__q {
    font-size: 16px;
    font-weight: 600;
    color: var(--bt-navy);
}
.ct-faq__arrow {
    color: var(--bt-text-mid);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.ct-faq__item--open .ct-faq__arrow {
    transform: rotate(180deg);
}
.ct-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.ct-faq__item--open .ct-faq__answer {
    max-height: 200px;
    padding: 0 28px 24px;
}
.ct-faq__answer p {
    font-size: 14px;
    color: var(--bt-text-body);
    line-height: 1.7;
}

/* CTA */
.ct-cta {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ct-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #003554 0%, #001a2e 100%);
}
.ct-cta__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #00b2d418 0%, transparent 70%);
    pointer-events: none;
}
.ct-cta__content {
    position: relative;
    text-align: center;
    max-width: 700px;
}
.ct-cta__content h2 {
    font-family: var(--bt-font-display);
    font-size: 32px;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    margin-bottom: 16px;
}
.ct-cta__content p {
    font-size: 16px;
    color: #ffffff99;
    margin-bottom: 24px;
    line-height: 1.6;
}
.ct-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .ct-cards, .ct-form-section, .ct-faq { padding: 60px 40px; }
}
@media (max-width: 1100px) {
    .ct-cards__row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .ct-hero { height: 320px; }
    .ct-hero__title { font-size: 36px; }
    .ct-cards, .ct-form-section, .ct-faq { padding: 48px 20px; }
    .ct-cards__row { grid-template-columns: 1fr; }
    .ct-form-card { padding: 24px; }
    .ct-section-title { font-size: 28px; }
    .ct-cta { height: auto; padding: 60px 20px; }
    .ct-cta__buttons { flex-direction: column; align-items: center; }
}

/* Hide Kadence default header — use custom bt-nav instead */
#masthead,
#mobile-header,
.site-header-wrap {
    display: none !important;
}
