:root {
  /* Brand palette: 1a3d3d bg · E7E1D7 beige · FF8A00 orange · FAF7F2 cream */
  --bg: #1a3d3d;
  --card: #134A47;
  --line: #2C5D59;
  --accent: #FF8A00;
  --text: #E7E1D7;
  --muted: #A9B7B2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  padding: 28px 18px;
}

.wrap { max-width: 1000px; margin: 0 auto; }

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo {
  width: 54px; height: 54px; border-radius: 12px;
  background: #FAF7F2; padding: 4px; object-fit: contain;
}
.brand-name { font-size: 20px; font-weight: 800; }
.brand-sub { font-size: 13px; color: var(--muted); }

.header-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-link {
  color: var(--text); text-decoration: none; font-size: 14px; font-weight: 600;
  opacity: .85;
}
.nav-link:hover { opacity: 1; color: var(--accent); }
.lang-btn {
  background: transparent; color: var(--accent);
  border: 1px solid var(--line); border-radius: 9px;
  padding: 8px 16px; font-size: 14px; font-weight: 600; cursor: pointer;
  white-space: nowrap;
}
.lang-btn:hover { border-color: var(--accent); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .1s ease, opacity .15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--accent); color: #1a1a1a; }
.btn-primary:hover { opacity: .92; }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Hero */
.hero {
  text-align: center;
  padding: 40px 12px 56px;
}
.hero h1 {
  font-size: 38px;
  line-height: 1.35;
  margin: 0 0 18px;
  font-weight: 800;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 17px;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}

/* Sections */
.section { padding: 46px 0; }
.section-title {
  font-size: 26px;
  text-align: center;
  margin: 0 0 34px;
  font-weight: 800;
}

/* Feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}
.feature-icon { font-size: 30px; margin-bottom: 12px; }
.feature-card h3 { font-size: 17px; margin: 0 0 10px; color: #fff; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
}
.step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step h3 { font-size: 15px; margin: 0 0 8px; color: #fff; }
.step p { margin: 0; color: var(--muted); font-size: 13px; }

/* Pricing */
.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: 22px;
  padding: 36px 30px;
  text-align: center;
  position: relative;
}
.price-badge {
  display: inline-block;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.price-amount { margin-bottom: 22px; }
.price-num { font-size: 52px; font-weight: 800; color: #fff; }
.price-currency { font-size: 15px; color: var(--muted); display: block; margin-top: 2px; }
.price-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  text-align: start;
}
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 12px 0;
  font-size: 14px;
}
.price-features .check { color: var(--accent); font-weight: 800; }
.price-cta { width: 100%; }
.price-note { color: var(--muted); font-size: 12px; margin: 16px 0 0; }

/* CTA section */
.cta-section { text-align: center; }
.cta-section h2 { font-size: 26px; margin: 0 0 14px; font-weight: 800; }
.cta-section p { color: var(--muted); max-width: 520px; margin: 0 auto 24px; }
.cta-links { margin-top: 18px; font-size: 14px; }
.cta-links a { color: var(--text); text-decoration: none; opacity: .85; }
.cta-links a:hover { opacity: 1; color: var(--accent); }
.cta-links .sep { color: var(--muted); margin: 0 8px; }

/* Footer */
.footer {
  text-align: center; color: var(--muted);
  font-size: 13px; margin-top: 30px;
}

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

@media (max-width: 560px) {
  .hero h1 { font-size: 28px; }
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .brand-name { font-size: 18px; }
  .pricing-card { padding: 28px 20px; }
  .price-num { font-size: 42px; }
}
