/* =============================================================================
   4ELEMENTRA — main.css
   1:1 port of the Next.js CSS modules. Class names are prefixed (header__*,
   philo__*, hero__*, etc.) instead of using CSS modules. All breakpoints,
   colors, animations preserved from the React build.
   ============================================================================= */

/* ---------- Design tokens & reset ---------- */
:root {
    --magenta: #C4006A;
    --magenta-light: #E8007A;
    --magenta-dark: #7A0050;
    --brand-deepest: #5C003A;
    --brand-tint: #F0C0DC;
    --brand-pale: #FAE6F2;

    --anthracite: #1E1E1E;
    --anthracite-light: #555555;
    --anthracite-dark: #0F0F0F;

    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --gray: #E0C0D4;
    --dark-gray: #555555;
    --gray-light: #f8f8f8;

    --font-primary: var(--font-body, 'Inter'), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: var(--font-body, 'Inter'), sans-serif;

    --section-padding: 120px;
    --container-max: 1440px;
    --container-padding: 80px;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-magenta: 0 8px 32px rgba(196, 0, 106, 0.25);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body { font-family: var(--font-primary); background-color: var(--white); color: var(--anthracite); line-height: 1.6; overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { font-size: clamp(1rem, 1.5vw, 1.125rem); line-height: 1.7; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
@media (max-width: 1024px) { .container { padding: 0 40px; } }
@media (max-width: 768px) { .container { padding: 0 24px; } }
@media (max-width: 480px) { .container { padding: 0 16px; } }

.section { padding: var(--section-padding) 0; }
@media (max-width: 768px) { .section { padding: 80px 0; } }
@media (max-width: 480px) { .section { padding: 60px 0; } }

a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--magenta); }
img { max-width: 100%; height: auto; display: block; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; font-family: var(--font-primary); font-size: 1rem; font-weight: 600; text-decoration: none; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition-medium); position: relative; overflow: hidden; }
.btn-primary { background: var(--magenta); color: var(--white); }
.btn-primary:hover { background: var(--magenta-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-magenta); }
.btn-secondary { background: var(--white); color: var(--anthracite); border: 2px solid var(--gray); }
.btn-secondary:hover { border-color: var(--magenta); color: var(--magenta); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--anthracite); }
.btn-lg { padding: 20px 40px; font-size: 1.125rem; }
@media (max-width: 480px) { .btn { padding: 14px 24px; font-size: 0.9375rem; } .btn-lg { padding: 16px 28px; font-size: 1rem; } }

::selection { background: var(--magenta); color: var(--white); }
:focus-visible { outline: 2px solid var(--magenta); outline-offset: 2px; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================================
   HEADER
   ============================================================================ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: all var(--transition-medium); background: transparent; }
.header.is-scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); padding: 12px 0; }
.header.is-menu-open { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; }
.header__container { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.header__logo { display: flex; align-items: center; z-index: 1001; }
.header__logo img { height: 36px; width: auto; transition: opacity var(--transition-fast); }
.header__nav { display: flex; align-items: center; gap: 28px; }
.header__navList { display: flex; align-items: center; gap: 24px; list-style: none; }
.header__navLink { font-size: 0.85rem; font-weight: 500; white-space: nowrap; color: var(--white); transition: color var(--transition-fast); position: relative; }
.header.is-scrolled .header__navLink { color: var(--anthracite); }
.header__navLink::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--magenta); transition: width var(--transition-medium); }
.header__navLink:hover::after { width: 100%; }
.header__navLink:hover { color: var(--magenta); }
.header__cta { padding: 12px 24px; font-size: 0.875rem; }
.header__mobileToggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; z-index: 1001; padding: 6px; }
.header__mobileToggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition-fast); transform-origin: center; }
.header.is-scrolled .header__mobileToggle span { background: var(--anthracite); }
.header__mobileToggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__mobileToggle.is-active span:nth-child(2) { opacity: 0; }
.header__mobileToggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.header__lang { display: flex; align-items: center; gap: 4px; font-family: var(--font-primary); font-weight: 600; font-size: 0.85rem; color: var(--white); margin-right: 12px; transition: color var(--transition-medium); }
.header.is-scrolled .header__lang { color: var(--anthracite); }
.header__langBtn { background: transparent; border: none; color: inherit; opacity: 0.5; cursor: pointer; padding: 6px; font-size: 0.85rem; min-width: 36px; min-height: 36px; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.header__langBtn:hover, .header__langBtn.is-active { opacity: 1; font-weight: 700; color: inherit; }
.header__langSep { opacity: 0.5; }

@media (max-width: 1024px) { .header__container { padding: 0 40px; } }
@media (max-width: 768px) {
    .header__container { padding: 0 24px; }
    .header__mobileToggle { display: flex; }
    .header__nav { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(30,30,35,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; gap: 32px; opacity: 0; visibility: hidden; transition: all var(--transition-medium); z-index: 999; overflow-y: auto; }
    .header__nav.is-open { opacity: 1; visibility: visible; }
    .header__navList { flex-direction: column; gap: 24px; }
    .header__navLink { font-size: 1.25rem; color: var(--white) !important; padding: 8px 0; min-height: 44px; display: flex; align-items: center; }
    .header__cta { margin-top: 16px; }
    .header__mobileToggle.is-active span { background: var(--white) !important; }
    .header.is-menu-open .header__mobileToggle span { background: var(--white); }
    .header__lang { color: var(--white) !important; margin-right: 0; margin-bottom: 20px; }
}
@media (max-width: 480px) {
    .header__container { padding: 0 16px; }
    .header__navLink { font-size: 1.125rem; }
    .header__nav { gap: 24px; }
    .header__navList { gap: 16px; }
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero { min-height: 100vh; display: flex; position: relative; overflow: hidden; align-items: center; background-color: #1a1a1a; }
.hero__bg { position: absolute; inset: 0; z-index: 0; opacity: 0; transition: opacity 1.5s ease-in-out; }
.hero__bg.is-active { opacity: 1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,45,45,0.9) 0%, rgba(45,45,45,0.4) 100%); z-index: 1; }
.hero__container { position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto; padding: 120px 60px 60px; }
.hero__content { max-width: 1200px; margin: 0 auto; text-align: center; animation: fadeInUp 1s ease forwards; animation-delay: 0.3s; opacity: 0; display: flex; flex-direction: column; align-items: center; }
.hero__title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.hero__titleLine { display: inline-block; white-space: nowrap; }
.hero__highlight { background: linear-gradient(135deg, var(--magenta), var(--magenta-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.95); line-height: 1.6; margin-bottom: 24px; }
.hero__subline { font-size: 1rem; font-weight: 600; color: var(--magenta-light); letter-spacing: 0.02em; line-height: 1.6; margin-bottom: 40px; }
.hero__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 32px; }
.hero__trustItem { display: flex; align-items: center; gap: 8px; }
.hero__check { color: var(--magenta); font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; }
.hero__trustText { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.hero__pills { display: flex; flex-wrap: nowrap; justify-content: center; gap: 16px; margin-bottom: 48px; width: 100%; }
.hero__pill { display: inline-flex; align-items: center; padding: 10px 20px; background: var(--magenta); color: var(--white); font-size: 0.875rem; font-weight: 600; border-radius: 100px; letter-spacing: 0.05em; box-shadow: 0 4px 12px rgba(229,0,125,0.3); }
.hero__cta { display: inline-flex; align-items: center; gap: 12px; }
.hero__cta svg { transition: transform var(--transition-fast); }
.hero__cta:hover svg { transform: translateX(4px); }
@media (max-width: 1024px) { .hero__container { padding: 120px 40px 60px; } .hero__title { font-size: clamp(2rem, 4vw, 3.5rem); } .hero__titleLine { white-space: normal; } .hero__pills { flex-wrap: wrap; } }
@media (max-width: 768px) { .hero__container { padding: 100px 24px 60px; } .hero__subtitle { font-size: 1.0625rem; } .hero__subline { font-size: 0.875rem; margin-bottom: 28px; } .hero__trust { gap: 12px; } .hero__trustText { font-size: 0.875rem; } .hero__pills { gap: 10px; margin-bottom: 36px; } .hero__pill { padding: 8px 16px; font-size: 0.8125rem; } }
@media (max-width: 480px) { .hero__container { padding: 90px 16px 40px; } .hero__subtitle { font-size: 0.9375rem; } .hero__subline { font-size: 0.8125rem; margin-bottom: 24px; } .hero__trustText { font-size: 0.8125rem; } .hero__pill { padding: 7px 14px; font-size: 0.75rem; } }

/* ============================================================================
   PHILOSOPHY
   ============================================================================ */
.philo { background: var(--off-white); overflow: hidden; }
.philo__header { text-align: center; max-width: 1000px; margin: 0 auto 80px; }
.philo__eyebrow, .cs__eyebrow, .ben__eyebrow, .proc__eyebrow, .prog__eyebrow, .ice__eyebrow, .zeo__eyebrow, .soil__eyebrow, .prod__eyebrow, .tg__eyebrow, .faq__eyebrow, .contact__eyebrow, .blog__eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--magenta); margin-bottom: 16px; }
.philo__title, .ben__title, .proc__title, .prog__title, .zeo__title, .soil__title, .faq__title, .tg__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--anthracite); margin-bottom: 24px; }
.philo__highlight, .cs__highlight, .ben__highlight, .proc__highlight, .prog__highlight, .ice__highlight, .zeo__highlight, .soil__highlight, .faq__highlight, .contact__highlight, .prod__highlight, .tg__highlight { background: linear-gradient(135deg, var(--magenta), var(--magenta-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.philo__divider { width: 200px; height: 2px; background: linear-gradient(90deg, transparent 0%, var(--magenta) 20%, var(--magenta) 80%, transparent 100%); border-radius: 2px; margin: 0 auto 24px; }
.philo__sub { font-size: 1.125rem; color: var(--dark-gray); line-height: 1.7; }
.philo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 80px; }
.philo__card { position: relative; background: var(--white); border-radius: var(--radius-md); padding: 40px 32px; text-align: center; box-shadow: var(--shadow-sm); transition: all var(--transition-medium); overflow: hidden; }
.philo__card:hover { transform: translateY(-8px); box-shadow: 0 0 0 2px var(--magenta), 0 0 20px rgba(196,0,106,0.4); }
.philo__icon { width: 80px; height: 80px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, rgba(196,0,106,0.08), rgba(196,0,106,0.02)); color: var(--magenta); transition: all var(--transition-medium); }
.philo__card:hover .philo__icon { background: var(--magenta); color: var(--white); transform: scale(1.1); }
.philo__name { font-size: 1.25rem; font-weight: 700; color: var(--anthracite); margin-bottom: 12px; }
.philo__desc { font-size: 0.9375rem; color: var(--dark-gray); line-height: 1.6; }
.philo__num { position: absolute; top: 16px; right: 20px; font-size: 0.75rem; font-weight: 700; color: var(--gray); letter-spacing: 0.1em; }
.philo__core { background: linear-gradient(135deg, var(--anthracite), var(--anthracite-dark)); border-radius: var(--radius-lg); padding: 80px; position: relative; overflow: hidden; }
.philo__core::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(196,0,106,0.2) 0%, transparent 70%); pointer-events: none; }
.philo__coreInner { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.philo__quote { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; color: var(--white); line-height: 1.4; margin-bottom: 24px; }
.philo__quoteHi { color: var(--magenta); }
.philo__quoteText { font-size: 1.125rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
@media (max-width: 1024px) { .philo__grid { grid-template-columns: repeat(2, 1fr); } .philo__core { padding: 60px 40px; } }
@media (max-width: 768px) { .philo__header { margin-bottom: 48px; } .philo__grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; } .philo__card { padding: 32px 24px; } .philo__core { padding: 48px 24px; border-radius: var(--radius-md); } .philo__quote { font-size: 1.25rem; } }
@media (max-width: 480px) { .philo__header { margin-bottom: 36px; } .philo__card { padding: 24px 20px; } .philo__icon { width: 64px; height: 64px; margin-bottom: 16px; } .philo__icon svg { width: 36px; height: 36px; } .philo__core { padding: 36px 20px; } .philo__quote { font-size: 1.125rem; } .philo__quoteText { font-size: 0.9375rem; } }

/* ============================================================================
   CASE STUDY
   ============================================================================ */
.cs { background: var(--white); overflow: hidden; }
.cs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cs__content { padding-right: 40px; }
.cs__title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--anthracite); line-height: 1.25; margin-bottom: 20px; }
.cs__desc { font-size: 1.0625rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 40px; }
.cs__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.cs__stat { display: flex; flex-direction: column; padding: 20px; background: var(--off-white); border-radius: var(--radius-sm); transition: all var(--transition-medium); }
.cs__stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cs__statValue { font-size: 2rem; font-weight: 700; color: var(--magenta); margin-bottom: 4px; }
.cs__statSuffix { font-size: 1.25rem; }
.cs__statLabel { font-size: 0.75rem; color: var(--dark-gray); text-transform: uppercase; letter-spacing: 0.05em; }
.cs__test { position: relative; padding: 32px; background: linear-gradient(135deg, var(--anthracite), var(--anthracite-light)); border-radius: var(--radius-md); color: var(--white); }
.cs__quoteIcon { position: absolute; top: -16px; left: 32px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--magenta); border-radius: 50%; color: var(--white); }
.cs__quote { font-size: 1.0625rem; font-style: italic; line-height: 1.7; margin-bottom: 24px; padding-top: 16px; }
.cs__role { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.cs__media { position: relative; }
.cs__imgWrap { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.cs__slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease; }
.cs__slide.is-active { opacity: 1; }
.cs__slide img { width: 100%; height: 100%; object-fit: cover; }
.cs__slideOverlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%); z-index: 2; pointer-events: none; }
.cs__indicators { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.cs__indicator { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.7); background: transparent; cursor: pointer; padding: 0; transition: all 0.3s ease; }
.cs__indicator.is-active { background: var(--magenta); border-color: var(--magenta); }
.cs__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; justify-content: flex-start; }
.cs__badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--white); border: 1px solid var(--gray); border-radius: 100px; font-size: 0.8125rem; font-weight: 500; color: var(--anthracite); transition: all var(--transition-medium); cursor: pointer; }
.cs__badge:hover { border-color: var(--magenta); color: var(--magenta); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(196,0,106,0.25); }
.cs__badgeIcon { color: var(--magenta); font-weight: 700; display: flex; align-items: center; }
.cs__legal { grid-column: 1/-1; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.1); text-align: center; }
.cs__legal p { font-size: 0.75rem; color: var(--dark-gray); line-height: 1.5; }
@media (max-width: 1024px) { .cs__grid { gap: 48px; } .cs__content { padding-right: 0; } .cs__stats { gap: 16px; } }
@media (max-width: 768px) { .cs__grid { grid-template-columns: 1fr; gap: 36px; } .cs__media { order: -1; } .cs__stats { grid-template-columns: repeat(2, 1fr); gap: 12px; } .cs__statValue { font-size: 1.5rem; } .cs__statSuffix { font-size: 1rem; } .cs__test { padding: 24px; } .cs__quote { font-size: 1rem; } .cs__desc { margin-bottom: 28px; } .cs__badges { justify-content: center; } .cs__legal { margin-top: 40px; } }
@media (max-width: 480px) { .cs__grid { gap: 28px; } .cs__stats { grid-template-columns: 1fr 1fr; gap: 8px; } .cs__stat { padding: 14px; } .cs__statValue { font-size: 1.25rem; } .cs__test { padding: 20px; } .cs__quote { font-size: 0.9375rem; } .cs__badge { padding: 8px 12px; font-size: 0.75rem; } }

/* ============================================================================
   BENEFITS
   ============================================================================ */
.ben { background: var(--off-white); }
.ben__header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.ben__sub { font-size: 1.125rem; color: var(--dark-gray); line-height: 1.7; }
.ben__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ben__card { position: relative; background: var(--white); border-radius: var(--radius-md); padding: 40px 32px; box-shadow: var(--shadow-sm); transition: all var(--transition-medium); overflow: hidden; }
.ben__card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.ben__icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(196,0,106,0.1), rgba(196,0,106,0.05)); color: var(--magenta); margin-bottom: 24px; transition: all var(--transition-medium); }
.ben__card:hover .ben__icon { background: var(--magenta); color: var(--white); transform: scale(1.1); }
.ben__cardTitle { font-size: 1.25rem; font-weight: 700; color: var(--anthracite); margin-bottom: 12px; }
.ben__cardDesc { font-size: 0.9375rem; color: var(--dark-gray); line-height: 1.6; }
.ben__num { position: absolute; top: 24px; right: 24px; font-size: 0.75rem; font-weight: 700; color: var(--gray); letter-spacing: 0.1em; }
@media (max-width: 1024px) { .ben__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .ben__header { margin-bottom: 40px; } .ben__grid { grid-template-columns: 1fr; gap: 24px; } .ben__card { padding: 32px 24px; } }
@media (max-width: 480px) { .ben__header { margin-bottom: 32px; } .ben__card { padding: 24px 20px; } .ben__icon { width: 52px; height: 52px; margin-bottom: 16px; } .ben__icon svg { width: 24px; height: 24px; } .ben__cardTitle { font-size: 1.125rem; } .ben__cardDesc { font-size: 0.875rem; } }

/* ============================================================================
   PROCESS
   ============================================================================ */
.proc { background: var(--white); position: relative; }
.proc__header { text-align: center; max-width: 700px; margin: 0 auto 80px; }
.proc__sub { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--anthracite-light); margin-top: 16px; line-height: 1.6; }
.proc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.proc__card { position: relative; text-align: center; padding: 40px 24px; background: var(--off-white); border-radius: var(--radius-lg); transition: all var(--transition-medium); }
.proc__card:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow-md); }
.proc__iconWrap { width: 100px; height: 100px; background: var(--white); border-radius: 50%; margin: 0 auto 32px; display: flex; align-items: center; justify-content: center; color: var(--magenta); position: relative; box-shadow: var(--shadow-sm); }
.proc__num { position: absolute; top: -5px; right: -5px; width: 32px; height: 32px; background: var(--magenta); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; border: 3px solid var(--white); }
.proc__cardTitle { font-size: 1.25rem; font-weight: 700; color: var(--anthracite); margin-bottom: 16px; }
.proc__cardDesc { font-size: 0.9375rem; color: var(--dark-gray); line-height: 1.6; }
.proc__connector { position: absolute; top: 50px; right: -32px; color: var(--gray); z-index: 1; }
@media (max-width: 1024px) { .proc__grid { gap: 24px; } .proc__connector { display: none; } }
@media (max-width: 768px) { .proc__header { margin-bottom: 48px; } .proc__grid { grid-template-columns: 1fr; gap: 20px; } .proc__card { padding: 32px 20px; } .proc__iconWrap { width: 80px; height: 80px; margin-bottom: 24px; } }
@media (max-width: 480px) { .proc__header { margin-bottom: 36px; } .proc__card { padding: 24px 16px; } }

/* ============================================================================
   PROGRAMS
   ============================================================================ */
.prog { background: var(--off-white); }
.prog__header { text-align: center; max-width: 700px; margin: 0 auto 80px; }
.prog__timeline { position: relative; padding: 40px 0; }
.prog__line { position: absolute; top: 52px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, rgba(196,0,106,0.1) 0%, var(--magenta) 50%, rgba(196,0,106,0.1) 100%); }
.prog__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; z-index: 2; }
.prog__item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.prog__marker { margin-bottom: 30px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.prog__dot { width: 24px; height: 24px; background: var(--white); border: 4px solid var(--magenta); border-radius: 50%; box-shadow: 0 0 15px rgba(196,0,106,0.3); }
.prog__season { font-size: 0.625rem; font-weight: 800; letter-spacing: 0.15em; color: var(--magenta); }
.prog__card { background: var(--white); padding: 24px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: all var(--transition-medium); border: 1px solid rgba(0,0,0,0.05); height: 100%; }
.prog__item:hover .prog__card { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--magenta); }
.prog__name { font-size: 1.125rem; font-weight: 700; color: var(--anthracite); margin-bottom: 12px; }
.prog__desc { font-size: 0.8125rem; color: var(--dark-gray); line-height: 1.5; }
@media (max-width: 1200px) { .prog__grid { gap: 12px; } }
@media (max-width: 1024px) { .prog__line { display: none; } .prog__grid { grid-template-columns: 1fr; gap: 24px; } .prog__marker { flex-direction: row; margin-bottom: 16px; width: 100%; justify-content: center; } .prog__card { width: 100%; max-width: 500px; margin: 0 auto; } }
@media (max-width: 768px) { .prog__header { margin-bottom: 48px; } .prog__grid { gap: 20px; } .prog__card { max-width: 100%; padding: 20px 16px; } .prog__name { font-size: 1rem; } .prog__dot { width: 20px; height: 20px; border-width: 3px; } }
@media (max-width: 480px) { .prog__header { margin-bottom: 36px; } .prog__timeline { padding: 20px 0; } .prog__card { padding: 16px; } }

/* ============================================================================
   I.C.E. TECHNOLOGY
   ============================================================================ */
.ice { background: linear-gradient(135deg, var(--anthracite-dark) 0%, var(--anthracite) 100%); color: var(--white); overflow: hidden; padding: 120px 0; max-width: 100%; }
.ice__cta { margin-top: 48px; display: inline-flex; align-items: center; gap: 10px; }
.ice__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ice__content { padding-right: 40px; }
.ice__title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 24px; }
.ice__desc { font-size: 1.0625rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 48px; }
.ice__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ice__feature { display: flex; gap: 16px; }
.ice__featureNum { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--magenta); border: 2px solid var(--magenta); border-radius: 50%; }
.ice__featureTitle { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.ice__featureDesc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.ice__diagram { display: flex; flex-direction: column; align-items: center; }
.ice__animWrap { width: 100%; aspect-ratio: 1; max-width: 450px; margin: 0 auto 40px; overflow: hidden; background: transparent; position: relative; }
.ice__animWrap canvas { width: 100% !important; height: 100% !important; display: block; max-width: 100%; }
.ice__diagram { min-width: 0; max-width: 100%; }
.ice__content, .ice__diagram { min-width: 0; }
.ice__grid { min-width: 0; }
.ice__features { min-width: 0; }
.ice__stats { display: flex; justify-content: center; gap: 48px; width: 100%; }
.ice__stat { text-align: center; }
.ice__statValue { display: block; font-size: 2rem; font-weight: 700; color: var(--magenta); margin-bottom: 8px; }
.ice__statLabel { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
@media (max-width: 1024px) { .ice { padding: 80px 0; } .ice__grid { gap: 48px; } .ice__content { padding-right: 0; } .ice__features { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .ice { padding: 64px 0; } .ice__grid { grid-template-columns: 1fr; gap: 32px; } .ice__animWrap { max-width: min(100%, 360px); aspect-ratio: 1; margin: 0 auto 24px; } .ice__stats { gap: 12px; padding: 0; flex-wrap: wrap; } .ice__stat { flex: 1 1 30%; min-width: 0; } .ice__statValue { font-size: 1.5rem; } .ice__statLabel { font-size: 0.75rem; } .ice__cta { align-self: center; margin: 24px 0 0; } .ice__featureNum { width: 36px; height: 36px; } .ice__title { word-break: break-word; } .ice__desc { word-break: break-word; hyphens: auto; } }
@media (max-width: 480px) { .ice { padding: 48px 0; } .ice__animWrap { max-width: min(100%, 280px); aspect-ratio: 1; } .ice__stats { gap: 8px; } .ice__statValue { font-size: 1.25rem; } .ice__statLabel { font-size: 0.6875rem; } .ice__feature { gap: 12px; } .ice__featureTitle { font-size: 0.9375rem; } .ice__featureDesc { font-size: 0.8125rem; } }

/* ============================================================================
   ZEOLITE
   ============================================================================ */
.zeo { position: relative; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, #fdf5f9 40%, #faf0f5 60%, #ffffff 100%); padding: 120px 0 80px; }
.zeo__content { position: relative; z-index: 1; }
.zeo__header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.zeo__desc { font-size: 1.125rem; color: var(--anthracite-light); line-height: 1.7; }
.zeo__canvasArea { position: relative; width: 100%; max-width: 1100px; height: 380px; margin: 0 auto 48px; border-radius: var(--radius-lg); overflow: hidden; }
.zeo__canvasArea canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.zeo__legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin: 0 auto; max-width: 1000px; }
.zeo__legendItem { display: flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 500; color: var(--anthracite); white-space: nowrap; }
.zeo__legendDot { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; }
.zeo__legendDot--zeolite { background: var(--brand-pale); border: 2px solid var(--brand-tint); border-radius: 4px; transform: rotate(30deg); }
.zeo__legendDot--n { background: #2bb5a0; }
.zeo__legendDot--p { background: var(--magenta-light); }
.zeo__legendDot--k { background: #d4a017; }
.zeo__legendDot--h { background: var(--magenta-dark); }
.zeo__legendDot--f { background: #e8a4c8; }
.zeo__legendDot--mineral { background: #999; }
@media (max-width: 1024px) { .zeo__canvasArea { height: 320px; } }
@media (max-width: 768px) { .zeo { padding: 80px 0 60px; } .zeo__header { margin-bottom: 32px; } .zeo__canvasArea { height: 260px; margin-bottom: 32px; } .zeo__legend { gap: 12px 20px; } }
@media (max-width: 480px) { .zeo__canvasArea { height: 220px; } .zeo__legend { gap: 12px 16px; } .zeo__legendItem { font-size: 0.75rem; } .zeo__legendDot { width: 12px; height: 12px; } }

/* ============================================================================
   SOIL ANALYSIS
   ============================================================================ */
.soil { background: var(--white); position: relative; }
.soil__header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.soil__text { max-width: 800px; margin: 0 auto; text-align: center; }
.soil__text p { font-size: clamp(1rem, 1.5vw, 1.125rem); line-height: 1.7; color: var(--anthracite-light); margin-bottom: 24px; }
.soil__text p:last-child { margin-bottom: 0; }

/* ============================================================================
   PRODUCTS
   ============================================================================ */
.prod { background: var(--white); padding: 100px 0; }
.prod__header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.prod__title { font-size: 2.5rem; font-weight: 700; line-height: 1.1; color: var(--anthracite); margin-bottom: 24px; }
.prod__sub { font-size: 1.125rem; line-height: 1.6; color: var(--dark-gray); margin: 0 auto; }
.prod__filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.prod__filter { padding: 6px 20px; background: transparent; border: 1px solid rgba(0,0,0,0.1); border-radius: 100px; font-size: 0.8125rem; font-weight: 600; color: var(--anthracite); cursor: pointer; transition: all var(--transition-fast); font-family: inherit; }
.prod__filter:hover, .prod__filter.is-active { background: var(--anthracite); color: var(--white); border-color: var(--anthracite); }
.prod__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; width: 100%; }
@media (min-width: 769px) { .prod__grid > *:last-child:nth-child(odd) { grid-column: 1/-1; max-width: calc(50% - 12px); justify-self: center; } }
.prod__cardWrap { background-color: transparent; width: 100%; height: auto; min-height: 420px; perspective: 1000px; position: relative; }
.prod__cardInner { position: relative; width: 100%; height: 100%; text-align: left; transition: transform 0.6s ease-in-out; transform-style: preserve-3d; box-shadow: 0 4px 12px rgba(0,0,0,0.06); border-radius: 12px; }
.prod__cardWrap.is-flipped .prod__cardInner { transform: rotateY(180deg); }
.prod__front, .prod__back { width: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 12px; background: var(--white); padding: 24px; display: flex; flex-direction: column; }
.prod__front { position: relative; min-height: 420px; border: 1px solid rgba(0,0,0,0.05); }
.prod__cardHeader { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.prod__cardHeaderL { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.prod__name { font-size: 1.25rem; font-weight: 700; color: var(--anthracite); margin: 0; line-height: 1.2; }
.prod__moreLink { font-size: 0.8125rem; color: var(--magenta); text-decoration: none; font-weight: 500; transition: opacity var(--transition-fast); display: inline-block; margin-top: 2px; }
.prod__moreLink:hover { opacity: 0.7; color: var(--magenta); }
.prod__cat { font-size: 0.625rem; font-weight: 700; padding: 4px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; align-self: flex-start; }
.prod__cat--universal { background: #E91E8C; color: #fff; }
.prod__cat--sport { background: #E8F4F8; color: #005f7f; }
.prod__cat--golf { background: #E8F5E9; color: #1b5e20; }
.prod__imgWrap { position: relative; width: 100%; height: 200px; margin-bottom: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.prod__imgWrap img { max-height: 100%; max-width: 100%; object-fit: contain; padding: 10px; }
.prod__desc { font-size: 0.8125rem; color: var(--anthracite); line-height: 1.5; margin-bottom: 16px; flex-grow: 1; }
.prod__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.prod__tag { font-size: 0.75rem; font-weight: 600; color: var(--anthracite); background: #f5f5f5; padding: 4px 8px; border-radius: 4px; }
.prod__cta { display: flex; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.prod__ctaBtn { border: 1px solid var(--magenta); background: transparent; padding: 6px 10px; border-radius: 4px; font-family: var(--font-primary); font-size: 0.75rem; font-weight: 700; color: var(--magenta); cursor: pointer; transition: all 0.2s ease; flex: 1; text-align: center; }
.prod__ctaBtn:hover { background: var(--magenta); color: var(--white); }
.prod__sheet { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; padding: 8px 12px; background: rgba(196,0,106,0.06); border: 1px solid rgba(196,0,106,0.15); border-radius: 6px; font-size: 0.75rem; font-weight: 600; color: var(--magenta); text-decoration: none; transition: all 0.2s ease; }
.prod__sheet:hover { background: rgba(196,0,106,0.12); border-color: var(--magenta); color: var(--magenta); }
.prod__back { position: absolute; top: 0; left: 0; height: 100%; transform: rotateY(180deg); padding: 0; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.prod__backImg { height: 50%; width: 100%; position: relative; background: #f9f9f9; display: flex; align-items: center; justify-content: center; }
.prod__backImg img { max-height: 100%; max-width: 100%; object-fit: contain; padding: 10px; }
.prod__backContent { height: 50%; padding: 20px 24px; background: var(--white); overflow-y: auto; position: relative; display: flex; flex-direction: column; }
.prod__backHeader { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-shrink: 0; }
.prod__backHeadline { font-size: 0.8125rem; font-weight: 700; color: var(--magenta); text-transform: uppercase; letter-spacing: 0.05em; margin: 0; }
.prod__backText { font-size: 0.8125rem; line-height: 1.6; color: var(--anthracite); margin: 0; flex-grow: 1; }
.prod__backCta { display: flex; gap: 8px; margin-top: auto; padding-top: 16px; flex-wrap: wrap; }
.prod__backNav { position: absolute; top: 16px; right: 16px; z-index: 10; background: rgba(255,255,255,0.9); padding: 4px 8px; border-radius: 4px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.prod__backLink { border: none; background: none; font-family: var(--font-primary); font-size: 0.75rem; color: var(--magenta); cursor: pointer; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.prod__legal { margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.1); text-align: center; }
.prod__legal p { font-size: 0.75rem; color: var(--dark-gray); line-height: 1.5; }
@media (max-width: 1024px) { .prod { padding: 80px 0; } .prod__header { margin-bottom: 40px; } .prod__title { font-size: 2rem; } .prod__grid { gap: 20px; } .prod__cardWrap { min-height: 400px; } .prod__front, .prod__back { padding: 20px; } .prod__imgWrap { height: 180px; } }
@media (max-width: 768px) { .prod { padding: 60px 0; } .prod__title { font-size: 1.75rem; margin-bottom: 16px; } .prod__sub { font-size: 1rem; } .prod__grid { grid-template-columns: 1fr; gap: 32px; padding: 0 8px; } .prod__filters { gap: 8px; margin-bottom: 32px; } .prod__filter { padding: 6px 16px; font-size: 0.75rem; flex: 1 1 auto; } .prod__cardWrap { min-height: auto; } .prod__front { min-height: auto; } }
@media (max-width: 480px) { .prod { padding: 40px 0; } .prod__title { font-size: 1.5rem; } .prod__grid { gap: 16px; } .prod__front, .prod__back { padding: 16px; } .prod__name { font-size: 1rem; } .prod__imgWrap { height: 140px; } }

/* ============================================================================
   TARGET GROUPS
   ============================================================================ */
.tg { background: var(--white); }
.tg__header { text-align: center; max-width: 1200px; margin: 0 auto 80px; }
.tg__title { white-space: nowrap; }
.tg__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.tg__card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.tg__imgWrap { position: relative; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.tg__card:hover .tg__imgWrap { transform: scale(1.05); }
.tg__imgWrap img { width: 100%; height: 100%; object-fit: cover; }
.tg__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); z-index: 1; }
.tg__cardContent { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; z-index: 2; color: var(--white); }
.tg__name { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; transform: translateY(20px); transition: transform 0.4s ease; }
.tg__btn { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; color: var(--magenta); opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }
.tg__card:hover .tg__name { transform: translateY(0); }
.tg__card:hover .tg__btn { opacity: 1; transform: translateY(0); }
@media (max-width: 1200px) { .tg__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 768px) { .tg__header { margin-bottom: 48px; } .tg__title { white-space: normal; } .tg__grid { gap: 20px; } .tg__cardContent { padding: 24px; } .tg__name { font-size: 1.125rem; transform: translateY(0); } .tg__btn { opacity: 1; transform: translateY(0); font-size: 0.8125rem; } }
@media (max-width: 640px) { .tg__grid { grid-template-columns: 1fr; } .tg__card { aspect-ratio: 16/9; } }
@media (max-width: 480px) { .tg__header { margin-bottom: 36px; } .tg__cardContent { padding: 20px; } .tg__name { font-size: 1rem; margin-bottom: 8px; } }

/* ============================================================================
   FAQ
   ============================================================================ */
.faq { background: var(--off-white); }
.faq__wrap { max-width: 800px; margin: 0 auto; }
.faq__header { text-align: center; margin-bottom: 64px; }
.faq__sub { font-size: 1.125rem; color: var(--dark-gray); }
.faq__list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 64px; }
.faq__item { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition-medium); }
.faq__item:hover, .faq__item.is-open { box-shadow: var(--shadow-md); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 28px; font-family: var(--font-primary); font-size: 1.0625rem; font-weight: 600; color: var(--anthracite); text-align: left; background: transparent; border: none; cursor: pointer; transition: color var(--transition-fast); }
.faq__q:hover { color: var(--magenta); }
.faq__qText { flex: 1; }
.faq__icon { flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--off-white); border-radius: 50%; color: var(--anthracite); transition: all var(--transition-medium); }
.faq__item.is-open .faq__icon { background: var(--magenta); color: var(--white); transform: rotate(180deg); }
.faq__aWrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--transition-medium); }
.faq__item.is-open .faq__aWrap { grid-template-rows: 1fr; }
.faq__a { overflow: hidden; }
.faq__a p { padding: 0 28px 24px; font-size: 1rem; color: var(--dark-gray); line-height: 1.7; }
.faq__cta { text-align: center; padding: 40px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.faq__ctaText { font-size: 1.125rem; color: var(--anthracite); margin-bottom: 20px; }
.faq__legal { margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.1); text-align: center; }
.faq__legal p { font-size: 0.75rem; color: var(--dark-gray); line-height: 1.5; }
@media (max-width: 768px) { .faq__header { margin-bottom: 40px; } .faq__q { padding: 20px; font-size: 1rem; min-height: 56px; } .faq__icon { width: 28px; height: 28px; } .faq__a p { padding: 0 20px 20px; font-size: 0.9375rem; } .faq__list { margin-bottom: 40px; } .faq__cta { padding: 32px 24px; } }
@media (max-width: 480px) { .faq__q { padding: 16px; font-size: 0.9375rem; gap: 12px; } .faq__a p { padding: 0 16px 16px; font-size: 0.875rem; } .faq__cta { padding: 24px 16px; } .faq__ctaText { font-size: 1rem; } .faq__legal { margin-top: 40px; } }

/* ============================================================================
   BLOG TEASER (homepage)
   ============================================================================ */
.blog { padding: 100px 0; background: linear-gradient(135deg, var(--anthracite-dark) 0%, var(--anthracite) 100%); color: var(--white); }
.blog__header { text-align: center; margin-bottom: 60px; }
.blog__title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--white); line-height: 1.25; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog__card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; transition: all 0.3s ease; cursor: pointer; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blog__card:hover { background: rgba(255,255,255,0.08); border-color: rgba(196,0,106,0.3); transform: translateY(-4px); color: inherit; }
.blog__cat { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--magenta); margin-bottom: 16px; padding: 4px 10px; background: rgba(196,0,106,0.1); border-radius: 4px; align-self: flex-start; }
.blog__postTitle { font-size: 1.125rem; font-weight: 600; color: var(--white); line-height: 1.4; margin-bottom: 12px; }
.blog__excerpt { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.blog__readMore { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--magenta); transition: gap 0.2s ease; }
.blog__card:hover .blog__readMore { gap: 10px; }
.blog__ctaWrap { text-align: center; margin-top: 48px; }
.blog__ctaLink { display: inline-flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; color: #fff !important; padding: 14px 32px; background: var(--magenta); border: none; border-radius: 8px; text-decoration: none; transition: all 0.25s ease; }
.blog__ctaLink:hover { background: var(--magenta-light); color: #fff !important; transform: translateY(-2px); box-shadow: var(--shadow-magenta); }
@media (max-width: 1024px) { .blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .blog { padding: 64px 0; } .blog__grid { grid-template-columns: 1fr; gap: 20px; } .blog__card { padding: 24px; } }

/* ============================================================================
   CONTACT
   ============================================================================ */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.contact__content { padding-right: 40px; display: flex; flex-direction: column; height: 100%; }
.contact__title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--anthracite); line-height: 1.25; margin-bottom: 20px; }
.contact__desc { font-size: 1.0625rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 32px; }
.contact__trustList { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact__trustItem { display: flex; align-items: center; gap: 12px; font-size: 1.0625rem; color: var(--anthracite); font-weight: 500; }
.contact__trustIcon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: rgba(196,0,106,0.1); color: var(--magenta); border-radius: 50%; }
.contact__text { font-size: 1.0625rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: 32px; }
.contact__imgWrap { position: relative; width: 340px; aspect-ratio: 3/4; border-radius: 12px; border: 3px solid var(--magenta); overflow: hidden; margin-top: 24px; box-shadow: 0 8px 24px rgba(196,0,106,0.15); }
.contact__imgWrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.contact__formWrap { background: var(--off-white); border-radius: var(--radius-lg); padding: 48px; }
.contact__form { display: flex; flex-direction: column; gap: 24px; }
.contact__group { display: flex; flex-direction: column; gap: 8px; }
.contact__label { font-size: 0.875rem; font-weight: 600; color: var(--anthracite); }
.contact__input, .contact__select, .contact__textarea { padding: 14px 18px; font-family: var(--font-primary); font-size: 1rem; color: var(--anthracite); background: var(--white); border: 2px solid var(--gray); border-radius: var(--radius-sm); transition: all var(--transition-fast); }
.contact__input:focus, .contact__select:focus, .contact__textarea:focus { outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(196,0,106,0.1); }
.contact__input::placeholder, .contact__textarea::placeholder { color: var(--dark-gray); }
.contact__select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }
.contact__textarea { resize: vertical; min-height: 120px; }
.contact__consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--dark-gray); line-height: 1.5; }
.contact__consent input { margin-top: 4px; flex-shrink: 0; accent-color: var(--magenta); }
.contact__captcha { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--white); border: 2px solid var(--gray); border-radius: var(--radius-sm); }
.contact__captcha label { font-size: 0.875rem; color: var(--anthracite); font-weight: 600; flex: 1; }
.contact__captcha input { width: 100px; padding: 8px 12px; border: 1px solid var(--gray); border-radius: 4px; font-size: 0.9375rem; font-family: var(--font-primary); }
.contact__honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }
.contact__submit { width: 100%; margin-top: 8px; justify-content: center; }
.contact__submit:disabled { opacity: 0.7; cursor: not-allowed; }
.contact__spinner { width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white); border-radius: 50%; animation: spin 0.8s linear infinite; }
.contact__success { text-align: center; padding: 48px 24px; }
.contact__successIcon { width: 80px; height: 80px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--magenta), var(--magenta-light)); border-radius: 50%; color: var(--white); animation: scaleIn 0.5s ease forwards; }
.contact__success h3 { font-size: 1.5rem; font-weight: 700; color: var(--anthracite); margin-bottom: 8px; }
.contact__success p { font-size: 1rem; color: var(--dark-gray); }
.contact__error { color: #c62828; font-size: 0.9375rem; padding: 12px 16px; background: rgba(198,40,40,0.08); border-radius: var(--radius-sm); }
.contact__legal { margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.1); text-align: center; }
.contact__legal p { font-size: 0.75rem; color: var(--dark-gray); line-height: 1.5; }
@media (max-width: 1024px) { .contact__grid { gap: 48px; } .contact__content { padding-right: 0; } .contact__formWrap { padding: 36px; } }
@media (max-width: 768px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } .contact__formWrap { padding: 28px; } .contact__imgWrap { width: 100%; max-width: 340px; } .contact__trustItem { font-size: 0.9375rem; } .contact__desc { margin-bottom: 24px; } .contact__text { margin-bottom: 24px; } .contact__legal { margin-top: 40px; } }
@media (max-width: 480px) { .contact__grid { gap: 32px; } .contact__formWrap { padding: 20px; } .contact__imgWrap { max-width: 280px; aspect-ratio: 4/5; } .contact__input, .contact__select, .contact__textarea { padding: 12px 14px; font-size: 0.9375rem; } .contact__trustItem { font-size: 0.875rem; } }

/* ============================================================================
   PARTNERS
   ============================================================================ */
.partners { padding: 64px 0; background: var(--white); border-top: 1px solid rgba(0,0,0,0.06); }
.partners__title { text-align: center; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(0,0,0,0.4); margin-bottom: 40px; }
.partners__grid { display: flex; justify-content: center; align-items: center; gap: 64px; flex-wrap: wrap; }
.partners__logo { opacity: 0.5; transition: opacity 0.3s ease; display: flex; align-items: center; justify-content: center; }
.partners__logo:hover { opacity: 0.85; }
.partners__logo img { object-fit: contain; }
@media (max-width: 768px) { .partners { padding: 48px 0; } .partners__grid { gap: 40px; } .partners__logo img { max-width: 120px; height: auto; } }

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer { background: var(--anthracite-dark); color: var(--white); padding: 80px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 64px; }
.footer__brand { padding-right: 40px; }
.footer__logo { display: inline-block; margin-bottom: 20px; }
.footer__logo img { height: 32px; width: auto; }
.footer__tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 12px; }
.footer__social { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; color: var(--white); transition: all var(--transition-fast); }
.footer__social:hover { background: var(--magenta); color: var(--white); transform: translateY(-2px); }
.footer__colTitle { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 24px; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__link { font-size: 0.9375rem; color: rgba(255,255,255,0.7); transition: color var(--transition-fast); }
.footer__link:hover { color: var(--magenta); }
.footer__contactInfo { display: flex; flex-direction: column; gap: 16px; }
.footer__contactLink { display: inline-flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: rgba(255,255,255,0.7); transition: color var(--transition-fast); }
.footer__contactLink:hover { color: var(--magenta); }
.footer__address { font-size: 0.9375rem; font-style: normal; color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer__newsletterText { font-size: 0.9375rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; }
.footer__newsletterForm { display: flex; gap: 8px; }
.footer__newsletterInput { flex: 1; padding: 12px 16px; font-family: var(--font-primary); font-size: 0.9375rem; color: var(--white); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-sm); transition: all var(--transition-fast); }
.footer__newsletterInput::placeholder { color: rgba(255,255,255,0.5); }
.footer__newsletterInput:focus { outline: none; border-color: var(--magenta); background: rgba(255,255,255,0.15); }
.footer__newsletterBtn { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--magenta); border: none; border-radius: var(--radius-sm); color: var(--white); cursor: pointer; transition: all var(--transition-fast); }
.footer__newsletterBtn:hover { background: var(--magenta-light); transform: translateX(2px); }
.footer__legalNotice { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; text-align: center; max-width: 800px; margin: 0 auto 32px; padding: 0 20px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; gap: 16px; }
.footer__copyright { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer__legalLinks { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer__legalLink { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--transition-fast); }
.footer__legalLink:hover { color: var(--magenta); }
.footer__sep { color: rgba(255,255,255,0.3); }
@media (max-width: 1024px) { .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } .footer__brand { padding-right: 0; grid-column: span 2; } }
@media (max-width: 768px) { .footer { padding: 60px 0 24px; } .footer__grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; } .footer__brand { grid-column: span 1; } .footer__bottom { flex-direction: column; gap: 16px; text-align: center; } .footer__address { font-size: 0.875rem; word-break: break-word; } .footer__contactLink { font-size: 0.875rem; word-break: break-all; } .footer__legalNotice { margin-bottom: 24px; } }
@media (max-width: 480px) { .footer { padding: 48px 0 20px; } .footer__grid { gap: 28px; margin-bottom: 32px; } .footer__colTitle { margin-bottom: 16px; } .footer__tagline { font-size: 0.875rem; } .footer__newsletterText { font-size: 0.875rem; } .footer__copyright { font-size: 0.8125rem; } .footer__legalLink { font-size: 0.8125rem; } }

/* ============================================================================
   COOKIE BANNER — center sticky glass
   ============================================================================ */
/* Cookie banner — bottom bar, glass, non-blocking (page stays scrollable) */
.cookieBanner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 99999; padding: 18px 22px; background: rgba(15,15,15,0.78); backdrop-filter: blur(22px) saturate(170%); -webkit-backdrop-filter: blur(22px) saturate(170%); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.35); color: #fff; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; max-width: 1180px; margin: 0 auto; opacity: 0; visibility: hidden; transform: translateY(20px); transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s; }
.cookieBanner.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.cookieBanner.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(20px); }
.cookieBanner__backdrop { display: none; }
.cookieBanner__textWrap { flex: 1 1 320px; min-width: 0; }
.cookieBanner__title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.cookieBanner__text { font-size: 0.8125rem; line-height: 1.5; color: rgba(255,255,255,0.78); margin: 0; }
.cookieBanner__actions { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.cookieBanner__btn { padding: 10px 18px; border-radius: 8px; font-family: var(--font-primary); font-size: 0.875rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s ease; white-space: nowrap; }
.cookieBanner__btn--accept { background: var(--magenta); color: #fff; }
.cookieBanner__btn--accept:hover { background: var(--magenta-light); transform: translateY(-1px); box-shadow: var(--shadow-magenta); }
.cookieBanner__btn--reject { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.cookieBanner__btn--reject:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.cookieBanner__link { font-size: 0.8125rem; color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 3px; flex-shrink: 0; }
.cookieBanner__link:hover { color: #fff; }
@media (max-width: 640px) { .cookieBanner { left: 12px; right: 12px; bottom: 12px; padding: 14px 16px; gap: 12px; border-radius: 14px; } .cookieBanner__title { font-size: 0.875rem; } .cookieBanner__text { font-size: 0.75rem; } .cookieBanner__actions { width: 100%; } .cookieBanner__btn { flex: 1 1 auto; padding: 9px 14px; font-size: 0.8125rem; } }

/* ============================================================================
   LEGAL PAGES (impressum / datenschutz / agb)
   ============================================================================ */
.legalContent { padding: 160px 0 80px; background: var(--white); }
.legalContent h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; color: var(--anthracite); margin-bottom: 3rem; }
.legalContent h2 { font-size: 1.5rem; font-weight: 600; color: var(--anthracite); margin-top: 2.5rem; margin-bottom: 1rem; }
.legalContent h3 { font-size: 1.125rem; font-weight: 600; color: var(--anthracite); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legalContent p, .legalContent ul li { font-size: 1rem; color: var(--dark-gray); line-height: 1.8; margin-bottom: 1rem; }
.legalContent ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.legalContent a { color: var(--magenta); text-decoration: underline; text-underline-offset: 4px; }
.legalContent a:hover { text-decoration: none; }
@media (max-width: 768px) { .legalContent { padding: 120px 0 60px; } .legalContent h1 { margin-bottom: 2rem; } .legalContent h2 { font-size: 1.25rem; margin-top: 2rem; } }
@media (max-width: 480px) { .legalContent { padding: 100px 0 40px; } .legalContent h2 { font-size: 1.125rem; margin-top: 1.5rem; } .legalContent p, .legalContent ul li { font-size: 0.9375rem; line-height: 1.7; } }

/* ============================================================================
   PRODUCT DETAIL PAGE
   ============================================================================ */
.pdetail { background: var(--white); min-height: 100vh; padding-top: 120px; }
.pdetail__container { max-width: 1200px; margin: 0 auto; padding: 0 var(--container-padding); }
.pdetail__back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9375rem; font-weight: 500; color: var(--magenta); text-decoration: none; margin-bottom: 48px; transition: opacity var(--transition-fast); }
.pdetail__back:hover { opacity: 0.7; color: var(--magenta); }
.pdetail__hero { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.pdetail__imgCol { display: flex; justify-content: center; }
.pdetail__imgWrap { position: relative; width: 100%; max-width: 400px; aspect-ratio: 1; background: var(--light-gray); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
.pdetail__imgWrap img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.pdetail__infoCol { display: flex; flex-direction: column; gap: 16px; }
.pdetail__cat { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--magenta); width: fit-content; }
.pdetail__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--anthracite); margin: 0; line-height: 1.1; letter-spacing: -0.02em; }
.pdetail__desc { font-size: 1.125rem; color: var(--dark-gray); line-height: 1.7; margin: 0; }
.pdetail__sheetBtn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; background: var(--magenta); color: var(--white); font-size: 1rem; font-weight: 600; border: none; border-radius: var(--radius-sm); text-decoration: none; cursor: pointer; transition: all var(--transition-medium); margin-top: 16px; width: fit-content; }
.pdetail__sheetBtn:hover { background: var(--magenta-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-magenta); }
.pdetail__details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px; }
.pdetail__detailCard { background: var(--off-white); border-radius: var(--radius-md); padding: 32px; }
.pdetail__detailCard h2 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--magenta); margin: 0 0 16px; }
.pdetail__detailCard p { font-size: 1rem; color: var(--anthracite); line-height: 1.7; margin: 0; }
.pdetail__ctaSection { text-align: center; padding-bottom: 80px; }
.pdetail__cta { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: var(--magenta); color: var(--white); font-size: 1rem; font-weight: 600; border: none; border-radius: var(--radius-sm); text-decoration: none; cursor: pointer; transition: all var(--transition-medium); }
.pdetail__cta:hover { background: var(--magenta-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-magenta); }
@media (max-width: 1024px) { .pdetail__hero { gap: 48px; } .pdetail__container { padding: 0 40px; } }
@media (max-width: 768px) { .pdetail { padding-top: 100px; } .pdetail__container { padding: 0 24px; } .pdetail__hero { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; } .pdetail__imgWrap { max-width: 280px; margin: 0 auto; } .pdetail__details { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; } .pdetail__detailCard { padding: 24px; } .pdetail__back { margin-bottom: 32px; } }
@media (max-width: 480px) { .pdetail { padding-top: 80px; } .pdetail__container { padding: 0 16px; } .pdetail__imgWrap { max-width: 220px; } .pdetail__sheetBtn { width: 100%; justify-content: center; } }

/* ============================================================================
   BLOG PAGE & POST
   ============================================================================ */
.blogPage { min-height: 100vh; background: var(--white); }
.blogPage__hero { padding: 160px 0 64px; background: linear-gradient(135deg, var(--anthracite-dark) 0%, var(--anthracite) 100%); color: var(--white); }
.blogPage__back { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 40px; transition: color 0.2s ease; width: fit-content; }
.blogPage__back:hover { color: var(--magenta); }
.blogPage__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; color: var(--white); }
.blogPage__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 600px; margin-bottom: 40px; }
.blogPage__search { position: relative; max-width: 500px; margin-bottom: 32px; }
.blogPage__searchIcon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.4); pointer-events: none; }
.blogPage__searchInput { width: 100%; padding: 14px 16px 14px 48px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; color: var(--white); font-size: 0.95rem; font-family: inherit; outline: none; transition: all 0.2s ease; }
.blogPage__searchInput::placeholder { color: rgba(255,255,255,0.35); }
.blogPage__searchInput:focus { border-color: var(--magenta); background: rgba(255,255,255,0.08); }
.blogPage__cats { display: flex; gap: 10px; flex-wrap: wrap; }
.blogPage__cat { padding: 8px 20px; border: 1px solid rgba(255,255,255,0.15); background: transparent; border-radius: 8px; color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 600; font-family: inherit; cursor: pointer; transition: all 0.2s ease; }
.blogPage__cat:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
.blogPage__cat.is-active { background: var(--magenta); border-color: var(--magenta); color: var(--white); }
.blogPage__posts { padding: 80px 0 120px; }
.blogPage__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blogPage__card { background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; padding: 32px; transition: all 0.3s ease; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.blogPage__card:hover { border-color: rgba(196,0,106,0.2); box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); color: inherit; }
.blogPage__cardTop { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.blogPage__cardCat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--magenta); padding: 4px 10px; background: rgba(196,0,106,0.08); border-radius: 4px; }
.blogPage__cardDate { font-size: 0.8rem; color: rgba(0,0,0,0.4); }
.blogPage__cardTitle { font-size: 1.2rem; font-weight: 700; color: var(--anthracite-dark); line-height: 1.4; margin-bottom: 12px; }
.blogPage__cardExcerpt { font-size: 0.9rem; color: rgba(0,0,0,0.55); line-height: 1.6; margin-bottom: 24px; flex: 1; }
.blogPage__cardBottom { display: flex; justify-content: space-between; align-items: center; }
.blogPage__cardReadTime { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(0,0,0,0.4); }
.blogPage__cardLink { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--magenta); text-decoration: none; transition: gap 0.2s ease; }
.blogPage__card:hover .blogPage__cardLink { gap: 10px; }
.blogPage__noResults { text-align: center; font-size: 1.1rem; color: rgba(0,0,0,0.4); padding: 80px 0; }
@media (max-width: 1024px) { .blogPage__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .blogPage__hero { padding: 120px 0 48px; } .blogPage__grid { grid-template-columns: 1fr; gap: 20px; } .blogPage__card { padding: 24px; } .blogPage__posts { padding: 48px 0 80px; } .blogPage__cats { gap: 8px; } .blogPage__cat { padding: 6px 14px; font-size: 0.8rem; } }

.blogPost__hero { padding: 160px 0 64px; background: linear-gradient(135deg, var(--anthracite-dark) 0%, var(--anthracite) 100%); color: var(--white); }
.blogPost__back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-right: 24px; margin-bottom: 32px; transition: color 0.2s ease; }
.blogPost__back:hover { color: var(--magenta); }
.blogPost__cat { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--magenta); padding: 5px 12px; background: rgba(196,0,106,0.15); border-radius: 4px; margin-bottom: 32px; }
.blogPost__title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.3; margin-bottom: 20px; max-width: 700px; color: var(--white); }
.blogPost__meta { display: flex; align-items: center; gap: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.blogPost__metaDot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.blogPost__body { padding: 80px 0; }
.blogPost__content { max-width: 700px; }
.blogPost__content p { font-size: 1.0625rem; line-height: 1.8; color: rgba(0,0,0,0.7); margin-bottom: 24px; }
.blogPost__content p:first-child { font-size: 1.15rem; color: rgba(0,0,0,0.8); }
.blogPost__related { padding: 80px 0; background: var(--gray-light); border-top: 1px solid rgba(0,0,0,0.06); }
.blogPost__relatedTitle { font-size: 1.25rem; font-weight: 700; color: var(--anthracite-dark); margin-bottom: 32px; }
.blogPost__relatedGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blogPost__relatedCard { padding: 28px; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; text-decoration: none; transition: all 0.3s ease; color: inherit; }
.blogPost__relatedCard:hover { border-color: rgba(196,0,106,0.2); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); color: inherit; }
.blogPost__relatedCat { display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--magenta); margin-bottom: 12px; }
.blogPost__relatedCardTitle { font-size: 1rem; font-weight: 600; color: var(--anthracite-dark); line-height: 1.4; margin-bottom: 8px; }
.blogPost__relatedExcerpt { font-size: 0.85rem; color: rgba(0,0,0,0.5); line-height: 1.5; }
@media (max-width: 1024px) { .blogPost__relatedGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .blogPost__hero { padding: 120px 0 48px; } .blogPost__body { padding: 48px 0; } .blogPost__related { padding: 48px 0; } .blogPost__relatedGrid { grid-template-columns: 1fr; } .blogPost__content p { font-size: 1rem; } }

/* ============================================================================
   404
   ============================================================================ */
.notFound { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 80vh; padding: 120px 24px; text-align: center; gap: 16px; }
.notFound h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; color: var(--magenta); margin-bottom: 0; line-height: 1; }
.notFound h2 { font-size: 1.5rem; color: var(--anthracite); }
.notFound p { font-size: 1rem; color: var(--dark-gray); margin-bottom: 24px; }
