:root {
    --bg: #eef3ff;
    --bg-soft: #f8faff;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-strong: #ffffff;
    --line: rgba(0, 47, 167, 0.14);
    --ink: #0b1736;
    --ink-soft: #4a5b84;
    --accent: #002fa7;
    --accent-strong: #001f75;
    --accent-soft: rgba(0, 47, 167, 0.1);
    --warm: #4f7cff;
    --warm-soft: rgba(79, 124, 255, 0.14);
    --shadow: 0 28px 70px rgba(0, 31, 117, 0.14);
    --shadow-soft: 0 18px 36px rgba(0, 31, 117, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --content-width: 1180px;
    --nav-height: 72px;
    --home-cinema-height: clamp(700px, calc(100vh - var(--nav-height) - 34px), 860px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: calc(var(--nav-height) + 26px);
}

body {
    margin: 0;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(0, 47, 167, 0.16), transparent 30%),
        radial-gradient(circle at top right, rgba(79, 124, 255, 0.18), transparent 28%),
        linear-gradient(180deg, #edf2ff 0%, #ffffff 55%, #f4f7ff 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: 0.18;
    pointer-events: none;
    z-index: -1;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.shell {
    min-height: 100vh;
}

.container {
    width: min(var(--content-width), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(247, 249, 255, 0.92);
    border-bottom: 1px solid rgba(0, 47, 167, 0.08);
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.06);
}

.site-header-inner {
    min-height: var(--nav-height);
    display: grid;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    max-width: 100%;
}

.brand-mark {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #ffffff;
    display: grid;
    place-items: center;
    padding: 9px;
    box-shadow: var(--shadow-soft);
    flex: none;
    border: 1px solid rgba(0, 47, 167, 0.08);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 47, 167, 0.16));
}

.brand-copy {
    min-width: 0;
    max-width: 238px;
}

.brand-copy strong,
.brand-copy span {
    display: block;
}

.brand-name {
    font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
    font-size: 1.32rem;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-tagline {
    margin-top: 5px;
    color: var(--ink-soft);
    font-size: 0.74rem;
    line-height: 1.35;
    letter-spacing: 0.04em;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-wrap: balance;
}

.nav-area {
    display: flex;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.7vw, 10px);
    flex-wrap: nowrap;
    justify-content: center;
    min-width: 0;
}

.nav-link,
.nav-trigger {
    position: relative;
    min-height: 40px;
    padding: 10px clamp(4px, 0.45vw, 8px);
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-weight: 600;
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1;
    white-space: nowrap;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-trigger:hover,
.nav-dropdown.is-open .nav-trigger {
    color: var(--accent);
}

.nav-link:hover,
.nav-trigger:hover {
    transform: translateY(-1px);
}

.nav-link::after,
.nav-trigger::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 1px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-trigger:hover::after,
.nav-dropdown.is-open .nav-trigger::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-caret {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-caret {
    transform: rotate(225deg) translate(-2px, -2px);
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: min(540px, 90vw);
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 47, 167, 0.12);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: grid;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    translate: 0 -6px;
    transition: opacity 0.2s ease, translate 0.2s ease;
}

.nav-dropdown.is-open .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    translate: 0 0;
}

.dropdown-link {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--bg-soft);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.dropdown-link:hover {
    transform: translateY(-1px);
    background: white;
}

.dropdown-link strong {
    font-size: 1rem;
}

.dropdown-link span {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.5;
}

.header-tools {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: none;
}

.site-header--es .brand-copy {
    max-width: 198px;
}

.site-header--es .site-header-inner {
    grid-template-columns: minmax(188px, 252px) minmax(0, 1fr) auto;
    align-items: center;
}

.site-header--es .nav-area {
    align-self: center;
}

.site-header--es .main-nav {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    max-width: none;
}

.site-header--es .nav-link {
    padding-inline: 3px;
    font-size: clamp(13px, 0.95vw, 15px);
}

.site-header--es .header-tools {
    gap: 6px;
    align-self: center;
}

.site-header--es .button-compact {
    padding: 10px 12px;
    font-size: 12px;
}

.site-header--es .language-link {
    min-width: 42px;
    padding: 8px 9px;
}

.button-compact {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 13px;
}

.button-inline {
    min-height: 40px;
    padding: 10px 16px;
}

.button-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex: none;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(0, 47, 167, 0.06);
}

.language-link {
    min-width: 44px;
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.86rem;
    text-align: center;
    color: var(--ink-soft);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.language-link.is-current {
    background: white;
    color: var(--accent);
    box-shadow: 0 6px 14px rgba(0, 31, 117, 0.12);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(0, 47, 167, 0.12);
    background: rgba(255, 255, 255, 0.82);
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
}

.mobile-drawer {
    display: none;
}

.page-main {
    padding: 22px 0 76px;
}

.page-main > section {
    margin-top: 34px;
}

.hero {
    padding: 42px 0 0;
}

.hero-panel,
.section-panel,
.cta-panel,
.info-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 255, 0.98));
    border: 1px solid rgba(0, 47, 167, 0.08);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 44px;
}

.hero-panel::before,
.section-panel::before,
.cta-panel::before,
.info-panel::before {
    content: "";
    position: absolute;
    inset: auto -10% 72% auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(0, 47, 167, 0.16), transparent 72%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 32px;
    align-items: stretch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.hero-title,
.section-title,
.stat-value,
.card-title,
.footer-brand strong {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.01em;
}

.hero-title {
    margin: 18px 0 16px;
    font-size: clamp(24px, 3vw, 28px);
    line-height: 0.98;
    text-wrap: balance;
}

.hero-subtitle {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    text-wrap: pretty;
}

.hero-description,
.section-intro,
.card-copy,
.rich-text,
.contact-copy,
.faq-answer,
.footer-copy {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), #2f62ff);
    color: white;
    box-shadow: 0 14px 26px rgba(0, 47, 167, 0.22);
}

.button-secondary {
    background: white;
    border-color: rgba(0, 47, 167, 0.14);
    color: var(--accent);
}

.button-ghost {
    background: transparent;
    border-color: rgba(0, 47, 167, 0.16);
    color: var(--accent);
}

.hero-side {
    display: grid;
    gap: 16px;
}

.hero-spotlight,
.mini-card,
.stat-card,
.value-card,
.process-step,
.faq-item,
.form-card,
.contact-card,
.industry-group,
.category-card,
.note-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 47, 167, 0.08);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.hero-spotlight {
    padding: 26px;
    background:
        radial-gradient(circle at top right, rgba(79, 124, 255, 0.28), transparent 32%),
        linear-gradient(160deg, rgba(0, 18, 92, 0.98), rgba(0, 47, 167, 0.94));
    color: white;
    min-height: 100%;
}

.hero-spotlight h3,
.spotlight-label {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.spotlight-label {
    display: inline-block;
    font-size: 0.94rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.hero-spotlight h3 {
    margin: 18px 0 12px;
    font-size: 2rem;
    line-height: 1;
}

.hero-spotlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.hero-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.hero-list li,
.bullet-list li,
.mini-list li {
    display: flex;
    gap: 10px;
    line-height: 1.7;
}

.hero-list li::before,
.bullet-list li::before,
.mini-list li::before {
    content: "•";
    color: var(--warm);
    font-weight: 700;
}

.hero-mini-grid,
.card-grid,
.stats-grid,
.value-grid,
.process-grid,
.contact-grid,
.category-grid,
.link-grid {
    display: grid;
    gap: 18px;
}

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

.service-card-home {
    gap: 12px;
}

.service-card-subtitle {
    margin: -2px 0 2px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    text-wrap: pretty;
}

.mini-card {
    padding: 20px;
}

.mini-label {
    display: block;
    color: var(--ink-soft);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mini-card strong {
    display: block;
    margin-top: 10px;
    font-size: 1.18rem;
    line-height: 1.35;
}

.section-panel {
    padding: 34px;
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.section-head-copy {
    display: grid;
    gap: 10px;
    max-width: 760px;
    min-width: 0;
}

.section-head > .button,
.section-head > a.button {
    flex: none;
}

.section-marker {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(0, 47, 167, 0.08);
    border: 1px solid rgba(0, 47, 167, 0.12);
    box-shadow: var(--shadow-soft);
}

.section-marker::before,
.section-marker::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
}

.section-marker--about::before {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.section-marker--about::after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.section-marker--services::before {
    width: 18px;
    height: 18px;
    border: 2px solid var(--accent);
    border-radius: 6px;
}

.section-marker--services::after {
    width: 12px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 -5px 0 var(--accent), 0 5px 0 var(--accent);
}

.section-marker--advantages::before {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 2px solid var(--accent);
    box-shadow: 10px 0 0 -2px rgba(0, 47, 167, 0.22), 0 10px 0 -2px rgba(0, 47, 167, 0.22);
}

.section-marker--advantages::after {
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: var(--accent);
}

.section-marker--faq::before {
    width: 18px;
    height: 14px;
    border-radius: 7px;
    border: 2px solid var(--accent);
}

.section-marker--faq::after {
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    background: transparent;
    transform: translate(-35%, 12%) rotate(-45deg);
}

.section-marker--expertise::before {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px dashed var(--accent);
}

.section-marker--expertise::after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.section-marker--stats::before {
    width: 18px;
    height: 14px;
    border-radius: 5px;
    border: 2px solid var(--accent);
}

.section-marker--stats::after {
    width: 12px;
    height: 8px;
    background: linear-gradient(90deg, var(--accent) 0 20%, transparent 20% 35%, var(--accent) 35% 55%, transparent 55% 70%, var(--accent) 70% 100%);
}

.section-title {
    margin: 0;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.service-title {
    display: inline-flex;
    align-items: center;
    gap: 0.58em;
    flex-wrap: wrap;
}

.service-title-icon {
    width: 1.72em;
    height: 1.72em;
    border-radius: 0.56em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(0, 47, 167, 0.14);
    border: 1px solid rgba(0, 47, 167, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 233, 255, 0.94));
    color: var(--accent-strong);
}

.service-title--hero {
    align-items: flex-start;
}

.service-title--hero .service-title-icon {
    margin-top: 0.08em;
    width: 1.8em;
    height: 1.8em;
}

.service-title--card .service-title-icon {
    width: 1.78em;
    height: 1.78em;
}

.service-title--compact {
    gap: 0.5em;
}

.service-title--compact .service-title-icon {
    width: 1.54em;
    height: 1.54em;
}

.service-title-glyph,
.service-visual-glyph {
    width: 58%;
    height: 58%;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    overflow: visible;
}

.service-title-icon--sourcing {
    background: linear-gradient(135deg, rgba(228, 241, 255, 0.98), rgba(196, 223, 255, 0.95));
}

.service-title-icon--verification-inspection {
    background: linear-gradient(135deg, rgba(230, 242, 255, 0.98), rgba(205, 229, 255, 0.95));
}

.service-title-icon--china-representative {
    background: linear-gradient(135deg, rgba(233, 236, 255, 0.98), rgba(210, 219, 255, 0.95));
}

.service-title-icon--one-stop-trading {
    background: linear-gradient(135deg, rgba(231, 239, 255, 0.98), rgba(200, 218, 255, 0.95));
}

.service-title-icon--logistics-consulting {
    background: linear-gradient(135deg, rgba(228, 244, 255, 0.98), rgba(191, 226, 255, 0.95));
}

.service-title-icon--business-visits {
    background: linear-gradient(135deg, rgba(235, 242, 255, 0.98), rgba(213, 225, 255, 0.95));
}

.section-intro {
    margin: 0;
    max-width: 700px;
    color: var(--ink-soft);
    line-height: 1.72;
    text-wrap: pretty;
}

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

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

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

body.page-home .page-main > section.home-cinema {
    margin-top: 0;
}

body.page-home .page-main > section.home-overview {
    margin-top: 0;
}

body.page-home .page-main {
    padding-top: 0;
}

body.page-home .site-header {
    border-bottom-color: transparent;
}

.home-cinema {
    position: relative;
}

.home-cinema-stage {
    position: relative;
    height: var(--home-cinema-height);
}

.home-cinema-slide {
    position: relative;
    height: var(--home-cinema-height);
    overflow: hidden;
    background: #07132d;
}

.home-cinema-slide.is-active .home-cinema-image {
    animation: homeCinemaZoom 5.6s ease both;
}

.home-cinema-slide.is-active .home-cinema-copy > *,
.home-cinema-slide.is-active .home-cinema-metric {
    animation: homeCinemaRise 0.72s ease both;
}

.home-cinema-slide.hidden {
    display: none;
}

.home-cinema-image,
.service-card-home-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-cinema-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.04);
}

.home-cinema-image--sourcing {
    object-position: center 48%;
}

.home-cinema-image--verification-inspection {
    object-position: center 52%;
}

.home-cinema-image--china-representative {
    object-position: center 42%;
}

.home-cinema-image--one-stop-trading {
    object-position: center 50%;
}

.home-cinema-image--logistics-consulting {
    object-position: center 56%;
}

.home-cinema-image--business-visits {
    object-position: center 44%;
}

.home-cinema-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 12, 32, 0.86) 0%, rgba(4, 12, 32, 0.72) 34%, rgba(4, 12, 32, 0.42) 62%, rgba(4, 12, 32, 0.24) 100%),
        linear-gradient(180deg, rgba(4, 12, 32, 0.22) 0%, rgba(4, 12, 32, 0.48) 100%);
}

.home-cinema-slide--sourcing .home-cinema-overlay {
    background:
        linear-gradient(90deg, rgba(4, 12, 32, 0.84) 0%, rgba(4, 12, 32, 0.68) 32%, rgba(14, 52, 122, 0.34) 66%, rgba(34, 92, 200, 0.2) 100%),
        linear-gradient(180deg, rgba(4, 12, 32, 0.18) 0%, rgba(4, 12, 32, 0.42) 100%);
}

.home-cinema-slide--verification-inspection .home-cinema-overlay {
    background:
        linear-gradient(90deg, rgba(4, 14, 28, 0.84) 0%, rgba(4, 14, 28, 0.68) 32%, rgba(0, 92, 134, 0.34) 66%, rgba(38, 150, 214, 0.2) 100%),
        linear-gradient(180deg, rgba(4, 12, 32, 0.18) 0%, rgba(4, 12, 32, 0.42) 100%);
}

.home-cinema-slide--china-representative .home-cinema-overlay {
    background:
        linear-gradient(90deg, rgba(9, 13, 34, 0.84) 0%, rgba(9, 13, 34, 0.68) 32%, rgba(74, 78, 170, 0.34) 66%, rgba(112, 124, 236, 0.2) 100%),
        linear-gradient(180deg, rgba(4, 12, 32, 0.18) 0%, rgba(4, 12, 32, 0.42) 100%);
}

.home-cinema-slide--one-stop-trading .home-cinema-overlay {
    background:
        linear-gradient(90deg, rgba(5, 14, 34, 0.84) 0%, rgba(5, 14, 34, 0.68) 32%, rgba(17, 73, 150, 0.34) 66%, rgba(46, 108, 220, 0.2) 100%),
        linear-gradient(180deg, rgba(4, 12, 32, 0.18) 0%, rgba(4, 12, 32, 0.42) 100%);
}

.home-cinema-slide--logistics-consulting .home-cinema-overlay {
    background:
        linear-gradient(90deg, rgba(4, 14, 30, 0.84) 0%, rgba(4, 14, 30, 0.68) 32%, rgba(0, 104, 128, 0.34) 66%, rgba(51, 170, 200, 0.2) 100%),
        linear-gradient(180deg, rgba(4, 12, 32, 0.18) 0%, rgba(4, 12, 32, 0.42) 100%);
}

.home-cinema-slide--business-visits .home-cinema-overlay {
    background:
        linear-gradient(90deg, rgba(10, 13, 32, 0.84) 0%, rgba(10, 13, 32, 0.68) 32%, rgba(86, 85, 164, 0.34) 66%, rgba(129, 126, 235, 0.2) 100%),
        linear-gradient(180deg, rgba(4, 12, 32, 0.18) 0%, rgba(4, 12, 32, 0.42) 100%);
}

.home-cinema-depth {
    position: absolute;
    inset: auto -8% -24% auto;
    width: 40vw;
    min-width: 320px;
    max-width: 680px;
    height: 42vh;
    background:
        radial-gradient(circle at 30% 30%, rgba(79, 124, 255, 0.46), rgba(79, 124, 255, 0) 56%),
        radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 48%);
    filter: blur(12px);
    opacity: 0.9;
}

.home-cinema-slide--sourcing .home-cinema-depth {
    background:
        radial-gradient(circle at 30% 30%, rgba(79, 124, 255, 0.54), rgba(79, 124, 255, 0) 56%),
        radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 48%);
}

.home-cinema-slide--verification-inspection .home-cinema-depth {
    background:
        radial-gradient(circle at 30% 30%, rgba(74, 203, 255, 0.5), rgba(74, 203, 255, 0) 56%),
        radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 48%);
}

.home-cinema-slide--china-representative .home-cinema-depth {
    background:
        radial-gradient(circle at 30% 30%, rgba(116, 122, 255, 0.5), rgba(116, 122, 255, 0) 56%),
        radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 48%);
}

.home-cinema-slide--one-stop-trading .home-cinema-depth {
    background:
        radial-gradient(circle at 30% 30%, rgba(46, 108, 220, 0.54), rgba(46, 108, 220, 0) 56%),
        radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 48%);
}

.home-cinema-slide--logistics-consulting .home-cinema-depth {
    background:
        radial-gradient(circle at 30% 30%, rgba(51, 170, 200, 0.5), rgba(51, 170, 200, 0) 56%),
        radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 48%);
}

.home-cinema-slide--business-visits .home-cinema-depth {
    background:
        radial-gradient(circle at 30% 30%, rgba(129, 126, 235, 0.5), rgba(129, 126, 235, 0) 56%),
        radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 48%);
}

.home-cinema-grid {
    position: relative;
    z-index: 1;
    height: var(--home-cinema-height);
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.64fr);
    align-items: center;
    gap: 72px;
    padding: clamp(72px, 10vh, 108px) 0 164px;
}

.home-cinema-copy {
    max-width: 520px;
}

.home-cinema-eyebrow {
    color: rgba(255, 255, 255, 0.88);
}

.home-cinema-eyebrow::before {
    background: rgba(255, 255, 255, 0.88);
}

.home-cinema-title {
    margin: 22px 0 18px;
    color: #fff;
    font-size: clamp(28px, 3.8vw, 42px);
    line-height: 1.16;
    letter-spacing: 0.01em;
}

.home-cinema-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.85;
}

.home-cinema-description {
    margin: 18px 0 0;
    max-width: 480px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.95;
}

.home-cinema .hero-actions {
    margin-top: 34px;
}

.home-cinema .button-secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    backdrop-filter: blur(8px);
}

.home-cinema .button-ghost {
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}

.home-cinema .button-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.home-cinema-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
    max-width: 440px;
}

.home-cinema-metric {
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(12, 33, 78, 0.46), rgba(8, 22, 52, 0.28));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 32px rgba(3, 11, 31, 0.14);
}

.home-cinema-metric-icon {
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 24px;
    margin-bottom: 14px;
    color: #b8ccff;
}

.home-cinema-metric-icon::before,
.home-cinema-metric-icon::after {
    content: "";
    position: absolute;
    border: 1.8px solid currentColor;
    border-radius: 999px;
}

.home-cinema-metric-icon--1::before {
    inset: 2px;
}

.home-cinema-metric-icon--1::after {
    width: 8px;
    height: 8px;
    right: -2px;
    top: -1px;
    background: currentColor;
    border: 0;
}

.home-cinema-metric-icon--2::before {
    inset: 5px 2px 5px 2px;
    border-radius: 2px;
}

.home-cinema-metric-icon--2::after {
    width: 14px;
    height: 1.8px;
    left: 5px;
    top: 11px;
    background: currentColor;
    border: 0;
    border-radius: 999px;
}

.home-cinema-metric-label {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-cinema-metric strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

.home-cinema-panels {
    position: relative;
    min-height: 340px;
}

.home-cinema-card {
    position: absolute;
    width: min(300px, 100%);
    padding: 20px;
    border-radius: 22px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 42px rgba(3, 11, 31, 0.2);
    backdrop-filter: blur(12px);
}

.home-cinema-card--main {
    top: 96px;
    right: 18px;
    transform: translateZ(0) rotate(-2deg);
}

.home-cinema-card--stack {
    right: 126px;
    bottom: 34px;
    transform: translateZ(0) rotate(2deg);
    width: min(224px, 100%);
    padding: 16px 18px;
}

.home-cinema-slide.is-active .home-cinema-card--main {
    animation: homeCinemaCardMain 0.86s ease both;
}

.home-cinema-slide.is-active .home-cinema-card--stack {
    animation: homeCinemaCardStack 0.96s ease both;
}

.home-cinema-card strong {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.3;
}

.home-cinema-card p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    line-height: 1.85;
}

.home-cinema-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-cinema-points {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.home-cinema-points li {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.75;
}

.home-cinema-points li::before {
    content: "✓";
    color: #b8ccff;
    font-weight: 700;
}

.home-cinema-controls {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: -72px;
    padding: 12px 16px;
    width: fit-content;
    min-width: 164px;
    border-radius: 999px;
    background: rgba(6, 16, 40, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(3, 11, 31, 0.14);
    backdrop-filter: blur(14px);
    margin-left: auto;
    margin-right: auto;
}

.home-cinema-dot {
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 999px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.home-cinema-dot-core {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-cinema-dot:hover .home-cinema-dot-core,
.home-cinema-dot.is-active .home-cinema-dot-core {
    background: #ffffff;
    transform: scale(1.18);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.home-overview {
    padding: 68px 0 6px;
}

.home-overview-head {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 28px;
}

.home-overview-title {
    margin: 0;
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.2;
}

.home-overview-intro {
    margin: 0;
    max-width: 760px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.9;
}

.services-grid-home-premium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-home {
    gap: 16px;
}

.service-card-home-media {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-card-home-media img {
    transition: transform 0.4s ease;
}

.service-card-home:hover .service-card-home-media img {
    transform: scale(1.04);
}

.service-card-home-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-module-icon--home {
    background: linear-gradient(135deg, rgba(0, 47, 167, 0.1), rgba(79, 124, 255, 0.18));
}

.service-card-home-note {
    display: grid;
    gap: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 47, 167, 0.1);
}

.service-card-home-note .card-copy,
.service-showcase-note-copy,
.service-module-copy {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.82;
}

@keyframes homeCinemaZoom {
    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1.04);
    }
}

@keyframes homeCinemaRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeCinemaCardMain {
    from {
        opacity: 0;
        transform: translateY(18px) rotate(-1deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(-3deg);
    }
}

@keyframes homeCinemaCardStack {
    from {
        opacity: 0;
        transform: translateY(22px) rotate(1deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(4deg);
    }
}

.services-showcase {
    display: grid;
    gap: 18px;
}

.services-showcase-stage {
    min-width: 0;
}

.service-showcase-slide {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(0, 47, 167, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 255, 0.92));
    box-shadow: var(--shadow-soft);
}

.service-showcase-slide.hidden {
    display: none;
}

.service-showcase-visual {
    position: relative;
    min-height: 320px;
    padding: 24px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, rgba(0, 47, 167, 0.16), rgba(79, 124, 255, 0.24));
}

.service-showcase-visual::before,
.service-showcase-visual::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.service-showcase-visual::before {
    width: 220px;
    height: 220px;
    right: -52px;
    top: -52px;
}

.service-showcase-visual::after {
    width: 132px;
    height: 132px;
    left: 26px;
    bottom: 22px;
}

.service-visual-orb {
    position: absolute;
    inset: auto 30px 58px auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    filter: blur(6px);
}

.service-visual-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    color: #fff;
}

.service-visual-card-main {
    width: min(100%, 250px);
    padding: 22px;
}

.service-visual-card-main strong {
    font-size: 28px;
    line-height: 1;
}

.service-visual-card-main span:last-child {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.service-visual-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.service-visual-card-float {
    position: absolute;
    right: 24px;
    top: 24px;
    min-width: 126px;
    padding: 16px 18px;
}

.service-visual-card-float span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.service-visual-card-float strong {
    font-size: 20px;
    line-height: 1.1;
}

.service-visual-lines {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 10px;
}

.service-visual-lines span {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.service-visual-lines span:nth-child(1) {
    width: 72%;
}

.service-visual-lines span:nth-child(2) {
    width: 54%;
}

.service-visual-lines span:nth-child(3) {
    width: 42%;
}

.service-showcase-visual--sourcing {
    background: linear-gradient(135deg, #b7cbff, #3d6fff);
}

.service-showcase-visual--verification-inspection {
    background: linear-gradient(135deg, #bce4ff, #2f7fff);
}

.service-showcase-visual--china-representative {
    background: linear-gradient(135deg, #ced0ff, #4f63ff);
}

.service-showcase-visual--one-stop-trading {
    background: linear-gradient(135deg, #b7d2ff, #2952ea);
}

.service-showcase-visual--logistics-consulting {
    background: linear-gradient(135deg, #b9e8ff, #1d5ce5);
}

.service-showcase-visual--business-visits {
    background: linear-gradient(135deg, #d9e0ff, #4d78ff);
}

.service-showcase-content {
    display: grid;
    align-content: start;
    gap: 12px;
}

.service-showcase-lead {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.68;
    letter-spacing: 0.01em;
}

.service-module-lead {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
}

.service-showcase-note,
.service-module-note {
    display: grid;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 47, 167, 0.1);
}

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

.service-showcase-note-copy,
.service-module-copy {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.8;
}

.service-showcase-actions {
    margin-top: 6px;
}

.services-showcase-nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.service-showcase-toggle {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 47, 167, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    display: grid;
    gap: 6px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    min-width: 0;
}

.service-showcase-toggle:hover,
.service-showcase-toggle.is-active {
    border-color: rgba(0, 47, 167, 0.22);
    background: rgba(0, 47, 167, 0.06);
    box-shadow: var(--shadow-soft);
}

.service-showcase-toggle.is-active {
    transform: translateY(-1px);
}

.service-showcase-toggle-index {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.service-showcase-toggle-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--ink);
    text-wrap: pretty;
}

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

.service-module-card {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 100%;
    min-width: 0;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(0, 47, 167, 0.08);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
}

.service-module-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-module-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 47, 167, 0.08);
    color: var(--accent);
}

.service-module-icon .service-visual-glyph,
.service-visual-icon .service-visual-glyph {
    width: 56%;
    height: 56%;
}

.service-module-card--sourcing .service-module-icon {
    background: rgba(61, 111, 255, 0.12);
}

.service-module-card--verification-inspection .service-module-icon {
    background: rgba(47, 127, 255, 0.12);
}

.service-module-card--china-representative .service-module-icon {
    background: rgba(79, 99, 255, 0.12);
}

.service-module-card--one-stop-trading .service-module-icon {
    background: rgba(41, 82, 234, 0.12);
}

.service-module-card--logistics-consulting .service-module-icon {
    background: rgba(29, 92, 229, 0.12);
}

.service-module-card--business-visits .service-module-icon {
    background: rgba(77, 120, 255, 0.12);
}

.card,
.service-card,
.content-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 34, 46, 0.08);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.service-card {
    display: grid;
    gap: 14px;
    min-height: 100%;
}

.service-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-meta::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: currentColor;
}

.card-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.card-copy {
    margin: 0;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 700;
}

.inline-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.inline-link:hover::after {
    transform: translateX(3px);
}

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

.stat-card {
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 247, 255, 0.98));
}

.stat-value {
    display: block;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 0.92;
}

.stat-label {
    display: block;
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dual-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
    gap: 22px;
    align-items: start;
}

.home-about-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.home-about-main {
    display: grid;
    gap: 22px;
    align-content: start;
}

.home-about-copy {
    max-width: 640px;
}

.home-about-copy p {
    max-width: 34ch;
    font-size: 1.04rem;
    line-height: 1.9;
    text-wrap: pretty;
}

.home-about-figure {
    margin: 0;
    min-height: 260px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 47, 167, 0.08);
}

.home-about-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
}

.rich-text p {
    margin: 0 0 16px;
}

.rich-text p:last-child {
    margin-bottom: 0;
}

.bullet-list,
.mini-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

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

.value-card {
    padding: 22px;
}

.value-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.value-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    background: rgba(0, 47, 167, 0.08);
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.value-card-advantage {
    padding-top: 24px;
}

.value-card h3,
.process-step h3,
.contact-card h3,
.industry-group h3,
.category-card h4,
.faq-question {
    margin: 0;
    font-size: 1.24rem;
}

.value-card p,
.process-step p,
.contact-card p,
.industry-group p,
.category-card p,
.faq-answer p {
    margin: 10px 0 0;
    color: var(--ink-soft);
    line-height: 1.8;
}

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

.process-step {
    padding: 24px;
    position: relative;
}

.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 800;
}

.note-card {
    padding: 22px;
    background: linear-gradient(180deg, rgba(0, 47, 167, 0.08), rgba(0, 47, 167, 0.02));
}

.note-card h3 {
    margin: 0 0 12px;
    font-size: 1.24rem;
}

.cta-panel {
    padding: 32px;
    display: grid;
    gap: 16px;
    align-items: start;
}

.cta-panel .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

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

.faq-item {
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    line-height: 1.5;
    padding-right: 8px;
}

.faq-icon {
    flex: none;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--ink);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease;
}

.faq-answer-inner {
    padding: 0 24px 24px;
}

.faq-answer-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: 18px;
}

.faq-cta {
    box-shadow: none;
}

.faq-email-link {
    font-size: 0.95rem;
    word-break: break-word;
}

.contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
}

.form-card,
.contact-card {
    padding: 28px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 8px;
}

.field label {
    font-size: 0.94rem;
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(16, 34, 46, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    border-radius: 16px;
    padding: 14px 16px;
}

.field textarea {
    min-height: 156px;
    resize: vertical;
}

.form-note {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.contact-cards {
    display: grid;
    gap: 16px;
}

.social-list,
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-list a,
.quick-links a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(16, 34, 46, 0.06);
    transition: background-color 0.2s ease;
    min-width: 0;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.social-list a:hover,
.quick-links a:hover {
    background: rgba(0, 47, 167, 0.12);
}

.industry-stack {
    display: grid;
    gap: 20px;
}

.industry-group {
    padding: 24px;
}

.category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.category-card {
    padding: 18px;
    background: rgba(255, 255, 255, 0.68);
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: grid;
    gap: 8px;
}

.category-card li {
    color: var(--ink-soft);
    line-height: 1.65;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.94rem;
}

.site-footer {
    padding: 0 0 42px;
}

.footer-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(220px, 0.7fr));
    gap: 24px;
    padding: 30px;
}

.footer-brand strong {
    display: block;
    font-size: 2rem;
    line-height: 0.98;
}

.footer-brand span {
    display: block;
    margin-top: 10px;
    color: var(--ink-soft);
    text-wrap: pretty;
}

.footer-title {
    margin: 0 0 14px;
    font-size: 1.08rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--ink-soft);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.page-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(16, 34, 46, 0.06);
    font-size: 0.9rem;
    color: var(--ink-soft);
    white-space: normal;
    line-height: 1.4;
}

.empty-state {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink-soft);
}

body.page-home .hero-panel {
    background:
        radial-gradient(circle at right top, rgba(79, 124, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.98));
}

body.page-home .hero-panel::after,
body.page-services .hero-panel::after,
body.page-expertise .hero-panel::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    border-radius: 48px;
    background: linear-gradient(135deg, rgba(0, 47, 167, 0.16), rgba(79, 124, 255, 0.18));
    transform: rotate(24deg);
    pointer-events: none;
}

@media (max-width: 1100px) {
    .site-header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-area {
        display: none;
    }

    .menu-toggle,
    .mobile-drawer {
        display: flex;
    }

    .mobile-drawer {
        position: fixed;
        inset: var(--nav-height) 16px auto;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        border: 1px solid rgba(0, 47, 167, 0.1);
        flex-direction: column;
        gap: 12px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .mobile-drawer.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-link,
    .mobile-service-link {
        padding: 14px 16px;
        border-radius: 16px;
        background: rgba(0, 47, 167, 0.05);
        font-weight: 700;
    }

    .mobile-cta {
        width: 100%;
    }

    .mobile-email-link {
        color: var(--accent);
        background: rgba(0, 47, 167, 0.08);
    }

    .mobile-service-group {
        display: grid;
        gap: 8px;
        padding: 8px;
        border-radius: 18px;
        background: rgba(0, 47, 167, 0.06);
    }

    .hero-grid,
    .dual-column,
    .contact-grid,
    .footer-panel {
        grid-template-columns: 1fr;
    }

    .home-cinema-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 64px 0 140px;
    }

    .home-cinema-panels {
        min-height: 280px;
    }

    .home-cinema-card--main {
        top: 0;
        right: 0;
    }

    .home-cinema-card--stack {
        right: 34px;
        bottom: 0;
    }

    .card-grid,
    .services-grid,
    .services-grid-home,
    .service-showcase-slide,
    .process-grid,
    .stats-grid,
    .value-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .services-showcase-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .home-cinema-controls {
        gap: 10px;
        margin-top: -62px;
        min-width: 148px;
    }

    .home-cinema-metrics,
    .services-grid-home-premium {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-showcase-visual {
        min-height: 300px;
    }
}

@media (max-width: 1240px) {
    .site-header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: center;
        padding: 0;
    }

    .nav-area {
        display: none;
    }

    .menu-toggle,
    .mobile-drawer {
        display: flex;
    }

    .brand-copy {
        max-width: 214px;
    }

    .brand-name {
        font-size: 1.22rem;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    .header-tools {
        gap: 8px;
    }

    .button-compact {
        padding: 10px 12px;
        font-size: 12px;
    }

    .language-link {
        min-width: 42px;
        padding: 8px 9px;
    }

    .section-head {
        gap: 14px;
    }

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

    .home-about-copy {
        max-width: none;
    }

    .home-about-copy p {
        max-width: none;
    }

    .home-about-figure {
        min-height: 220px;
    }
}

@media (max-width: 1100px) {
    .services-grid-home-premium,
    .value-grid {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: clamp(28px, 3vw, 36px);
    }

    .faq-answer-actions {
        align-items: stretch;
    }
}

@media (max-width: 960px) {
    .header-cta {
        display: none;
    }

    .brand-copy {
        max-width: 176px;
    }

    .brand-tagline {
        display: none;
    }

    .footer-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(var(--content-width), calc(100% - 24px));
    }

    .hero-panel,
    .section-panel,
    .cta-panel,
    .footer-panel,
    .form-card,
    .contact-card {
        padding: 24px;
    }

    .hero {
        padding-top: 20px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 13vw, 3.8rem);
    }

    .home-cinema-stage,
    .home-cinema-slide {
        height: auto;
        min-height: 620px;
    }

    .home-cinema-grid {
        height: auto;
        padding: 46px 0 112px;
    }

    .home-cinema-title {
        font-size: clamp(28px, 8vw, 36px);
    }

    .home-cinema-subtitle {
        font-size: 17px;
    }

    .home-cinema-description {
        font-size: 14px;
        line-height: 1.9;
    }

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

    .brand {
        gap: 12px;
    }

    .brand-mark {
        width: 56px;
        height: 56px;
        padding: 8px;
    }

    .brand-copy {
        max-width: 186px;
    }

    .brand-name {
        font-size: 1.14rem;
    }

    .brand-tagline {
        font-size: 0.72rem;
    }

    .service-showcase-visual {
        min-height: 240px;
        padding: 18px;
    }

    .home-cinema-panels {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .home-cinema-card {
        position: relative;
        inset: auto;
        width: 100%;
        transform: none;
    }

    .home-cinema-metrics,
    .services-grid-home-premium,
    .services-showcase-nav,
    .services-module-grid {
        grid-template-columns: 1fr;
    }

    .home-cinema-controls {
        margin-top: -52px;
        padding: 10px 14px;
        border-radius: 18px;
        min-width: 132px;
    }

    .home-overview {
        padding-top: 56px;
    }

    .service-showcase-toggle {
        padding: 10px 12px;
    }

    .service-showcase-lead {
        font-size: 18px;
    }

    .service-module-lead {
        font-size: 16px;
    }

    .service-visual-card-main {
        width: min(100%, 220px);
        padding: 18px;
    }

    .service-visual-card-main strong {
        font-size: 28px;
    }

    .service-visual-card-float {
        right: 18px;
        top: 18px;
        min-width: 112px;
        padding: 14px 16px;
    }

    .header-tools {
        gap: 8px;
    }

    .header-cta {
        display: none;
    }

    .language-switcher {
        gap: 4px;
        padding: 4px;
    }

    .language-link {
        min-width: 42px;
        padding: 8px 10px;
        font-size: 0.88rem;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
