@charset "UTF-8";
:root {
    --bg: #FFF8F0;
    --surface: #FFFFFF;
    --surface-blue: #EFFFFA;
    --surface-gold: #FFF1C7;
    --ink: #2A1F1A;
    --ink-strong: #24130C;
    --muted: #75645A;
    --soft: #A9978C;
    --brand: #FF6B35;
    --brand-deep: #B8336A;
    --film: #2B1A3F;
    --cyan: #00E5B0;
    --gold: #FFD166;
    --orange: #FF7A00;
    --line: rgba(255, 107, 53, .18);
    --shadow: 0 20px 46px rgba(97, 45, 16, .14);
    --shadow-soft: 0 12px 30px rgba(97, 45, 16, .10);
    --gradient: linear-gradient(135deg, #FF6B35 0%, #FFB703 48%, #00E5B0 100%);
    --radius-lg: 30px;
    --radius: 22px;
    --radius-sm: 16px;
    --container: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
main { display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 88px 0; position: relative; }
.section.compact { padding: 62px 0; }
.section.alt { background: rgba(255, 255, 255, .58); }
.section.deep {
    background: var(--ink-strong);
    color: #FFF3E8;
    overflow: hidden;
}
.section.deep::before,
.section.deep::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}
.section.deep::before { width: 360px; height: 360px; top: -180px; right: -100px; background: rgba(0, 229, 176, .13); }
.section.deep::after { width: 280px; height: 280px; bottom: -140px; left: -60px; background: rgba(255, 107, 53, .16); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.section-head > div:first-child { max-width: 780px; }
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: var(--brand-deep);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
}
.section-kicker::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: var(--gradient); }
h1, h2, h3, .section-title { color: var(--ink-strong); line-height: 1.25; margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 82px); letter-spacing: -.04em; }
h2, .section-title { font-size: clamp(28px, 3.3vw, 46px); letter-spacing: -.025em; }
h3 { font-size: 21px; }
p { margin-top: 0; }
.lead { font-size: clamp(17px, 2vw, 21px); color: var(--muted); }
.section-desc { margin: 10px 0 0; color: var(--muted); font-size: 16px; }
.deep h2, .deep h3, .deep .section-title { color: #FFFFFF; }
.deep .section-desc, .deep p { color: rgba(255, 243, 232, .78); }
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--gradient);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 800;
    border: 0;
    box-shadow: 0 14px 32px rgba(255, 107, 53, .22);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.main-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(255, 107, 53, .28); filter: saturate(1.08); }
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 22px;
    border: 1px solid rgba(255, 107, 53, .28);
    border-radius: 999px;
    color: var(--ink-strong);
    text-decoration: none;
    font-weight: 750;
    background: rgba(255,255,255,.72);
}
.text-link { color: var(--brand); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.card, .zone-card, .info-card, .review-card {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(38, 20, 12, .94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 26px rgba(97, 45, 16, .16);
}
.header-inner {
    width: min(calc(100% - 40px), 1280px);
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-logo, .drawer-brand, .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.site-logo img { width: auto; max-width: 132px; max-height: 44px; object-fit: contain; }
.site-logo strong { color: #FFFFFF; font-size: 24px; letter-spacing: -.04em; }
.nav-core { display: flex; align-items: center; justify-content: center; gap: 8px; margin-left: auto; }
.nav-core a {
    color: #FFF3E8;
    text-decoration: none;
    border-radius: 999px;
    padding: 8px 12px;
    white-space: nowrap;
    font-size: 15px;
    transition: background .2s ease, color .2s ease;
}
.nav-core a:hover, .nav-core a.active { color: #FFFFFF; background: rgba(0, 229, 176, .16); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta { min-height: 42px; padding: 9px 18px; font-size: 14px; }
.menu-trigger {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.menu-trigger span { width: 18px; height: 2px; border-radius: 99px; background: #FFFFFF; }
.mobile-menu-trigger { display: none; }
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(26, 15, 10, .54);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    width: min(420px, 92vw);
    padding: 28px;
    background: #FFFDF9;
    transform: translateX(102%);
    transition: transform .3s ease;
    overflow-y: auto;
    box-shadow: -24px 0 60px rgba(36, 19, 12, .22);
}
.menu-open .drawer-overlay { opacity: 1; visibility: visible; }
.menu-open .site-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.drawer-brand img, .footer-logo img { width: auto; max-width: 110px; max-height: 40px; object-fit: contain; }
.drawer-brand span { color: var(--ink-strong); font-weight: 900; font-size: 24px; }
.drawer-close { width: 42px; height: 42px; border-radius: 50%; border: 0; background: #FBEDE5; color: var(--ink-strong); font-size: 28px; cursor: pointer; }
.drawer-intro { color: var(--muted); margin: 22px 0 18px; }
.drawer-nav { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.drawer-nav a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border-radius: 14px; background: #FFFFFF; border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 700; }
.drawer-nav a:hover, .drawer-nav a.active { background: var(--surface-blue); color: var(--brand-deep); border-color: rgba(0,229,176,.28); }
.drawer-nav span { color: var(--brand); }
.drawer-note { margin-top: 22px; padding: 18px; border-radius: 18px; background: var(--ink-strong); color: #FFF3E8; }
.drawer-note p { margin: 7px 0 0; font-size: 14px; color: rgba(255,243,232,.74); }
.hero {
    position: relative;
    padding: 82px 0 74px;
    background:
        radial-gradient(circle at 8% 20%, rgba(255,107,53,.23), transparent 31%),
        radial-gradient(circle at 86% 18%, rgba(0,229,176,.19), transparent 28%),
        linear-gradient(135deg, #FFF4EB 0%, #F4F0FF 46%, #E9FFF8 100%);
    overflow: hidden;
}
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero::before { width: 240px; height: 240px; border: 1px solid rgba(184,51,106,.13); left: -90px; bottom: -120px; }
.hero::after { width: 420px; height: 420px; border: 1px solid rgba(0,229,176,.18); right: -170px; top: -210px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); align-items: center; gap: 64px; position: relative; z-index: 1; }
.hero-copy h1 { margin-bottom: 10px; }
.hero-copy .hero-subtitle { font-size: clamp(24px, 3vw, 38px); color: var(--film); font-weight: 850; margin-bottom: 22px; }
.hero-copy .lead { max-width: 690px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 26px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-points span { padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.76); border: 1px solid rgba(184,51,106,.14); color: var(--ink-strong); font-size: 14px; font-weight: 760; }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: 7% 4% 1%; border-radius: 42px; background: var(--gradient); filter: blur(24px); opacity: .22; }
.hero-visual img { position: relative; width: 100%; max-height: 620px; object-fit: contain; filter: drop-shadow(0 28px 34px rgba(43,26,63,.22)); }
.floating-card { position: absolute; z-index: 2; min-width: 180px; padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow-soft); backdrop-filter: blur(8px); }
.floating-card strong { display: block; color: var(--ink-strong); }
.floating-card span { color: var(--muted); font-size: 13px; }
.floating-card.one { left: -24px; top: 16%; }
.floating-card.two { right: -18px; bottom: 12%; }
.highlight-strip { margin-top: -1px; background: #FFFFFF; border-bottom: 1px solid var(--line); }
.highlight-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.highlight-item { padding: 28px 24px; border-right: 1px solid var(--line); }
.highlight-item:last-child { border-right: 0; }
.highlight-item .num { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 11px; color: #FFFFFF; background: var(--film); font-weight: 850; margin-bottom: 12px; }
.highlight-item h2 { font-size: 19px; margin-bottom: 8px; }
.highlight-item p { color: var(--muted); margin: 0; font-size: 14px; }
.capsules { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; }
.capsule { min-height: 132px; padding: 17px; border-radius: 999px; background: #FFFFFF; border: 1px solid var(--line); text-align: center; display: flex; flex-direction: column; justify-content: center; box-shadow: var(--shadow-soft); }
.capsule h3 { margin: 0 0 6px; font-size: 16px; }
.capsule p { margin: 0 0 6px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.capsule a { color: var(--brand); font-size: 12px; font-weight: 800; text-decoration: none; }
.split-feature { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: center; gap: 54px; }
.split-feature.reverse .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media img { width: 100%; max-height: 560px; object-fit: contain; border-radius: var(--radius-lg); filter: drop-shadow(0 22px 34px rgba(97,45,16,.15)); }
.media-frame { padding: 18px; border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(239,255,250,.8)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.feature-copy p { color: var(--muted); }
.feature-list { display: grid; gap: 12px; margin: 24px 0; }
.feature-list div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.feature-list span { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--surface-gold); color: var(--brand-deep); font-weight: 900; }
.feature-list strong { color: var(--ink-strong); }
.dual-grid, .safety-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.zone-card { overflow: hidden; }
.zone-card .zone-media { padding: 18px 18px 0; }
.zone-card img { width: 100%; max-height: 310px; object-fit: contain; border-radius: 18px; background: linear-gradient(135deg, #FFF3EC, #EFFFFA); }
.zone-body { padding: 26px; }
.zone-body p { color: var(--muted); }
.mini-points { display: grid; gap: 8px; margin: 18px 0; }
.mini-points span { position: relative; padding-left: 18px; color: var(--ink); font-size: 14px; }
.mini-points span::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.three-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.info-card { overflow: hidden; }
.info-card img { width: 100%; height: 230px; object-fit: contain; background: linear-gradient(135deg, #FFF3EC, #F2EEFF 48%, #EFFFFA); }
.info-card .card-body { padding: 24px; }
.info-card p { color: var(--muted); }
.safety-card { padding: 30px; border-radius: var(--radius-lg); background: #FFFFFF; border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 26px; }
.safety-card img { width: 100%; max-height: 190px; object-fit: contain; }
.safety-card p { color: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.review-card { padding: 24px; }
.review-card .stars { color: var(--orange); letter-spacing: .12em; font-size: 14px; }
.review-card p { margin: 14px 0 20px; color: var(--ink); }
.review-card footer { background: none; color: var(--muted); font-size: 13px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border-radius: 18px; background: #FFFFFF; border: 1px solid var(--line); box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 850; color: var(--ink-strong); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--brand); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 22px 20px; margin: 0; color: var(--muted); }
.notice-panel { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 30px; padding: 34px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #24130C, #2B1A3F 65%, #163A35); color: #FFF3E8; box-shadow: var(--shadow); }
.notice-panel h2 { color: #FFFFFF; margin-bottom: 10px; }
.notice-panel p { color: rgba(255,243,232,.78); margin: 0; }
.about-strip { display: grid; grid-template-columns: 240px 1fr auto; gap: 34px; align-items: center; padding: 30px; border-radius: var(--radius-lg); background: #FFFFFF; border: 1px solid var(--line); box-shadow: var(--shadow); }
.about-strip img { width: 100%; max-height: 190px; object-fit: contain; }
.about-strip p { margin: 0; color: var(--muted); }
.page-hero { padding: 72px 0 60px; background: radial-gradient(circle at 10% 10%, rgba(255,107,53,.18), transparent 34%), radial-gradient(circle at 90% 10%, rgba(0,229,176,.17), transparent 30%), linear-gradient(135deg, #FFF5EC, #F4F0FF 52%, #EFFFFA); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.82fr); align-items: center; gap: 56px; }
.page-hero h1 { font-size: clamp(38px, 5vw, 68px); margin-bottom: 18px; }
.page-hero .lead { max-width: 760px; }
.page-hero img { width: 100%; max-height: 500px; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(43,26,63,.16)); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: var(--brand); text-decoration: none; }
.content-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: 28px; align-items: start; }
.prose-card { padding: 32px; }
.prose-card p { color: var(--muted); }
.prose-card p:last-child { margin-bottom: 0; }
.side-stack { display: grid; gap: 18px; }
.side-card { padding: 24px; border-radius: var(--radius); background: #FFFFFF; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.side-card h3 { margin-bottom: 10px; }
.side-card p { color: var(--muted); margin-bottom: 0; font-size: 14px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.service-card { padding: 25px; border-radius: var(--radius); background: #FFFFFF; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.service-card .service-no { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 12px; background: var(--surface-blue); color: var(--brand-deep); font-weight: 900; margin-bottom: 14px; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; counter-reset: step; }
.step { counter-increment: step; position: relative; padding: 24px 24px 24px 70px; border-radius: var(--radius); background: #FFFFFF; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.step::before { content: counter(step); position: absolute; left: 22px; top: 24px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--gradient); color: #FFFFFF; font-weight: 900; }
.step h3 { margin-bottom: 7px; }
.step p { color: var(--muted); margin: 0; font-size: 14px; }
.feedback-panel { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; padding: 30px; border-radius: var(--radius-lg); background: #FFFFFF; border: 1px solid var(--line); box-shadow: var(--shadow); }
.feedback-mark { width: 56px; height: 56px; border-radius: 18px; background: var(--film); color: #FFFFFF; display: grid; place-items: center; font-size: 32px; font-weight: 900; }
.feedback-panel blockquote { margin: 0; font-size: 18px; color: var(--ink-strong); }
.feedback-panel cite { display: block; margin-top: 12px; color: var(--muted); font-size: 14px; font-style: normal; }
.compliance-box { padding: 30px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #FFF1C7, #EFFFFA); border: 1px solid rgba(0,229,176,.22); }
.compliance-box h2 { margin-bottom: 10px; }
.compliance-box p { color: var(--muted); margin-bottom: 0; }
.site-footer { background: #1A0F0A; color: #FFF3E8; padding: 68px 0 0; }
.footer-inner { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; display: grid; grid-template-columns: minmax(280px,.9fr) minmax(0,1.6fr); gap: 70px; }
.footer-brand p { color: rgba(255,243,232,.72); max-width: 460px; margin: 18px 0 24px; }
.footer-logo span { color: #FFFFFF; font-size: 25px; font-weight: 900; }
.footer-links { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
.footer-links h2 { color: #FFFFFF; font-size: 16px; margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,243,232,.72); text-decoration: none; margin: 9px 0; font-size: 14px; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 52px; padding: 20px max(20px, calc((100% - var(--container))/2)); border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 24px; color: rgba(255,243,232,.58); font-size: 12px; }
.footer-bottom p { margin: 0; }
.mobile-bottom-nav { display: none; }
@media (max-width: 1080px) {
    .nav-core { display: none; }
    .header-inner { justify-content: space-between; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .capsules { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .three-grid, .service-grid, .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .review-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .safety-card { grid-template-columns: 140px 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 780px) {
    body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 64px 0; }
    .section.compact { padding: 48px 0; }
    .header-inner { width: calc(100% - 24px); min-height: 64px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; }
    .mobile-menu-trigger { display: inline-flex; justify-self: start; }
    .desktop-menu-trigger { display: none; }
    .site-logo { justify-self: center; }
    .site-logo img { max-width: 88px; max-height: 36px; }
    .site-logo strong { display: none; }
    .header-actions { justify-self: end; }
    .header-cta { min-height: 38px; padding: 8px 13px; font-size: 13px; white-space: nowrap; }
    .hero { padding: 54px 0 46px; }
    .hero-grid, .page-hero-grid, .split-feature, .content-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 34px; }
    .hero-copy { text-align: center; }
    .hero-copy .lead { margin-inline: auto; }
    .hero-actions, .hero-points { justify-content: center; }
    .floating-card { display: none; }
    .highlight-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .highlight-item { border-bottom: 1px solid var(--line); }
    .highlight-item:nth-child(2n) { border-right: 0; }
    .capsules { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .capsule { border-radius: 22px; min-height: 136px; }
    .split-feature.reverse .feature-media { order: initial; }
    .dual-grid, .safety-grid, .three-grid, .service-grid, .steps, .review-grid { grid-template-columns: 1fr; }
    .section-head { align-items: start; flex-direction: column; margin-bottom: 26px; }
    .safety-card { grid-template-columns: 110px 1fr; padding: 22px; }
    .notice-panel, .about-strip { grid-template-columns: 1fr; text-align: left; }
    .about-strip img { max-width: 220px; }
    .page-hero { padding: 52px 0 42px; }
    .page-hero-grid { gap: 30px; }
    .page-hero img { max-height: 380px; }
    .prose-card { padding: 24px; }
    .footer-links { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .footer-bottom { flex-direction: column; padding-inline: 20px; }
    .mobile-bottom-nav { position: fixed; left: 10px; right: 10px; bottom: max(8px, env(safe-area-inset-bottom)); z-index: 9998; display: grid; grid-template-columns: repeat(4,1fr); min-height: 58px; padding: 6px; border-radius: 20px; background: rgba(36,19,12,.95); box-shadow: 0 16px 34px rgba(36,19,12,.24); backdrop-filter: blur(12px); }
    .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; color: rgba(255,243,232,.72); text-decoration: none; font-size: 11px; border-radius: 15px; }
    .mobile-bottom-nav a span { font-size: 18px; line-height: 1; }
    .mobile-bottom-nav a.active { color: #FFFFFF; background: rgba(0,229,176,.16); }
}
@media (max-width: 520px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions a { width: 100%; }
    .highlight-grid { grid-template-columns: 1fr; }
    .highlight-item { border-right: 0; }
    .capsules { grid-template-columns: 1fr; }
    .drawer-nav { grid-template-columns: 1fr; }
    .site-drawer { padding: 22px; }
    .safety-card { grid-template-columns: 1fr; }
    .safety-card img { max-width: 180px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .feedback-panel { grid-template-columns: 1fr; }
    .main-btn, .ghost-btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
