/* WellArterio — light UI; thematic focus: cardiovascular wellbeing / integratore (not medicinal) */
:root {
  --cream: #fbf9f5;
  --paper: #ffffff;
  --ink: #1c1917;
  --ink-muted: #57534e;
  --ink-faint: #78716c;
  --line: #e7e5e4;
  --line-strong: #d6d3d1;

  --brand: #2563eb;
  --brand-soft: #dbeafe;
  --brand-deep: #1d4ed8;

  --accent: #0d9488;
  --accent-soft: #ccfbf1;

  --warn-bg: #fffbeb;
  --warn-border: #fde68a;
  --warn-text: #92400e;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 10px 40px -12px rgba(28, 25, 23, 0.12);
  --shadow-float: 0 20px 50px -20px rgba(37, 99, 235, 0.15);

  --font-display: 'Instrument Serif', 'Georgia', serif;
  --font-sans: 'Instrument Sans', system-ui, sans-serif;

  --header-offset: 40px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.25rem;
  --space-xl: 3.5rem;

  --primary-color: var(--brand-deep);
  --bg-accent: var(--cream);
  --bg-card: var(--paper);
  --border-color: var(--line);
  --border-radius: var(--radius-md);
  --border-radius-sm: var(--radius-sm);
  --spacing-xs: var(--space-xs);
  --spacing-sm: var(--space-sm);
  --spacing-md: var(--space-md);
  --spacing-lg: var(--space-lg);
  --text-secondary: var(--ink-muted);
  --text-muted: var(--ink-faint);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(37, 99, 235, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(13, 148, 136, 0.06), transparent 50%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d6d3d1' fill-opacity='0.35'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  min-height: 100vh;
  overflow-x: hidden;
}

body.page-doc {
  background-image:
    linear-gradient(180deg, #eff6ff 0%, var(--cream) 35%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d6d3d1' fill-opacity='0.35'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

body.page-contact {
  background-image:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(13, 148, 136, 0.08), transparent 50%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d6d3d1' fill-opacity='0.35'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

body.page-home {
  --hero-pad: clamp(1.25rem, 4vw, 2.5rem);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p {
  margin-bottom: var(--space-sm);
  color: var(--ink-muted);
}

a {
  color: var(--brand-deep);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Promo strip — light, readable */
.ad-label {
  position: sticky;
  top: 0;
  z-index: 1000;
  text-align: center;
  padding: 0.5rem var(--space-sm);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: linear-gradient(180deg, #fff 0%, #f5f5f4 100%);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
}

.disclaimer-banner {
  background: var(--warn-bg);
  color: var(--warn-text);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--warn-border);
  box-shadow: var(--shadow-sm);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: 1180px;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--ink);
  position: relative;
  padding-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin: var(--space-sm) auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.section-kicker {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: var(--space-xs);
}

/* Header */
.header {
  position: sticky;
  top: var(--header-offset);
  z-index: 999;
  padding: var(--space-sm) 0;
  margin-bottom: var(--space-md);
}

.header-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.logo,
.logo a {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo a {
  text-decoration: none;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.logo a:hover {
  color: var(--brand-deep);
  text-decoration: none;
}

.nav-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
  color: #fff;
  text-decoration: none;
  background: var(--brand-deep);
}

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--brand-soft);
  border-color: rgba(37, 99, 235, 0.25);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-link {
  background: transparent;
  color: var(--brand-deep);
  padding: 0.35rem 0.5rem;
  text-decoration: underline;
  box-shadow: none;
}
.btn-link:hover {
  color: var(--accent);
}

/* Hero — asymmetric editorial */
.hero {
  position: relative;
  margin-bottom: var(--space-lg);
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(219, 234, 254, 0.5) 0%, transparent 45%),
    linear-gradient(225deg, rgba(204, 251, 241, 0.4) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content {
  max-width: 100%;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  margin-bottom: var(--space-md);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.08;
  font-family: var(--font-display);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-muted);
  max-width: 36rem;
  line-height: 1.75;
}

.hero-visual {
  position: relative;
  min-height: 200px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #eff6ff 0%, #f0fdfa 100%);
  border: 1px dashed var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: 280px;
}

.hero-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.page-hero {
  padding: var(--space-lg) 0 var(--space-md);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-faint);
  font-size: 1.05rem;
}

.stats-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.stat-chip {
  background: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.stat-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.3);
}

/* Cards — clean surfaces, no side stripe */
.glass-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  display: none;
}

.glass-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.card-highlight {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.card-highlight h3 {
  color: var(--brand-deep);
}

.bento {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.legal-block {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.legal-block h3 {
  color: var(--ink);
  margin-bottom: var(--space-md);
  font-family: var(--font-display);
}

.legal-block p,
.legal-block .legal-info {
  color: var(--ink);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.legal-block strong {
  color: var(--ink);
  font-weight: 600;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group .error {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: var(--space-xs);
  display: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.35rem;
  cursor: pointer;
}

.checkbox-group label {
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
}

.order-form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.order-form--compact {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.order-form--compact .form-intro {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.order-form--compact label {
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.order-form--compact .form-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.order-form--compact input::placeholder,
.order-form--compact textarea::placeholder {
  color: #a8a29e;
  opacity: 1;
}

.order-form--compact textarea {
  resize: vertical;
  min-height: 5.5rem;
  line-height: 1.5;
}

.order-form-submit {
  width: 100%;
  margin-top: var(--space-sm);
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.price-panel {
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(28, 25, 23, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--line);
}

.modal-overlay.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: var(--cream);
  color: var(--ink-muted);
  font-size: 1.35rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: var(--line);
  color: var(--ink);
}

.modal-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: var(--space-sm);
  color: var(--ink);
}

.modal-text {
  font-size: 0.98rem;
  color: var(--ink-muted);
  margin-bottom: var(--space-md);
  line-height: 1.65;
}

.modal-btn-ok {
  min-width: 140px;
}

.accordion {
  margin-bottom: var(--space-sm);
}

.accordion-header {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.accordion-header:hover {
  background: var(--brand-soft);
  border-color: rgba(37, 99, 235, 0.2);
}

.accordion-header::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--brand-deep);
  transition: transform 0.25s ease;
}

.accordion-header.active::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 var(--space-md);
}

.accordion-content.active {
  max-height: 2000px;
  padding: var(--space-md);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.image-placeholder {
  width: 100%;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px dashed var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  overflow: hidden;
  position: relative;
}

.image-placeholder::before {
  content: '';
  display: block;
  padding-top: var(--aspect-ratio, 56.25%);
}

.image-placeholder.ratio-16-9 {
  --aspect-ratio: 56.25%;
}

.image-placeholder.ratio-1-1 {
  --aspect-ratio: 100%;
}

.image-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.image-placeholder.ratio-1-1 img {
  object-fit: contain;
  padding: 0.5rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  color: var(--ink);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.carousel-nav:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.carousel-nav.prev {
  left: var(--space-md);
}

.carousel-nav.next {
  right: var(--space-md);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.reference-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reference-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.reference-card h4 {
  color: var(--ink);
  margin-bottom: var(--space-xs);
  font-size: 1.02rem;
  font-family: var(--font-display);
}

.reference-card p {
  font-size: 0.92rem;
}

/* Footer — light */
.footer {
  margin-top: var(--space-xl);
  background: var(--paper);
  color: var(--ink-muted);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid var(--line);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.footer-section {
  padding: var(--space-sm);
}

.footer-section h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.4rem;
}

.footer-section ul li a {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.footer-section ul li a:hover {
  color: var(--brand-deep);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-faint);
}

.footer-bottom p {
  color: inherit;
  margin-bottom: var(--space-xs);
}

.footer-bottom strong {
  color: var(--brand-deep);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: var(--space-md);
  z-index: 10000;
  display: none;
  box-shadow: 0 -8px 30px rgba(28, 25, 23, 0.08);
}

.cookie-banner.active {
  display: block;
}

.cookie-banner-content {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.cookie-banner-text a {
  color: var(--brand-deep);
}

.cookie-banner-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease-out;
}

body.page-doc .section-title::after {
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.product-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .product-split {
    grid-template-columns: minmax(200px, 280px) 1fr;
    align-items: start;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .nav-buttons {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: var(--space-lg) var(--space-sm);
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-buttons {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .glass-card {
    padding: var(--space-md);
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
  }
}
