:root {
    --bg: #f5f9fc;
    --surface: #ffffff;
    --surface-alt: #eef5fb;
    --ink: #10233f;
    --muted: #5b708c;
    --line: #d6e3f0;
    --primary: #1c5fb8;
    --primary-deep: #133f78;
    --accent: #5ec4de;
    --shadow: 0 24px 60px rgba(16, 35, 63, 0.08);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1480px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(94, 196, 222, 0.15), transparent 25%),
        linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
    color: var(--ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    border-radius: inherit;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.product-image-link:hover,
.product-image-link:focus-visible {
    filter: brightness(0.96);
    box-shadow: 0 0 0 4px rgba(28, 95, 184, 0.1);
}

.product-image-link:focus-visible {
    outline: none;
}

main {
    flex: 1;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(214, 227, 240, 0.7);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 24px;
}

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

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(214, 227, 240, 0.95);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 10px 22px rgba(16, 35, 63, 0.06);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.brand-logo {
    display: block;
    width: min(100%, 320px);
    max-width: 320px;
    height: auto;
}

.site-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    color: var(--muted);
    font-weight: 600;
    align-items: center;
}

.site-nav a,
.nav-dropdown-trigger {
    white-space: nowrap;
}

.site-nav a:hover,
.nav-dropdown:focus-within .nav-dropdown-trigger {
    color: var(--primary);
}

.site-nav a.is-active {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 30;
    min-width: 220px;
    padding: 8px;
    border: 1px solid rgba(214, 227, 240, 0.95);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(16, 35, 63, 0.14);
    display: none;
    gap: 4px;
    transform: translate(-50%, -6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--muted);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: #eef5fb;
    color: var(--primary-deep);
    outline: none;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(214, 227, 240, 0.9);
    background: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    color: var(--muted);
}

.lang-pill.is-active {
    color: var(--primary);
    border-color: rgba(28, 95, 184, 0.25);
    box-shadow: 0 10px 24px rgba(28, 95, 184, 0.12);
}

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

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(360px, 0.9fr);
    gap: 32px;
    align-items: stretch;
}

.hero-copy,
.panel-card,
.panel-note,
.product-card,
.process-card,
.footer-card {
    background: var(--surface);
    border: 1px solid rgba(214, 227, 240, 0.9);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 42px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 196, 222, 0.22), transparent 68%);
}

.eyebrow,
.section-kicker,
.panel-title,
.product-tag {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 800;
}

.eyebrow,
.section-kicker,
.product-tag {
    color: var(--primary);
}

.hero h1,
.company-section h2,
.section-heading h2,
.process-card h2,
.site-footer h2 {
    margin: 12px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    line-height: 1.08;
}

.hero h1 {
    font-size: clamp(2.15rem, 3vw, 3.45rem);
    max-width: 15ch;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero-copy > p {
    max-width: 62ch;
    font-size: 1.1rem;
}

.hero p,
.company-text p,
.section-heading p,
.product-card p,
.process-card p {
    color: var(--muted);
    line-height: 1.75;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
}

.button-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
}

.button-secondary {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 32px 0 0;
}

.hero-stats div {
    padding: 16px 18px;
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.hero-stats dt {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-stats dd {
    margin: 8px 0 0;
    font-weight: 700;
    line-height: 1.5;
}

.hero-panel {
    display: grid;
    gap: 20px;
}

.panel-card,
.panel-note {
    border-radius: var(--radius-lg);
}

.panel-card {
    padding: 28px;
}

.panel-title {
    color: var(--primary-deep);
}

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

.category-list li {
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #fff, #f7fbff);
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
    min-height: 52px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.category-list li:hover,
.category-list li:focus-within {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #eef5fb, #e3edf7);
    border-color: rgba(28, 95, 184, 0.28);
    box-shadow: 0 12px 24px rgba(16, 35, 63, 0.08);
}

.category-list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 18px;
    outline: none;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.category-list a:focus-visible {
    box-shadow: inset 0 0 0 3px rgba(28, 95, 184, 0.18);
}

.panel-note {
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(28, 95, 184, 0.08), rgba(94, 196, 222, 0.14));
}

.panel-note span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-deep);
    font-weight: 800;
}

.company-section,
.medicine-section,
.featured-section,
.process-section,
.contact-section,
.privacy-section,
.partners-section {
    padding: 40px 0 0;
}

.page-hero {
    padding: 56px 0 20px;
}

.page-hero-shell {
    padding: 38px 42px;
    background: linear-gradient(145deg, #ffffff, #eef6fc);
    border: 1px solid rgba(214, 227, 240, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.page-hero h1 {
    margin: 12px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.95rem, 3.5vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.75;
}

.veterinary-hero-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.veterinary-logo {
    width: min(360px, 38vw);
    height: auto;
    object-fit: contain;
}

.company-grid,
.section-heading,
.process-grid {
    display: grid;
    gap: 28px;
}

.company-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
}

.company-text {
    padding: 26px 30px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(214, 227, 240, 0.9);
    border-radius: var(--radius-lg);
}

.capability-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
}

.capability-list li {
    position: relative;
    padding-left: 22px;
    line-height: 1.65;
    color: var(--ink);
}

.capability-list li::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(94, 196, 222, 0.15);
}

.section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    align-items: end;
    margin-bottom: 28px;
}

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

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

.partner-card {
    padding: 16px;
    min-height: 132px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(214, 227, 240, 0.9);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.partner-card img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

.products-layout-section {
    padding-top: 20px;
}

.products-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
    gap: 28px;
    align-items: start;
}

.section-heading-compact {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
}

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

.medicine-choice-card {
    display: block;
    padding: 30px 32px;
    background: #fff;
    border: 1px solid rgba(214, 227, 240, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.medicine-choice-card:hover,
.medicine-choice-card:focus-visible {
    transform: translateY(-4px);
    background: linear-gradient(180deg, #fff, #f7fbff);
    border-color: rgba(28, 95, 184, 0.3);
    box-shadow: 0 28px 60px rgba(16, 35, 63, 0.12);
    outline: none;
}

.medicine-choice-card h2,
.medicine-choice-card h3 {
    margin: 12px 0 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.15;
}

.medicine-choice-card p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.products-medicine-section {
    padding-top: 20px;
}

.medicine-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    background: #fff;
    border: 1px solid rgba(214, 227, 240, 0.9);
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.medicine-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.medicine-tab:hover,
.medicine-tab:focus-visible {
    background: #eef5fb;
    color: var(--primary-deep);
    outline: none;
}

.medicine-tab.is-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    box-shadow: 0 10px 22px rgba(28, 95, 184, 0.18);
}

.medicine-target {
    scroll-margin-top: 110px;
}

.product-card {
    border-radius: var(--radius-md);
    padding: 24px;
    scroll-margin-top: 110px;
}

.product-card:target {
    border-color: rgba(28, 95, 184, 0.38);
    box-shadow: 0 28px 60px rgba(16, 35, 63, 0.14), 0 0 0 4px rgba(28, 95, 184, 0.08);
}

.product-card-link {
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card-link:hover {
    transform: translateY(-4px);
    border-color: rgba(28, 95, 184, 0.28);
    box-shadow: 0 28px 60px rgba(16, 35, 63, 0.12);
}

.product-card h3,
.process-card h3 {
    margin: 14px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.3rem;
}

.product-visual {
    margin-top: 22px;
    height: 170px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(28, 95, 184, 0.12), rgba(255, 255, 255, 0.2)),
        linear-gradient(135deg, #f4f8fc, #dbe7f3);
    border: 1px solid rgba(214, 227, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 10px;
}

.product-visual span {
    position: absolute;
    display: block;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(28, 95, 184, 0.12);
    box-shadow: 0 12px 24px rgba(16, 35, 63, 0.06);
}

.product-visual span:nth-child(1) {
    inset: auto auto 26px 22px;
    width: 86px;
    height: 106px;
}

.product-visual span:nth-child(2) {
    inset: 20px 24px auto auto;
    width: 74px;
    height: 74px;
}

.product-visual span:nth-child(3) {
    inset: auto 40px 18px auto;
    width: 120px;
    height: 48px;
}

.product-detail-section {
    padding: 20px 0 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 30px;
    align-items: start;
}

.product-detail-media,
.product-detail-card {
    background: #fff;
    border: 1px solid rgba(214, 227, 240, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.product-detail-media {
    padding: 26px;
    display: grid;
    place-items: center;
    min-height: 360px;
    max-height: 620px;
    overflow: hidden;
}

.product-detail-media img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-md);
}

.product-detail-placeholder {
    min-height: 320px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(28, 95, 184, 0.12), rgba(255, 255, 255, 0.2)),
        linear-gradient(135deg, #f4f8fc, #dbe7f3);
    border: 1px solid rgba(214, 227, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.product-detail-placeholder span {
    position: absolute;
    display: block;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(28, 95, 184, 0.12);
    box-shadow: 0 18px 34px rgba(16, 35, 63, 0.08);
}

.product-detail-placeholder span:nth-child(1) {
    inset: 72px auto auto 52px;
    width: 118px;
    height: 160px;
}

.product-detail-placeholder span:nth-child(2) {
    inset: 46px 58px auto auto;
    width: 116px;
    height: 116px;
}

.product-detail-placeholder span:nth-child(3) {
    inset: auto 76px 62px auto;
    width: 184px;
    height: 68px;
}

.product-detail-card {
    padding: 30px 32px;
}

.immunology-models {
    display: grid;
    gap: 24px;
}

.immunology-model-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 0;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(214, 227, 240, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.immunology-model-media {
    display: grid;
    place-items: center;
    min-height: 360px;
    max-height: 620px;
    background: linear-gradient(180deg, #fbfdff, #eef5fb);
    border-right: 1px solid rgba(214, 227, 240, 0.9);
    overflow: hidden;
}

.immunology-model-media img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: contain;
    padding: 26px;
}

.veterinary-product-media img {
    max-height: 620px;
}

.immunology-model-copy {
    padding: 30px 32px;
}

.immunology-model-copy h2 {
    margin: 12px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2.3rem);
    line-height: 1.15;
}

.immunology-model-copy p {
    color: var(--muted);
    line-height: 1.75;
}

.product-detail-ipsu {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.product-detail-ipsu h2 {
    margin: 12px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2.2rem);
    line-height: 1.15;
}

.product-detail-ipsu p {
    color: var(--muted);
    line-height: 1.75;
}

.product-detail-ipsu-media {
    border: 1px solid rgba(214, 227, 240, 0.9);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #fbfdff, #eef5fb);
    overflow: hidden;
}

.product-detail-ipsu-media img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    padding: 16px;
}

.poct-info-image {
    margin-top: 26px;
}

.poct-info-image img {
    max-height: 460px;
}

.product-statistics-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.product-statistics-media img {
    max-height: 520px;
}

.support-comparison-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 28px;
    align-items: center;
}

.support-comparison-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.support-comparison-item {
    min-height: 260px;
    padding: 28px 22px;
    border-radius: var(--radius-md);
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    border: 1px solid rgba(214, 227, 240, 0.95);
}

.support-comparison-image {
    width: 100%;
    margin-top: 18px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(214, 227, 240, 0.9);
    background: #fff;
}

.support-comparison-image img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    padding: 10px;
    background: #fff;
}

.support-comparison-item span {
    color: var(--primary-deep);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.05;
}

.support-comparison-item strong {
    margin-top: 8px;
    color: var(--ink);
    font-size: 1.1rem;
}

.support-comparison-item p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.support-comparison-item.is-heavy {
    background: linear-gradient(180deg, #fff7ed, #fff);
    border-color: rgba(245, 158, 11, 0.35);
}

.support-comparison-item.is-light {
    background: linear-gradient(180deg, #eef7ff, #fff);
    border-color: rgba(28, 95, 184, 0.28);
}

.support-comparison-arrow {
    min-width: 76px;
    min-height: 48px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f5a132;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}

.coagulation-comparison-card {
    padding: 30px;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid rgba(214, 227, 240, 0.95);
    background: #fff;
}

.comparison-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
    color: var(--ink);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 18px;
    border: 1px solid rgba(214, 227, 240, 0.95);
    text-align: left;
    vertical-align: top;
    line-height: 1.55;
}

.comparison-table thead th {
    background: var(--primary-deep);
    color: #fff;
    font-weight: 800;
}

.comparison-table tbody th {
    width: 22%;
    background: #dcecff;
    color: var(--primary-deep);
    font-weight: 800;
}

.comparison-table tbody td {
    background: #f8fbff;
}

.comparison-table tbody tr:nth-child(even) td {
    background: #edf5ff;
}

.product-detail-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-detail-gallery-card {
    background: #fff;
    border: 1px solid rgba(214, 227, 240, 0.9);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-detail-gallery-card img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    padding: 14px;
    background: linear-gradient(180deg, #fbfdff, #eef5fb);
    border-bottom: 1px solid rgba(214, 227, 240, 0.9);
}

.product-detail-gallery-card div {
    padding: 22px;
}

.product-detail-gallery-card h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
}

.product-detail-gallery-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.process-card {
    border-radius: var(--radius-md);
    padding: 28px;
}

.process-card-accent {
    background: linear-gradient(145deg, #eef7ff, #ffffff);
}

.site-footer {
    margin-top: 56px;
}

.site-footer-main {
    background: #102633;
    color: #f3f8fc;
    padding: 52px 0 44px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.contact-card {
    min-height: 100%;
    padding: 28px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: flex-start;
}

.contact-card-label {
    margin: 0;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-card h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.45rem;
    line-height: 1.15;
    color: var(--ink);
}

.contact-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-card a {
    color: var(--primary-deep);
    font-weight: 700;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.contact-email-list {
    display: grid;
    gap: 10px;
    margin-top: 2px;
}

.contact-details-card {
    margin-top: 22px;
}

.contact-details-card h2 {
    margin-top: 0;
}

.contact-details-card p {
    margin: 0 0 14px;
}

.contact-details-card a {
    color: var(--primary-deep);
    font-weight: 700;
}

.contact-details-intro {
    max-width: 58ch;
}

.contact-location-block {
    margin-top: 26px;
    margin-bottom: 24px;
    padding: 24px;
    background: linear-gradient(180deg, #fbfdff, #f3f8fd);
    border: 1px solid rgba(214, 227, 240, 0.95);
    border-radius: var(--radius-md);
}

.contact-location-block h3 {
    margin: 0 0 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    line-height: 1.2;
    color: var(--ink);
}

.contact-location-block p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.75;
}

.contact-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
}

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

.contact-detail-block {
    padding: 24px;
    background: linear-gradient(180deg, #fbfdff, #f3f8fd);
    border: 1px solid rgba(214, 227, 240, 0.95);
    border-radius: var(--radius-md);
}

.contact-detail-block h3 {
    margin: 0 0 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    line-height: 1.2;
    color: var(--ink);
}

.contact-detail-block p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.75;
}

.contact-detail-block a {
    display: block;
    margin-top: 10px;
    overflow-wrap: anywhere;
}

.form-alert {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(214, 227, 240, 0.95);
    font-weight: 700;
}

.form-alert.is-success {
    background: #edf9f2;
    color: #17603a;
    border-color: rgba(23, 96, 58, 0.18);
}

.form-alert.is-error {
    background: #fff1f1;
    color: #9b2323;
    border-color: rgba(155, 35, 35, 0.18);
}

.contact-form-wrap {
    margin-top: 28px;
    padding: 28px;
    background: linear-gradient(180deg, #fbfdff, #f4f9fe);
    border: 1px solid rgba(214, 227, 240, 0.95);
    border-radius: var(--radius-md);
}

.contact-form-head h3 {
    margin: 0 0 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.3rem;
    color: var(--ink);
}

.contact-form-head p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.75;
}

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

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

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

.form-field span {
    font-weight: 700;
    color: var(--ink);
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(214, 227, 240, 0.95);
    border-radius: 16px;
    background: #fff;
    padding: 14px 16px;
    font: inherit;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(28, 95, 184, 0.45);
    box-shadow: 0 0 0 4px rgba(28, 95, 184, 0.08);
}

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

.contact-submit {
    justify-self: start;
    min-width: 220px;
}

.privacy-card {
    padding: 34px 38px;
    background: #ffffff;
    border: 1px solid rgba(214, 227, 240, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.privacy-card h2 {
    margin: 28px 0 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.45rem;
    color: var(--ink);
}

.privacy-card p,
.privacy-list li {
    color: var(--muted);
    line-height: 1.8;
}

.privacy-list {
    margin: 18px 0 0;
    padding-left: 20px;
}

.privacy-list li {
    margin-bottom: 14px;
}

.privacy-card a {
    color: var(--primary-deep);
    font-weight: 700;
}

.footer-bar {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.55fr) minmax(220px, 0.75fr);
    gap: 42px;
    align-items: start;
}

.footer-company h2 {
    margin: 0 0 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    line-height: 1.1;
    color: #ffffff;
}

.footer-company p,
.footer-contact p {
    margin: 0 0 14px;
    color: rgba(243, 248, 252, 0.86);
    line-height: 1.8;
}

.footer-heading {
    margin: 0 0 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    color: #ffffff;
}

.footer-links,
.footer-contact {
    display: grid;
    align-content: start;
}

.footer-links a,
.footer-contact a {
    display: block;
    margin: 0 0 12px;
    color: rgba(243, 248, 252, 0.92);
    line-height: 1.6;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.site-footer-bottom {
    background: #233442;
    color: rgba(243, 248, 252, 0.88);
}

.footer-bottom-bar {
    min-height: 78px;
    display: flex;
    align-items: center;
}

.footer-bottom-bar p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .hero-grid,
    .company-grid,
    .section-heading,
    .process-grid,
    .product-grid,
    .medicine-choice-grid,
    .partners-grid,
    .product-detail-grid,
    .product-detail-gallery,
    .immunology-model-card,
    .products-layout,
    .contact-grid,
    .contact-detail-grid,
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-card-accent,
    .section-heading > :first-child {
        grid-column: 1 / -1;
    }

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

    .footer-company {
        grid-column: 1 / -1;
    }

    .product-statistics-card,
    .support-comparison-card,
    .support-comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nav-shell,
    .site-nav,
    .hero-actions,
    .hero-stats,
    .hero-grid,
    .company-grid,
    .section-heading,
    .product-grid,
    .medicine-choice-grid,
    .process-grid,
    .partners-grid,
    .product-detail-grid,
    .product-detail-ipsu,
    .product-detail-gallery,
    .immunology-model-card,
    .products-layout,
    .contact-grid,
    .contact-detail-grid,
    .form-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 12px 0;
        gap: 14px;
        align-items: center;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-actions {
        grid-column: 1 / -1;
        width: 100%;
        display: grid;
        gap: 12px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        flex-direction: column;
        align-items: stretch;
        transition: max-height 0.24s ease, opacity 0.2s ease;
    }

    .site-header.is-menu-open .header-actions {
        max-height: 360px;
        opacity: 1;
        pointer-events: auto;
        padding-top: 6px;
    }

    .site-nav {
        display: grid;
        gap: 12px;
        padding: 12px;
        background: #fff;
        border: 1px solid rgba(214, 227, 240, 0.9);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow);
    }

    .site-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0 12px;
        border-radius: 12px;
        background: linear-gradient(180deg, #fff, #f7fbff);
    }

    .nav-dropdown {
        display: grid;
        gap: 8px;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        padding: 0 0 0 12px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        display: grid;
        transform: none;
        gap: 8px;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-menu a {
        min-height: 40px;
        padding: 0 12px;
        background: #f7fbff;
    }

    .site-nav a:hover,
    .site-nav a.is-active {
        background: #eef5fb;
    }

    .brand-logo {
        width: min(100%, 250px);
        max-width: 250px;
    }

    .lang-switcher {
        justify-content: flex-start;
    }

    .hero {
        padding-top: 30px;
    }

    .hero-copy,
    .panel-card,
    .panel-note,
    .product-card,
    .process-card,
    .footer-card,
    .company-text,
    .page-hero-shell {
        padding: 22px;
    }

    .footer-bar {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer-main {
        padding: 36px 0 30px;
    }

    .medicine-tabs {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        border-radius: var(--radius-md);
    }

    .medicine-tab {
        border-radius: var(--radius-sm);
        text-align: center;
    }

    .contact-form-wrap {
        padding: 22px;
    }

    .footer-bottom-bar {
        min-height: 64px;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .immunology-model-media {
        min-height: 260px;
        border-right: 0;
        border-bottom: 1px solid rgba(214, 227, 240, 0.9);
    }

    .immunology-model-copy {
        padding: 22px;
    }

    .veterinary-hero-shell {
        display: grid;
        gap: 22px;
    }

    .veterinary-logo {
        width: min(100%, 280px);
    }
}
