:root {
  --accent: #8ab446;
  --accent-dark: #6d9235;
  --accent-light: #a8cc6a;
  --sky: #7ec8e3;
  --sky-light: #b8e4f4;
  --aqua: #5eb8c9;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);
  --bg-deep: #0c1a24;
  --bg-dark: #122636;
  --bg-mid: #1a3344;
  --bg-light: #e8f6fc;
  --bg-lime: #eef6dc;
  --text: #0f1f2a;
  --text-light: #f4fafc;
  --text-muted: #3d5566;
  --text-muted-light: #b8d0dc;
  --border: rgba(138, 180, 70, 0.35);
  --shadow: 0 16px 48px rgba(12, 26, 36, 0.18);
  --gloss: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 55%);
  --radius: 16px;
  --radius-pill: 999px;
  --max: 1180px;
  --header-h: 72px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
  background: var(--bg-light);
  color: var(--text);
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--aqua);
}

h1, h2, h3, h4 {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.85rem); }
h2 { font-size: clamp(1.45rem, 3.5vw, 2.1rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

ul, ol { margin-bottom: 1rem; padding-left: 1.35rem; }
li { margin-bottom: 0.5rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.disclaimer-bar {
  background: linear-gradient(90deg, #1a3344 0%, #0c1a24 100%);
  color: #e8f4f8;
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 0.65rem 1rem;
  text-align: center;
  border-bottom: 2px solid var(--accent);
}

.disclaimer-bar a {
  color: var(--accent-light);
  text-decoration: underline;
  margin: 0 0.15rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(232, 246, 252, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(126, 200, 227, 0.45);
  box-shadow: 0 4px 24px rgba(12, 26, 36, 0.08);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-link img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-deep);
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  background: var(--glass);
  border: 2px solid var(--accent);
  color: var(--accent-dark);
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.25rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.1rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  color: var(--bg-deep);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
}

.hero {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(168, 204, 106, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(126, 200, 227, 0.5) 0%, transparent 45%),
    linear-gradient(160deg, #d4f0fa 0%, #eef6dc 50%, #c8e8f4 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--bg-deep);
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  margin-bottom: 1.5rem;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--glass-border);
  background: var(--glass);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 55%, var(--accent-dark) 100%);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(138, 180, 70, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 180, 70, 0.5);
}

.btn-outline {
  background: var(--glass);
  color: var(--accent-dark);
  border: 2px solid var(--accent);
  box-shadow: none;
  text-shadow: none;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.section-sky {
  background: linear-gradient(180deg, #c8e8f4 0%, #e0f4fc 100%);
  color: var(--text);
}

.section-lime {
  background: linear-gradient(135deg, #eef6dc 0%, #dceec4 100%);
  color: var(--text);
}

.section-aqua {
  background: linear-gradient(160deg, #5eb8c9 0%, #3a9aad 100%);
  color: var(--text-light);
}

.section-aqua h2,
.section-aqua h3,
.section-aqua p,
.section-aqua li {
  color: var(--text-light);
}

.section-aqua a {
  color: #fff;
  text-decoration: underline;
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p,
.section-dark li {
  color: var(--text-muted-light);
}

.section-dark a {
  color: var(--accent-light);
}

.section-glass {
  background:
    radial-gradient(circle at 20% 50%, rgba(138, 180, 70, 0.12) 0%, transparent 40%),
    linear-gradient(180deg, #f8fcff 0%, #e8f6fc 100%);
  color: var(--text);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 2rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(138, 180, 70, 0.2);
  color: var(--accent-dark);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
}

.section-aqua .tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.section-dark .tag {
  background: rgba(138, 180, 70, 0.25);
  color: var(--accent-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2-reverse {
  direction: rtl;
}

.grid-2-reverse > * {
  direction: ltr;
}

.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

a.card {
  color: inherit;
  text-decoration: none;
  display: block;
}

a.card:hover {
  color: inherit;
}

.card i {
  font-size: 2rem;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
  display: block;
}

.section-aqua .card {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.section-aqua .card i {
  color: #fff;
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(138, 180, 70, 0.3);
}

.section-dark .card i {
  color: var(--accent-light);
}

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.image-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  padding: 0 0.25rem;
}

.section-dark .caption {
  color: var(--text-muted-light);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: var(--accent-dark);
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-aqua .feature-list i {
  color: #fff;
}

.section-dark .feature-list i {
  color: var(--accent-light);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.5rem;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 3px 10px rgba(138, 180, 70, 0.4);
}

.timeline {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.timeline-item {
  margin-bottom: 1.75rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: rgba(138, 180, 70, 0.12);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  margin: 1.5rem 0;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.stat-box {
  flex: 1 1 140px;
  text-align: center;
  padding: 1.25rem;
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.stat-box strong {
  display: block;
  font-size: 1.75rem;
  color: var(--accent-dark);
}

.section-aqua .stat-box {
  background: rgba(255, 255, 255, 0.2);
}

.section-aqua .stat-box strong {
  color: #fff;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.icon-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.icon-item i {
  font-size: 1.75rem;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--glass);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.section-dark .faq-question {
  color: var(--text-light);
}

.faq-question i {
  color: var(--accent-dark);
  transition: transform var(--transition);
}

.section-dark .faq-question i {
  color: var(--accent-light);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
}

.section-dark .faq-answer {
  color: var(--text-muted-light);
}

.faq-item.open .faq-answer {
  display: block;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--glass);
  border-radius: var(--radius);
  overflow: hidden;
}

.calendar-table th,
.calendar-table td {
  border: 1px solid var(--border);
  padding: 0.65rem;
  text-align: left;
}

.calendar-table th {
  background: rgba(138, 180, 70, 0.25);
  color: var(--text);
}

.section-dark .calendar-table th {
  background: rgba(138, 180, 70, 0.2);
  color: var(--text-light);
}

.section-dark .calendar-table td {
  color: var(--text-muted-light);
}

.guidelines-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.guidelines-box h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guidelines-box i {
  color: var(--accent-dark);
}

.section-dark .guidelines-box {
  background: rgba(255, 255, 255, 0.06);
}

.section-dark .guidelines-box i {
  color: var(--accent-light);
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.check-list i {
  color: var(--accent-dark);
  margin-top: 0.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 2px solid rgba(126, 200, 227, 0.5);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

.checkbox-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.contact-info i {
  color: var(--accent-dark);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
  border: 2px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  padding: 2.5rem 0 1.5rem;
  border-top: 3px solid var(--accent);
  color: var(--text-muted-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--accent-light);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(138, 180, 70, 0.25);
  font-size: 0.85rem;
}

.footer-about,
.footer-legal {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.transparency-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.transparency-box h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-dark);
}

.transparency-box i {
  color: var(--accent-dark);
  font-size: 1.35rem;
}

.section-dark .transparency-box {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(138, 180, 70, 0.3);
}

.section-dark .transparency-box h3,
.section-dark .transparency-box i {
  color: var(--accent-light);
}

.trust-strip {
  padding: 1.25rem 0;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  border-bottom: 2px solid var(--accent);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted-light);
}

.trust-strip-inner span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-strip-inner i {
  color: var(--accent-light);
}

.page-compliance {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(138, 180, 70, 0.1);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.section-dark .page-compliance {
  color: var(--text-muted-light);
  background: rgba(138, 180, 70, 0.12);
}

.footer-compliance {
  border-top: 1px solid rgba(138, 180, 70, 0.25);
  padding: 1.25rem 0;
  margin-top: 1rem;
  text-align: center;
}

.footer-compliance p {
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.footer-compliance-links a,
.footer-cookie-link {
  color: var(--accent-light);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #1a3344 0%, #0c1a24 100%);
  border-top: 3px solid var(--accent);
  padding: 1.25rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.cookie-inner p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  margin-bottom: 1rem;
}

.cookie-inner a {
  color: var(--accent-light);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.cookie-actions .btn-reject {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid #fff;
  box-shadow: none;
  text-shadow: none;
}

.cookie-actions .btn-reject:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

.cookie-actions .btn-outline {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent-light);
  box-shadow: none;
  text-shadow: none;
}

.cookie-actions .btn-outline:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(138, 180, 70, 0.3);
}

.cookie-settings.open {
  display: block;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(138, 180, 70, 0.2);
  color: var(--text-light);
}

.cookie-toggle label {
  font-size: 0.9rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #3a5566;
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.policy-content {
  max-width: 800px;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content h3 {
  margin-top: 1.25rem;
}

.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(160deg, #d4f0fa 0%, #eef6dc 100%);
}

.success-page i {
  font-size: 4rem;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.page-hero {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(135deg, #c8e8f4 0%, #dceec4 100%);
  text-align: center;
  border-bottom: 2px solid rgba(138, 180, 70, 0.3);
}

.page-hero h1 {
  margin-bottom: 0.5rem;
  color: var(--bg-deep);
}

.page-hero p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.bubble-deco {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(126, 200, 227, 0.3));
  pointer-events: none;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-2-reverse {
    direction: ltr;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(232, 246, 252, 0.98);
    border-bottom: 2px solid var(--accent);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    max-height: 480px;
    overflow-y: auto;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(126, 200, 227, 0.35);
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 93.75%;
  }

  .container {
    width: min(100% - 1rem, var(--max));
  }

  .header-inner {
    gap: 0.5rem;
  }

  .logo-link img {
    height: 36px;
  }

  .logo-text {
    display: none;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}
