/* CareRelief — redesigned visual system (2026) */
:root {
  --bg-page: #eef2f7;
  --bg-elevated: #ffffff;
  --bg-muted: #e2e8f0;
  --bg-dark: #0b1220;
  --bg-dark-soft: #151d2e;

  --primary: #0d9488;
  --primary-deep: #0f766e;
  --primary-soft: #ccfbf1;

  --accent: #ea580c;
  --accent-soft: #ffedd5;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --border: rgba(15, 23, 42, 0.08);
  --ring: rgba(13, 148, 136, 0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.6) inset;

  --font-heading: 'Fraunces', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --header-offset: 44px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  /* Inline markup from pages (legacy names) */
  --primary-color: var(--primary-deep);
  --bg-accent: #f1f5f9;
  --bg-card: var(--bg-elevated);
  --border-color: #e2e8f0;
  --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);
}

*,
*::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-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--bg-page);
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(13, 148, 136, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 60% at -10% 50%, rgba(234, 88, 12, 0.06), transparent 45%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.page-doc {
  background-image:
    radial-gradient(ellipse 100% 70% at 0% 0%, rgba(15, 118, 110, 0.1), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(234, 88, 12, 0.05), transparent 50%);
}

body.page-contact {
  background-image:
    radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.14), transparent 40%),
    linear-gradient(180deg, #f1f5f9 0%, #eef2f7 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}
h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

a {
  color: var(--primary-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 */
.ad-label {
  position: sticky;
  top: 0;
  z-index: 1000;
  text-align: center;
  padding: 0.55rem var(--space-sm);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e2e8f0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, #1e3a4f 50%, var(--bg-dark) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-body);
}

/* Disclaimer */
.disclaimer-banner {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #9a3412;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(234, 88, 12, 0.25);
  box-shadow: var(--shadow-sm);
}

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--primary-deep);
  position: relative;
  padding-bottom: var(--space-sm);
}

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

/* 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: 1120px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm), var(--shadow-glow);
}

.logo,
.logo a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--primary-deep), #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}

.logo a {
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #c2410c 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.4);
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--primary-deep);
  border: 1px solid rgba(13, 148, 136, 0.35);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--primary-soft);
  text-decoration: none;
  transform: translateY(-1px);
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(204, 251, 241, 0.5) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d9488' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  margin-bottom: var(--space-md);
  background: linear-gradient(120deg, #0f172a 0%, var(--primary-deep) 55%, #0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

/* Page hero (inner pages) */
.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(--text-muted);
  font-size: 1.05rem;
}

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

.stat-chip {
  background: var(--bg-elevated);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.stat-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.4);
}

/* Cards */
.glass-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0.85;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

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

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

.card-highlight {
  background: linear-gradient(145deg, #ffffff 0%, var(--primary-soft) 100%);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

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

/* Legal block */
.legal-block {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.legal-block h3 {
  color: var(--primary-deep);
  margin-bottom: var(--space-md);
}

.legal-block p,
.legal-block .legal-info {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.legal-block strong {
  color: var(--text-primary);
  font-weight: 700;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background: #fff;
  font-family: var(--font-body);
  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(--primary);
  box-shadow: 0 0 0 3px var(--ring);
}

.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(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  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(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

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

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

.order-form--compact input::placeholder,
.order-form--compact textarea::placeholder {
  color: #94a3b8;
  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;
}

/* Success modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(15, 23, 42, 0.55);
  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(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.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: #f1f5f9;
  color: var(--text-secondary);
  font-size: 1.35rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: #e2e8f0;
  color: var(--text-primary);
}

.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(--primary), var(--primary-deep));
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

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

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

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

.accordion-header {
  background: #f8fafc;
  border: 1px solid var(--border);
  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;
}

.accordion-header:hover {
  background: var(--primary-soft);
  border-color: rgba(13, 148, 136, 0.25);
}

.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-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: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Images */
.image-placeholder {
  width: 100%;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  border: 1px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  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(180px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

/* Carousel */
.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(--border);
  color: var(--text-primary);
  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(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

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

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

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

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

.reference-card h4 {
  color: var(--primary-deep);
  margin-bottom: var(--space-xs);
  font-size: 1.05rem;
  font-family: var(--font-heading);
}

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

/* Footer */
.footer {
  margin-top: var(--space-xl);
  background: linear-gradient(180deg, var(--bg-dark-soft) 0%, var(--bg-dark) 100%);
  color: #cbd5e1;
  padding: var(--space-xl) 0 var(--space-md);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
  overflow: hidden;
}

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

.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: #f1f5f9;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

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

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

.footer-section ul li a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: #5eead4;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: #94a3b8;
}

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

.footer-bottom strong {
  color: #fcd34d;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md);
  z-index: 10000;
  display: none;
}

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

.cookie-banner-content {
  max-width: 1120px;
  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: #e2e8f0;
  font-size: 0.92rem;
}

.cookie-banner-text a {
  color: #5eead4;
}

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

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

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

/* Doc layout tweaks */
body.page-doc .glass-card::before {
  opacity: 0.6;
}

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

body.page-contact .glass-card::before {
  background: linear-gradient(180deg, #ea580c, #f97316);
}

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

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

  .hero {
    min-height: 52vh;
    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.65rem 1.1rem;
    font-size: 0.85rem;
  }
}
