@charset "UTF-8";
/* ==========================================================================
   Medomex Pharma — front-end design system
   --------------------------------------------------------------------------
   1.  Tokens              9.  Hero                17. Contact
   2.  Reset / base       10.  Trust strip         18. Footer
   3.  Typography         11.  Section header      19. Floating actions
   4.  Layout             12.  Product card        20. Motion
   5.  Buttons            13.  Segment card        21. Utilities
   6.  Forms              14.  Value card          22. Responsive
   7.  Topbar             15.  Product detail      23. Reduced motion / print
   8.  Header / nav       16.  Bands / CTA
   ========================================================================== */

/* ==========================================================================
   1. TOKENS
   ========================================================================== */
:root {
    /* Brand — sampled from the Medomex carton artwork */
    --brand-900: #063E6E;
    --brand-800: #084E88;
    --brand-700: #0A5A9E;
    --brand-600: #0F72C4;
    --brand-500: #1E8FE1;
    --brand-400: #4FA9EA;
    --brand-300: #8CC8F2;
    --brand-200: #C3E1F8;
    --brand-100: #E4F1FC;
    --brand-050: #F2F8FE;

    /* Care green — the healthcare accent */
    --care-700: #0A7355;
    --care-600: #0E8F68;
    --care-500: #12A87A;
    --care-200: #A9E6D0;
    --care-100: #DEF5EC;

    /* Ink */
    --ink-950: #061420;
    --ink-900: #0A2137;
    --ink-800: #143452;
    --ink-700: #24455F;
    --ink-600: #3C5F79;
    --ink-500: #5B7488;
    --ink-400: #8399AB;
    --ink-300: #A8BAC8;
    --ink-200: #CBD9E4;
    --ink-100: #E3EBF1;
    --ink-050: #F1F6FA;

    /* Surfaces */
    --paper: #FFFFFF;
    --paper-2: #F7FBFE;
    --paper-3: #EEF5FB;
    --line: #E3EBF1;
    --line-strong: #CBD9E4;

    /* Feedback */
    --ok-bg: #E6F7F0;   --ok-fg: #0A6B4E;   --ok-line: #A9E6D0;
    --warn-bg: #FFF6E5; --warn-fg: #8A5A00;  --warn-line: #F5D9A0;
    --err-bg: #FDECEE;  --err-fg: #A4121F;   --err-line: #F5BFC6;

    /* Per-product accent (overridden inline) */
    --accent: var(--brand-500);

    /* Type */
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-display: "Sora", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-brand: "Source Serif 4", Georgia, "Times New Roman", serif;
    --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;

    --fs-eyebrow: clamp(0.66rem, 0.62rem + 0.18vw, 0.74rem);
    --fs-small:   clamp(0.8rem,  0.77rem + 0.14vw, 0.86rem);
    --fs-body:    clamp(0.95rem, 0.92rem + 0.18vw, 1.02rem);
    --fs-lead:    clamp(1.02rem, 0.96rem + 0.34vw, 1.19rem);
    --fs-h6:      clamp(0.98rem, 0.94rem + 0.2vw, 1.08rem);
    --fs-h5:      clamp(1.08rem, 1.02rem + 0.3vw, 1.25rem);
    --fs-h4:      clamp(1.22rem, 1.12rem + 0.5vw, 1.56rem);
    --fs-h3:      clamp(1.42rem, 1.26rem + 0.8vw, 2.05rem);
    --fs-h2:      clamp(1.72rem, 1.42rem + 1.5vw, 2.85rem);
    --fs-h1:      clamp(2.25rem, 1.65rem + 3vw, 4.4rem);

    /* Space */
    --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
    --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 2.75rem;  --sp-8: 3.5rem;
    --sp-9: 5rem;     --sp-10: 7rem;
    --section-y: clamp(3.5rem, 2.2rem + 5.2vw, 7rem);
    --gutter: clamp(1.15rem, 0.7rem + 2.2vw, 2.5rem);
    --maxw: 1240px;

    /* Radius */
    --r-xs: 5px;  --r-sm: 9px;  --r-md: 14px;
    --r-lg: 22px; --r-xl: 30px; --r-pill: 999px;

    /* Elevation — blue-tinted, layered */
    --sh-1: 0 1px 2px rgba(10, 33, 55, .05), 0 1px 3px rgba(10, 33, 55, .04);
    --sh-2: 0 1px 2px rgba(10, 33, 55, .05), 0 8px 20px -10px rgba(10, 33, 55, .14);
    --sh-3: 0 2px 4px rgba(10, 33, 55, .05), 0 18px 40px -18px rgba(10, 33, 55, .20);
    --sh-4: 0 4px 8px rgba(10, 33, 55, .06), 0 32px 64px -28px rgba(10, 33, 55, .28);
    --sh-brand: 0 10px 30px -12px rgba(15, 114, 196, .45);

    /* Motion */
    --ease: cubic-bezier(.22, .61, .36, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --t-fast: .16s;
    --t: .3s;
    --t-slow: .6s;

    --header-h: 76px;
    --topbar-h: 40px;
}

/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 1.25rem);
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.65;
    color: var(--ink-700);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "cv11", "ss01";
    overflow-x: hidden;
}

img, picture, svg, video, canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select { font: inherit; color: inherit; }

a { color: var(--brand-600); text-decoration: none; }
a:hover { color: var(--brand-700); }

ul, ol { padding: 0; list-style: none; }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-6) 0; }

::selection { background: var(--brand-200); color: var(--ink-900); }

:focus-visible {
    outline: 2px solid var(--brand-500);
    outline-offset: 3px;
    border-radius: var(--r-xs);
}

.skip-link {
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--ink-900);
    color: #fff;
    padding: .7rem 1.25rem;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    font-weight: 600;
    transition: top var(--t) var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink-900);
    line-height: 1.16;
    letter-spacing: -0.022em;
    font-weight: 700;
    text-wrap: balance;
}

h1 { font-size: var(--fs-h1); letter-spacing: -0.035em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.028em; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

p { text-wrap: pretty; }
p + p { margin-top: 0.9em; }

.lead {
    font-size: var(--fs-lead);
    line-height: 1.62;
    color: var(--ink-600);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-body);
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--brand-600);
}
.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    opacity: .55;
}
.eyebrow--center::before { display: none; }

.text-muted { color: var(--ink-500); }
.text-brand { color: var(--brand-600); }
.text-ink   { color: var(--ink-900); }
.mono {
    font-family: var(--font-mono);
    font-size: .82em;
    letter-spacing: .01em;
}

/* Wordmark */
.wordmark {
    font-family: var(--font-brand);
    font-weight: 700;
    letter-spacing: -0.012em;
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }
.container--wide   { max-width: 1400px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: calc(var(--section-y) * .62); }
.section--paper { background: var(--paper-2); }
.section--wash {
    background:
        radial-gradient(1000px 520px at 88% -8%, var(--brand-050), transparent 62%),
        radial-gradient(760px 420px at 4% 108%, #F3FBF8, transparent 60%),
        var(--paper);
}
.section--ink {
    background: var(--ink-900);
    color: var(--ink-200);
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .lead { color: rgba(255, 255, 255, .74); }
.section--ink .eyebrow { color: var(--brand-300); }

.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 1rem + 4vw, 4.5rem);
    align-items: center;
}
@media (min-width: 900px) {
    .split { grid-template-columns: 1fr 1fr; }
    .split--60-40 { grid-template-columns: 1.4fr 1fr; }
    .split--40-60 { grid-template-columns: 1fr 1.4fr; }
}

.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

.cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    align-items: center;
}

/* Decorative arc — the Medomex "lens" motif */
.arc-motif {
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    color: var(--brand-100);
    opacity: .9;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
    --btn-bg: var(--brand-600);
    --btn-fg: #fff;
    --btn-line: transparent;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .82rem 1.5rem;
    border: 1px solid var(--btn-line);
    border-radius: var(--r-pill);
    background: var(--btn-bg);
    color: var(--btn-fg);
    font-family: var(--font-body);
    font-size: .93rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: transform var(--t-fast) var(--ease),
                box-shadow var(--t) var(--ease),
                background-color var(--t) var(--ease),
                border-color var(--t) var(--ease),
                color var(--t) var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary {
    background: linear-gradient(180deg, var(--brand-500), var(--brand-600) 72%);
    box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.btn--primary:hover {
    background: linear-gradient(180deg, var(--brand-500), var(--brand-700) 78%);
    box-shadow: 0 16px 36px -14px rgba(15, 114, 196, .6), inset 0 1px 0 rgba(255, 255, 255, .22);
}

.btn--ghost {
    --btn-bg: transparent;
    --btn-fg: var(--ink-800);
    --btn-line: var(--line-strong);
    backdrop-filter: blur(6px);
}
.btn--ghost:hover {
    --btn-line: var(--brand-400);
    --btn-fg: var(--brand-700);
    background: var(--brand-050);
}

.btn--dark { --btn-bg: var(--ink-900); box-shadow: var(--sh-2); }
.btn--dark:hover { --btn-bg: var(--ink-800); }

.btn--care {
    background: linear-gradient(180deg, var(--care-500), var(--care-600) 75%);
    box-shadow: 0 10px 28px -12px rgba(14, 143, 104, .5), inset 0 1px 0 rgba(255, 255, 255, .2);
}
.btn--care:hover { background: linear-gradient(180deg, var(--care-500), var(--care-700) 80%); }

.btn--on-ink {
    --btn-bg: rgba(255, 255, 255, .08);
    --btn-fg: #fff;
    --btn-line: rgba(255, 255, 255, .28);
}
.btn--on-ink:hover { --btn-bg: rgba(255, 255, 255, .16); --btn-line: rgba(255, 255, 255, .5); }

.btn--sm { padding: .58rem 1.1rem; font-size: .85rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* Text link with an animated arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--brand-600);
    letter-spacing: .005em;
}
.link-arrow svg {
    width: 1.05em;
    height: 1.05em;
    transition: transform var(--t) var(--ease);
}
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   6. FORMS
   ========================================================================== */
.field { display: block; margin-bottom: var(--sp-4); }

.field__label {
    display: block;
    font-size: .845rem;
    font-weight: 600;
    color: var(--ink-800);
    margin-bottom: .42rem;
    letter-spacing: -0.003em;
}
.field__label .req { color: #D0342C; margin-left: .15rem; }

.field__hint {
    font-size: .78rem;
    color: var(--ink-500);
    margin-top: .35rem;
}

.input, .select, .textarea {
    width: 100%;
    padding: .78rem 1rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    background: var(--paper);
    color: var(--ink-900);
    font-size: .94rem;
    line-height: 1.5;
    transition: border-color var(--t-fast) var(--ease),
                box-shadow var(--t-fast) var(--ease),
                background-color var(--t-fast) var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-400); }

.input:hover, .select:hover, .textarea:hover { border-color: var(--ink-300); }

.input:focus, .select:focus, .textarea:focus {
    outline: none;
    border-color: var(--brand-500);
    box-shadow: 0 0 0 4px rgba(30, 143, 225, .14);
    background: var(--paper);
}

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

.select {
    appearance: none;
    padding-right: 2.6rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B7488' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .95rem center;
    background-size: 1.05rem;
    cursor: pointer;
}

.field--error .input,
.field--error .select,
.field--error .textarea { border-color: #E0838E; background: #FFFBFB; }

.field__error {
    display: block;
    font-size: .79rem;
    font-weight: 500;
    color: var(--err-fg);
    margin-top: .38rem;
}

.field-row {
    display: grid;
    gap: 0 var(--sp-4);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

/* Checkbox / radio chips */
.check {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    cursor: pointer;
    font-size: .89rem;
    color: var(--ink-700);
}
.check input { width: 1.05rem; height: 1.05rem; accent-color: var(--brand-600); cursor: pointer; }

.chip-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip-radio { position: relative; }
.chip-radio input {
    position: absolute;
    opacity: 0;
    width: 100%; height: 100%;
    cursor: pointer;
}
.chip-radio span {
    display: inline-block;
    padding: .52rem 1rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-pill);
    font-size: .855rem;
    font-weight: 500;
    color: var(--ink-600);
    background: var(--paper);
    transition: all var(--t-fast) var(--ease);
}
.chip-radio input:checked + span {
    border-color: var(--brand-500);
    background: var(--brand-050);
    color: var(--brand-700);
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(30, 143, 225, .12);
}
.chip-radio input:focus-visible + span { outline: 2px solid var(--brand-500); outline-offset: 2px; }

/* Submit spinner */
.spinner {
    display: inline-block;
    width: 1em; height: 1em;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: -0.12em;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn:disabled { opacity: .72; cursor: progress; transform: none !important; }

/* Honeypot — hidden from people, visible to naive bots */
.hp-field {
    position: absolute !important;
    left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* Alerts */
.alert {
    display: flex;
    gap: .75rem;
    padding: .9rem 1.1rem;
    border: 1px solid;
    border-radius: var(--r-md);
    font-size: .9rem;
    line-height: 1.55;
    margin-bottom: var(--sp-4);
}
.alert svg { width: 1.2rem; height: 1.2rem; flex: none; margin-top: .12rem; }
.alert--success { background: var(--ok-bg);   border-color: var(--ok-line);   color: var(--ok-fg); }
.alert--error   { background: var(--err-bg);  border-color: var(--err-line);  color: var(--err-fg); }
.alert--warning { background: var(--warn-bg); border-color: var(--warn-line); color: var(--warn-fg); }
.alert--info    { background: var(--brand-050); border-color: var(--brand-200); color: var(--brand-800); }
.alert strong { font-weight: 650; }

/* ==========================================================================
   7. TOPBAR
   ========================================================================== */
.topbar {
    background: var(--ink-900);
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
    line-height: 1;
    position: relative;
    z-index: 60;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    min-height: var(--topbar-h);
    padding-block: .55rem;
}
.topbar__list { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; }
.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: .48rem;
    color: rgba(255, 255, 255, .78);
    transition: color var(--t-fast) var(--ease);
}
.topbar__item:hover { color: #fff; }
.topbar__item svg { width: .95rem; height: .95rem; color: var(--brand-400); flex: none; }

.topbar__socials { display: flex; align-items: center; gap: .3rem; }
.topbar__social {
    display: grid;
    place-items: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    color: rgba(255, 255, 255, .7);
    transition: all var(--t-fast) var(--ease);
}
.topbar__social:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.topbar__social svg { width: 15px; height: 15px; }

@media (max-width: 860px) {
    .topbar__inner { justify-content: center; }
    .topbar__list .topbar__item--hide-sm { display: none; }
}

/* ==========================================================================
   8. HEADER / NAV
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow var(--t) var(--ease),
                border-color var(--t) var(--ease),
                background-color var(--t) var(--ease);
}
.header.is-stuck {
    border-bottom-color: var(--line);
    box-shadow: 0 6px 24px -18px rgba(10, 33, 55, .5);
    background: rgba(255, 255, 255, .94);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-5);
    min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; flex: none; }
.brand__mark { width: auto; height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.42rem;
    color: var(--ink-900);
    letter-spacing: -0.015em;
}
.brand__sub {
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--brand-600);
    margin-top: .24rem;
}

.nav { display: none; }
@media (min-width: 1040px) {
    .nav { display: flex; align-items: center; gap: .3rem; }
}
.nav__link {
    position: relative;
    padding: .55rem .82rem;
    border-radius: var(--r-sm);
    font-size: .925rem;
    font-weight: 550;
    color: var(--ink-700);
    transition: color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.nav__link::after {
    content: "";
    position: absolute;
    left: .82rem; right: .82rem;
    bottom: .28rem;
    height: 2px;
    border-radius: 2px;
    background: var(--brand-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t) var(--ease);
}
.nav__link:hover { color: var(--brand-700); background: var(--brand-050); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--brand-700); font-weight: 650; }

.header__actions { display: flex; align-items: center; gap: .6rem; }
.header__cta { display: none; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }

/* Burger */
.burger {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    background: var(--paper);
    cursor: pointer;
    transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.burger:hover { border-color: var(--brand-400); background: var(--brand-050); }
@media (min-width: 1040px) { .burger { display: none; } }

.burger__bars { position: relative; width: 19px; height: 13px; }
.burger__bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--ink-800);
    transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease);
}
.burger__bars span:nth-child(1) { top: 0; }
.burger__bars span:nth-child(2) { top: 5.5px; }
.burger__bars span:nth-child(3) { top: 11px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }

.drawer__scrim {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 32, .5);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity var(--t) var(--ease);
}
.drawer.is-open .drawer__scrim { opacity: 1; }

.drawer__panel {
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    width: min(360px, 88vw);
    background: var(--paper);
    box-shadow: var(--sh-4);
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease-out);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem var(--sp-5);
    border-bottom: 1px solid var(--line);
}
.drawer__close {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    background: var(--paper);
    cursor: pointer;
    color: var(--ink-700);
}
.drawer__close:hover { background: var(--paper-3); }
.drawer__close svg { width: 18px; height: 18px; }

.drawer__nav { padding: var(--sp-4) var(--sp-5); display: grid; gap: .15rem; }
.drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .82rem .9rem;
    border-radius: var(--r-sm);
    font-size: 1rem;
    font-weight: 550;
    color: var(--ink-800);
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.drawer__link:hover { background: var(--brand-050); color: var(--brand-700); }
.drawer__link.is-active { background: var(--brand-050); color: var(--brand-700); font-weight: 650; }
.drawer__link svg { width: 16px; height: 16px; opacity: .45; }

.drawer__foot {
    margin-top: auto;
    padding: var(--sp-5);
    border-top: 1px solid var(--line);
    display: grid;
    gap: .75rem;
    background: var(--paper-2);
}
.drawer__contact {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    color: var(--ink-600);
}
.drawer__contact svg { width: 1rem; height: 1rem; color: var(--brand-500); flex: none; }

/* ==========================================================================
   9. HERO
   ========================================================================== */
.hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(3rem, 1.5rem + 6vw, 6.5rem) clamp(3.5rem, 2rem + 6vw, 7rem);
    background:
        radial-gradient(1100px 620px at 82% -12%, var(--brand-100) 0%, transparent 58%),
        radial-gradient(760px 520px at -6% 18%, #EAF7F2 0%, transparent 55%),
        linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(10, 33, 55, .035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(10, 33, 55, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(900px 560px at 30% 35%, #000 0%, transparent 78%);
    -webkit-mask-image: radial-gradient(900px 560px at 30% 35%, #000 0%, transparent 78%);
    pointer-events: none;
}

.hero__arc {
    position: absolute;
    top: 50%;
    right: -14%;
    width: min(900px, 78vw);
    transform: translateY(-50%);
    color: var(--brand-200);
    opacity: .55;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 1rem + 6vw, 4rem);
    align-items: center;
}
@media (min-width: 980px) {
    .hero__inner { grid-template-columns: 1.06fr 1fr; }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .42rem .95rem .42rem .5rem;
    border: 1px solid var(--brand-200);
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(8px);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--brand-800);
    box-shadow: var(--sh-1);
}
.hero__badge b {
    display: inline-grid;
    place-items: center;
    padding: .2rem .55rem;
    border-radius: var(--r-pill);
    background: var(--brand-600);
    color: #fff;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero__title {
    margin-top: 1.35rem;
    font-size: var(--fs-h1);
    font-weight: 800;
    letter-spacing: -0.042em;
    line-height: 1.02;
    color: var(--ink-950);
}
.hero__title .accent {
    display: block;
    background: linear-gradient(100deg, var(--brand-600) 8%, var(--care-500) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: -0.034em;
    font-size: .58em;
    line-height: 1.16;
    margin-top: .42rem;
}

.hero__lead {
    margin-top: 1.35rem;
    max-width: 34rem;
    font-size: var(--fs-lead);
    color: var(--ink-600);
}

.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }

.hero__proof {
    margin-top: 2.6rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.25rem, .5rem + 2.5vw, 2.75rem);
}
.hero__proof-item { min-width: 86px; }
.hero__proof-num {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 1.15rem + 1vw, 1.95rem);
    font-weight: 700;
    color: var(--ink-900);
    letter-spacing: -0.03em;
    line-height: 1;
}
.hero__proof-num .suffix { color: var(--brand-500); }
.hero__proof-label {
    margin-top: .38rem;
    font-size: .765rem;
    font-weight: 500;
    letter-spacing: .03em;
    color: var(--ink-500);
    text-transform: uppercase;
}

/* Hero product showcase */
.hero__showcase {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(320px, 42vw, 480px);
}

.showcase__halo {
    position: absolute;
    inset: 8% 2%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(30, 143, 225, .2), transparent 66%);
    filter: blur(28px);
    animation: halo-pulse 9s var(--ease) infinite;
}
@keyframes halo-pulse {
    0%, 100% { opacity: .65; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.07); }
}

.showcase__ring {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    border: 1px dashed rgba(30, 143, 225, .26);
    animation: spin-slow 52s linear infinite;
}
.showcase__ring::after {
    content: "";
    position: absolute;
    top: -5px; left: 50%;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--care-500);
    box-shadow: 0 0 0 5px rgba(18, 168, 122, .16);
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.showcase__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    max-width: 560px;
}
.showcase__slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(18px) scale(.96);
    transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
    pointer-events: none;
}
.showcase__slide.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
/* The studio shots keep their own backdrop, so frame them deliberately as
   photo cards rather than trying to cut the products out. */
.showcase__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--r-lg);
    box-shadow:
        0 0 0 1px rgba(10, 33, 55, .07),
        0 2px 6px rgba(10, 33, 55, .06),
        0 34px 60px -26px rgba(10, 33, 55, .34);
    animation: float-gentle 7s var(--ease) infinite;
}
@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.showcase__caption {
    position: absolute;
    left: 50%;
    bottom: -.25rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .5rem 1.05rem;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    box-shadow: var(--sh-2);
    backdrop-filter: blur(8px);
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink-800);
    white-space: nowrap;
    max-width: 92%;
}
.showcase__caption .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent, var(--brand-500));
    flex: none;
}
.showcase__caption em {
    font-style: normal;
    font-weight: 450;
    color: var(--ink-500);
    overflow: hidden;
    text-overflow: ellipsis;
}

.showcase__dots {
    position: absolute;
    right: -.25rem;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: .55rem;
}
.showcase__dot {
    width: 9px; height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--ink-200);
    cursor: pointer;
    transition: all var(--t) var(--ease);
}
.showcase__dot:hover { background: var(--brand-300); }
.showcase__dot.is-active {
    background: var(--brand-600);
    height: 26px;
    border-radius: var(--r-pill);
}
@media (max-width: 640px) {
    .showcase__dots {
        right: auto; top: auto;
        left: 50%; bottom: -2.6rem;
        transform: translateX(-50%);
        grid-auto-flow: column;
    }
    .showcase__dot.is-active { height: 9px; width: 26px; }
    .hero__showcase { margin-bottom: 2.25rem; }
}

/* ==========================================================================
   10. TRUST STRIP / MARQUEE
   ========================================================================== */
.trust {
    border-block: 1px solid var(--line);
    background: var(--paper);
    padding-block: 1.15rem;
    overflow: hidden;
}
.trust__track {
    display: flex;
    gap: 3.25rem;
    width: max-content;
    animation: marquee 38s linear infinite;
}
.trust:hover .trust__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.trust__item {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .845rem;
    font-weight: 550;
    color: var(--ink-600);
    white-space: nowrap;
    letter-spacing: .01em;
}
.trust__item svg { width: 1.05rem; height: 1.05rem; color: var(--care-500); flex: none; }

/* ==========================================================================
   11. SECTION HEADER
   ========================================================================== */
.sec-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 1.4rem + 2.6vw, 3.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head__title { margin-top: .9rem; }
.sec-head__lead { margin-top: 1rem; }

.sec-head--split {
    max-width: none;
    display: grid;
    gap: var(--sp-5);
    align-items: end;
}
@media (min-width: 880px) {
    .sec-head--split { grid-template-columns: 1fr auto; }
}

/* ==========================================================================
   12. PRODUCT CARD
   ========================================================================== */
.pcard {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--paper);
    overflow: hidden;
    transition: transform var(--t) var(--ease-out),
                box-shadow var(--t) var(--ease-out),
                border-color var(--t) var(--ease);
    box-shadow: var(--sh-1);
}
.pcard:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
    box-shadow: var(--sh-3);
}
.pcard::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow) var(--ease-out);
    z-index: 3;
}
.pcard:hover::before { transform: scaleX(1); }

.pcard__media {
    position: relative;
    aspect-ratio: 16 / 11;
    background:
        radial-gradient(circle at 50% 108%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 62%),
        linear-gradient(170deg, var(--paper-2), var(--paper-3));
    display: grid;
    place-items: center;
    padding: 1.1rem;
    overflow: hidden;
}
.pcard__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--r-md);
    transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t) var(--ease);
    box-shadow:
        0 0 0 1px rgba(10, 33, 55, .06),
        0 10px 24px -14px rgba(10, 33, 55, .3);
}
.pcard:hover .pcard__media img { transform: scale(1.055) translateY(-3px); }

.pcard__rx {
    position: absolute;
    top: .8rem; right: .8rem;
    z-index: 2;
    padding: .24rem .55rem;
    border-radius: var(--r-xs);
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-600);
    backdrop-filter: blur(6px);
}
.pcard__rx--rx { color: var(--brand-700); border-color: var(--brand-200); background: rgba(228, 241, 252, .92); }

.pcard__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }

.pcard__segment {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .695rem;
    font-weight: 650;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .6rem;
}
.pcard__segment::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.pcard__name {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ink-900);
    line-height: 1.2;
}
.pcard__name a { color: inherit; }
.pcard__name a::after { content: ""; position: absolute; inset: 0; z-index: 4; }

.pcard__subtitle {
    margin-top: .3rem;
    font-size: .845rem;
    color: var(--ink-500);
}

.pcard__composition {
    margin-top: .95rem;
    padding: .72rem .85rem;
    border-radius: var(--r-sm);
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-left: 3px solid color-mix(in srgb, var(--accent) 55%, var(--line));
    font-size: .815rem;
    line-height: 1.5;
    color: var(--ink-600);
}

.pcard__meta {
    margin-top: auto;
    padding-top: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    flex-wrap: wrap;
}
.pcard__specs { display: flex; gap: .45rem; flex-wrap: wrap; }
.spec-pill {
    display: inline-flex;
    align-items: center;
    padding: .28rem .62rem;
    border-radius: var(--r-xs);
    background: var(--ink-050);
    border: 1px solid var(--line);
    font-size: .735rem;
    font-weight: 550;
    color: var(--ink-600);
    white-space: nowrap;
}

.pcard__cta {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .835rem;
    font-weight: 650;
    color: var(--accent);
}
.pcard__cta svg { width: .95em; height: .95em; transition: transform var(--t) var(--ease); }
.pcard:hover .pcard__cta svg { transform: translateX(4px); }

/* ==========================================================================
   13. SEGMENT CARD
   ========================================================================== */
.segcard {
    position: relative;
    display: block;
    padding: 1.65rem 1.5rem 1.55rem;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--paper);
    overflow: hidden;
    transition: transform var(--t) var(--ease-out),
                box-shadow var(--t) var(--ease-out),
                border-color var(--t) var(--ease);
}
.segcard::after {
    content: "";
    position: absolute;
    right: -38px; top: -38px;
    width: 116px; height: 116px;
    border-radius: 50%;
    background: var(--brand-050);
    transition: transform var(--t-slow) var(--ease-out), background var(--t) var(--ease);
    z-index: 0;
}
.segcard:hover {
    transform: translateY(-5px);
    border-color: var(--brand-200);
    box-shadow: var(--sh-3);
}
.segcard:hover::after { transform: scale(1.65); background: var(--brand-100); }

.segcard > * { position: relative; z-index: 1; }

.segcard__icon {
    display: grid;
    place-items: center;
    width: 50px; height: 50px;
    border-radius: var(--r-md);
    background: linear-gradient(150deg, var(--brand-500), var(--brand-700));
    color: #fff;
    box-shadow: 0 8px 20px -10px rgba(15, 114, 196, .7);
    margin-bottom: 1.1rem;
}
.segcard__icon svg { width: 24px; height: 24px; }

.segcard__title {
    font-family: var(--font-display);
    font-size: 1.06rem;
    font-weight: 650;
    letter-spacing: -0.018em;
    color: var(--ink-900);
    line-height: 1.32;
}
.segcard__desc { margin-top: .5rem; font-size: .86rem; color: var(--ink-500); line-height: 1.58; }

.segcard__count {
    margin-top: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .775rem;
    font-weight: 600;
    color: var(--brand-600);
}
.segcard__count svg { width: .9rem; height: .9rem; transition: transform var(--t) var(--ease); }
.segcard:hover .segcard__count svg { transform: translateX(3px); }

/* ==========================================================================
   14. VALUE CARD
   ========================================================================== */
.vcard {
    position: relative;
    padding: 1.6rem 1.5rem;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    background: var(--paper);
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease-out);
}
.vcard:hover { border-color: var(--brand-200); box-shadow: var(--sh-2); transform: translateY(-3px); }

.vcard__num {
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--brand-400);
}
.vcard__icon {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: var(--r-sm);
    background: var(--brand-050);
    border: 1px solid var(--brand-100);
    color: var(--brand-600);
    margin-bottom: 1rem;
}
.vcard__icon svg { width: 21px; height: 21px; }
.vcard__title {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 650;
    color: var(--ink-900);
    letter-spacing: -0.015em;
}
.vcard__text { margin-top: .5rem; font-size: .875rem; color: var(--ink-500); line-height: 1.6; }

/* Card variant on dark sections */
.section--ink .vcard {
    background: rgba(255, 255, 255, .045);
    border-color: rgba(255, 255, 255, .1);
}
.section--ink .vcard:hover { border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .07); }
.section--ink .vcard__title { color: #fff; }
.section--ink .vcard__text { color: rgba(255, 255, 255, .66); }
.section--ink .vcard__icon {
    background: rgba(30, 143, 225, .16);
    border-color: rgba(30, 143, 225, .3);
    color: var(--brand-300);
}

/* ==========================================================================
   15. PRODUCT DETAIL
   ========================================================================== */
.pdetail { padding-block: clamp(2rem, 1rem + 3.5vw, 3.5rem) var(--section-y); }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    color: var(--ink-500);
    margin-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
}
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--brand-600); }
.breadcrumb svg { width: .8rem; height: .8rem; opacity: .5; }
.breadcrumb [aria-current] { color: var(--ink-800); font-weight: 550; }

.pdetail__layout {
    display: grid;
    gap: clamp(2rem, 1rem + 4vw, 4rem);
    align-items: start;
}
@media (min-width: 960px) {
    .pdetail__layout { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
}

/* Viewer */
.viewer { position: sticky; top: calc(var(--header-h) + 1.5rem); }
@media (max-width: 959px) { .viewer { position: static; } }

.viewer__stage {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 112%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 62%),
        linear-gradient(165deg, var(--paper), var(--paper-3));
    overflow: hidden;
    display: grid;
    place-items: center;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}
.viewer__stage.is-dragging { cursor: grabbing; }

.viewer__frame {
    position: absolute;
    inset: 6%;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(.97);
    transition: opacity .42s var(--ease-out), transform .42s var(--ease-out);
    pointer-events: none;
}
.viewer__frame.is-active { opacity: 1; transform: scale(1); }
.viewer__frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--r-md);
    box-shadow:
        0 0 0 1px rgba(10, 33, 55, .07),
        0 20px 40px -20px rgba(10, 33, 55, .3);
}

.viewer__hint {
    position: absolute;
    left: 50%;
    bottom: .9rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .38rem .8rem;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
    font-size: .74rem;
    font-weight: 550;
    color: var(--ink-500);
    backdrop-filter: blur(6px);
    pointer-events: none;
    transition: opacity var(--t) var(--ease);
}
.viewer__hint svg { width: .95rem; height: .95rem; }
.viewer__stage.is-touched .viewer__hint { opacity: 0; }

.viewer__badge {
    position: absolute;
    top: 1rem; left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .34rem .7rem;
    border-radius: var(--r-pill);
    background: var(--accent);
    color: #fff;
    font-size: .705rem;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px -8px rgba(10, 33, 55, .6);
}

.viewer__thumbs {
    display: flex;
    gap: .6rem;
    margin-top: .85rem;
    flex-wrap: wrap;
}
.viewer__thumb {
    position: relative;
    width: 76px;
    aspect-ratio: 1;
    padding: .3rem;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--paper-2);
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    display: grid;
    place-items: center;
}
.viewer__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.viewer__thumb:hover { border-color: var(--brand-300); background: var(--brand-050); }
.viewer__thumb.is-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
    background: var(--paper);
}
.viewer__thumb-label {
    position: absolute;
    left: 50%; bottom: -1.35rem;
    transform: translateX(-50%);
    font-size: .66rem;
    font-weight: 550;
    color: var(--ink-400);
    white-space: nowrap;
}
.viewer__thumbs { margin-bottom: 1.35rem; }

/* Product info column */
.pinfo__segment {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .34rem .85rem .34rem .6rem;
    border-radius: var(--r-pill);
    background: color-mix(in srgb, var(--accent) 10%, var(--paper));
    border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
    font-size: .76rem;
    font-weight: 600;
    line-height: 1.35;
    color: color-mix(in srgb, var(--accent) 78%, var(--ink-900));
}
.pinfo__segment svg { width: 1.05em; height: 1.05em; flex: none; }

.pinfo__name {
    margin-top: 1rem;
    font-size: clamp(2rem, 1.5rem + 2.2vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.038em;
    line-height: 1.05;
    color: var(--ink-950);
}
.pinfo__subtitle {
    margin-top: .6rem;
    font-size: var(--fs-lead);
    color: var(--ink-500);
    font-weight: 400;
}

.pinfo__composition {
    margin-top: 1.5rem;
    padding: 1.15rem 1.25rem;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--paper-2), var(--paper-3));
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
}
.pinfo__composition dt {
    font-size: .695rem;
    font-weight: 650;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-500);
    margin-bottom: .4rem;
}
.pinfo__composition dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 550;
    line-height: 1.55;
    color: var(--ink-900);
}

.spec-table {
    width: 100%;
    margin-top: 1.5rem;
    border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
}
.spec-table tr + tr { border-top: 1px solid var(--line); }
.spec-table th,
.spec-table td { padding: .82rem 1.05rem; text-align: left; vertical-align: top; font-size: .885rem; }
.spec-table th {
    width: 38%;
    font-weight: 600;
    color: var(--ink-500);
    background: var(--paper-2);
    letter-spacing: .005em;
}
.spec-table td { color: var(--ink-800); font-weight: 500; }
@media (max-width: 460px) {
    .spec-table th { width: 44%; }
    .spec-table th, .spec-table td { padding: .7rem .8rem; font-size: .83rem; }
}

.pinfo__desc { margin-top: 1.6rem; }
.pinfo__desc h2 {
    font-size: 1.05rem;
    font-weight: 650;
    letter-spacing: -0.012em;
    margin-bottom: .6rem;
}
.pinfo__desc p { color: var(--ink-600); line-height: 1.72; }

.pinfo__actions {
    margin-top: 1.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.pinfo__note {
    margin-top: 1.4rem;
    padding: .9rem 1.05rem;
    border-radius: var(--r-sm);
    background: var(--warn-bg);
    border: 1px solid var(--warn-line);
    font-size: .8rem;
    line-height: 1.6;
    color: var(--warn-fg);
    display: flex;
    gap: .6rem;
}
.pinfo__note svg { width: 1.05rem; height: 1.05rem; flex: none; margin-top: .15rem; }

/* ==========================================================================
   16. BANDS / CTA
   ========================================================================== */
.cta-band {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-xl);
    padding: clamp(2.25rem, 1.4rem + 3.5vw, 4rem);
    background: linear-gradient(125deg, var(--brand-800) 0%, var(--brand-600) 48%, var(--care-600) 128%);
    color: #fff;
    box-shadow: var(--sh-4);
}
.cta-band::before {
    content: "";
    position: absolute;
    right: -12%; top: -46%;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .17), transparent 62%);
}
.cta-band::after {
    content: "";
    position: absolute;
    left: -8%; bottom: -66%;
    width: 480px; height: 480px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .16);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255, 255, 255, .84); }
.cta-band .eyebrow { color: rgba(255, 255, 255, .8); }

.cta-band__layout {
    display: grid;
    gap: var(--sp-6);
    align-items: center;
}
@media (min-width: 900px) {
    .cta-band__layout { grid-template-columns: 1.35fr auto; }
}

/* Quality / feature list */
.checklist { display: grid; gap: .85rem; }
.checklist li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    font-size: .915rem;
    line-height: 1.6;
    color: var(--ink-600);
}
.checklist svg {
    width: 20px; height: 20px;
    flex: none;
    margin-top: .16rem;
    color: var(--care-500);
}
.checklist strong { color: var(--ink-900); font-weight: 600; }
.section--ink .checklist li { color: rgba(255, 255, 255, .72); }
.section--ink .checklist strong { color: #fff; }

/* Figure with the lens frame */
.framed {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, var(--paper-2), var(--paper-3));
    box-shadow: var(--sh-3);
}
.framed img { width: 100%; height: 100%; object-fit: cover; }
.framed--contain { padding: clamp(1rem, .5rem + 2vw, 2rem); }
.framed--contain img {
    object-fit: contain;
    border-radius: var(--r-md);
    box-shadow: 0 0 0 1px rgba(10, 33, 55, .07), 0 18px 38px -20px rgba(10, 33, 55, .3);
}

.framed__tag {
    position: absolute;
    left: 1rem; bottom: 1rem;
    padding: .5rem .95rem;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .93);
    border: 1px solid var(--line);
    backdrop-filter: blur(8px);
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink-800);
    box-shadow: var(--sh-1);
}

/* Stats band */
.stats {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}
.stat {
    background: var(--paper);
    padding: 1.7rem 1.35rem;
    text-align: center;
}
.stat__num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 1.4rem + 1.7vw, 2.7rem);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1;
    color: var(--ink-900);
}
.stat__num .suffix { color: var(--brand-500); }
.stat__label {
    margin-top: .6rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--ink-500);
    letter-spacing: .015em;
}

/* ==========================================================================
   17. CONTACT
   ========================================================================== */
.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.35rem 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--paper);
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease-out);
}
.contact-card:hover { border-color: var(--brand-200); box-shadow: var(--sh-2); transform: translateY(-3px); }

.contact-card__icon {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    flex: none;
    border-radius: var(--r-sm);
    background: var(--brand-050);
    border: 1px solid var(--brand-100);
    color: var(--brand-600);
}
.contact-card__icon svg { width: 20px; height: 20px; }

.contact-card__label {
    font-size: .705rem;
    font-weight: 650;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-400);
}
.contact-card__value {
    margin-top: .3rem;
    font-size: .95rem;
    font-weight: 550;
    color: var(--ink-900);
    line-height: 1.5;
    word-break: break-word;
}
.contact-card__value a { color: inherit; }
.contact-card__value a:hover { color: var(--brand-600); }

.map-frame {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--paper-3);
    box-shadow: var(--sh-2);
    aspect-ratio: 16 / 10;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.92); }
.map-frame__empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: .7rem;
    text-align: center;
    padding: var(--sp-5);
    color: var(--ink-500);
    font-size: .88rem;
}
.map-frame__empty svg { width: 34px; height: 34px; color: var(--ink-300); }

.form-panel {
    padding: clamp(1.4rem, .9rem + 2vw, 2.4rem);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--paper);
    box-shadow: var(--sh-2);
}
.form-panel__head { margin-bottom: 1.6rem; }
.form-panel__head h2 { font-size: var(--fs-h4); }
.form-panel__head p { margin-top: .5rem; font-size: .9rem; color: var(--ink-500); }

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.footer {
    position: relative;
    background: var(--ink-950);
    color: rgba(255, 255, 255, .62);
    padding-top: clamp(3rem, 2rem + 3.5vw, 5rem);
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    top: -160px; right: -8%;
    width: 620px; height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 143, 225, .14), transparent 62%);
    pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }

.footer__grid {
    display: grid;
    gap: clamp(2rem, 1.2rem + 3vw, 3.5rem);
    grid-template-columns: 1fr;
    padding-bottom: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem);
}
@media (min-width: 720px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.35fr; } }

.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: var(--brand-400); }
/* The company slogan, straight under the wordmark. */
.footer__slogan {
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.4;
    background: linear-gradient(100deg, var(--brand-300) 10%, var(--care-200) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    max-width: 24ch;
}

.footer__about {
    margin-top: .7rem;
    font-size: .89rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .58);
    max-width: 34ch;
}

.footer__title {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 650;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.15rem;
}

.footer__links { display: grid; gap: .68rem; }
.footer__links a {
    font-size: .89rem;
    color: rgba(255, 255, 255, .6);
    transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
    display: inline-block;
}
.footer__links a:hover { color: #fff; transform: translateX(3px); }

.footer__contact { display: grid; gap: .95rem; }
.footer__contact-row { display: flex; gap: .7rem; font-size: .89rem; line-height: 1.6; }
.footer__contact-row svg {
    width: 1.02rem; height: 1.02rem;
    flex: none;
    margin-top: .2rem;
    color: var(--brand-400);
}
.footer__contact-row a { color: rgba(255, 255, 255, .72); }
.footer__contact-row a:hover { color: #fff; }

.footer__socials { display: flex; gap: .5rem; margin-top: 1.3rem; }
.footer__social {
    display: grid;
    place-items: center;
    width: 38px; height: 38px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .68);
    transition: all var(--t-fast) var(--ease);
}
.footer__social:hover {
    background: var(--brand-600);
    border-color: var(--brand-600);
    color: #fff;
    transform: translateY(-2px);
}
.footer__social svg { width: 16px; height: 16px; }

.footer__disclaimer {
    padding: 1.35rem 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .775rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .42);
}

.footer__bar {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-block: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .9rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
}
.footer__bar a { color: rgba(255, 255, 255, .58); }
.footer__bar a:hover { color: #fff; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ==========================================================================
   19. FLOATING ACTIONS
   ========================================================================== */
.floats {
    position: fixed;
    right: clamp(.85rem, .4rem + 1.2vw, 1.5rem);
    bottom: clamp(.85rem, .4rem + 1.2vw, 1.5rem);
    z-index: 90;
    display: grid;
    gap: .6rem;
    justify-items: end;
}

.float-btn {
    display: grid;
    place-items: center;
    width: 52px; height: 52px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    box-shadow: var(--sh-3);
    transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease);
}
.float-btn:hover { transform: translateY(-3px) scale(1.04); color: #fff; }
.float-btn svg { width: 25px; height: 25px; }

.float-btn--wa { background: #25D366; }
.float-btn--wa::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: wa-ping 2.6s var(--ease) infinite;
    pointer-events: none;
}
.float-btn--wa { position: relative; }
@keyframes wa-ping {
    0%   { transform: scale(1);    opacity: .65; }
    70%  { transform: scale(1.5);  opacity: 0; }
    100% { transform: scale(1.5);  opacity: 0; }
}

.float-btn--top {
    width: 44px; height: 44px;
    background: var(--paper);
    color: var(--ink-700);
    border: 1px solid var(--line-strong);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: all var(--t) var(--ease);
}
.float-btn--top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-btn--top:hover { color: var(--brand-600); border-color: var(--brand-300); }
.float-btn--top svg { width: 19px; height: 19px; }

/* Mobile sticky call bar */
.callbar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 88;
    display: none;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
    gap: .55rem;
}
.callbar .btn { flex: 1; padding-inline: .85rem; }
@media (max-width: 639px) {
    .callbar { display: flex; }
    .floats { bottom: calc(4.6rem + env(safe-area-inset-bottom)); }
    body { padding-bottom: 4.2rem; }
}

/* ==========================================================================
   20. MOTION
   ========================================================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .78s var(--ease-out), transform .78s var(--ease-out);
    will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-26px); }
[data-reveal="right"] { transform: translateX(26px); }
[data-reveal="zoom"]  { transform: scale(.955); }
[data-reveal="fade"]  { transform: none; }

/* ==========================================================================
   21. UTILITIES
   ========================================================================== */
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.w-full { width: 100%; }
.relative { position: relative; }
.hide-sm { }
@media (max-width: 639px) { .hide-sm { display: none !important; } }

/* Catalogue toolbar */
.toolbar {
    position: sticky;
    top: var(--header-h);
    z-index: 40;
    padding-block: 1rem;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    margin-bottom: var(--sp-6);
}
.toolbar__row {
    display: grid;
    gap: .75rem;
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .toolbar__row { grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; }
}

.search-box { position: relative; }
.search-box svg {
    position: absolute;
    left: .95rem; top: 50%;
    transform: translateY(-50%);
    width: 1.05rem; height: 1.05rem;
    color: var(--ink-400);
    pointer-events: none;
}
.search-box .input { padding-left: 2.7rem; }
.search-box__clear {
    position: absolute;
    right: .55rem; top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 28px; height: 28px;
    border: 0;
    border-radius: 50%;
    background: var(--ink-050);
    color: var(--ink-500);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast) var(--ease);
}
.search-box.has-value .search-box__clear { opacity: 1; pointer-events: auto; }
.search-box__clear:hover { background: var(--ink-100); color: var(--ink-800); }
.search-box__clear svg { position: static; transform: none; width: 14px; height: 14px; }

.filter-scroll {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .25rem;
    scrollbar-width: thin;
    -ms-overflow-style: none;
}
.filter-scroll::-webkit-scrollbar { height: 4px; }
.filter-scroll::-webkit-scrollbar-thumb { background: var(--ink-200); border-radius: 4px; }

.filter-pill {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .95rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-pill);
    background: var(--paper);
    font-size: .845rem;
    font-weight: 550;
    color: var(--ink-600);
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
}
.filter-pill:hover { border-color: var(--brand-300); color: var(--brand-700); background: var(--brand-050); }
.filter-pill.is-active {
    background: var(--ink-900);
    border-color: var(--ink-900);
    color: #fff;
    font-weight: 600;
}
.filter-pill__count {
    display: inline-grid;
    place-items: center;
    min-width: 1.3em;
    padding: 0 .3em;
    border-radius: var(--r-pill);
    background: var(--ink-050);
    font-size: .72em;
    font-weight: 650;
    color: var(--ink-500);
}
.filter-pill.is-active .filter-pill__count { background: rgba(255, 255, 255, .2); color: #fff; }

.result-count {
    font-size: .855rem;
    color: var(--ink-500);
    white-space: nowrap;
}
.result-count b { color: var(--ink-900); font-weight: 650; }

.empty-state {
    text-align: center;
    padding: clamp(3rem, 2rem + 4vw, 5.5rem) var(--sp-5);
    border: 1px dashed var(--line-strong);
    border-radius: var(--r-lg);
    background: var(--paper-2);
}
.empty-state__icon {
    display: grid;
    place-items: center;
    width: 64px; height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink-300);
}
.empty-state__icon svg { width: 28px; height: 28px; }
.empty-state h3 { font-size: var(--fs-h5); }
.empty-state p { margin-top: .55rem; color: var(--ink-500); font-size: .92rem; }

/* Prose — legal pages */
.prose { max-width: 46rem; }
.prose h2 {
    font-size: var(--fs-h4);
    margin-top: 2.4rem;
    margin-bottom: .75rem;
}
.prose h3 {
    font-size: var(--fs-h5);
    margin-top: 1.8rem;
    margin-bottom: .55rem;
}
.prose p, .prose li { color: var(--ink-600); line-height: 1.78; }
.prose p + p { margin-top: 1rem; }
.prose ul { margin: 1rem 0; display: grid; gap: .6rem; }
.prose ul li { position: relative; padding-left: 1.4rem; }
.prose ul li::before {
    content: "";
    position: absolute;
    left: .2rem; top: .72em;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-400);
}
.prose strong { color: var(--ink-900); font-weight: 600; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* Page header for interior pages */
.page-head {
    position: relative;
    overflow: hidden;
    padding-block: clamp(2.75rem, 1.8rem + 4vw, 5rem);
    background:
        radial-gradient(760px 420px at 88% -30%, var(--brand-100), transparent 62%),
        linear-gradient(180deg, var(--paper-2), var(--paper));
    border-bottom: 1px solid var(--line);
}
.page-head__inner { position: relative; z-index: 1; max-width: 48rem; }
.page-head h1 { margin-top: .9rem; font-size: var(--fs-h2); }
.page-head p { margin-top: 1rem; }

/* ==========================================================================
   22. RESPONSIVE TWEAKS
   ========================================================================== */
@media (max-width: 1039px) {
    :root { --header-h: 68px; }
}
@media (max-width: 639px) {
    :root { --header-h: 62px; }
    .brand__mark { height: 38px; }
    .brand__name { font-size: 1.2rem; }
    .brand__sub { font-size: .56rem; letter-spacing: .24em; }
    .hero__proof { gap: 1.1rem 1.5rem; }
}

/* ==========================================================================
   23. REDUCED MOTION / PRINT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
    .trust__track { animation: none; }
    .showcase__slide.is-active img { animation: none; }
}

@media print {
    .topbar, .header, .footer, .floats, .callbar, .toolbar, .drawer { display: none !important; }
    body { color: #000; background: #fff; padding: 0; }
    a { color: #000; text-decoration: underline; }
    .section { padding-block: 1rem; }
    .pcard, .vcard, .segcard { break-inside: avoid; box-shadow: none; }
}
