/* ============================================================
   Fresh Breeze — 清爽创意健康视觉
   ============================================================ */
:root {
    --mint: #3dccc0;
    --mint-dark: #2aad9f;
    --mint-light: #e6faf7;
    --sky: #6ec1e4;
    --sky-dark: #4aa3cc;
    --sky-light: #eaf6fc;
    --aqua: #b8ece4;
    --peach: #ffb088;
    --peach-soft: #fff3ec;
    --cream: #f4fafb;
    --cream-dark: #e8f3f6;
    --ink: #2d4048;
    --text: #2d4048;
    --text-muted: #6b8490;
    --surface: #ffffff;
    --border: rgba(45, 64, 72, 0.1);
    --border-soft: rgba(61, 204, 192, 0.22);
    --shadow-sm: 0 4px 16px rgba(45, 100, 120, 0.06);
    --shadow: 0 12px 36px rgba(45, 100, 120, 0.1);
    --shadow-hover: 0 16px 44px rgba(61, 204, 192, 0.18);
    --font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
    --header-h: 68px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    font-family: var(--font);
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { color: #fff; background: var(--mint); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ── Floating pill header ── */
.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 100;
    width: min(680px, calc(100% - 32px));
    transform: translateX(-50%);
    transition: top 0.3s, width 0.3s;
}

.site-header.scrolled { top: 10px; }

.site-header .container { width: 100%; }

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: var(--header-h);
    padding: 0 8px 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint), var(--sky));
    color: #fff;
    font-size: 0.85rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-links a:hover { color: var(--mint-dark); background: var(--mint-light); }

.nav-links a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--mint), var(--sky));
}

.mobile-menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--mint-light);
    color: var(--mint-dark);
    cursor: pointer;
    flex-shrink: 0;
}
.cookie-actions button{
	padding: 8px 12px;
	margin: 5px;
	border: none;
	background: #2aad9f;
	color: #ffffff;
	border-radius: 8px;
}
a:focus-visible, button:focus-visible {
    outline: 3px solid rgba(61, 204, 192, 0.45);
    outline-offset: 3px;
}

/* ── Hero — light breeze ── */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--header-h) + 48px) 0 80px;
    background:
        radial-gradient(ellipse 70% 55% at 80% 10%, rgba(110, 193, 228, 0.22), transparent),
        radial-gradient(ellipse 60% 50% at 10% 90%, rgba(61, 204, 192, 0.18), transparent),
        linear-gradient(180deg, #eef8fb 0%, var(--cream) 100%);
    overflow: hidden;
}

.hero-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blobs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    animation: blob-drift 16s ease-in-out infinite alternate;
}

.hero-blobs span:nth-child(1) {
    width: 480px; height: 480px;
    top: -8%; left: -5%;
    background: var(--sky-light);
    animation-delay: 0s;
}

.hero-blobs span:nth-child(2) {
    width: 380px; height: 380px;
    top: 25%; right: -6%;
    background: var(--aqua);
    animation-delay: -5s;
}

.hero-blobs span:nth-child(3) {
    width: 320px; height: 320px;
    bottom: 0; left: 35%;
    background: var(--mint-light);
    opacity: 0.6;
    animation-delay: -9s;
}

@keyframes blob-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(24px, -16px) scale(1.06); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.hero-copy .eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--mint-light);
    color: var(--mint-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.hero-copy h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--mint-dark), var(--sky-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy > p {
    margin-top: 22px;
    max-width: 480px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--mint), var(--sky));
    box-shadow: 0 8px 24px rgba(61, 204, 192, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(61, 204, 192, 0.38);
}

.btn-secondary {
    color: var(--mint-dark);
    background: #fff;
    border: 1.5px solid var(--border-soft);
}

.btn-secondary:hover {
    border-color: var(--mint);
    background: var(--mint-light);
    transform: translateY(-2px);
}

.hero-visual { position: relative; }

.hero-float {
    position: absolute;
    top: -16px;
    right: -12px;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--peach);
    font-size: 1.3rem;
    box-shadow: var(--shadow);
    animation: float-bounce 3s ease-in-out infinite;
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.hero-image-wrap {
    position: relative;
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.hero-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    left: -16px;
    display: flex;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hero-badge .stat-item {
    padding: 14px 20px;
    text-align: center;
    background: #fff;
}

.hero-badge .stat-item:first-child {
    background: var(--mint-light);
}

.hero-badge .stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--mint-dark);
    line-height: 1;
}

.hero-badge .stat-item span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ── Marquee strip ── */
.marquee-strip {
    padding: 13px 0;
    background: linear-gradient(90deg, var(--mint-light), var(--sky-light), var(--mint-light));
    overflow: hidden;
    border-block: 1px solid var(--border-soft);
}

.marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-track span {
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint-dark);
    white-space: nowrap;
}

.marquee-track span::after {
    content: "·";
    margin-left: 48px;
    opacity: 0.45;
    color: var(--sky-dark);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Notice ── */
.notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 32px 0 0;
    padding: 16px 20px;
    border-radius: 14px;
    background: var(--sky-light);
    border: 1px solid rgba(110, 193, 228, 0.35);
}

.notice i { color: var(--sky-dark); font-size: 1.05rem; margin-top: 2px; flex-shrink: 0; }
.notice span { color: #3d6a80; font-size: 0.9rem; line-height: 1.65; }

/* ── Sections ── */
.section { padding: 96px 0; }
.section-alt { background: var(--cream-dark); }

.section-title { max-width: 580px; margin: 0 auto 52px; text-align: center; }
.section-title.align-left { margin: 0 0 44px; text-align: left; }

.section-title .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sky-dark);
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.section-title p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 8px 0;
    color: var(--mint-dark);
    font-weight: 700;
    font-size: 0.92rem;
    border-bottom: 2px solid var(--mint);
    transition: gap 0.2s, color 0.2s;
}

.text-link:hover { gap: 12px; color: var(--sky-dark); border-color: var(--sky); }

/* ── About split ── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.about-media { position: relative; }

.about-tag {
    position: absolute;
    top: -14px;
    right: 20px;
    z-index: 2;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mint), var(--sky));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: var(--shadow-sm);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 28px 28px 28px 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.about-body .eyebrow { color: var(--mint-dark); }

.experience-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 18px 0 6px;
}

.experience-number {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--mint);
}

.experience-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    max-width: 140px;
    line-height: 1.4;
}

.about-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 14px 0 12px;
    color: var(--ink);
}

.about-body p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

/* ── Bento health cards ── */
.health-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.health-bento .card {
    position: relative;
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.health-bento .card:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.health-bento .card:nth-child(2) { grid-column: span 5; }
.health-bento .card:nth-child(3) { grid-column: span 5; }
.health-bento .card:nth-child(4) { grid-column: span 12; display: grid; grid-template-columns: 280px 1fr; }

.health-bento .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-soft);
}

.card-media {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.health-bento .card:nth-child(1) .card-media { height: 280px; }
.health-bento .card:nth-child(4) .card-media { height: 100%; min-height: 180px; }

.card-content { padding: 22px; position: relative; }

.card-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(61, 204, 192, 0.2);
    pointer-events: none;
}

.card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 12px;
    background: var(--mint-light);
    color: var(--mint-dark);
    font-size: 1.1rem;
}

.health-bento .card:nth-child(2) .card-icon { background: var(--sky-light); color: var(--sky-dark); }
.health-bento .card:nth-child(3) .card-icon { background: #edf9f5; color: #2aad9f; }
.health-bento .card:nth-child(4) .card-icon { background: var(--peach-soft); color: #e8926a; }

.card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--ink);
}

.card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ── Page hero (subpages) ── */
.page-hero {
    position: relative;
    padding: calc(var(--header-h) + 56px) 0 72px;
    background:
        radial-gradient(ellipse 60% 80% at 90% 0%, rgba(110, 193, 228, 0.25), transparent),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(61, 204, 192, 0.2), transparent),
        linear-gradient(180deg, #e8f6fa 0%, var(--cream) 100%);
    overflow: hidden;
}

.page-hero-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-hero-blobs::before,
.page-hero-blobs::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.page-hero-blobs::before {
    width: 320px; height: 320px;
    top: -15%; right: 8%;
    background: var(--sky-light);
    opacity: 0.8;
}

.page-hero-blobs::after {
    width: 260px; height: 260px;
    bottom: -5%; left: 5%;
    background: var(--mint-light);
    opacity: 0.7;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--mint-light);
    color: var(--mint-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.12;
}

.page-hero p {
    margin-top: 14px;
    max-width: 520px;
    color: var(--text-muted);
    font-size: 1rem;
}

.page-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 48px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── Content ── */
.content-section {
    background: var(--surface);
    border-radius: 24px;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.content-hero-image,
.legal-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.content-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    margin: 32px 0 14px;
    padding: 10px 16px;
    background: var(--mint-light);
    border-radius: 12px;
    border-left: 3px solid var(--mint);
}

.content-section h2:first-of-type { margin-top: 0; }
.content-section h2 i { color: var(--sky-dark); font-size: 1rem; }

.content-section p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.85;
    margin-bottom: 12px;
}

.content-section ul { list-style: none; margin: 10px 0 18px; }

.content-section li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
    border-bottom: 1px dashed var(--border);
}

.content-section li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: 700;
}

.content-section strong { color: var(--ink); font-weight: 700; }

.content-section a {
    color: var(--sky-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--mint);
    transition: border-color 0.2s, color 0.2s;
}

.content-section a:hover { color: var(--mint-dark); border-color: var(--sky); }

.legal { max-width: 780px; margin: 0 auto; }

/* ── Feature grid ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.mini-card {
    padding: 22px;
    border-radius: 16px;
    background: var(--cream);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--border-soft);
}

.mini-card i { font-size: 1.35rem; margin-bottom: 10px; }
.mini-card:nth-child(1) i { color: var(--mint-dark); }
.mini-card:nth-child(2) i { color: var(--sky-dark); }
.mini-card:nth-child(3) i { color: #e8926a; }

.mini-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--ink); }
.mini-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ── Knowledge list ── */
.knowledge-list { display: flex; flex-direction: column; gap: 18px; }

.knowledge-block {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: transform 0.2s, box-shadow 0.2s;
}

.knowledge-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.knowledge-block:nth-child(even) { grid-template-columns: 1fr 240px; }
.knowledge-block:nth-child(even) .knowledge-image { order: 2; }

.knowledge-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
}

.knowledge-content { padding: 28px; }

.knowledge-block h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--ink);
}

.knowledge-block h2 i { color: var(--mint-dark); }

.knowledge-block li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.knowledge-block li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--sky);
    font-weight: 900;
}

/* ── Contact ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: start;
}

.contact-card {
    background: var(--surface);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--ink);
}

.contact-card h2 i { color: var(--mint-dark); }

.contact-list { display: grid; gap: 10px; }

.contact-list div {
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.7;
    transition: border-color 0.2s, background 0.2s;
}

.contact-list div:hover {
    border-color: var(--border-soft);
    background: var(--mint-light);
}

.contact-aside {
    border-radius: 24px;
    padding: clamp(24px, 4vw, 36px);
    background: linear-gradient(145deg, var(--mint-light), var(--sky-light));
    color: var(--ink);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.contact-aside .eyebrow { color: var(--mint-dark); }

.contact-aside h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 10px 0 12px;
}

.contact-aside p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.aside-image {
    width: calc(100% + 72px);
    height: 160px;
    object-fit: cover;
    margin: -36px -36px 20px;
    opacity: 0.5;
    border-radius: 0;
    filter: saturate(0.85);
}

/* ── Footer ── */
.site-footer {
    padding: 52px 0 28px;
    background: linear-gradient(180deg, #e4f2f6 0%, #d8ecf2 100%);
    color: var(--text-muted);
    border-top: 1px solid var(--border-soft);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
    margin-bottom: 32px;
}

.footer-brand .logo { color: var(--ink); }
.footer-brand .logo-icon { background: linear-gradient(135deg, var(--mint), var(--sky)); color: #fff; }

.footer-brand p {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.footer-links a {
    padding: 4px 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--mint-dark); }

.footer-info {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.8;
    color: #8aa3ad;
}

/* ── Cookie banner ── */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 200;
    width: min(640px, calc(100% - 32px));
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    transform: translateX(-50%) translateY(150%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s;
}

.cookie-banner.show,
.cookie-banner.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-banner__text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 3px;
}

.cookie-banner__text p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; }

.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }

.cookie-banner__link {
    padding: 0 10px;
    color: var(--mint-dark);
    font-weight: 700;
    font-size: 0.82rem;
}

.cookie-banner__button,
.cookie-banner__actions button {
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.cookie-banner__button--primary,
.cookie-banner__actions button[data-accept] {
    color: #fff;
    background: linear-gradient(135deg, var(--mint), var(--sky));
    border-color: transparent;
}

.cookie-banner__button--primary:hover,
.cookie-banner__actions button[data-accept]:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(61, 204, 192, 0.3);
}

.cookie-banner__button--secondary,
.cookie-banner__actions button[data-close] {
    color: var(--text-muted);
    background: var(--cream);
}

.cookie-banner__button--secondary:hover,
.cookie-banner__actions button[data-close]:hover {
    background: var(--mint-light);
    color: var(--mint-dark);
}

/* ── Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-inner, .about-split, .contact-layout { grid-template-columns: 1fr; }

    .health-bento .card,
    .health-bento .card:nth-child(1),
    .health-bento .card:nth-child(4) {
        grid-column: span 12;
        grid-row: auto;
        display: block;
    }

    .health-bento .card:nth-child(1) .card-media { height: 220px; }
    .health-bento .card:nth-child(4) { display: block; }
    .health-bento .card:nth-child(4) .card-media { height: 180px; }

    .feature-grid { grid-template-columns: 1fr 1fr; }

    .knowledge-block,
    .knowledge-block:nth-child(even) { grid-template-columns: 1fr; }
    .knowledge-block:nth-child(even) .knowledge-image { order: 0; }

    .footer-content { grid-template-columns: 1fr; }
    .footer-links { align-items: flex-start; }
}

@media (max-width: 768px) {
    .site-header { width: calc(100% - 24px); }

    .mobile-menu-toggle { display: grid; place-items: center; }

    .nav-links {
        position: fixed;
        top: calc(var(--header-h) + 28px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        padding: 12px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-links.active { display: flex; }
    .nav-links a { width: 100%; justify-content: center; }

    .hero { min-height: auto; padding-bottom: 64px; }
    .hero-image { height: 320px; }
    .hero-badge { left: 12px; bottom: 16px; }
    .hero-float { display: none; }

    .section { padding: 72px 0; }
    .feature-grid { grid-template-columns: 1fr; }

    .cookie-banner__content { flex-direction: column; align-items: stretch; }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__button, .cookie-banner__actions button { flex: 1; }
}

@media (max-width: 480px) {
    .container { width: min(100% - 28px, 1180px); }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    .experience-number { font-size: 2.8rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .marquee-track { animation: none; }
}
