:root {
  --color-primary: #000000;
  --color-secondary: #6366F1;
  --color-accent: #22D3EE;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", sans-serif;
  --radius: 999px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  --spacing: 1.2rem;
}

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

/* Ensure native `hidden` always wins over component display rules. */
[hidden] {
  display: none !important;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: #FAFAFA;
  color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0.96), rgba(250, 250, 250, 0.86));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.site-nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  column-gap: 0.6rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 55%);
}

.brand-name {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.nav-list a {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  inset: auto 10% 0 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 180ms ease-out, transform 220ms ease-out;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.45), rgba(250, 250, 250, 0.98));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
  position: relative;
  transition: transform 220ms ease-out, opacity 180ms ease-out;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 4px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(40deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-40deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.94));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease-out;
  z-index: 30;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-list.is-mobile {
  position: fixed;
  inset: 0 0 auto auto;
  top: 0.75rem;
  right: 0.75rem;
  width: min(320px, 80vw);
  padding: 1.2rem 1.2rem 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.25), rgba(15, 23, 42, 0.98));
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 0.4rem;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease-out, opacity 220ms ease-out;
  z-index: 40;
}

.nav-list.is-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-list.is-mobile a {
  color: #e5e7eb;
}

.page-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 3.5rem 1.25rem;
}

.section-hero {
  padding-top: 4rem;
  padding-bottom: 3.75rem;
}

.section-inner,
.policy-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

h1,
h2,
h3 {
  font-family: var(--font-main);
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(2.15rem, 2.6vw + 1.8rem, 3rem);
  margin: 0 0 0.75rem;
}

h2 {
  font-size: clamp(1.6rem, 2vw + 1.3rem, 2.1rem);
  margin: 0 0 0.5rem;
}

h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

p {
  margin: 0 0 0.8rem;
  line-height: 1.6;
}

.hero-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr);
  row-gap: 2.75rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  padding: 1.4rem 1.4rem 1.6rem;
  border-radius: 30px;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.14), rgba(250, 250, 250, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% -10%, rgba(99, 102, 241, 0.36), transparent 55%), radial-gradient(circle at 110% 110%, rgba(34, 211, 238, 0.28), transparent 45%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
}

.hero-subtitle {
  font-size: 1rem;
  color: #111827;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.hero-rating {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  color: #e5e7eb;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  column-gap: 0.6rem;
}

.rating-stars {
  color: #facc15;
  letter-spacing: 0.16em;
}

.hero-badge {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(248, 250, 252, 0.93);
  font-size: 0.8rem;
}

.hero-pricing {
  margin-top: 1.6rem;
}

.price-current {
  font-size: 1.7rem;
  font-weight: 600;
}

.price-old {
  font-size: 0.95rem;
  color: #6b7280;
  text-decoration: line-through;
}

.price-note {
  font-size: 0.9rem;
  color: #4b5563;
}

.hero-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
}

.hero-product-figure {
  padding: 1rem;
  border-radius: 26px;
  background: radial-gradient(circle at 10% 0, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow);
}

.hero-product-figure img {
  margin-inline: auto;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.8));
}

.order-panel {
  padding: 1.4rem 1.5rem 1.6rem;
  border-radius: 26px;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), rgba(248, 250, 252, 0.98));
  box-shadow: var(--shadow);
}

.order-note {
  font-size: 0.94rem;
  color: #4b5563;
  margin-bottom: 1.2rem;
}

.order-form {
  display: grid;
  row-gap: 0.9rem;
}

.form-grid {
  display: grid;
  row-gap: 0.35rem;
}

label {
  font-size: 0.85rem;
  color: #4b5563;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  outline: none;
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out, background 160ms ease-out;
}

textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 80px;
}

input:focus-visible,
textarea:focus-visible {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.5);
  background: #ffffff;
}

.form-consent {
  padding-top: 0.4rem;
}

.checkbox-label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: #4b5563;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.form-error {
  font-size: 0.78rem;
  color: #b91c1c;
  min-height: 0.9rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  border-radius: var(--radius);
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, background 160ms ease-out, color 160ms ease-out;
}

.btn-primary {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  color: #f9fafb;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.55);
}

.btn-secondary {
  background: #0f172a;
  color: #e5e7eb;
}

.btn-outline {
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-primary::after,
.btn-secondary::after,
.btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--hover-x, 50%) var(--hover-y, 50%), rgba(255, 255, 255, 0.3), transparent 55%);
  opacity: 0;
  transition: opacity 200ms ease-out;
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.btn-outline:hover::after {
  opacity: 1;
}

.cards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.3rem;
}

.card {
  padding: 1.3rem 1.2rem 1.3rem;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(226, 232, 240, 0.9), #ffffff);
  box-shadow: 0 10px 26px rgba(148, 163, 184, 0.25);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 260ms ease-out;
}

.card:hover::before {
  opacity: 1;
}

.depth-card {
  transform: translateY(0);
  transition: transform 260ms ease-out, box-shadow 260ms ease-out;
}

.depth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(148, 163, 184, 0.45);
}

.faq {
  margin-top: 2.2rem;
}

.faq-item + .faq-item {
  margin-top: 0.7rem;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: #ffffff;
  padding: 0.8rem 0.95rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease-out;
  padding-inline: 0.1rem;
}

.faq-panel p {
  padding: 0.4rem 0.1rem 0.2rem;
  font-size: 0.9rem;
}

.faq-trigger[aria-expanded="true"] + .faq-panel {
  max-height: 200px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.3rem;
}

.map-figure {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.map-figure figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  background: rgba(248, 250, 252, 0.95);
}

.contact-note {
  font-size: 0.85rem;
  color: #4b5563;
}

.legal-disclaimer {
  margin-top: 2rem;
  padding: 1.3rem 1.2rem;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(254, 240, 138, 0.5), rgba(255, 251, 235, 0.98));
  border: 1px solid rgba(234, 179, 8, 0.6);
}

.legal-disclaimer p {
  font-size: 0.9rem;
  color: #78350f;
}

.policy-inner ul {
  padding-left: 1.1rem;
}

.policy-block {
  margin-top: 1.5rem;
}

.policy-meta {
  margin-bottom: 1.8rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 1rem 1rem;
}

.cookie-banner-inner {
  max-width: 960px;
  width: 100%;
  border-radius: 26px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.98));
  color: #e5e7eb;
  padding: 1.4rem 1.5rem 1.4rem;
  box-shadow: 0 -18px 45px rgba(15, 23, 42, 0.9);
}

.cookie-banner-inner h2 {
  font-size: 1.1rem;
}

.cookie-categories {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.cookie-category {
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.86rem;
}

.cookie-badge {
  margin-top: 0.4rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fed7aa;
}

.toggle {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.cookie-more {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: #d1d5db;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(to top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.94));
  color: #9ca3af;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 0.8rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 0.9rem;
  font-size: 0.84rem;
}

.footer-links a {
  color: #e5e7eb;
}

[data-animate] {
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

[data-animate="in"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (min-width: 640px) {
  .section {
    padding-inline: 1.75rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    column-gap: 2rem;
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }

  .cookie-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    display: none;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .nav-list {
    display: flex;
  }

  .section {
    padding-block: 4.2rem;
  }

  .hero-layout {
    column-gap: 2.6rem;
  }

  .hero-copy {
    padding: 1.8rem 1.9rem 2rem;
  }

  .order-panel {
    padding: 1.6rem 1.6rem 1.7rem;
  }
}

