@import url("contact-widget.css");

:root {
  color-scheme: light;
  --bg: #fff;
  --surface: #fff;
  --surface-2: #f5f7f6;
  --text: #111814;
  --muted: #606c65;
  --line: #dbe2de;
  --accent: #087b4b;
  --accent-soft: #eaf7f0;
  --header: rgba(255, 255, 255, 0.92);
  --shadow: 0 20px 60px rgba(16, 43, 28, 0.08);
}
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #070b09;
  --surface: #0d1511;
  --surface-2: #111914;
  --text: #edf6f1;
  --muted: #9ba9a1;
  --line: #2b3931;
  --accent: #45dd97;
  --accent-soft: #12261b;
  --header: rgba(7, 11, 9, 0.92);
  --shadow: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Noto Sans SC", "PingFang SC", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.24;
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  font: inherit;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--text);
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
.shell {
  width: min(1220px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(18px) saturate(140%);
}
.nav {
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}
.brand strong {
  display: block;
  font-size: 16px;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}
.nav-actions,
.preferences {
  display: flex;
  align-items: center;
  gap: 7px;
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 13px;
  font-weight: 700;
}
.primary-nav a {
  padding: 26px 0 23px;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--accent);
  border-color: var(--accent);
}
.top-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: #fff;
  background: #087b4b;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
}
html[data-theme="dark"] .top-cta {
  color: #07110b;
  background: var(--accent);
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-2);
  cursor: pointer;
}
.theme-switch {
  height: 42px;
  display: grid;
  grid-template-columns: repeat(3, 36px);
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
}
.theme-option {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}
.theme-option[aria-pressed="true"] {
  color: #fff;
  background: #087b4b;
  box-shadow: 0 4px 13px rgba(8, 123, 75, 0.2);
}
html[data-theme="dark"] .theme-option[aria-pressed="true"] {
  color: #07110b;
  background: #dfe9e3;
}
.lang-wrap {
  position: relative;
}
.lang-btn,
.icon-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-2);
  cursor: pointer;
}
.lang-btn:hover,
.lang-btn[aria-expanded="true"],
.icon-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 245px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.lang-menu[hidden] {
  display: none;
}
.lang-option {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 0;
  border-radius: 7px;
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.lang-option:hover,
.lang-option:focus-visible {
  background: var(--surface-2);
}
.lang-option[aria-checked="true"] {
  color: var(--accent);
  font-weight: 800;
}
.lang-option[aria-checked="true"]::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
}
.back {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  background: var(--surface);
}
.back:hover {
  color: var(--accent);
  border-color: var(--accent);
}
html[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}
html[dir="rtl"] .lang-option {
  text-align: right;
}
.hero {
  position: relative;
  padding: 112px 0 92px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -80px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, var(--accent-soft), transparent 68%);
  opacity: 0.9;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font:
    800 11px/1 ui-monospace,
    "SFMono-Regular",
    monospace;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px var(--accent-soft);
}
h1 {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: clamp(50px, 6.5vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}
.hero-copy p {
  max-width: 720px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.hero-side {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  box-shadow: var(--shadow);
}
.hero-side small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}
.hero-side strong {
  display: block;
  margin-top: 12px;
  font-size: 17px;
}
.hero-side p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.primary,
.secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
button.primary,
button.secondary {
  cursor: pointer;
}
.primary {
  color: #fff;
  border-color: #087b4b;
  background: #087b4b;
}
.primary:hover {
  background: #06683f;
}
.secondary {
  background: var(--surface);
}
.secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
}
html[data-theme="dark"] .primary {
  color: #07110b;
  border-color: var(--accent);
  background: var(--accent);
}
.content {
  padding: 94px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
  margin-bottom: 46px;
}
.section-label {
  color: var(--accent);
  font:
    800 11px/1 ui-monospace,
    "SFMono-Regular",
    monospace;
}
.section-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
}
.section-head p {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}
.offer-list {
  border-top: 1px solid var(--line);
}
.offer {
  min-height: 175px;
  display: grid;
  grid-template-columns: 58px minmax(180px, 0.7fr) minmax(280px, 1.3fr);
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.offer-index {
  color: var(--accent);
  font:
    800 10px/1 ui-monospace,
    "SFMono-Regular",
    monospace;
}
.offer h3 {
  margin: 0;
  font-size: 24px;
}
.offer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.tag {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 10px;
}
.notice {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  margin-top: 64px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}
.notice h2 {
  margin: 0 0 9px;
  font-size: 25px;
}
.notice p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-weight: 800;
}
.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.footer a:hover {
  color: var(--accent);
}
@media (max-width: 1050px) {
  .primary-nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 24px;
    left: 24px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .primary-nav.open {
    display: grid;
  }
  .primary-nav a {
    padding: 12px;
    border: 0;
  }
  .menu-btn {
    display: grid;
  }
  .hero-inner,
  .section-head {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    gap: 45px;
  }
  .offer {
    grid-template-columns: 42px 1fr;
  }
  .offer > div {
    grid-column: 2;
  }
  .notice {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 84px 0 72px;
  }
}
@media (max-width: 620px) {
  .shell {
    width: min(100% - 30px, 1220px);
  }
  .nav {
    height: 66px;
  }
  .brand small {
    display: none;
  }
  .top-cta {
    display: none;
  }
  .theme-switch {
    height: 38px;
    grid-template-columns: repeat(3, 32px);
  }
  .theme-option {
    width: 30px;
    height: 30px;
  }
  .lang-btn,
  .icon-link,
  .menu-btn {
    width: 38px;
    height: 38px;
  }
  .lang-menu {
    position: fixed;
    top: 66px;
    right: 15px;
    left: 15px;
    width: auto;
    max-height: calc(100dvh - 82px);
    overflow: auto;
  }
  .hero {
    padding: 70px 0;
  }
  .hero-side {
    padding: 20px;
  }
  .content {
    padding: 72px 0;
  }
  .offer {
    gap: 14px;
  }
  .notice {
    padding: 26px 22px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .primary-nav {
    right: 15px;
    left: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
