:root {
  --color-primary: #355872;
  --color-accent: #7AAACE;
  --color-sky: #9CD5FF;
  --color-bg: #F7F8F0;
  --color-text: #0f1a22;
  --color-muted: rgba(15, 26, 34, 0.72);
  --color-card: rgba(255, 255, 255, 0.82);
  --color-border: rgba(53, 88, 114, 0.18);
  --shadow-1: 0 18px 44px rgba(53, 88, 114, 0.18);
  --shadow-2: 0 10px 24px rgba(53, 88, 114, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 28px;
  --space-6: 36px;
  --space-7: 52px;
  --font-main: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(1100px 520px at 30% -10%, rgba(122, 170, 206, 0.38), rgba(247, 248, 240, 0) 60%),
    radial-gradient(900px 500px at 95% 10%, rgba(156, 213, 255, 0.28), rgba(247, 248, 240, 0) 58%),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(156, 213, 255, 0.7);
  outline-offset: 2px;
  border-radius: 10px;
}

.container {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(247, 248, 240, 0.7);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) 0;
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(53, 88, 114, 0.16);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  font-size: 13px;
  font-weight: 700;
}

.nav a:hover {
  transform: translateY(-1px);
  background: rgba(122, 170, 206, 0.22);
  border-color: rgba(53, 88, 114, 0.28);
}

.nav a[aria-current="page"] {
  background: rgba(53, 88, 114, 0.95);
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(53, 88, 114, 0.34);
}

.hero {
  padding: var(--space-7) 0 var(--space-6);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: stretch;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-3);
}

.pixel-title {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 44px);
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-shadow:
    1px 1px 0 rgba(53, 88, 114, 0.18),
    2px 2px 0 rgba(122, 170, 206, 0.12);
}

.hero-subtitle {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  max-width: 60ch;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.stars {
  font-weight: 900;
  letter-spacing: 0.03em;
}

.trust-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-meta span {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 700;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-primary);
}

.old-price {
  color: rgba(15, 26, 34, 0.48);
  text-decoration: line-through;
  font-weight: 700;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: var(--space-3);
}

.product-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.28));
  border: 1px solid rgba(53, 88, 114, 0.16);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.product-visual {
  padding: var(--space-3);
  position: relative;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 240px at 20% 0%, rgba(156, 213, 255, 0.35), rgba(156, 213, 255, 0) 55%);
  pointer-events: none;
}

.product-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
}

.order-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(53, 88, 114, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  padding: var(--space-4);
}

.order-title {
  margin: 0 0 var(--space-2);
  font-size: 18px;
  font-weight: 900;
}

.order-subtext {
  margin: 0 0 var(--space-4);
  color: var(--color-muted);
  font-size: 13px;
}

form .field {
  display: grid;
  gap: 8px;
  margin-bottom: var(--space-3);
}

label {
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(53, 88, 114, 0.22);
  background: rgba(247, 248, 240, 0.85);
  border-radius: 14px;
  padding: 12px 12px;
  font-family: var(--font-main);
  font-size: 14px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(122, 170, 206, 0.75);
  background: rgba(255, 255, 255, 0.92);
}

.error {
  margin: -6px 0 0;
  color: #8B1E2D;
  font-weight: 800;
  font-size: 12px;
}

.error[hidden] {
  display: none;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  background: rgba(122, 170, 206, 0.12);
  border: 1px solid rgba(122, 170, 206, 0.2);
  margin-bottom: var(--space-3);
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.consent span {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 700;
}

.btn {
  appearance: none;
  border: 1px solid rgba(53, 88, 114, 0.22);
  background: rgba(53, 88, 114, 0.95);
  color: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  padding: 13px 16px;
  font-family: var(--font-main);
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(53, 88, 114, 0.88);
  border-color: rgba(53, 88, 114, 0.34);
  box-shadow: 0 14px 34px rgba(53, 88, 114, 0.24);
}

.btn:active {
  transform: translateY(0px);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-primary);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.section {
  padding: var(--space-6) 0;
}

.section-title {
  margin: 0 0 var(--space-3);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.card {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(53, 88, 114, 0.16);
  box-shadow: 0 8px 18px rgba(53, 88, 114, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(53, 88, 114, 0.16);
  border-color: rgba(53, 88, 114, 0.26);
  background: rgba(255, 255, 255, 0.82);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
}

.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: start;
}

.copy {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(53, 88, 114, 0.14);
  transform: rotate(-0.7deg);
  transform-origin: 100% 0%;
}

.copy p {
  margin: 0 0 var(--space-2);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.copy p:last-child {
  margin-bottom: 0;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.list li {
  margin: 10px 0;
}

.testimonial {
  display: grid;
  gap: 12px;
}

.quote {
  font-size: 14px;
  font-weight: 800;
  color: rgba(15, 26, 34, 0.78);
  margin: 0;
}

.who {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(122, 170, 206, 0.35), rgba(156, 213, 255, 0.2));
  border: 1px solid rgba(53, 88, 114, 0.14);
}

.who span {
  font-size: 12px;
  font-weight: 900;
  color: var(--color-muted);
}

.faq {
  display: grid;
  gap: 12px;
}

details.faq-item {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(53, 88, 114, 0.16);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: 0 8px 18px rgba(53, 88, 114, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

details.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 88, 114, 0.26);
  background: rgba(255, 255, 255, 0.82);
}

details summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
}

details p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-weight: 700;
  font-size: 13px;
}

.cta {
  padding: var(--space-6) 0 var(--space-7);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-4);
  align-items: start;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.map-wrap {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(53, 88, 114, 0.14);
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.disclaimer {
  margin-top: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(53, 88, 114, 0.16);
  background: rgba(255, 255, 255, 0.5);
}

.disclaimer h2 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
}

.disclaimer p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 14px 0;
}

.footer-line {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  align-items: center;
  flex-wrap: wrap;
}

/* Scroll reveal / subtle animations */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.floaty {
  animation: floaty 3.2s ease-in-out infinite;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Tabs */
.tabs {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(53, 88, 114, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: 0 10px 26px rgba(53, 88, 114, 0.06);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-3);
}

.tab-btn {
  appearance: none;
  border: 1px solid rgba(53, 88, 114, 0.18);
  background: rgba(255, 255, 255, 0.65);
  color: rgba(15, 26, 34, 0.9);
  border-radius: 999px;
  padding: 10px 14px;
  font-family: var(--font-main);
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  font-size: 12px;
}

.tab-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(53, 88, 114, 0.32);
  background: rgba(255, 255, 255, 0.88);
}

.tab-btn[aria-selected="true"] {
  background: rgba(53, 88, 114, 0.95);
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(53, 88, 114, 0.32);
}

.tab-panel {
  display: none;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(53, 88, 114, 0.12);
  background: rgba(247, 248, 240, 0.55);
}

.tab-panel[aria-hidden="false"] {
  display: block;
}

.tab-panel h3 {
  margin: 0 0 var(--space-2);
  font-size: 16px;
  font-weight: 900;
}

.tab-panel p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
  font-size: 14px;
}

.footer-line small {
  font-weight: 800;
  color: var(--color-muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  font-size: 12px;
  font-weight: 900;
  color: rgba(53, 88, 114, 0.96);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(53, 88, 114, 0.14);
  background: rgba(255, 255, 255, 0.35);
  transition: transform 180ms ease, background 180ms ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.75);
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(53, 88, 114, 0.18);
  box-shadow: 0 22px 60px rgba(53, 88, 114, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  backdrop-filter: blur(10px);
}

.cookie-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: flex-start;
  flex-wrap: wrap;
}

.cookie-copy {
  max-width: 70ch;
}

.cookie-copy strong {
  display: block;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 6px;
}

.cookie-copy p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
  font-size: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-sm {
  appearance: none;
  border: 1px solid rgba(53, 88, 114, 0.22);
  background: rgba(53, 88, 114, 0.95);
  color: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  padding: 10px 12px;
  font-family: var(--font-main);
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  font-size: 12px;
}

.btn-sm:hover {
  transform: translateY(-1px);
  background: rgba(53, 88, 114, 0.88);
  border-color: rgba(53, 88, 114, 0.34);
}

.btn-sm.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-primary);
}

.cookie-settings {
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-top: 1px dashed rgba(53, 88, 114, 0.18);
  padding-top: var(--space-3);
}

.cookie-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.cookie-row label {
  margin: 0;
  font-size: 13px;
  color: rgba(15, 26, 34, 0.86);
}

.cookie-settings[hidden] {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.page-wrap {
  padding-top: 0;
}

.thank-you {
  padding: var(--space-7) 0 var(--space-6);
}

.thank-card {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(53, 88, 114, 0.16);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-2);
}

.thank-card h1 {
  margin: 0 0 var(--space-2);
  font-size: 28px;
  font-weight: 900;
}

.thank-card p {
  margin: 0 0 var(--space-3);
  color: var(--color-muted);
  font-weight: 700;
  font-size: 14px;
}

.policy {
  padding: var(--space-7) 0 var(--space-6);
}

.policy article {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(53, 88, 114, 0.16);
  box-shadow: 0 8px 18px rgba(53, 88, 114, 0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.policy h1 {
  margin: 0 0 var(--space-2);
  font-size: 28px;
  font-weight: 900;
}

.policy h2 {
  margin: var(--space-4) 0 var(--space-2);
  font-size: 16px;
  font-weight: 900;
}

.policy p,
.policy li {
  color: var(--color-muted);
  font-weight: 700;
  font-size: 14px;
}

.policy ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: -1;
    align-items: center;
  }

  .hero-left {
    align-items: center;
  }

  .copy {
    transform: none;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap iframe {
    height: 280px;
  }

  .nav {
    justify-content: center;
  }
}