:root {
  --primary: #14c39e;
  --primary-dark: #0f9a82;
  --accent: #2458d1;
  --accent-dark: #1a4499;
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-soft: #edf2ff;
  --text: #1a1d23;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 5%, #e8fbf6 0%, var(--bg) 45%);
  color: var(--text);
  font-family: "Nunito Sans", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: 600;
  font-style: normal;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 247, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 220px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent);
}

.hero {
  padding: 4.2rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}

.tag {
  display: inline-block;
  background: rgba(20, 195, 158, 0.12);
  color: var(--primary-dark);
  border: 1px solid rgba(20, 195, 158, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.87rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2rem);
  margin-bottom: 0.8rem;
}

.hero-text,
.benefits-text {
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  border-radius: 12px;
  padding: 0.8rem 1.15rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 0;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(36, 88, 209, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(36, 88, 209, 0.32);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.hero-chips {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: #374151;
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: min(360px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 0.9rem;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #ffffff;
  padding: 0.7rem 0.8rem;
  font-weight: 800;
}

.map-area {
  margin-top: 0.8rem;
  border-radius: 16px;
  background: linear-gradient(150deg, #dbe7ff, #d9f7ef);
  height: 170px;
  position: relative;
  overflow: hidden;
}

.map-area svg {
  width: 100%;
  height: 100%;
}

.map-area path {
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 8;
}

.pin {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  border: 2px solid #ffffff;
}

.pin-start {
  background: #14c39e;
  left: 40px;
  top: 90px;
}

.pin-stop {
  background: #f59e0b;
  left: 160px;
  top: 50px;
}

.pin-end {
  background: #ef4444;
  right: 32px;
  top: 78px;
}

.kpi-list {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.kpi-list div {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.65rem;
}

.kpi-list strong {
  display: block;
  color: var(--accent);
  font-size: 1.15rem;
}

.kpi-list span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 3.1rem 0;
}

.section.alt {
  background: linear-gradient(180deg, #f7fbff, #f3f8ff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

.plan-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.plan-card.popular {
  border-color: rgba(36, 88, 209, 0.4);
  box-shadow: 0 16px 34px rgba(36, 88, 209, 0.16);
}

.plan-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
}

.plan-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
}

.plan-head h3 {
  margin: 0;
}

.plan-price {
  color: var(--accent);
  font-weight: 800;
}

.plan-subtitle {
  margin: 0.35rem 0 0.65rem;
  color: var(--muted);
}

.plan-card ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: #3f4652;
  line-height: 1.65;
}

.plan-cta {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.benefit-list p {
  margin: 0 0 0.5rem;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-weight: 700;
}

.benefit-list p i {
  color: var(--primary-dark);
}

.contact-box,
.contact-form {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 0.6rem;
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d9dde5;
  color: var(--text);
  border-radius: 12px;
  padding: 0.75rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(20, 195, 158, 0.25);
  border-color: var(--primary);
}

.contact-form button {
  margin-top: 0.4rem;
  width: fit-content;
  cursor: pointer;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0 2rem;
  background: #f9fbff;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.legal {
  padding: 3rem 0;
}

.legal article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  line-height: 1.7;
  box-shadow: var(--shadow);
}

.legal h1 {
  margin-top: 0;
}

.notice {
  background: #eefbf8;
  border: 1px solid #b8e9dc;
  border-radius: 10px;
  padding: 0.8rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .benefits-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }
}
