:root {
  color-scheme: light;

  --bg: #ffffff;
  --surface: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.14);

  --blue: #1d4ed8;
  --blue-ink: #1e3a8a;
  --red: #dc2626;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 18px rgba(15, 23, 42, 0.06);

  --container: 1120px;
  --gutter: 20px;

  --focus: 0 0 0 4px rgba(29, 78, 216, 0.24);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 var(--gutter);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
  box-shadow: var(--focus);
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  box-shadow: var(--shadow-sm);
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.site-nav {
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 12px 0 18px;
}

.site-nav[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: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.nav-link {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
}

.nav-link:hover {
  background: var(--surface);
  border-color: var(--border);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  background: var(--bg);
}

.lang-switch a {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  color: var(--muted);
}

.lang-switch a[aria-current="page"] {
  background: var(--surface);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease,
    color 140ms ease;
  user-select: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.btn--primary {
  background: var(--red);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--secondary {
  background: var(--bg);
  color: var(--blue-ink);
  border-color: rgba(29, 78, 216, 0.32);
}

.btn--secondary:hover {
  transform: translateY(-1px);
  background: var(--surface);
  border-color: rgba(29, 78, 216, 0.48);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--surface);
  transform: translateY(-1px);
}

main section {
  scroll-margin-top: 86px;
}

.section {
  padding: clamp(52px, 7vw, 92px) 0;
}

.section--surface {
  background: var(--surface);
}

.eyebrow {
  color: var(--blue-ink);
  font-weight: 750;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
}

h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.hero {
  padding: clamp(56px, 7vw, 100px) 0;
  background: radial-gradient(1200px 400px at 50% 0%, rgba(29, 78, 216, 0.16), transparent 60%),
    radial-gradient(900px 360px at 0% 40%, rgba(220, 38, 38, 0.1), transparent 55%);
}

.hero-grid {
  display: grid;
  gap: 26px;
}

.hero-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-weight: 650;
}

.hero-media {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.card-media {
  position: relative;
  background: #eef2ff;
}

.card-media img {
  display: block;
  width: 100%;
}

.badges {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-weight: 700;
  font-size: 0.9rem;
}

.badge--soft {
  color: var(--blue-ink);
  border-color: rgba(29, 78, 216, 0.2);
}

.card-body {
  padding: 16px;
}

.card-body p {
  margin-bottom: 14px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.price {
  display: grid;
  line-height: 1.1;
}

.price-amount {
  font-weight: 850;
  color: var(--text);
  font-size: 1.1rem;
}

.price-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
  margin-top: 2px;
}

.icon--lg {
  width: 22px;
  height: 22px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.18);
  margin-bottom: 10px;
}

.about {
  display: grid;
  gap: 18px;
}

.about-media {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-media img {
  display: block;
  width: 100%;
}

.muted-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  padding: 14px 16px;
}

.pricing-notes {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.pricing-notes p {
  margin: 0;
}

.gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.gallery a {
  display: block;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gallery a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.reviews {
  display: grid;
  gap: 16px;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
}

.review-meta {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.contact-list--icons li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.contact-kv {
  display: grid;
  gap: 2px;
}

.contact-kv span {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 650;
}

.contact-kv a,
.contact-kv strong {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.contact-kv a:hover {
  text-decoration: underline;
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-color: rgba(29, 78, 216, 0.42);
}

.form-row {
  display: grid;
  gap: 12px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.fineprint {
  font-size: 0.92rem;
  color: var(--muted);
}

.status {
  border: 1px solid rgba(29, 78, 216, 0.28);
  background: rgba(29, 78, 216, 0.08);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 14px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 34px 0 26px;
  color: var(--muted);
  background: radial-gradient(900px 300px at 20% 0%, rgba(29, 78, 216, 0.08), transparent 60%);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-title {
  margin: 0 0 10px;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: var(--text);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
  color: var(--text);
}

.footer-brand:hover {
  color: var(--blue-ink);
}

.footer-mark {
  width: 34px;
  height: 34px;
}

.footer-text {
  margin: 10px 0 0;
  max-width: 54ch;
}

.footer-chips {
  margin-top: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.footer-small {
  font-size: 0.92rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

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

.lightbox {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0;
  width: min(920px, calc(100% - 24px));
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(15, 23, 42, 0.6);
}

.lightbox-inner {
  background: var(--bg);
}

.lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px 0;
}

.lightbox-title {
  margin: 0;
  font-weight: 800;
}

.lightbox-media {
  padding: 12px;
}

.lightbox-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
}

@media (min-width: 720px) {
  :root {
    --gutter: 26px;
  }

  .site-nav {
    position: static;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nav-link {
    padding: 10px 10px;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

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

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

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.85fr 0.8fr;
    align-items: start;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}
