:root {
    --color-primary: #0A2540;
    --color-accent: #FF6A00;
    --color-bg: #F5F7FA;
    --color-surface: #ffffff;
    --color-line: #d9e1ec;
    --color-text: #0d1f33;
    --color-muted: #61758a;
    --shadow-soft: 0 18px 40px rgba(10, 37, 64, 0.08);
    --shadow-card: 0 20px 50px rgba(10, 37, 64, 0.1);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1200px;
    --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
    --font-display: "Rajdhani", "IBM Plex Sans", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 106, 0, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(10, 37, 64, 0.1), transparent 30%),
        var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

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

.shell-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(245, 247, 250, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: 0.25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(10, 37, 64, 0.08);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
}

.site-header .container {
    min-height: 82px;
}

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

.brand__mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #123b68 70%, var(--color-accent));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}

.brand__copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand__copy strong {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.03em;
}

.brand__copy small {
    color: var(--color-muted);
    font-size: 12px;
    white-space: nowrap;
}

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

.nav__link,
.lang-switch {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--color-muted);
    font-weight: 600;
    transition: 0.2s ease;
}

.nav__link:hover,
.lang-switch:hover {
    background: rgba(10, 37, 64, 0.06);
    color: var(--color-primary);
}

.nav__link.is-active {
    color: #fff;
    background: var(--color-primary);
}

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

.mobile-toggle,
.mobile-panel {
    display: none;
}

.mobile-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(10, 37, 64, 0.12);
    background: #fff;
    border-radius: 14px;
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary);
    margin: 4px auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent), #ff8a3d);
    box-shadow: 0 16px 30px rgba(255, 106, 0, 0.24);
}

.btn--ghost {
    color: var(--color-primary);
    background: rgba(10, 37, 64, 0.06);
    box-shadow: inset 0 0 0 1px rgba(10, 37, 64, 0.08);
}

.btn--light {
    color: #fff;
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}

.btn--block {
    width: 100%;
}

.section {
    padding: 88px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.section-heading--compact {
    align-items: center;
}

.section-heading--compact h2 {
    width: 100%;
}

.section-heading__action {
    flex-shrink: 0;
    white-space: nowrap;
}

.section-heading h2,
.page-hero h1,
.hero-slide__title,
.product-detail__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: 0.02em;
}

.section-heading h2 {
    font-size: clamp(32px, 5vw, 52px);
}

.section-heading p,
.page-hero p,
.hero-slide__description {
    margin: 0;
    max-width: 620px;
    color: var(--color-muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.hero {
    padding: 0 0 28px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
        radial-gradient(circle at top right, rgba(255, 106, 0, 0.22), transparent 34%),
        linear-gradient(135deg, #081e34 0%, #0A2540 58%, #133e68 100%);
    color: #fff;
    box-shadow: var(--shadow-card);
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
    pointer-events: none;
}

.hero-slide {
    display: none;
    position: relative;
    padding: 72px 0;
}

.hero-slide.is-active {
    display: block;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: 84px;
    width: min(1440px, calc(100% - 48px));
}

.hero-slide__title {
    font-size: clamp(42px, 7vw, 76px);
    max-width: 720px;
}

.hero-actions,
.tag-list,
.stats-grid,
.cards-grid,
.product-grid,
.feature-grid,
.partner-grid,
.footer-grid,
.contact-grid,
.detail-grid {
    display: grid;
    gap: 20px;
}

.hero-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
    margin-top: 30px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    margin-bottom: 10px;
}

.hero-category-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
}

.hero-pill,
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.86);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.visual-placeholder {
    display: grid;
    place-items: center;
    min-height: 400px;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(255,255,255,0.04);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
    text-align: center;
}

.hero-image {
    min-height: 520px;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: contain;
    display: block;
}

.visual-placeholder--light {
    min-height: 220px;
    background: linear-gradient(135deg, #b7c0cc, #8f9bab);
    box-shadow: none;
    color: #fff;
}

.visual-placeholder span,
.placeholder-card span {
    display: block;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.visual-placeholder small,
.placeholder-card small {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,0.82);
}

.hero-controls {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-btn,
.slider-dot,
.float-actions__item {
    border: 0;
    cursor: pointer;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.26);
}

.slider-dot.is-active {
    width: 28px;
    background: var(--color-accent);
}

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

.testimonial-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}

.testimonial-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg), rgba(245, 247, 250, 0));
}

.testimonial-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-bg), rgba(245, 247, 250, 0));
}

.testimonial-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: testimonial-scroll 36s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

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

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

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

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

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

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

.card,
.category-card,
.product-card,
.feature-card,
.news-card,
.testimonial-card,
.contact-card,
.policy-card,
.sidebar-card,
.faq-card,
.detail-panel {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.testimonial-card {
    box-shadow: none;
}

.category-card,
.product-card,
.feature-card,
.news-card,
.testimonial-card,
.faq-card {
    padding: 24px;
}

.category-card h3,
.product-card h3,
.feature-card h3,
.news-card h3,
.testimonial-card h3,
.faq-card h3,
.contact-card h3,
.sidebar-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card p,
.feature-card p,
.news-card p,
.testimonial-card p,
.faq-card p,
.contact-card p,
.sidebar-card p,
.meta-list,
.product-card p,
.rich-text,
.policy-card p {
    color: var(--color-muted);
}

.news-card h3 a {
    transition: color 0.2s ease;
}

.news-card h3 a:hover {
    color: var(--color-accent);
}

.icon-box {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.08), rgba(255, 106, 0, 0.12));
    color: var(--color-primary);
    font-size: 22px;
}

.stat-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.98), rgba(10, 37, 64, 0.88));
    color: #fff;
    box-shadow: var(--shadow-card);
}

.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 54px);
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.72);
}

.split-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.about-section {
    background: #ffffff;
}

.news-section {
    background: #ffffff;
}

.contact-section {
    background: #ffffff;
}

.about-copy {
    display: grid;
    gap: 18px;
}

.about-copy .card {
    padding: 26px;
}

.about-copy ul {
    margin: 0;
    padding-left: 18px;
    color: var(--color-muted);
}

.product-card__media,
.news-card__media,
.map-placeholder,
.placeholder-card {
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #97a6b7, #738397);
    min-height: 190px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    text-align: center;
}

.market-layout {
    display: block;
}

.market-accordion {
    display: flex;
    gap: 12px;
    min-height: 340px;
}

.market-item {
    position: relative;
    flex: 0 0 118px;
    min-width: 0;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: flex-basis 0.34s ease, flex-grow 0.34s ease, transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.market-item:hover,
.market-item:focus-within {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 0, 0.28);
    box-shadow: 0 20px 42px rgba(10, 37, 64, 0.12);
}

.market-item.is-active {
    flex: 1 1 0;
    border-color: rgba(49, 123, 237, 0.42);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 28%),
        linear-gradient(135deg, #3384f5 0%, #2d73dc 100%);
    box-shadow: 0 24px 52px rgba(33, 96, 190, 0.24);
}

.market-item__trigger {
    position: absolute;
    inset: 0;
    z-index: 4;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.market-item__collapsed,
.market-item__expanded {
    position: relative;
    min-height: 340px;
}

.market-item__collapsed {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    padding: 28px 18px;
    text-align: center;
}

.market-item__collapsed-line {
    width: 38px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-accent), #ff934c);
}

.market-item__name {
    color: var(--color-primary);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
}

.market-item__expanded {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
    align-items: stretch;
    gap: 24px;
    padding: 34px 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.market-item.is-active .market-item__expanded {
    opacity: 1;
}

.market-item.is-active .market-item__collapsed {
    opacity: 0;
}

.market-item__copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.market-item__eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.88);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.market-item__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.05;
    letter-spacing: 0.03em;
}

.market-item__divider {
    width: 34px;
    height: 3px;
    margin: 18px 0 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
}

.market-item__copy p {
    margin: 0 0 14px;
    max-width: 360px;
    color: rgba(255,255,255,0.92);
}

.market-item__copy small {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.market-item__map {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    min-height: 100%;
    border-radius: 20px;
    background:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
        rgba(255,255,255,0.12);
    background-size: 24px 24px, 24px 24px, auto;
    border: 1px solid rgba(255,255,255,0.16);
    text-align: center;
}

.market-item__map::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 16px;
    border: 1px dashed rgba(255,255,255,0.18);
}

.market-item__map span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(28px, 2.4vw, 40px);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.product-card__media {
    position: relative;
}

.product-card__media img,
.news-card__media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
}

.product-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.product-card__eyebrow::before {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
}

.product-card__model {
    margin-bottom: 10px;
}

.product-card__model strong {
    color: var(--color-text);
}

.product-card__media span,
.news-card__media span,
.map-placeholder span,
.placeholder-card span {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
}

.product-card__meta,
.news-card__meta,
.article-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--color-muted);
    font-size: 14px;
}

.chip {
    background: rgba(10, 37, 64, 0.06);
    color: var(--color-primary);
    box-shadow: none;
}

.product-card__actions,
.news-card__actions {
    margin-top: 18px;
}

.article-list {
    display: grid;
    gap: 20px;
}

.page-hero {
    padding: 70px 0 28px;
}

.page-hero__panel {
    padding: 38px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 106, 0, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(10, 37, 64, 0.98), rgba(13, 46, 78, 0.92));
    color: #fff;
    box-shadow: var(--shadow-card);
}

.page-hero__panel p {
    color: rgba(255,255,255,0.72);
}

.page-hero h1 {
    font-size: clamp(36px, 6vw, 64px);
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    padding-bottom: 88px;
}

.article-card,
.faq-entry {
    padding: 28px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
}

.article-card h2,
.faq-entry h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.sidebar-card {
    padding: 24px;
}

.sidebar-card ul,
.footer-grid div,
.contact-card ul {
    display: grid;
    gap: 12px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rich-text {
    font-size: 16px;
}

.rich-text img {
    border-radius: 18px;
}

.rich-text p,
.policy-card li {
    margin: 0 0 16px;
}

.detail-panel {
    padding: 32px;
}

.product-detail__title {
    font-size: clamp(34px, 6vw, 58px);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
    text-align: left;
}

.spec-table th {
    color: var(--color-muted);
    width: 32%;
    font-weight: 600;
}

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

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

.pill-list li,
.bullet-list li,
.region-list span,
.partner-pill {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(10, 37, 64, 0.04);
    border: 1px solid rgba(10, 37, 64, 0.06);
}

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

.testimonial-card cite {
    display: block;
    color: var(--color-primary);
    font-style: normal;
    font-weight: 700;
}

.testimonial-card {
    position: relative;
    flex: 0 0 calc((min(var(--container), calc(100vw - 32px)) - 48px) / 4);
    width: calc((min(var(--container), calc(100vw - 32px)) - 48px) / 4);
    padding-top: 26px;
    display: flex;
    flex-direction: column;
}

.testimonial-card__mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.14), rgba(10, 37, 64, 0.08));
    color: var(--color-accent);
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.testimonial-card h3 {
    font-size: 17px;
    line-height: 1.65;
    flex: 1 1 auto;
}

.testimonial-card small {
    display: block;
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 14px;
}

.testimonial-card__person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
}

.testimonial-card__avatar {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(10, 37, 64, 0.12);
    border: 1px solid rgba(10, 37, 64, 0.08);
}

.testimonial-card__avatar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.testimonial-card__flag {
    transform: translateY(3px);
}

.testimonial-card__meta {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.testimonial-card__meta small {
    margin-top: 0;
}

.testimonial-card__meta small::before {
    content: "/";
    margin-right: 8px;
    color: rgba(10, 37, 64, 0.28);
}

@keyframes testimonial-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 8px));
    }
}

.trust-subhead {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0 18px;
}

.trust-subhead h3 {
    margin: 0;
    font-size: 24px;
    color: var(--color-primary);
}

.trust-subhead p {
    margin: 0;
    max-width: 560px;
    color: var(--color-muted);
}

.partner-card {
    min-height: 100%;
    padding: 20px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f7f9fc);
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: var(--shadow-soft);
}

.partner-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.08), rgba(255, 106, 0, 0.16));
    color: var(--color-primary);
    font-size: 18px;
}

.partner-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--color-primary);
}

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

.partner-grid {
    margin-top: 0;
}

.contact-card {
    padding: 28px;
}

.contact-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-card li {
    display: flex;
    gap: 14px;
}

.contact-card i {
    width: 20px;
    margin-top: 3px;
    color: var(--color-accent);
}

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

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

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

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(10, 37, 64, 0.12);
    border-radius: 16px;
    background: #fff;
    color: var(--color-text);
}

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

.form-status {
    min-height: 22px;
    font-size: 14px;
}

.form-status.is-success {
    color: #0f8d49;
}

.form-status.is-error {
    color: #bf3f00;
}

.site-footer {
    margin-top: 88px;
    padding: 40px 0 24px;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.98), rgba(6, 19, 34, 1));
    color: rgba(255,255,255,0.74);
}

.footer-grid {
    grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
    padding-bottom: 28px;
}

.site-footer h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-brand p {
    max-width: 360px;
}

.brand--footer .brand__copy small {
    color: rgba(255,255,255,0.58);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a,
.float-actions__item {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
}

.float-actions {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 30;
    display: grid;
    gap: 10px;
}

.float-actions__item {
    border: 0;
    box-shadow: 0 14px 30px rgba(10, 37, 64, 0.16);
}

.mobile-cta {
    display: none;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0;
    margin: 32px 0 0;
}

.pagination li {
    list-style: none;
}

.pagination a,
.pagination span {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(10, 37, 64, 0.1);
}

.pagination .active span {
    background: var(--color-primary);
    color: #fff;
}

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

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

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

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

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

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

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

    .mobile-toggle,
    .mobile-panel {
        display: block;
    }

    .mobile-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
        background: rgba(245, 247, 250, 0.95);
        border-top: 1px solid rgba(10, 37, 64, 0.08);
    }

    .mobile-panel.is-open {
        max-height: 420px;
    }

    .mobile-panel__inner {
        width: min(var(--container), calc(100% - 32px));
        margin: 0 auto;
        padding: 18px 0 24px;
        display: grid;
        gap: 10px;
    }

    .mobile-panel__link {
        padding: 12px 16px;
        background: #fff;
        border-radius: 16px;
        border: 1px solid rgba(10, 37, 64, 0.08);
    }

    .hero-slide,
    .page-hero__panel {
        padding: 32px 0;
    }

    .hero-grid,
    .split-panel,
    .content-layout,
    .detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-image,
    .hero-image img {
        min-height: 360px;
    }

    .hero-actions,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 36px;
        width: min(1440px, calc(100% - 32px));
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

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

    .testimonial-marquee::before,
    .testimonial-marquee::after {
        width: 36px;
    }

    .testimonial-card {
        flex-basis: calc((min(var(--container), calc(100vw - 32px)) - 16px) / 2);
        width: calc((min(var(--container), calc(100vw - 32px)) - 16px) / 2);
    }

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

    .market-accordion {
        flex-direction: column;
        min-height: 0;
    }

    .market-item,
    .market-item.is-active {
        flex: none;
    }

    .market-item__collapsed,
    .market-item__expanded {
        min-height: 0;
    }

    .market-item__collapsed {
        min-height: 96px;
    }

    .market-item__expanded {
        position: static;
        grid-template-columns: 1fr;
        padding: 0 22px 22px;
        max-height: 0;
        opacity: 1;
        overflow: hidden;
        pointer-events: auto;
    }

    .market-item.is-active .market-item__expanded {
        max-height: 480px;
        padding-top: 8px;
    }

    .market-item.is-active .market-item__collapsed {
        opacity: 1;
    }

    .market-item__copy {
        color: var(--color-primary);
    }

    .market-item__eyebrow {
        border-color: rgba(10, 37, 64, 0.12);
        color: var(--color-primary);
    }

    .market-item__title,
    .market-item__copy p,
    .market-item__copy small {
        color: var(--color-primary);
    }

    .market-item__divider {
        background: var(--color-accent);
    }

    .market-item__map {
        min-height: 200px;
        margin-top: 18px;
        background:
            linear-gradient(rgba(10, 37, 64, 0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(10, 37, 64, 0.06) 1px, transparent 1px),
            #eef3f9;
        border-color: rgba(10, 37, 64, 0.08);
    }

    .market-item__map::before {
        border-color: rgba(10, 37, 64, 0.12);
    }

    .market-item__map span {
        color: var(--color-primary);
    }
}

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

    .section {
        padding: 64px 0;
    }

    .cards-grid,
    .news-grid,
    .product-grid,
    .feature-grid,
    .partner-grid,
    .stats-grid,
    .pill-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        width: calc(100% - 20px);
        gap: 24px;
    }

    .hero-category-list {
        gap: 10px;
    }

    .hero-category-chip {
        font-size: 12px;
        padding: 7px 12px;
    }

    .testimonial-marquee::before,
    .testimonial-marquee::after {
        width: 20px;
    }

    .testimonial-card {
        flex-basis: min(calc(100vw - 40px), 320px);
        width: min(calc(100vw - 40px), 320px);
    }

    .brand__copy small {
        display: none;
    }

    .hero-meta {
        gap: 10px;
    }

    .hero-controls {
        position: static;
        padding: 0 12px 24px;
        justify-content: space-between;
    }

    .float-actions {
        display: none;
    }

    .mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 30;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px;
        background: rgba(245, 247, 250, 0.94);
        backdrop-filter: blur(14px);
        border-top: 1px solid rgba(10, 37, 64, 0.08);
    }

    body {
        padding-bottom: 84px;
    }
}
