:root {
  --color-primary: #212529;
  --color-secondary: #d1d9e6;
  --color-accent: #a7ffeb;
  --font-main: "Inter", "Segoe UI", Arial, sans-serif;
  --radius: 18px;
  --shadow: 0 16px 44px rgba(33, 37, 41, 0.08);
  --spacing: clamp(1rem, 2vw, 1.5rem);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-primary);
  background: radial-gradient(circle at 20% 10%, #eef7ff 0%, #fdfdfd 50%);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 253, 253, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-secondary);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1.05rem;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  justify-self: end;
  gap: 1rem;
}

.desktop-nav a,
.mobile-nav a,
.site-footer nav a,
.contact-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer nav a:hover,
.contact-link:hover {
  color: #0c7f72;
}
footer nav{
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.burger-button {
  justify-self: end;
  background: rgba(167, 255, 235, 0.12);
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  width: 46px;
  height: 40px;
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
}

.burger-button span {
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(15, 24, 31, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  width: min(360px, 85vw);
  height: 100%;
  margin-left: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open .mobile-nav {
  transform: translateX(0);
}

.section {
  padding: clamp(2.5rem, 5vw, 5rem) 0;
}

.hero {
  background: radial-gradient(circle at 80% 15%, rgba(167, 255, 235, 0.35), transparent 45%);
}

.hero-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
}

.badge {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--color-secondary);
  border-radius: 999px;
  background: rgba(167, 255, 235, 0.18);
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.7rem;
}

p {
  margin: 0 0 0.9rem;
}

.price {
  font-size: 1.25rem;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.65;
  margin-right: 0.6rem;
}

.disclaimer,
.grid-cards article,
.order-form,
.faq-item,
.cookie-banner > article {
  border: 0.5px solid var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: rgba(253, 253, 253, 0.9);
}

.grid-cards {
  display: grid;
  gap: var(--spacing);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-cards article {
  padding: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.grid-cards article:hover {
  transform: scale(1.02);
  border-color: var(--color-accent);
}

.order-panel figure {
  margin: 0 0 1rem;
  text-align: center;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 40%, rgba(167, 255, 235, 0.35), transparent 60%);
}

.order-panel img {
  max-width: 100%;
  height: auto;
}

.order-form {
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  padding: 0.7rem;
  border: 1px solid #bcc7d8;
  border-radius: 10px;
  background: #fff;
}

button {
  border: 1px solid #7adfce;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(167, 255, 235, 0.25);
  color: var(--color-primary);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

button:hover {
  transform: scale(1.02);
  background: #7ff6df;
}

.faq-item {
  margin-bottom: 0.8rem;
  overflow: hidden;
}

iframe {
  width: 100%;
  min-height: 280px;
  border: 0.5px solid var(--color-secondary);
  border-radius: var(--radius);
  margin-top: 0.8rem;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--color-secondary);
  background: transparent;
  padding: 1rem;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content p {
  padding: 0 1rem 1rem;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: none;
}

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

.cookie-banner > article {
  width: min(720px, 100%);
  margin-left: auto;
  padding: 1rem;
}

.cookie-grid,
.cookie-actions,
.footer-grid {
  display: grid;
  gap: 0.7rem;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-secondary);
  padding: 1.2rem 0;
  background: #f7fafc;
}

.footer-grid {
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
  .cookie-grid,
  .cookie-actions,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  .burger-button,
  .mobile-menu {
    display: none;
  }
}
