:root {
  --bg: #f6f1e8;
  --paper: #fffdf8;
  --ink: #14202b;
  --muted: #5b6a78;
  --accent: #d95b37;
  --accent-2: #0f8b8d;
  --line: #e5d8c8;
  --shadow: 0 18px 45px rgba(20, 32, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 91, 55, 0.12), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(15, 139, 141, 0.12), transparent 35%),
    linear-gradient(180deg, #f9f5ec 0%, #f2ebdf 100%);
  line-height: 1.5;
}

.page-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 18px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(145deg, var(--accent), #eb7a35);
  box-shadow: 0 8px 18px rgba(217, 91, 55, 0.3);
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  backdrop-filter: blur(6px);
}

.lang-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.lang-link.active {
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 52px 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 139, 141, 0.2), transparent 70%);
}

.kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3d1f;
  background: #fde7db;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.04;
  max-width: 760px;
}

.hero-sub {
  margin: 18px 0 28px;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--accent), #eb7a35);
  box-shadow: 0 10px 24px rgba(217, 91, 55, 0.28);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.section {
  margin-top: 30px;
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(24px, 3.5vw, 36px);
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(20, 32, 43, 0.08);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.step {
  position: relative;
  padding: 18px 18px 18px 58px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.step-num {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: var(--accent-2);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.price-card.highlight {
  border-color: rgba(217, 91, 55, 0.45);
  box-shadow: 0 12px 28px rgba(217, 91, 55, 0.16);
}

.price {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 38px;
  line-height: 1;
  margin: 10px 0 8px;
}

.price small {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.feature-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  margin-top: 8px;
  color: var(--muted);
}

.feature-list li::before {
  content: "✓ ";
  color: var(--accent-2);
  font-weight: 700;
}

.cta {
  margin-top: 30px;
  border-radius: 20px;
  padding: 26px;
  background: linear-gradient(125deg, #1d2f3f 0%, #24465e 55%, #0f8b8d 120%);
  color: #fff;
}

.cta h2 {
  font-size: clamp(24px, 4vw, 38px);
}

.cta p {
  margin: 10px 0 20px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.cta .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.footer {
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .grid-3,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding: 42px 26px;
  }
}

@media (max-width: 720px) {
  .page-wrap {
    padding: 14px 12px 60px;
  }

  .topbar {
    margin-bottom: 16px;
  }

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

  .hero {
    border-radius: 18px;
    padding: 30px 18px;
  }

  .btn {
    width: 100%;
  }
}
