:root {
  --bg: #f4f6f7;
  --panel: #ffffff;
  --ink: #121a18;
  --muted: #60706b;
  --line: #dfe7e3;
  --black: #020403;
  --green: #00d875;
  --green-2: #78ff58;
  --deep: #003f24;
  --soft: #e7fff4;
  --shadow: 0 18px 48px rgba(0, 120, 65, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
}

a {
  color: #0670c9;
  text-decoration-thickness: 2px;
}

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

.topbar {
  background: var(--black);
  border-bottom: 4px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 170px;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a,
.dropbtn,
.lang-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}

.menu a:hover,
.dropbtn:hover,
.lang-toggle button:hover,
.menu a.active {
  color: var(--green);
  background: rgba(0, 216, 117, 0.09);
}

.lang-toggle {
  border: 1px solid rgba(120, 255, 88, 0.55);
  border-radius: 999px;
  padding: 3px;
  display: inline-flex;
  margin-left: 4px;
}

.lang-toggle button {
  border-radius: 999px;
  padding: 7px 11px;
}

.lang-toggle button.is-active {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #001d10;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.menu .nav-action {
  color: #001d10;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border: 1px solid rgba(120, 255, 88, 0.8);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 8px 20px rgba(0, 216, 117, 0.2);
}

.menu .nav-action.login {
  color: #eafff5;
  background: transparent;
  border-color: rgba(0, 216, 117, 0.75);
  box-shadow: none;
}

.menu .nav-action:hover {
  color: #001d10;
  background: linear-gradient(135deg, var(--green-2), var(--green));
}

.menu .nav-action.login:hover {
  color: var(--green);
  background: rgba(0, 216, 117, 0.09);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 42px;
  right: 0;
  width: 260px;
  padding: 8px;
  background: #07100d;
  border: 1px solid rgba(0, 216, 117, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  white-space: normal;
  text-align: left;
}

.shell {
  width: min(980px, calc(100% - 28px));
  margin: 22px auto 64px;
  background: var(--panel);
  padding: clamp(22px, 4vw, 44px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: 12px 0 22px;
}

.eyebrow {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
  margin: 10px 0 18px;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
}

h3 {
  font-size: 21px;
}

.lead {
  font-size: 18px;
  color: #263431;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid var(--green);
  color: #001d10;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 216, 117, 0.25);
}

.btn.secondary {
  background: #fff;
  color: var(--deep);
  box-shadow: none;
}

.phone-frame {
  justify-self: center;
  width: min(330px, 100%);
  border: 3px solid var(--green);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #eef4f1;
}

.phone-frame img {
  display: block;
  width: 100%;
}

.section-title {
  background: linear-gradient(120deg, var(--deep), var(--green), var(--green-2));
  color: #fff;
  padding: 15px 22px;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 216, 117, 0.18);
  text-align: center;
}

.toc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfc;
  padding: 20px;
  margin: 30px 0;
}

.toc a {
  display: block;
  padding: 5px 0;
  color: #24302d;
  text-decoration: none;
}

.toc a:hover {
  color: var(--green);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

.info-table th,
.info-table td {
  border: 1px solid #909b97;
  padding: 10px 12px;
  text-align: left;
}

.info-table th {
  background: #f3fff9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
}

.card strong {
  display: block;
  margin-bottom: 8px;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.steps li {
  counter-increment: step;
  padding: 14px 16px 14px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  background: #fff;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #001d10;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.feature-img,
.wide-img {
  display: block;
  margin: 24px auto;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  box-shadow: var(--shadow);
}

.wide-img {
  width: min(780px, 100%);
}

.feature-img {
  width: min(360px, 100%);
}

.notice {
  border-left: 5px solid var(--green);
  background: var(--soft);
  padding: 18px;
  border-radius: var(--radius);
  margin: 24px 0;
}

.domain-grid,
.faq {
  display: grid;
  gap: 12px;
}

.domain-item,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.footer {
  background: var(--black);
  color: #d9eee7;
  padding: 34px 16px;
  text-align: center;
  border-top: 4px solid var(--green);
}

.footer a {
  color: var(--green);
}

.page-hero {
  padding: 16px 0 24px;
}

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

.contact-list li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

[data-i18n] {
  transition: opacity 0.15s ease;
}

body.lang-changing [data-i18n] {
  opacity: 0.25;
}

@media (max-width: 820px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    justify-content: flex-start;
  }

  .nav-cta {
    width: 100%;
    order: 10;
    margin-left: 0;
  }

  .menu .nav-action {
    flex: 1;
    min-width: 120px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 4px;
  }

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

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

  .shell {
    margin-top: 0;
  }

  .menu a,
  .dropbtn {
    padding-left: 8px;
    padding-right: 8px;
  }
}
