/* ============================================================
   Trimelys.fr — Official palette landing
   Primary: Teal #12A29B  ·  Accent: Orange #E97A3A  ·  Green mint #E3F3EA
   Typography: Sora (display) + Inter (body)
   ============================================================ */
:root {
    --c-primary: #12A29B;       /* teal (logo, CTA) */
    --c-primary-dark: #0C7F7A;
    --c-primary-soft: #E0F4F2;
    --c-accent: #E97A3A;         /* orange CTA secondaire / ribbons */
    --c-accent-soft: #FCE6D6;
    --c-green: #10A05A;          /* checkmarks, savings */
    --c-green-soft: #DCF2E6;
    --c-cream: #FFFCF5;
    --c-text: #172726;           /* deep teal-black */
    --c-text-light: #617371;
    --c-border: #E6EBEA;

    --ff-d: 'Sora', system-ui, sans-serif;
    --ff-b: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --r-card: 16px;
    --r-pill: 999px;
    --sh-sm: 0 1px 3px rgba(18,162,155,0.08);
    --sh-md: 0 8px 24px rgba(18,162,155,0.1);
    --sh-lg: 0 20px 50px rgba(18,162,155,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
    font-family: var(--ff-b); font-size: 16px; line-height: 1.65;
    color: var(--c-text); background: #fff;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-primary-dark); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ─── Annoy strip ─── */
.annoy-strip {
    background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    color: #fff; text-align: center; font-size: 13px; padding: 9px 16px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    letter-spacing: 0.01em;
}
.annoy-strip strong { font-weight: 700; }
.pulse-dot {
    width: 7px; height: 7px; border-radius: 50%; background: #fff;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.6); animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ─── Header ─── */
.hd {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s;
}
.hd.scrolled { border-color: var(--c-border); box-shadow: 0 2px 18px rgba(18,162,155,0.06); }
.hd-inner { display: flex; align-items: center; gap: 32px; padding: 14px 24px; }
.logo { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-d); font-weight: 700; font-size: 20px; color: var(--c-primary); letter-spacing: -0.01em; }
.logo svg { flex-shrink: 0; }
.logo sup { font-size: 11px; color: var(--c-primary-dark); }
.hd-nav { display: flex; gap: 28px; margin-left: auto; }
.hd-nav a { color: var(--c-text); font-size: 14px; font-weight: 500; transition: color .15s; }
.hd-nav a:hover { color: var(--c-primary); }
@media (max-width: 860px) {
    .hd-nav { display: none; }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px;
    font-family: var(--ff-d); font-weight: 600; font-size: 15px;
    border-radius: var(--r-pill);
    transition: all .2s cubic-bezier(0.4,0,0.2,1);
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--c-primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(18,162,155,0.28);
}
.btn-primary:hover {
    background: var(--c-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(18,162,155,0.38);
}
.btn-outline {
    background: #fff;
    color: var(--c-primary);
    border-color: var(--c-primary);
}
.btn-outline:hover { background: var(--c-primary-soft); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-full { width: 100%; }

/* ─── Hero ─── */
.hero { position: relative; overflow: hidden; padding: 60px 0 72px; }
.hero-bg {
    position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(ellipse 70% 60% at 85% 20%, rgba(233,122,58,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 10% 80%, rgba(18,162,155,0.10) 0%, transparent 60%),
        linear-gradient(180deg, var(--c-cream) 0%, #fff 100%);
}
.hero-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 920px) {
    .hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .hero { padding: 40px 0 56px; }
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-pill);
    font-size: 13px; font-weight: 500; color: var(--c-text);
    box-shadow: var(--sh-sm); margin-bottom: 20px;
}
.hero-badge .star { color: #F4B740; letter-spacing: -0.5px; font-size: 14px; }
.hero-badge .divider { color: var(--c-border); }

.hero-title {
    font-family: var(--ff-d); font-size: clamp(2rem, 4.6vw, 3.2rem);
    font-weight: 700; color: var(--c-text); letter-spacing: -0.03em;
    line-height: 1.12; margin-bottom: 18px;
}
.hero-title em { font-style: italic; font-weight: 500; color: var(--c-accent); }
.accent-underline {
    position: relative; color: var(--c-primary); font-weight: 700;
}
.accent-underline::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
    height: 8px; background: rgba(18,162,155,0.18); z-index: -1; border-radius: 4px;
}
.hero-lead {
    font-size: 1.1rem; color: var(--c-text-light); line-height: 1.65;
    max-width: 560px; margin-bottom: 28px;
}

.hero-cta-row { display: flex; align-items: center; gap: 22px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-cta-note { display: inline-flex; align-items: center; gap: 6px; color: var(--c-green); font-size: 13px; font-weight: 600; }
.hero-cta-note svg { stroke: var(--c-green); }

.hero-bullets { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-bullets li {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--c-text); font-weight: 500;
}
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot-1 { background: var(--c-primary); }
.dot-2 { background: var(--c-accent); }
.dot-3 { background: var(--c-green); }

/* Hero product bottle (pure CSS illustration) */
.hero-right { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-product-halo {
    position: absolute; inset: -20px;
    background: radial-gradient(circle at center, rgba(18,162,155,0.15) 0%, transparent 60%);
    animation: haloPulse 4s ease-in-out infinite;
}
@keyframes haloPulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: .9; transform: scale(1.04); } }

.hero-product { position: relative; padding: 40px; }
.pill-badge {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    padding: 6px 16px; background: #fff; color: var(--c-primary-dark);
    border-radius: var(--r-pill); font-size: 11px; font-weight: 700;
    border: 2px solid var(--c-primary); letter-spacing: 0.08em;
    box-shadow: var(--sh-sm);
}

.bottle {
    position: relative; width: 220px; margin: 34px auto 0;
    filter: drop-shadow(0 20px 30px rgba(18,162,155,0.2));
}
.bottle-cap {
    width: 100px; height: 40px; margin: 0 auto;
    background: linear-gradient(180deg, #2C3938 0%, #0F1A19 100%);
    border-radius: 8px 8px 4px 4px;
    position: relative;
}
.bottle-cap::after {
    content: ''; position: absolute; bottom: -4px; left: -10px; right: -10px;
    height: 12px; background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    border-radius: 4px;
}
.bottle-body {
    background: linear-gradient(180deg, #F8F8F6 0%, #fff 100%);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 28px 16px 24px;
    text-align: center;
    margin-top: 8px;
    position: relative;
}
.bottle-brand {
    display: block; font-family: var(--ff-d); font-weight: 800;
    color: var(--c-primary); font-size: 26px; letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.bottle-sub {
    display: inline-block; background: var(--c-accent); color: #fff;
    font-size: 10px; font-weight: 700; padding: 3px 10px;
    border-radius: 3px; letter-spacing: 0.1em; margin-bottom: 18px;
}
.bottle-actives { border-top: 1px dashed var(--c-border); padding-top: 12px; }
.bottle-actives li {
    font-size: 11px; color: var(--c-text-light); font-weight: 500;
    padding: 3px 0; letter-spacing: 0.02em;
}

.floating-badges { position: absolute; inset: 0; pointer-events: none; }
.fb {
    position: absolute; background: #fff; padding: 8px 14px;
    border-radius: var(--r-pill); font-size: 12px; font-weight: 600;
    box-shadow: var(--sh-md); border: 1px solid var(--c-border);
    white-space: nowrap;
}
.fb-top { top: 12%; left: -10%; }
.fb-mid { top: 44%; right: -8%; background: var(--c-accent); color: #fff; font-weight: 700; border-color: var(--c-accent); }
.fb-bot { bottom: 10%; left: 0%; }
@media (max-width: 920px) {
    .fb-top { top: 2%; left: 4%; }
    .fb-mid { top: 40%; right: 2%; }
    .fb-bot { bottom: 8%; left: 8%; }
    .bottle { width: 180px; }
}

/* ─── Stats row ─── */
.stats-row { background: var(--c-primary); padding: 36px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; color: #fff; text-align: center; }
.stat strong { font-family: var(--ff-d); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; display: block; margin-bottom: 4px; }
.stat span { font-size: 13px; opacity: 0.9; letter-spacing: 0.02em; }
@media (max-width: 640px) {
    .stats-inner { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
}

/* ─── Sections ─── */
.section { padding: 80px 0; }
.section-alt { background: var(--c-cream); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.eyebrow {
    display: inline-block; padding: 5px 14px;
    background: var(--c-primary-soft); color: var(--c-primary-dark);
    border-radius: var(--r-pill); font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 18px;
}
.section-header h2 {
    font-family: var(--ff-d); font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700; color: var(--c-text); letter-spacing: -0.02em;
    line-height: 1.18; margin-bottom: 14px;
}
.section-header p { color: var(--c-text-light); font-size: 1.05rem; }

/* ─── Steps ─── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps li {
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--r-card); padding: 28px 26px;
    text-align: center; transition: all .3s;
}
.steps li:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--c-primary-soft);
}
.step-icon {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.step-icon svg { width: 30px; height: 30px; }
.step-icon-1 { background: var(--c-primary-soft); color: var(--c-primary); }
.step-icon-2 { background: var(--c-accent-soft); color: var(--c-accent); }
.step-icon-3 { background: var(--c-green-soft); color: var(--c-green); }
.step-title {
    font-family: var(--ff-d); font-weight: 600; font-size: 1.15rem;
    color: var(--c-text); margin-bottom: 8px;
}
.steps li p { color: var(--c-text-light); font-size: 15px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ─── Composition ─── */
.compo-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.compo-card {
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--r-card); padding: 22px 20px;
    transition: all .25s; position: relative;
}
.compo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
    border-color: var(--c-primary-soft);
}
.compo-emoji { font-size: 32px; margin-bottom: 10px; display: block; }
.compo-card h3 {
    font-family: var(--ff-d); font-size: 1.05rem; font-weight: 600;
    color: var(--c-text); margin-bottom: 4px;
}
.compo-dose {
    font-size: 12px; color: var(--c-primary); font-weight: 700;
    letter-spacing: 0.04em; margin-bottom: 10px;
    display: inline-block; padding: 3px 10px;
    background: var(--c-primary-soft); border-radius: var(--r-pill);
}
.compo-card p:not(.compo-dose) { color: var(--c-text-light); font-size: 13px; line-height: 1.55; }
.compo-card-plain .compo-dose { background: var(--c-green-soft); color: var(--c-green); }
.compo-note {
    margin-top: 32px; padding: 20px 26px;
    background: #fff; border: 1px dashed var(--c-border);
    border-radius: var(--r-card); font-size: 13px;
    color: var(--c-text-light); line-height: 1.65;
}
.compo-note strong { color: var(--c-text); display: inline-block; margin-right: 6px; }
@media (max-width: 860px) { .compo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .compo-grid { grid-template-columns: 1fr; } }

/* ─── Why ─── */
.whys { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.why-intro { position: sticky; top: 100px; }
.why-intro h2 {
    font-family: var(--ff-d); font-size: clamp(1.7rem, 3vw, 2.1rem);
    font-weight: 700; letter-spacing: -0.02em; line-height: 1.18; margin-top: 14px;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-card {
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--r-card); padding: 24px;
    transition: all .25s;
}
.why-card:hover { border-color: var(--c-primary-soft); box-shadow: var(--sh-sm); }
.why-icon { font-size: 28px; margin-bottom: 12px; }
.why-card h3 {
    font-family: var(--ff-d); font-size: 1.05rem; font-weight: 600;
    color: var(--c-text); margin-bottom: 6px;
}
.why-card p { color: var(--c-text-light); font-size: 14px; line-height: 1.6; }
@media (max-width: 860px) {
    .whys { grid-template-columns: 1fr; gap: 32px; }
    .why-intro { position: static; }
    .why-grid { grid-template-columns: 1fr; }
}

/* ─── Packs / Pricing ─── */
.section-packs { background: var(--c-cream); }
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pack-card {
    background: #fff; border: 2px solid var(--c-border);
    border-radius: 20px; padding: 28px 26px 24px;
    display: flex; flex-direction: column; gap: 12px;
    position: relative; transition: all .3s;
}
.pack-card:hover { border-color: var(--c-primary-soft); transform: translateY(-4px); box-shadow: var(--sh-md); }
.pack-card-featured {
    border-color: var(--c-accent);
    box-shadow: 0 12px 36px rgba(233,122,58,0.18);
    transform: scale(1.02);
}
.pack-card-featured:hover { transform: scale(1.02) translateY(-4px); }

.pack-ribbon {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--c-accent); color: #fff;
    padding: 6px 16px; border-radius: var(--r-pill);
    font-family: var(--ff-d); font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em; box-shadow: 0 4px 14px rgba(233,122,58,0.3);
    white-space: nowrap;
}
.pack-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: var(--r-pill);
    font-size: 11px; font-weight: 600; align-self: flex-start;
}
.pack-badge-minor { background: var(--c-primary-soft); color: var(--c-primary-dark); }
.pack-badge-hot { background: #FEF3C7; color: #92400E; }

.pack-card h3 {
    font-family: var(--ff-d); font-size: 1.35rem; font-weight: 700;
    color: var(--c-text); letter-spacing: -0.01em; margin-top: 4px;
}
.pack-subtitle { font-size: 13px; color: var(--c-text-light); font-weight: 500; }

.pack-visual {
    display: flex; justify-content: center; gap: 4px;
    padding: 12px 0; min-height: 140px; align-items: center;
}
.pack-img {
    max-width: 100%; height: auto; max-height: 140px;
    object-fit: contain; display: block;
    filter: drop-shadow(0 10px 20px rgba(18,162,155,0.15));
}

.hero-bottle-img {
    display: block; margin: 20px auto 0;
    max-width: 100%; height: auto; width: 320px;
    filter: drop-shadow(0 20px 30px rgba(18,162,155,0.25));
}

.pack-feats { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pack-feats li {
    font-size: 13px; color: var(--c-text);
    padding: 6px 10px; border-radius: 8px;
}
.pack-feats li.neutral { color: var(--c-text-light); background: var(--c-primary-soft); }
.pack-feats li.save { background: var(--c-green-soft); color: var(--c-green); font-weight: 600; }

.pack-price {
    display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
    padding: 14px 0 4px;
}
.price-old {
    font-size: 16px; color: var(--c-text-light); text-decoration: line-through;
    text-decoration-color: var(--c-accent); text-decoration-thickness: 2px;
}
.price-now {
    font-family: var(--ff-d); font-size: 2rem; font-weight: 800;
    color: var(--c-text); letter-spacing: -0.02em;
}
.price-unit { font-size: 11px; color: var(--c-text-light); width: 100%; margin-top: -4px; }
.pack-total { font-size: 13px; color: var(--c-text-light); padding-bottom: 12px; }
.pack-total strong { color: var(--c-text); font-weight: 700; }

@media (max-width: 960px) {
    .packs-grid { grid-template-columns: 1fr; }
    .pack-card-featured { transform: none; }
    .pack-card-featured:hover { transform: translateY(-4px); }
}

/* ─── Guarantees ─── */
.guarantees { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.guarantee {
    display: flex; align-items: flex-start; gap: 14px;
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--r-card); padding: 18px 20px;
}
.guarantee > span { font-size: 24px; line-height: 1; }
.guarantee strong { font-family: var(--ff-d); font-size: 14px; color: var(--c-text); display: block; margin-bottom: 2px; }
.guarantee p { font-size: 12px; color: var(--c-text-light); line-height: 1.45; }
@media (max-width: 860px) { .guarantees { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .guarantees { grid-template-columns: 1fr; } }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: #fff; border: 1px solid var(--c-border); border-radius: 12px;
    overflow: hidden; transition: all .2s;
}
.faq-item[open] { border-color: var(--c-primary); box-shadow: var(--sh-sm); }
.faq-item summary {
    padding: 18px 22px; cursor: pointer; font-family: var(--ff-d);
    font-weight: 600; font-size: 1rem; color: var(--c-text);
    list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 22px; color: var(--c-primary); font-weight: 300;
    transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > div { padding: 0 22px 18px; color: var(--c-text-light); line-height: 1.7; font-size: 15px; }

/* ─── Final CTA ─── */
.section-final { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%); color: #fff; }
.final-cta { text-align: center; max-width: 720px; margin: 0 auto; }
.final-cta h2 {
    font-family: var(--ff-d); font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px; color: #fff;
}
.final-cta p { color: rgba(255,255,255,0.88); margin-bottom: 28px; font-size: 1.05rem; }
.final-cta .btn-primary {
    background: #fff; color: var(--c-primary);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.final-cta .btn-primary:hover { background: var(--c-cream); color: var(--c-primary-dark); }
.final-note { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 16px; }

/* ─── Footer ─── */
.ft { background: #0A1715; color: #8FA29F; padding: 56px 0 0; }
.ft-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
.ft-brand { color: #fff; font-family: var(--ff-d); font-size: 18px; margin-bottom: 12px; }
.ft-brand strong { font-weight: 700; }
.ft-col h4 { color: #fff; font-family: var(--ff-d); font-size: 14px; margin-bottom: 14px; font-weight: 600; }
.ft-col a { display: block; color: #8FA29F; font-size: 14px; padding: 4px 0; transition: color .2s; }
.ft-col a:hover { color: #fff; }
.ft-col p { font-size: 13px; line-height: 1.65; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; font-size: 12px; color: #617371; }

@media (max-width: 720px) {
    .ft-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .section { padding: 56px 0; }
    .hero-title { font-size: 2rem; }
}

/* ─── About brand section ─── */
.about-grid {
    display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start;
}
.about-text p {
    font-size: 15px; line-height: 1.75; color: var(--c-text);
    margin-bottom: 16px;
}
.about-text strong { color: var(--c-primary-dark); font-weight: 700; }
.about-card {
    background: var(--c-cream);
    border: 2px solid var(--c-primary-soft);
    border-radius: var(--r-card);
    padding: 24px 26px;
    position: sticky; top: 100px;
}
.about-card h3 {
    font-family: var(--ff-d); font-size: 1rem; font-weight: 600;
    color: var(--c-primary-dark); margin-bottom: 14px;
    padding-bottom: 10px; border-bottom: 1px solid var(--c-primary-soft);
}
.about-card ul { display: flex; flex-direction: column; gap: 10px; }
.about-card li {
    font-size: 13px; color: var(--c-text); line-height: 1.5;
}
.about-card strong { color: var(--c-primary-dark); font-weight: 600; margin-right: 6px; }
@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-card { position: static; }
}

/* ─── Warnings section ─── */
.section-warnings { background: linear-gradient(180deg, var(--c-cream) 0%, #FFF8E8 100%); }
.warnings-wrap { max-width: 1100px; margin: 0 auto; }
.warnings-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.warning-card {
    background: #fff; border: 1px solid var(--c-border);
    border-radius: var(--r-card); padding: 22px 22px 20px;
    position: relative; transition: all .2s;
}
.warning-card:hover { border-color: var(--c-accent); box-shadow: var(--sh-sm); }
.warning-important {
    background: #FFFAF0;
    border-color: var(--c-accent);
    border-left: 5px solid var(--c-accent);
}
.warning-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.warning-card h3 {
    font-family: var(--ff-d); font-size: 1rem; font-weight: 600;
    color: var(--c-text); margin-bottom: 8px; line-height: 1.35;
}
.warning-card p {
    color: var(--c-text-light); font-size: 13.5px;
    line-height: 1.6;
}
@media (max-width: 860px) { .warnings-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .warnings-grid { grid-template-columns: 1fr; } }

/* ─── Manufacturer section ─── */
.section-mfr { padding: 64px 0; }
.mfr-inner {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 44px 48px;
    box-shadow: var(--sh-sm);
}
.mfr-left h2 {
    font-family: var(--ff-d); font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    font-weight: 700; color: var(--c-text); letter-spacing: -0.02em;
    margin: 14px 0 14px;
}
.mfr-left p { color: var(--c-text-light); line-height: 1.7; }
.mfr-left strong { color: var(--c-text); font-weight: 700; }
.mfr-card {
    background: var(--c-primary-soft);
    border-radius: var(--r-card);
    padding: 24px 28px;
    font-style: normal;
    color: var(--c-text);
    border: 2px dashed var(--c-primary);
}
.mfr-card strong {
    display: block; font-family: var(--ff-d); font-size: 1.2rem;
    color: var(--c-primary-dark); margin-bottom: 8px; font-weight: 700;
}
.mfr-card div { font-size: 14px; line-height: 1.65; }
.mfr-meta { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(18,162,155,0.2); font-size: 12.5px; }
.mfr-meta span { font-family: ui-monospace, monospace; background: #fff; padding: 1px 8px; border-radius: 4px; color: var(--c-primary-dark); font-weight: 600; }
.mfr-email {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 12px; padding: 8px 14px;
    background: #fff; border-radius: var(--r-pill);
    color: var(--c-primary) !important; font-weight: 600; font-size: 13px;
    transition: all .2s;
}
.mfr-email:hover { background: var(--c-primary); color: #fff !important; }
@media (max-width: 860px) {
    .mfr-inner { grid-template-columns: 1fr; padding: 32px 28px; gap: 28px; }
}

/* ─── Footer manufacturer block ─── */
.ft-mfr {
    margin-top: 16px !important; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px !important; line-height: 1.75 !important;
}
.ft-mfr strong { color: #fff; margin-right: 4px; }
.ft-mfr a { color: var(--c-primary) !important; }
.ft-mfr a:hover { color: #fff !important; }
