* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-base: #f4f8fb;
    --bg-panel: #ffffff;
    --bg-card: #ffffff;
    --bg-ink: #0057b8;
    --text-strong: #1a1a2e;
    --text-muted: #4a5568;
    --text-soft: #718096;
    --line-soft: #e2ecf4;
    --line-strong: #c4d4e0;
    --accent-blue: #e6f2ff;
    --accent-mint: #e6f4ff;
    --accent-peach: #e6f0ff;
    --accent-warm: #e6f0ff;
    --accent-sand: #f0f4f8;
    --shadow-soft: 0 20px 60px rgba(0, 87, 184, 0.08);
    --shadow-card: 0 14px 32px rgba(0, 87, 184, 0.06);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 110px;
}

body {
    background:
        radial-gradient(circle at top left, rgba(0, 87, 184, 0.04), transparent 28%),
        radial-gradient(circle at top right, rgba(0, 87, 184, 0.06), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, var(--bg-base) 100%);
    color: var(--text-strong);
    font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
}

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

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

.site-shell {
    min-height: 100vh;
}

.container {
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 24px;
}

.site-header {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 87, 184, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    min-height: 84px;
}

.brand {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    min-width: 0;
}

.brand-logo {
    display: block;
    height: 58px;
    object-fit: contain;
    width: 58px;
}

.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 24px;
}

.site-nav a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text-strong);
}

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

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.button-primary {
    background: var(--bg-ink);
    box-shadow: 0 10px 22px rgba(0, 87, 184, 0.2);
    color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 14px 28px rgba(0, 87, 184, 0.3);
}

.button-secondary,
.button-ghost {
    background: rgba(255, 255, 255, 0.66);
    border-color: var(--line-soft);
    color: var(--text-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
    background: #ffffff;
    border-color: var(--line-strong);
}

.hero {
    padding: 52px 0 72px;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.hero-badge {
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    display: inline-flex;
    gap: 12px;
    margin-bottom: 18px;
    padding: 8px 14px 8px 8px;
}

.hero-badge img {
    display: block;
    height: 34px;
    width: 34px;
}

.hero-badge span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.badge-live-dot {
    background: var(--bg-ink);
    border-radius: 999px;
    display: inline-block;
    flex-shrink: 0;
    height: 8px;
    position: relative;
    width: 8px;
}

.badge-live-dot::after {
    animation: livePulse 2s ease-in-out infinite;
    background: var(--bg-ink);
    border-radius: 999px;
    content: "";
    height: 8px;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 8px;
}

@keyframes livePulse {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 0; transform: scale(2.2); }
    100% { opacity: 0; transform: scale(2.2); }
}

.eyebrow,
.section-kicker,
.card-topline,
.mini-label,
.journey-phase {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.eyebrow span {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    padding: 8px 12px;
}

.hero h1 {
    font-size: clamp(3.4rem, 6vw, 4.9rem);
    letter-spacing: -0.05em;
    line-height: 0.96;
    margin-bottom: 22px;
}

.hero-text {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 28px;
    max-width: 620px;
}

.hero-notes {
    color: var(--text-soft);
    display: flex;
    flex-direction: column;
    font-size: 13px;
    gap: 8px;
    margin-top: 22px;
}

.hero-visual {
    position: relative;
}

.hero-stack {
    min-height: 620px;
    position: relative;
}

.glass-card,
.bento-card,
.journey-card,
.proof-panel,
.stat-card,
.resource-note,
.resource-list,
.cta-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 87, 184, 0.08);
    box-shadow: var(--shadow-card);
}

.hero-panel {
    border-radius: var(--radius-xl);
    position: absolute;
}

.hero-panel-main {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(223, 241, 255, 0.88));
    inset: 54px 36px 52px 0;
    overflow: hidden;
    padding: 24px;
}

.hero-panel-header {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.dot {
    border-radius: 999px;
    display: inline-block;
    height: 10px;
    width: 10px;
}

.dot-blue {
    background: #8dcfff;
}

.dot-peach {
    background: #a0ccee;
}

.dot-mint {
    background: #7ec8e3;
}

.hero-panel-body h2 {
    font-size: 30px;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin: 10px 0 24px;
    max-width: 420px;
}

.hero-panel-body h2 .news-en {
    display: block;
    font-size: 18px;
    font-weight: 400;
    margin-top: 6px;
}

.hero-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.hero-metric {
    background: rgba(223, 241, 255, 0.72);
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    display: grid;
    gap: 4px;
    padding: 14px;
}

.hero-metric strong {
    font-size: 14px;
}

.hero-metric span {
    color: var(--text-muted);
    font-size: 12px;
}

.signal-list {
    display: grid;
    gap: 14px;
    list-style: none;
}

.signal-list li {
    background: rgba(223, 241, 255, 0.62);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    display: grid;
    gap: 6px;
    padding: 18px;
}

.signal-title {
    font-size: 15px;
    font-weight: 700;
}

.signal-copy {
    color: var(--text-muted);
    font-size: 14px;
}

.hero-panel-side {
    border-radius: 24px;
    padding: 20px;
    width: 224px;
}

.hero-panel-side strong {
    display: block;
    font-size: 20px;
    letter-spacing: -0.03em;
    margin: 10px 0 8px;
}

.hero-panel-side p {
    color: var(--text-muted);
    font-size: 14px;
}

.hero-panel-side-top {
    background: linear-gradient(180deg, rgba(223, 241, 255, 0.92), rgba(255, 255, 255, 0.86));
    right: 0;
    top: 0;
}

.hero-panel-side-bottom {
    background: linear-gradient(180deg, rgba(230, 242, 255, 0.96), rgba(255, 255, 255, 0.88));
    bottom: 0;
    right: 24px;
}

.hero-panel-side-middle {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(200, 230, 255, 0.86));
    right: 48px;
    top: 170px;
}

.compact-list {
    color: var(--text-muted);
    display: grid;
    gap: 8px;
    list-style: none;
    margin-top: 12px;
}

.compact-list li {
    align-items: center;
    display: flex;
    font-size: 13px;
    gap: 8px;
}

.compact-list li::before {
    background: var(--text-strong);
    border-radius: 999px;
    content: "";
    display: inline-block;
    flex: 0 0 6px;
    height: 6px;
    opacity: 0.4;
    width: 6px;
}

.section {
    padding: 104px 0;
}

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

.section-heading h2,
.proof-panel h2,
.resource-note h2,
.cta-card h2 {
    font-size: clamp(2.2rem, 4.4vw, 3.3rem);
    letter-spacing: -0.045em;
    line-height: 1.04;
    margin: 12px 0 14px;
}

.section-heading p,
.proof-panel p,
.resource-note p,
.cta-card p,
.resource-item p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 700px;
}

.trust-band {
    padding-bottom: 12px;
}

.trust-band-inner {
    align-items: center;
    border-top: 1px solid rgba(0, 87, 184, 0.12);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding-top: 30px;
}

.trust-band p {
    color: var(--text-soft);
    font-size: 14px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.trust-logos span {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
}

.partner-wall {
    padding-top: 44px;
    padding-bottom: 34px;
}

.partner-strip {
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(196, 212, 224, 0.9);
    border-radius: 32px;
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    padding: 28px;
}

.partner-copy h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.045em;
    line-height: 1.05;
    margin: 12px 0 10px;
}

.partner-copy p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 620px;
}

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

.partner-chip {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(223, 241, 255, 0.92));
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    padding: 18px;
}

.partner-chip small {
    color: var(--text-muted);
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    margin-top: 8px;
}

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

.bento-card {
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 240px;
    overflow: hidden;
    padding: 28px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bento-card:hover {
    box-shadow: 0 24px 52px rgba(0, 87, 184, 0.12);
    transform: translateY(-3px);
}

.bento-card h3,
.journey-card h3,
.resource-item h3 {
    font-size: 26px;
    letter-spacing: -0.035em;
    line-height: 1.14;
}

.bento-card p,
.journey-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.bento-card img {
    border-radius: 22px;
    margin-top: auto;
}

.bento-large {
    background: linear-gradient(180deg, rgba(223, 241, 255, 0.92), rgba(255, 255, 255, 0.92));
    grid-column: span 7;
    min-height: 460px;
}

.bento-wide {
    background: linear-gradient(180deg, rgba(200, 228, 255, 0.92), rgba(255, 255, 255, 0.92));
    grid-column: span 6;
}

.bento-blue {
    background: linear-gradient(180deg, rgba(223, 241, 255, 0.92), rgba(255, 255, 255, 0.92));
}

.bento-peach {
    background: linear-gradient(180deg, rgba(200, 228, 255, 0.92), rgba(255, 255, 255, 0.92));
}

.bento-mint {
    background: linear-gradient(180deg, rgba(200, 228, 255, 0.96), rgba(255, 255, 255, 0.92));
}

.bento-ink {
    background: linear-gradient(180deg, #2b2b2b, #171717);
    color: #ffffff;
}

.bento-ink .card-topline,
.bento-ink p {
    color: rgba(255, 255, 255, 0.72);
}

.bento-grid > article:nth-child(1) {
    grid-column: span 7;
}

.bento-grid > article:nth-child(2) {
    grid-column: span 5;
}

.bento-grid > article:nth-child(3) {
    grid-column: span 5;
}

.bento-grid > article:nth-child(4) {
    grid-column: span 6;
}

.bento-grid > article:nth-child(5) {
    grid-column: span 6;
}

.bento-grid > article:nth-child(6) {
    grid-column: span 6;
}

.bento-grid > article:nth-child(7) {
    grid-column: span 12;
}

.bento-grid > article:nth-child(8) {
    grid-column: span 6;
}

.bento-grid > article:nth-child(9) {
    grid-column: span 6;
}

.journey-grid {
    display: grid;
    gap: 28px;
}

.showcase {
    padding-top: 28px;
}

.showcase-grid {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.showcase-copy,
.showcase-visual,
.faq-intro,
.booking-copy,
.booking-card,
.case-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(196, 212, 224, 0.9);
    box-shadow: var(--shadow-card);
}

.showcase-copy,
.faq-intro,
.booking-copy {
    border-radius: 30px;
    padding: 32px;
}

.showcase-copy h2,
.faq-intro h2,
.booking-copy h2 {
    font-size: clamp(2.1rem, 4vw, 3rem);
    letter-spacing: -0.045em;
    line-height: 1.05;
    margin: 12px 0 12px;
}

.showcase-copy p,
.faq-intro p,
.booking-copy p {
    color: var(--text-muted);
    font-size: 16px;
}

.showcase-visual {
    border-radius: 30px;
    overflow: hidden;
    padding: 12px;
}

.showcase-points,
.booking-list {
    color: var(--text-muted);
    display: grid;
    gap: 12px;
    list-style: none;
    margin-top: 22px;
}

.showcase-points li,
.booking-list li {
    align-items: flex-start;
    display: flex;
    gap: 10px;
}

.showcase-points li::before,
.booking-list li::before {
    background: var(--text-strong);
    border-radius: 999px;
    content: "";
    display: inline-block;
    flex: 0 0 8px;
    height: 8px;
    margin-top: 8px;
    opacity: 0.38;
    width: 8px;
}

.case-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
    border-radius: 28px;
    display: grid;
    gap: 16px;
    min-height: 250px;
    padding: 28px;
}

.case-label {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case-card h3 {
    font-size: 26px;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.case-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.case-card a {
    font-size: 14px;
    font-weight: 700;
}

.journey-cards {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.journey-card {
    border-radius: 28px;
    min-height: 280px;
    padding: 28px;
}

.journey-phase {
    display: inline-block;
    margin-bottom: 18px;
}

.proof-grid,
.resources-grid {
    align-items: start;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.proof-panel,
.resource-note {
    border-radius: 30px;
    padding: 34px;
}

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

.stat-card {
    border-radius: 28px;
    min-height: 160px;
    padding: 28px;
}

.stat-card strong {
    display: block;
    font-size: 42px;
    letter-spacing: -0.05em;
    margin-bottom: 10px;
}

.stat-card span {
    color: var(--text-muted);
    font-size: 15px;
}

.stat-card .news-en {
    margin-top: 8px;
}

.resource-list {
    border-radius: 30px;
    display: grid;
    gap: 1px;
    overflow: hidden;
}

.resource-item {
    background: rgba(255, 255, 255, 0.78);
    padding: 28px 30px;
}

.resource-item + .resource-item {
    border-top: 1px solid rgba(196, 212, 224, 0.88);
}

.faq-grid,
.booking-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(196, 212, 224, 0.9);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    padding: 0 24px;
}

.faq-item summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    list-style: none;
    padding: 22px 0;
    position: relative;
}

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

.faq-item summary::after {
    color: var(--text-soft);
    content: "+";
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 18px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    color: var(--text-muted);
    font-size: 15px;
    padding: 0 0 22px;
}

.booking-card {
    border-radius: 30px;
    display: grid;
    gap: 16px;
    padding: 28px;
}

.booking-card label {
    display: grid;
    gap: 8px;
}

.booking-card span {
    font-size: 13px;
    font-weight: 700;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
    appearance: none;
    background: #f4f8fb;
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    color: var(--text-strong);
    font: inherit;
    padding: 14px 16px;
    resize: vertical;
    width: 100%;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
    border-color: #b9d8ee;
    box-shadow: 0 0 0 4px rgba(223, 241, 255, 0.9);
    outline: none;
}

.booking-actions {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding-top: 8px;
}

.booking-actions span {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 500;
}

.cta-section {
    padding-top: 40px;
    padding-bottom: 110px;
}

.cta-card {
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(223, 241, 255, 0.9), transparent 24%),
        radial-gradient(circle at bottom left, rgba(200, 228, 255, 0.75), transparent 28%),
        rgba(255, 255, 255, 0.86);
    border-radius: 34px;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 38px;
}

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

.news-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(196, 212, 224, 0.9);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 12px;
    padding: 28px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.news-label {
    color: var(--bg-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.news-card h3 {
    font-size: 20px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.news-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.news-card:hover {
    border-color: rgba(0, 87, 184, 0.2);
    box-shadow: 0 20px 48px rgba(0, 87, 184, 0.1);
    transform: translateY(-2px);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.news-date {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 600;
    margin-top: auto;
}

.news-en {
    color: var(--text-soft);
    font-size: 13px;
    font-style: italic;
    line-height: 1.5;
}

.sources-list {
    border-top: 1px solid var(--line-soft);
    margin-top: 40px;
    padding-top: 24px;
}

.sources-label {
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.sources-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    list-style: none;
}

.sources-list li {
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.6;
}

.sources-list .source-name {
    color: var(--bg-ink);
    font-weight: 600;
}

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

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .reveal-delay-1,
    .reveal-delay-2 {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .button {
        transition: none;
    }
}

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

    .hero-grid,
    .partner-strip,
    .showcase-grid,
    .proof-grid,
    .faq-grid,
    .booking-grid,
    .resources-grid,
    .cta-card {
        grid-template-columns: 1fr;
    }

    .hero-stack {
        min-height: 680px;
    }

    .hero-panel-main {
        inset: 50px 16px 48px 0;
    }

    .hero-panel-side {
        width: 200px;
    }

    .hero-panel-side-middle {
        right: 14px;
        top: 206px;
    }

    .bento-large,
    .bento-wide,
    .bento-grid > article:nth-child(2),
    .bento-grid > article:nth-child(3),
    .bento-grid > article:nth-child(5),
    .bento-grid > article:nth-child(6),
    .bento-grid > article:nth-child(7),
    .bento-grid > article:nth-child(8),
    .bento-grid > article:nth-child(9) {
        grid-column: span 12;
    }

    .journey-cards {
        grid-template-columns: 1fr;
    }

    .case-grid,
    .partner-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .trust-band-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .trust-logos {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .container {
        padding: 0 18px;
    }

    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }

    .brand {
        width: 100%;
    }

    .brand-logo {
        height: 50px;
        width: 50px;
    }

    .hero-badge {
        margin-bottom: 16px;
    }

    .header-actions {
        width: 100%;
    }

    .header-actions .button {
        flex: 1;
    }

    .hero {
        padding-top: 24px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-text,
    .section-heading p,
    .partner-copy p,
    .showcase-copy p,
    .proof-panel p,
    .faq-intro p,
    .booking-copy p,
    .resource-note p,
    .cta-card p,
    .resource-item p {
        font-size: 16px;
    }

    .hero-stack {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .hero-panel {
        position: static;
        width: 100%;
    }

    .hero-panel-main,
    .hero-panel-side {
        padding: 20px;
    }

    .partner-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 78px 0;
    }

    .bento-card,
    .journey-card,
    .showcase-copy,
    .showcase-visual,
    .case-card,
    .proof-panel,
    .faq-intro,
    .faq-item,
    .booking-copy,
    .booking-card,
    .stat-card,
    .resource-note,
    .resource-item,
    .cta-card,
    .news-card {
        border-radius: 24px;
        padding: 24px;
    }

    .bento-card h3,
    .journey-card h3,
    .case-card h3,
    .resource-item h3 {
        font-size: 22px;
    }

    .stat-card strong {
        font-size: 40px;
    }

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

    .hero-actions .button,
    .cta-actions .button,
    .booking-actions .button {
        width: 100%;
    }
}

/* ========================================
   Forum Styles
   ======================================== */

.forum-section {
    padding: 104px 0;
    background: var(--bg-base);
}

.forum-header {
    margin-bottom: 32px;
}

.forum-header h2 {
    font-size: clamp(2.2rem, 4.4vw, 3.3rem);
    letter-spacing: -0.045em;
    line-height: 1.04;
    margin: 12px 0 14px;
}

.forum-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.category-chip {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    transition: all 0.2s ease;
}

.category-chip:hover {
    background: #ffffff;
    border-color: var(--line-strong);
    color: var(--text-strong);
}

.category-chip.active {
    background: var(--bg-ink);
    border-color: var(--bg-ink);
    color: #ffffff;
}

.forum-posts {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(196, 212, 224, 0.9);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.posts-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.posts-count {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 600;
}

.posts-list {
    display: grid;
    gap: 14px;
}

.post-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    gap: 16px;
    padding: 22px;
    transition: all 0.22s ease;
}

.post-card:hover {
    border-color: rgba(0, 87, 184, 0.2);
    box-shadow: 0 12px 32px rgba(0, 87, 184, 0.08);
    transform: translateY(-2px);
}

.post-type {
    font-size: 28px;
    flex-shrink: 0;
}

.post-main {
    flex: 1;
    min-width: 0;
}

.post-title-row {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.post-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-status {
    border-radius: 999px;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    text-transform: uppercase;
}

.status-closed {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-soft);
}

.status-resolved {
    background: rgba(0, 200, 83, 0.12);
    color: #00c853;
}

.post-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.post-author,
.post-time,
.post-category {
    color: var(--text-soft);
    font-size: 13px;
}

.post-category {
    align-items: center;
    background: rgba(0, 87, 184, 0.08);
    border-radius: 999px;
    color: var(--bg-ink);
    display: inline-flex;
    gap: 6px;
    padding: 4px 10px;
}

.post-stats {
    display: flex;
    gap: 16px;
}

.post-stats span {
    color: var(--text-soft);
    font-size: 13px;
}

.forum-loading,
.forum-empty,
.forum-error {
    color: var(--text-soft);
    font-size: 16px;
    padding: 48px 24px;
    text-align: center;
}

.forum-error {
    color: #ef4444;
}

/* Post Detail View */
.forum-post-detail {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(196, 212, 224, 0.9);
    border-radius: 28px;
    display: none;
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.forum-post-detail.active {
    display: block;
}

.post-detail-header {
    align-items: center;
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.back-button {
    background: none;
    border: none;
    color: var(--bg-ink);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
}

.back-button:hover {
    text-decoration: underline;
}

.post-full {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    margin-bottom: 28px;
    padding: 32px;
}

.post-full-header {
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 24px;
    padding-bottom: 20px;
}

.post-full-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.post-full-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.post-author {
    align-items: center;
    display: flex;
    gap: 6px;
    font-weight: 600;
}

.role-badge {
    background: rgba(0, 87, 184, 0.1);
    border-radius: 999px;
    color: var(--bg-ink);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    text-transform: uppercase;
}

.post-status-badge {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    text-transform: uppercase;
}

.post-status-badge.open {
    background: rgba(0, 87, 184, 0.1);
    color: var(--bg-ink);
}

.post-status-badge.closed {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-soft);
}

.post-status-badge.resolved {
    background: rgba(0, 200, 83, 0.12);
    color: #00c853;
}

.post-full-content {
    color: var(--text-strong);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.post-full-content code {
    background: rgba(0, 87, 184, 0.08);
    border-radius: 6px;
    color: var(--bg-ink);
    font-family: "SF Mono", "Fira Code", monospace;
    font-size: 14px;
    padding: 2px 6px;
}

.post-full-content pre {
    background: #1a1a2e;
    border-radius: 12px;
    color: #e2e8f0;
    font-family: "SF Mono", "Fira Code", monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 0;
    overflow-x: auto;
    padding: 20px;
}

.post-full-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.post-full-content strong {
    font-weight: 700;
}

.post-full-content a {
    color: var(--bg-ink);
    text-decoration: underline;
}

.post-full-footer {
    border-top: 1px solid var(--line-soft);
    padding-top: 20px;
}

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

.action-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    gap: 6px;
    padding: 8px 14px;
    transition: all 0.2s ease;
}

.action-button:hover:not(.disabled) {
    background: #ffffff;
    border-color: var(--line-strong);
    color: var(--text-strong);
}

.action-button.disabled {
    cursor: default;
    opacity: 0.6;
}

.action-button.danger:hover:not(.disabled) {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.action-button.accept {
    background: rgba(0, 200, 83, 0.08);
    border-color: rgba(0, 200, 83, 0.3);
    color: #00c853;
}

.action-button.accept:hover {
    background: rgba(0, 200, 83, 0.15);
}

.reply-form-container {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    margin-top: 20px;
    padding: 20px;
}

.reply-form-container textarea {
    background: #f4f8fb;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    font: inherit;
    min-height: 100px;
    padding: 14px 16px;
    resize: vertical;
    width: 100%;
}

.reply-form-container textarea:focus {
    border-color: #b9d8ee;
    box-shadow: 0 0 0 4px rgba(223, 241, 255, 0.9);
    outline: none;
}

.reply-form-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 14px;
}

/* Replies Section */
.replies-section {
    margin-top: 28px;
}

.replies-section h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.replies-list {
    display: grid;
    gap: 16px;
}

.reply-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    padding: 22px;
    position: relative;
}

.reply-item.accepted {
    border-color: rgba(0, 200, 83, 0.4);
    background: rgba(0, 200, 83, 0.04);
}

.accepted-badge {
    background: rgba(0, 200, 83, 0.12);
    border-radius: 999px;
    color: #00c853;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 5px 12px;
    display: inline-block;
}

.reply-header {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.reply-author {
    align-items: center;
    display: flex;
    gap: 6px;
    font-weight: 600;
    font-size: 15px;
}

.reply-time {
    color: var(--text-soft);
    font-size: 13px;
}

.reply-content {
    color: var(--text-strong);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.reply-content code {
    background: rgba(0, 87, 184, 0.08);
    border-radius: 4px;
    color: var(--bg-ink);
    font-family: "SF Mono", "Fira Code", monospace;
    font-size: 13px;
    padding: 2px 5px;
}

.reply-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* New Post Form */
.forum-new-post {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(196, 212, 224, 0.9);
    border-radius: 28px;
    display: none;
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.forum-new-post.active {
    display: block;
}

.forum-new-post h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

#new-post-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    appearance: none;
    background: #f4f8fb;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    color: var(--text-strong);
    font: inherit;
    padding: 14px 16px;
    resize: vertical;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b9d8ee;
    box-shadow: 0 0 0 4px rgba(223, 241, 255, 0.9);
    outline: none;
}

.form-row {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.post-preview {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 20px;
}

.post-preview-label {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.post-preview-content {
    color: var(--text-strong);
    font-size: 15px;
    line-height: 1.7;
}

.form-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Auth Modal */
.auth-modal {
    background: rgba(0, 0, 0, 0.5);
    display: none;
    inset: 0;
    position: fixed;
    z-index: 100;
}

.auth-modal.active {
    display: flex;
}

.auth-modal-content {
    background: #ffffff;
    border-radius: 24px;
    margin: auto;
    max-width: 420px;
    padding: 32px;
    width: 90%;
}

.auth-modal h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.auth-modal p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

#auth-form {
    display: grid;
    gap: 16px;
}

#auth-form label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
}

#auth-form input {
    appearance: none;
    background: #f4f8fb;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    color: var(--text-strong);
    font: inherit;
    padding: 12px 14px;
    width: 100%;
}

#auth-form input:focus {
    border-color: #b9d8ee;
    box-shadow: 0 0 0 4px rgba(223, 241, 255, 0.9);
    outline: none;
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.auth-tab {
    background: none;
    border: none;
    color: var(--text-soft);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    position: relative;
}

.auth-tab.active {
    color: var(--bg-ink);
}

.auth-tab.active::after {
    background: var(--bg-ink);
    border-radius: 999px;
    bottom: 0;
    content: "";
    height: 3px;
    left: 16px;
    right: 16px;
    position: absolute;
}

.auth-footer {
    margin-top: 16px;
    text-align: center;
}

.auth-footer button {
    background: none;
    border: none;
    color: var(--bg-ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.auth-footer button:hover {
    text-decoration: underline;
}

@media (max-width: 760px) {
    .forum-section {
        padding: 78px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .post-full {
        padding: 22px;
    }

    .post-full-title {
        font-size: 22px;
    }

    .post-title-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
