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

:root {
    --ink: #0f1a2b;
    --mid: #1f3a4b;
    --accent: #1f5fae;
    --accent-dark: #2a7dd8;
    --warm-soft: #fff7ef;
    --warm-accent: #e8b86d;
    --warm-coral: #ef8f7a;
    --header-height: 70px;
    --gold: #f2c14e;
    --mist: #f6f7fb;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(12, 22, 45, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    line-height: 1.65;
    color: var(--ink);
    background: #f4f7fb;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1f5fae 0%, #2a7dd8 58%, #3a8ee8 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    height: var(--header-height);
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--white);
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-text h1,
.brand-text h2 {
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

.brand-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 380px;
    list-style: none;
    padding: 0.25rem 0;
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(8, 18, 38, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #1f5fae 0%, #2a7dd8 100%);
    color: white;
}

.dropdown-menu a.active {
    background: linear-gradient(135deg, #1f5fae 0%, #2a7dd8 100%);
    color: white;
}

.dropdown.active > .dropdown-toggle::after {
    width: 100%;
}

.dropdown-menu a::after {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero */
.hero {
    padding: 80px 0 60px;
    margin-top: 0;
    background:
        linear-gradient(140deg, rgba(249, 252, 255, 0.55) 0%, rgba(238, 243, 249, 0.55) 40%, rgba(230, 245, 242, 0.55) 100%),
        url("../../images/banner.png") center/cover no-repeat;
}

.hero-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: #5c728e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    color: var(--mid);
    line-height: 1.15;
}

.hero-content p {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #3a4e69;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(1.02rem, 2vw, 1.18rem);
    font-weight: 800;
    color: var(--mid);
    margin-bottom: 0.8rem;
}

.hero-empathy {
    max-width: 760px;
    margin: 0 auto 1.75rem;
    color: #516480;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.hero-text-links {
    text-align: center;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.hero-text-links a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}

.hero-text-links a::after {
    content: ' →';
}

.hero-text-links a:hover {
    border-bottom-color: #fff;
}

.hero-actions .cta-button {
    min-width: 220px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1f5fae 0%, #2a7dd8 100%);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 220px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(31, 95, 174, 0.22);
}

.cta-button:hover {
    background: linear-gradient(135deg, #163768 0%, #1f5fae 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(31, 95, 174, 0.32);
}

.ghost-button {
    display: inline-block;
    background: #ffffff;
    border: 1.5px solid #4B5563;
    color: #4B5563;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ghost-button:hover {
    background: #ffffff;
    border-color: #1f5fae;
    color: #1f5fae;
    transform: translateY(-1px);
}

.hero-content > div[style*="justify-content:center"] {
    margin-top: 0.55rem !important;
    gap: 0.65rem !important;
}

.hero-content > div[style*="justify-content:center"] .ghost-button {
    min-width: auto;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(36, 48, 65, 0.16) !important;
    background: rgba(255, 255, 255, 0.82) !important;
    color: #243041 !important;
    box-shadow: 0 8px 22px rgba(36, 48, 65, 0.08) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-content > div[style*="justify-content:center"] .ghost-button:hover {
    background: rgba(255, 255, 255, 0.94) !important;
    border-color: rgba(31, 95, 174, 0.32) !important;
    color: #1f5fae !important;
    transform: translateY(-1px);
}

.hero-secondary-link {
    margin-bottom: 1rem;
}

.hero-secondary-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--mid);
    font-weight: 700;
    text-decoration: none;
}

.hero-secondary-link a:hover {
    color: var(--accent-dark);
}

.hero-secondary-link-muted a {
    font-size: 0.95rem;
    font-weight: 600;
    color: #637792;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.hero-proof-grid {
    width: 100%;
    max-width: 1280px;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    justify-content: center;
    gap: 1.05rem;
    margin: 0.8rem auto 1.25rem;
}

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

.highlight {
    background: var(--white);
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.hero-proof-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: start;
    min-height: 100%;
    text-align: left;
    padding: 1rem 1rem 0.95rem;
}

.hero-proof-head {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.8rem;
    align-items: center;
}

.hero-proof-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    background: rgba(31, 95, 174, 0.1);
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-proof-meta {
    min-width: 0;
}

.hero-proof-card strong {
    display: inline-block;
    margin-bottom: 0.16rem;
    color: var(--accent-dark);
    font-size: 0.86rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.trust-strip .highlight {
    border: 1px solid #e5ecf6;
    box-shadow: 0 12px 28px rgba(12, 22, 45, 0.08);
}

.highlight h3 {
    font-size: 1.6rem;
    color: var(--accent-dark);
    margin-bottom: 0.2rem;
}

.trust-strip .highlight h3 {
    font-size: 0.98rem;
    line-height: 1.28;
    margin-bottom: 0.3rem;
}

.hero-proof-card h3 {
    color: var(--mid);
}

.highlight p {
    margin: 0;
    color: #516480;
    font-size: 0.95rem;
}

.trust-strip .highlight p {
    font-size: 0.88rem;
    line-height: 1.55;
}

.compliance-note {
    max-width: 760px;
    margin: 0 auto 2rem;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 95, 174, 0.14);
    color: #43566f;
    box-shadow: 0 12px 30px rgba(12, 22, 45, 0.08);
    font-size: 0.95rem;
}

.compliance-note strong {
    color: var(--mid);
}

.promise-section,
.process-overview,
.video-trust {
    padding: clamp(30px, 5vw, 50px) 0;
}

.promise-section {
    background: var(--white);
}

.safety-panel {
    margin-bottom: 2rem;
    padding: 1.6rem;
    border-radius: 20px;
    border: 1px solid #e3ebf6;
    background: linear-gradient(135deg, #f7fbff 0%, #eef6ff 52%, #f9fcff 100%);
    box-shadow: 0 20px 44px rgba(12, 22, 45, 0.08);
}

.safety-panel-header {
    max-width: 760px;
    margin-bottom: 1.2rem;
}

.safety-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

.safety-panel-header .section-lede {
    text-align: left;
    margin: 0;
    max-width: none;
}

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

.safety-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem;
    min-height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(31, 95, 174, 0.1);
    background: rgba(255, 255, 255, 0.84);
}

.safety-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 95, 174, 0.1);
    color: var(--accent-dark);
    font-size: 1rem;
}

.safety-item h3 {
    font-size: 1.02rem;
    color: var(--mid);
    margin-bottom: 0.35rem;
    line-height: 1.4;
}

.safety-item p {
    margin: 0;
    color: #516480;
    font-size: 0.93rem;
}

.promise-section h2,
.process-overview h2,
.video-trust h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.promise-grid,
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.promise-card,
.video-card,
.process-main,
.process-side {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.promise-card {
    padding: 1.4rem;
    border: 1px solid #e6edf7;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promise-card-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
}

.promise-card i {
    font-size: 1.3rem;
    color: var(--accent-dark);
    margin-bottom: 0;
    flex-shrink: 0;
}

.promise-card h3,
.video-card h3,
.process-main h3,
.process-side h3,
.service-card .card-link {
    color: var(--mid);
}

.promise-card-head h3 {
    margin-bottom: 0;
    line-height: 1.3;
}

.promise-card p,
.video-card p,
.process-main p,
.process-side p {
    color: #516480;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: none;
}

.card-link:hover {
    color: var(--mid);
}

.process-overview {
    background: var(--mist);
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.95fr);
    gap: 1.5rem;
    align-items: stretch;
}

.process-main,
.process-side {
    padding: 1.6rem;
    border: 1px solid #e6edf7;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    height: 100%;
}

.process-main {
    justify-content: flex-start;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.6rem;
}

.process-timeline::before {
    display: none;
}

.process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.15rem;
    border: 1px solid #dde7ef;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 10px 24px rgba(12, 22, 45, 0.04);
    min-height: 210px;
}

.process-step:first-child {
    padding-top: 1.15rem;
}

.step-badge-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.process-step h4 {
    font-size: 1.14rem;
    color: var(--mid);
    margin-bottom: 0.15rem;
}

.process-step p {
    font-size: 0.95rem;
    margin: 0;
    color: #5a6d82;
}

.step-badge {
    min-width: 54px;
    height: 32px;
    padding: 0 0.8rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f6f8fb;
    color: #55708d;
    border: 1px solid #d8e2eb;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    box-shadow: none;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    background: linear-gradient(180deg, #f4f8ff 0%, #eaf0fb 100%);
    border: 1px solid rgba(31, 95, 174, 0.12);
    box-shadow: none;
    font-size: 1rem;
}

.checklist {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 1.2rem;
    flex: 1;
}

.checklist li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: #516480;
}

.checklist i {
    color: var(--accent-dark);
    margin-top: 0.12rem;
}

.checklist-strong li {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.55;
    color: #40546d;
}

.checklist-strong i {
    font-size: 1.18rem;
    font-weight: 900;
}

.checklist-outcome li {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #f7fcf8 0%, #eefaf1 100%);
    border: 1px solid #d7efdd;
}

.checklist-outcome i {
    color: #1f9d55;
    font-size: 1.18rem;
}

.checklist-outcome strong {
    color: #163768;
    font-weight: 800;
}

.faq-preview {
    margin: 0 0 1.2rem;
}

.faq-preview-accordion {
    display: grid;
    gap: 0.75rem;
}

.faq-preview-accordion details {
    border: 1px solid #dbe7f4;
    border-radius: 14px;
    background: #f9fbfe;
    overflow: hidden;
}

.faq-preview-accordion details[open] {
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(12, 22, 45, 0.06);
}

.faq-preview-accordion summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--mid);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem;
}

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

.faq-preview-accordion summary::after {
    content: "+";
    font-size: 1.2rem;
    line-height: 1;
    color: var(--accent-dark);
}

.faq-preview-accordion details[open] summary::after {
    content: "−";
}

.faq-preview-accordion details p {
    margin: 0;
    padding: 0 1rem 1rem;
    color: #516480;
    font-size: 0.95rem;
}

.mini-note {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.92rem;
    color: #5b6d86;
}

.process-side .cta-button {
    margin-top: auto;
    align-self: flex-start;
}

.video-trust {
    background: linear-gradient(135deg, #fffaf4 0%, #f4f8f5 55%, #eef7f4 100%);
}

.video-card {
    padding: 1.5rem;
    border: 1px solid #e3eaf4;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.video-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(31, 95, 174, 0.1);
    color: var(--accent-dark);
    margin-bottom: 0.9rem;
}

/* About */
.about {
    padding: clamp(30px, 5vw, 50px) 0;
    background: var(--mist);
}

.about-content {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 1rem;
}

.about-text p {
    color: #4c607b;
    margin-bottom: 1rem;
}

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

.stat {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat h3 {
    color: var(--mid);
    font-size: 1.6rem;
}

.stat p {
    color: #516480;
    font-size: 0.9rem;
}

/* Services */
.services {
    padding: clamp(30px, 5vw, 50px) 0;
}

.services h2,
.resources h2,
.why h2,
.journey h2,
.cities h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.section-lede {
    text-align: center;
    color: #516480;
    max-width: 720px;
    margin: 0 auto 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.pathway-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    background: var(--white);
    padding: 1.35rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #e6edf7;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.pathway-card {
    position: relative;
    overflow: hidden;
    padding: 1.55rem;
    border-color: color-mix(in srgb, var(--pathway-accent, var(--accent)) 18%, #dfe7f2 82%);
    background: linear-gradient(180deg, var(--pathway-card-top, #ffffff) 0%, var(--pathway-card-bottom, #f8fbff) 100%);
}

.pathway-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: var(--pathway-accent, var(--accent));
}

.pathway-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pathway-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.65rem;
    color: var(--pathway-accent, var(--accent));
    background: var(--pathway-soft, rgba(31, 95, 174, 0.12));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 12px 28px color-mix(in srgb, var(--pathway-accent, var(--accent)) 14%, transparent);
}

.service-card h3 {
    color: var(--mid);
    margin-bottom: 0.6rem;
}

.pathway-card-top h3 {
    margin-bottom: 0;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.25;
}

.service-card p {
    color: #516480;
    font-size: 0.95rem;
}

.pathway-card-footer {
    margin-top: auto;
    padding-top: 1.05rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

.pathway-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--pathway-accent, var(--accent));
    background: var(--pathway-soft, rgba(31, 95, 174, 0.12));
}

.pathway-mini-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.62rem 0.95rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    background: var(--pathway-accent, var(--accent));
    box-shadow: 0 10px 22px color-mix(in srgb, var(--pathway-accent, var(--accent)) 28%, transparent);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.pathway-mini-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 14px 28px color-mix(in srgb, var(--pathway-accent, var(--accent)) 34%, transparent);
}

.pathway-card .card-link {
    margin-top: 0;
    padding-top: 0;
    color: color-mix(in srgb, var(--pathway-accent, var(--accent)) 92%, #0f172a 8%);
    font-weight: 700;
}

.pathway-card-diagnosed {
    --pathway-accent: #1f5fae;
    --pathway-soft: rgba(31, 95, 174, 0.12);
    --pathway-card-top: #f4f8ff;
    --pathway-card-bottom: #eaf0fb;
}

.pathway-card-testing {
    --pathway-accent: #2a7dd8;
    --pathway-soft: rgba(42, 125, 216, 0.12);
    --pathway-card-top: #f4f8ff;
    --pathway-card-bottom: #e8f0fb;
}

.pathway-card-compare {
    --pathway-accent: #ef8f7a;
    --pathway-soft: rgba(239, 143, 122, 0.16);
    --pathway-card-top: #fff8f5;
    --pathway-card-bottom: #feeee8;
}

.pathway-card-support {
    --pathway-accent: #d7a556;
    --pathway-soft: rgba(215, 165, 86, 0.18);
    --pathway-card-top: #fffaf1;
    --pathway-card-bottom: #fdf0da;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(12, 22, 45, 0.16);
    border-color: rgba(31, 95, 174, 0.18);
}

.service-card .card-link {
    margin-top: auto;
    padding-top: 0;
}

@media (max-width: 900px) {
    .pathway-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-timeline::before {
        display: none;
    }

    .hero-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
}

@media (max-width: 640px) {
    .pathway-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .process-main,
    .process-side {
        padding: 1.15rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .process-step {
        padding: 1rem;
        border: 1px solid #e6edf7;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(12, 22, 45, 0.06);
    }

    .step-badge-wrap {
        gap: 0.65rem;
    }

    .step-badge {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        font-size: 0.98rem;
    }

    .step-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .checklist-outcome li {
        padding: 0.8rem 0.85rem;
    }

    .pathway-card {
        padding: 1.1rem;
    }

    .pathway-card-top {
        gap: 0.75rem;
        margin-bottom: 0.85rem;
    }

    .pathway-icon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        font-size: 1.3rem;
    }

    .pathway-card-top h3 {
        font-size: 1.06rem;
    }

    .pathway-mini-cta {
        width: 100%;
        text-align: center;
    }

    .hero-proof-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 92%;
        width: 100%;
        overflow-x: auto;
        gap: 0.7rem;
        margin-bottom: 0.95rem;
        padding-bottom: 0.3rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .hero-proof-grid .highlight:nth-child(n + 3) {
        display: none;
    }

    .hero-proof-card {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 0.9rem;
        scroll-snap-align: start;
    }

    .hero-proof-head {
        grid-template-columns: 40px 1fr;
        gap: 0.7rem;
    }

    .hero-proof-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .hero-proof-card strong {
        font-size: 0.82rem;
    }

    .trust-strip .highlight h3 {
        font-size: 0.93rem;
    }

    .trust-strip .highlight p {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .hero-actions {
        margin-bottom: 0.7rem;
    }

    .hero-secondary-link {
        margin-bottom: 0.8rem;
    }

    .pathway-card {
        padding: 1.1rem;
    }

    .pathway-card-top {
        align-items: flex-start;
        gap: 0.7rem;
    }

    .pathway-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .pathway-card h3 {
        font-size: 1rem;
    }

    .pathway-card p {
        font-size: 0.9rem;
    }

    .pathway-tag {
        font-size: 0.74rem;
        padding: 0.34rem 0.6rem;
    }
}

/* Feature */
.feature {
    padding: clamp(30px, 5vw, 50px) 0;
    background: linear-gradient(120deg, #eef5f7 0%, #f8fbfd 100%);
}

.feature-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: center;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.feature-text h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 1rem;
}

.feature-text p {
    color: #4c607b;
    margin-bottom: 1.5rem;
}

.feature-visual {
    position: relative;
    min-height: 220px;
    display: grid;
    place-items: center;
}

.glass-panel {
    background: rgba(44, 177, 165, 0.12);
    border: 1px solid rgba(44, 177, 165, 0.3);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(4px);
}

.glass-panel h3 {
    margin-bottom: 0.5rem;
    color: var(--mid);
}

.glass-panel p {
    color: #516480;
    margin-bottom: 1rem;
}

.tag-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.75rem;
}

.tag-row span {
    background: var(--white);
    color: var(--mid);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    box-shadow: 0 8px 18px rgba(22, 45, 77, 0.1);
}

.pulse-dot {
    display: none;
}

/* Packages */
.packages {
    padding: clamp(30px, 5vw, 50px) 0;
    background: var(--mist);
}

.packages-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.packages h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 1rem;
}

.package-list {
    display: grid;
    gap: 1rem;
}

.package-item {
    background: var(--white);
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.package-item h4 {
    color: var(--mid);
    margin-bottom: 0.35rem;
}

.package-item p {
    color: #516480;
    font-size: 0.95rem;
}

/* Resources */
.resources {
    padding: clamp(30px, 5vw, 50px) 0;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.resource-card {
    background: var(--white);
    padding: 1.6rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid #e6edf7;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.resource-card h3 {
    color: var(--mid);
    margin-bottom: 0.6rem;
}

.resource-card p {
    color: #516480;
}

.resource-card .card-link {
    margin-top: auto;
    padding-top: 1rem;
}

/* Why China */
.why {
    padding: clamp(30px, 5vw, 50px) 0;
    background: linear-gradient(135deg, #fffaf4 0%, #f5f8f4 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.why-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: center;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(232, 184, 109, 0.2);
    color: var(--accent-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.why-card h3 {
    color: var(--mid);
    margin-bottom: 0.6rem;
}

.why-card p {
    color: #516480;
    font-size: 0.95rem;
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.final-cta-note {
    max-width: 760px;
    margin: 1rem auto 0;
    text-align: center;
    color: #516480;
}

/* Cities */
.cities {
    padding: clamp(30px, 5vw, 50px) 0;
}

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

.city-card {
    border-radius: 16px;
    padding: 1.8rem;
    background: linear-gradient(140deg, #e6f2ff 0%, #f1faf8 100%);
    box-shadow: var(--shadow);
    min-height: 170px;
}

.city-card h3 {
    color: var(--mid);
    margin-bottom: 0.5rem;
}

.city-card p {
    color: #516480;
}

/* Stories */
.stories {
    padding: 30px 0;
    background: var(--mid);
    color: var(--white);
}

.stories-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stories h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
}

/* Journey */
.journey {
    padding: clamp(30px, 5vw, 50px) 0;
    background: var(--mist);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.journey-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: var(--shadow);
    border: 1px solid #e6edf7;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.step {
    display: inline-block;
    color: var(--accent-dark);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.journey-card h3 {
    color: var(--mid);
    margin-bottom: 0.6rem;
}

.journey-card p {
    color: #516480;
}

/* Mission */
.mission {
    padding: clamp(30px, 5vw, 50px) 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: center;
}

.mission h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 1rem;
}

.mission p {
    color: #516480;
    margin-bottom: 1rem;
}

.mission-card {
    background: var(--mist);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
}

.mission-card h3 {
    color: var(--mid);
    margin-bottom: 1rem;
}

.mission-card ul {
    list-style: none;
    color: #516480;
    display: grid;
    gap: 0.6rem;
}

/* Contact */
.contact {
    padding: clamp(50px, 8vw, 90px) 0;
}

.contact h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 2.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.contact-info h3 {
    color: var(--mid);
    margin-bottom: 1rem;
}

.contact-info p {
    color: #516480;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: grid;
    gap: 0.8rem;
}

.contact-item {
    color: #516480;
}

.contact-item strong {
    color: var(--mid);
}

.contact-form {
    background: var(--mist);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    font-family: "Manrope", "Segoe UI", sans-serif;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.submit-btn {
    width: 100%;
    background: var(--mid);
    color: var(--white);
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #152b4a;
}

.form-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #6b7c95;
}

/* Footer */
.footer {
    background: var(--mid);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.75rem;
}

.footer-section p,
.footer-section ul li,
.social-media span {
    font-size: 0.9rem;
    color: #e8edf2;
}

.footer-section ul li a {
    color: #e8edf2;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-section ul li a:visited {
    color: #e8edf2;
}

.footer-section ul {
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.social-media {
    display: grid;
    gap: 0.4rem;
}

.footer-bottom {
    text-align: center;
    color: #d5dce6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .about-content,
    .packages-content,
    .mission-content,
    .process-layout,
    .safety-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .safety-panel {
        padding: 1.2rem;
        border-radius: 16px;
    }

    .safety-item {
        padding: 0.9rem;
    }

    .safety-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background: linear-gradient(135deg, #1f5fae 0%, #2a7dd8 100%);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a,
    .dropdown-menu a {
        justify-content: center;
        text-align: center;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 65vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .dropdown-menu a.active {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .dropdown-toggle i {
        transition: transform 0.3s;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .hero {
        padding: 120px 0 70px;
    }

    .stories-content {
        flex-direction: column;
        text-align: center;
    }

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

    .step-badge {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
}

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

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