:root {
  --brand: #0f766e;
  --cta: #0ea5e9;
  --ink: #0f172a;
  --ink-soft: #334155;
  --surface: #f8fafc;
  --surface-soft: #eef2ff;
  --card: #ffffff;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--surface);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  max-height: 44px;
  max-width: 180px;
  object-fit: contain;
}

.chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chip {
  background: rgba(255, 255, 255, 0.14);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 35%),
    linear-gradient(130deg, var(--brand), #0f172a 75%);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: 560px;
  padding: 4rem 0;
}

.eyebrow {
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1 {
  margin: 1.25rem 0 1rem;
  font-size: clamp(2.25rem, 4.8vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
}

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

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-media {
  min-height: 360px;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.34);
  background-size: cover;
  background-position: center;
}

.section {
  padding: 4rem 0;
}

.section.soft {
  background: var(--surface-soft);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
}

.section-head {
  margin-bottom: 1.25rem;
}

.muted {
  color: #64748b;
}

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

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.benefit-card h3,
.step-card h3,
.trust-card h3,
.faq-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  color: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

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

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.gallery img {
  width: 100%;
  height: 190px;
  border-radius: 0.85rem;
  object-fit: cover;
  border: 1px solid var(--border);
}

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

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

.step-index {
  display: inline-flex;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--brand);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
}

input,
select {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid #cbd5e1;
  font: inherit;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14);
}

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

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-row a {
  color: var(--brand);
}

.w-full {
  width: 100%;
}

.status-box {
  padding: 0.85rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid transparent;
  font-weight: 600;
}

.status-box[data-state="success"] {
  background: #ecfdf5;
  border-color: #86efac;
  color: #166534;
}

.status-box[data-state="warning"] {
  background: #fff7ed;
  border-color: #fdba74;
  color: #9a3412;
}

.status-box[data-state="error"] {
  background: #fff1f2;
  border-color: #fda4af;
  color: #9f1239;
}

.map-shell {
  margin-top: 1rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #e2e8f0;
}

#contact-map {
  width: 100%;
  height: 250px;
  border: 0;
}

.map-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 1.1rem 0;
}

.footer-inner {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 3rem 0;
  }
}

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

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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