:root {
  --bg: #ffffff;
  --bg2: #f6f8f7;
  --card: rgba(10, 15, 12, 0.04);
  --card2: rgba(10, 15, 12, 0.06);
  --stroke: rgba(10, 15, 12, 0.14);
  --text: rgba(10, 15, 12, 0.92);
  --muted: rgba(10, 15, 12, 0.72);
  --muted2: rgba(10, 15, 12, 0.55);
  --brand: #00c26a;
  --brand2: #7cf1b5;
  --shadow: 0 18px 50px rgba(10, 15, 12, 0.14);
  --shadow-soft: 0 14px 32px rgba(10, 15, 12, 0.1);
  --radius: 18px;
  --radius2: 26px;
  --container: 1140px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue",
    "Apple Color Emoji", "Segoe UI Emoji";
  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1100px 700px at 75% -10%, rgba(0, 194, 106, 0.18), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(124, 241, 181, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease);
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(10, 15, 12, 0.08);
  transition: box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.site-header.is-elevated {
  box-shadow: 0 14px 40px rgba(10, 15, 12, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: auto;
  height: 34px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.2));
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav a:hover {
  color: var(--text);
  background: rgba(10, 15, 12, 0.05);
}

.nav .nav-cta {
  color: #07120c;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 28px rgba(0, 194, 106, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.nav .nav-cta:hover {
  background: linear-gradient(135deg, var(--brand2), var(--brand));
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(10, 15, 12, 0.12);
  background: rgba(10, 15, 12, 0.03);
  border-radius: 14px;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-lines {
  width: 18px;
  height: 12px;
  position: relative;
  display: block;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(10, 15, 12, 0.75);
  border-radius: 99px;
}

.nav-toggle-lines::before {
  top: 0;
}

.nav-toggle-lines::after {
  bottom: 0;
}

.hero {
  position: relative;
  padding: 62px 0 34px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 920px;
  height: 920px;
  left: 58%;
  top: -520px;
  background: radial-gradient(circle, rgba(0, 194, 106, 0.35), transparent 60%);
  filter: blur(2px);
  transform: translateZ(0);
}

.hero-grid {
  position: absolute;
  width: 980px;
  height: auto;
  left: -80px;
  top: -40px;
  opacity: 0.6;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 15, 12, 0.12);
  background: rgba(10, 15, 12, 0.03);
  color: var(--muted);
  width: fit-content;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(0, 194, 106, 0.18);
}

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(2.15rem, 3vw + 1rem, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 18px;
  font-size: 1.07rem;
  color: var(--muted);
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s var(--ease), background 0.2s var(--ease), border 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #07120c;
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 16px 32px rgba(0, 194, 106, 0.16);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  box-shadow: 0 18px 44px rgba(0, 194, 106, 0.22);
}

.btn-ghost {
  background: rgba(10, 15, 12, 0.04);
  border-color: rgba(10, 15, 12, 0.14);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(10, 15, 12, 0.06);
}

.btn-small {
  padding: 10px 12px;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.kpi {
  padding: 14px 14px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
}

.kpi-value {
  font-size: 1.25rem;
  font-weight: 720;
  letter-spacing: -0.01em;
}

.kpi-label {
  margin-top: 2px;
  color: var(--muted2);
  font-size: 0.92rem;
}

.hero-card {
  border-radius: var(--radius2);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(500px 240px at 80% 10%, rgba(0, 194, 106, 0.22), transparent 60%);
  opacity: 1;
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.mini-badge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10, 15, 12, 0.14);
  background: rgba(10, 15, 12, 0.03);
  color: var(--muted);
  font-size: 0.88rem;
}

.mini-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(0, 194, 106, 0.32);
  animation: pulse 1.6s var(--ease) infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 194, 106, 0.35);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 194, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 194, 106, 0);
  }
}

.route {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 14px 14px 10px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
}

.route-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pin {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
}

.pin-a {
  border-color: rgba(124, 241, 181, 0.95);
}

.pin-b {
  border-color: rgba(0, 194, 106, 0.95);
}

.route-title {
  font-size: 0.86rem;
  color: var(--muted2);
}

.route-value {
  font-weight: 650;
}

.route-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 241, 181, 0.3), rgba(0, 194, 106, 0.3));
  margin-left: 24px;
  margin-right: 8px;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.metric {
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(10, 15, 12, 0.04);
  border: 1px solid rgba(10, 15, 12, 0.12);
}

.metric-label {
  color: var(--muted2);
  font-size: 0.9rem;
}

.metric-value {
  margin-top: 2px;
  font-weight: 700;
}

.hero-card-bottom {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: radial-gradient(900px 520px at 50% 0%, rgba(0, 194, 106, 0.06), transparent 55%);
  border-top: 1px solid rgba(10, 15, 12, 0.08);
  border-bottom: 1px solid rgba(10, 15, 12, 0.08);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 1.4vw + 1.2rem, 2.2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.tabs {
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  border-bottom: 1px solid rgba(10, 15, 12, 0.08);
  background: rgba(10, 15, 12, 0.03);
}

.tab {
  padding: 16px 16px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 650;
  cursor: pointer;
}

.tab[aria-selected="true"] {
  color: var(--text);
}

.tab-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50%;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  transform: translateX(0%);
  transition: transform 0.28s var(--ease);
}

.tab-panels {
  padding: 18px;
}

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

.card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
  min-height: 220px;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), border 0.18s var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(10, 15, 12, 0.18);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(0, 194, 106, 0.12);
  border: 1px solid rgba(0, 194, 106, 0.25);
  margin-bottom: 12px;
  color: var(--brand2);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

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

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(0, 194, 106, 0.45), rgba(124, 241, 181, 0.25));
  border: 1px solid rgba(0, 194, 106, 0.35);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.coverage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.coverage-map {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-card {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(10, 15, 12, 0.14);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  max-width: 280px;
}

.map-title {
  font-weight: 750;
  letter-spacing: -0.01em;
}

.map-subtitle {
  margin-top: 2px;
  color: var(--muted2);
  font-size: 0.92rem;
}

.map-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10, 15, 12, 0.04);
  border: 1px solid rgba(10, 15, 12, 0.12);
  color: var(--muted);
  font-size: 0.9rem;
}

.coverage-list {
  display: grid;
  gap: 12px;
}

.feature {
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.74);
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature h3 {
  margin: 0;
  font-size: 1.05rem;
}

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

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 194, 106, 0.12);
  border: 1px solid rgba(0, 194, 106, 0.28);
  color: var(--brand2);
  font-weight: 650;
  font-size: 0.88rem;
}

.billing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 18px;
  color: var(--muted);
}

.billing-save {
  margin-left: 8px;
  color: var(--brand2);
  font-weight: 700;
}

.switch {
  width: 54px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(10, 15, 12, 0.16);
  background: rgba(10, 15, 12, 0.06);
  position: relative;
  cursor: pointer;
}

.switch-thumb {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  transition: left 0.22s var(--ease);
}

.switch[aria-checked="true"] .switch-thumb {
  left: 27px;
}

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

.price-card {
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-highlight {
  background: linear-gradient(180deg, rgba(0, 194, 106, 0.14), rgba(255, 255, 255, 0.74));
  border-color: rgba(0, 194, 106, 0.3);
}

.badge-strong {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 194, 106, 0.14);
  border: 1px solid rgba(0, 194, 106, 0.28);
  color: var(--brand2);
  font-weight: 750;
  font-size: 0.88rem;
}

.price-top h3 {
  margin: 0;
  font-size: 1.2rem;
}

.price-top p {
  margin: 6px 0 0;
  color: var(--muted);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-value {
  font-size: 2rem;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.price-unit {
  color: var(--muted2);
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.74);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

.faq-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(10, 15, 12, 0.18);
  position: relative;
  flex: 0 0 auto;
  background: rgba(10, 15, 12, 0.03);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 2px;
  background: rgba(10, 15, 12, 0.7);
  transform: translate(-50%, -50%);
  border-radius: 99px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.18s var(--ease), opacity 0.18s var(--ease);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0.2);
}

.faq-a {
  padding: 0 16px 16px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 1.4vw + 1.2rem, 2.2rem);
  letter-spacing: -0.02em;
}

.contact-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 62ch;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.highlight {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.74);
  padding: 14px;
}

.highlight-title {
  color: var(--muted2);
  font-size: 0.9rem;
}

.highlight-value {
  margin-top: 2px;
  font-weight: 750;
}

.contact-form {
  border-radius: var(--radius2);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display: grid;
  gap: 12px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

input,
select,
textarea {
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 15, 12, 0.14);
  outline: none;
  color: var(--text);
  transition: border 0.16s var(--ease), box-shadow 0.16s var(--ease), background 0.16s var(--ease);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  border-color: rgba(0, 194, 106, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 194, 106, 0.18);
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.form-note {
  margin: 0;
  color: var(--muted2);
  font-size: 0.92rem;
}

.site-footer {
  padding: 32px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.8fr 0.85fr;
  gap: 14px;
  padding-bottom: 18px;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-address {
  font-style: normal;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.footer-address a {
  color: inherit;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(10, 15, 12, 0.1);
  background: rgba(10, 15, 12, 0.03);
  width: fit-content;
  transition: background 0.2s var(--ease), border 0.2s var(--ease), color 0.2s var(--ease);
}

.footer-address a:hover {
  background: rgba(0, 194, 106, 0.08);
  border-color: rgba(0, 194, 106, 0.22);
  color: rgba(10, 15, 12, 0.92);
}

.footer-brand p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 52ch;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  width: fit-content;
}

.footer-links a:hover {
  color: var(--text);
  background: rgba(10, 15, 12, 0.05);
}

.footer-meta {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-chip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 15, 12, 0.12);
  background: rgba(10, 15, 12, 0.04);
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid rgba(10, 15, 12, 0.08);
  padding: 14px 0;
  color: var(--muted2);
}

.chatbot {
  position: fixed;
  left: auto;
  top: auto;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}

.chatbot-fab {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  border: 1px solid rgba(10, 15, 12, 0.14);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(10, 15, 12, 0.16);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.14s var(--ease), border 0.2s var(--ease), background 0.2s var(--ease);
}

.chatbot-fab:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 194, 106, 0.32);
  background: rgba(0, 194, 106, 0.08);
}

.chatbot-fab img {
  width: 44px;
  height: 44px;
}

.chatbot-panel {
  position: absolute;
  left: auto;
  top: auto;
  right: 0;
  bottom: 74px;
  width: min(380px, calc(100vw - 36px));
  height: min(520px, calc(100vh - 120px));
  border-radius: 22px;
  border: 1px solid rgba(10, 15, 12, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-origin: bottom right;
  animation: pop 0.22s var(--ease) both;
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chatbot-header {
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(10, 15, 12, 0.08);
  background: rgba(10, 15, 12, 0.03);
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 194, 106, 0.08);
  border: 1px solid rgba(0, 194, 106, 0.22);
}

.chatbot-name {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.chatbot-sub {
  color: var(--muted2);
  font-size: 0.88rem;
}

.chatbot-close {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  border: 1px solid rgba(10, 15, 12, 0.12);
  background: rgba(10, 15, 12, 0.04);
  color: rgba(10, 15, 12, 0.85);
  cursor: pointer;
}

.chatbot-body {
  padding: 14px;
  height: 348px;
  overflow: auto;
  display: grid;
  gap: 10px;
}

.bubble {
  max-width: 86%;
  width: fit-content;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(10, 15, 12, 0.12);
  background: rgba(10, 15, 12, 0.04);
  color: var(--muted);
}

.bubble.user {
  margin-left: auto;
  background: rgba(0, 194, 106, 0.12);
  border-color: rgba(0, 194, 106, 0.25);
  color: rgba(10, 15, 12, 0.9);
}

.bubble.bot {
  margin-right: auto;
}

.bubble .meta {
  margin-top: 8px;
  color: rgba(10, 15, 12, 0.45);
  font-size: 0.78rem;
}

.chatbot-quick {
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(10, 15, 12, 0.08);
  border-bottom: 1px solid rgba(10, 15, 12, 0.08);
  background: rgba(10, 15, 12, 0.02);
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10, 15, 12, 0.14);
  background: rgba(10, 15, 12, 0.03);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s var(--ease), border 0.2s var(--ease), color 0.2s var(--ease);
}

.chip:hover {
  background: rgba(0, 194, 106, 0.1);
  border-color: rgba(0, 194, 106, 0.28);
  color: rgba(10, 15, 12, 0.92);
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
}

.chatbot-input {
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 15, 12, 0.14);
}

.chatbot-send {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #07120c;
  cursor: pointer;
}

.chatbot-send:hover {
  background: linear-gradient(135deg, var(--brand2), var(--brand));
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    order: -1;
  }
  .coverage {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-meta {
    justify-content: flex-start;
  }
  .hero-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 74px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(10, 15, 12, 0.12);
    border-radius: 22px;
    padding: 12px;
    display: grid;
    gap: 6px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s var(--ease), opacity 0.18s var(--ease);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 12px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
