:root {
  --ink: #102033;
  --muted: #586575;
  --line: #d9e1ea;
  --paper: #f7fafc;
  --white: #ffffff;
  --blue: #1769e0;
  --blue-dark: #0f4fb0;
  --green: #12a070;
  --orange: #f08a24;
  --shadow: 0 22px 60px rgba(16, 32, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.header-action,
.button,
.trust-band span {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  display: block;
  width: clamp(180px, 18vw, 250px);
  height: 48px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 6px;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 22px;
  color: #344253;
  font-size: 0.95rem;
}

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

.header-action {
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.header-action svg,
.button svg,
.trust-band svg,
.service-grid svg {
  width: 18px;
  height: 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  align-items: center;
  min-height: auto;
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.72)),
    radial-gradient(circle at 86% 30%, rgba(18, 160, 112, 0.2), transparent 34%),
    radial-gradient(circle at 74% 82%, rgba(240, 138, 36, 0.13), transparent 26%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-lead {
  max-width: 720px;
  color: #3d4b5d;
  font-size: 1.15rem;
}

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

.button {
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary:hover,
.button.full:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.button.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
  margin: 34px 0 0;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-metrics dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--ink);
}

.trust-band span {
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  color: #e9f1fa;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.92rem;
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.section.muted {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p,
.split p,
.contact-section p {
  max-width: 690px;
  color: var(--muted);
}

.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.pricing-heading > p {
  max-width: 430px;
}

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

.service-grid article,
.price-card,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid article {
  padding: 24px;
}

.service-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  color: var(--blue);
}

.service-grid p,
.price-card li,
.faq-list p {
  color: var(--muted);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--ink), #174267);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.price-card.featured li,
.price-card.featured .plan-label {
  color: rgba(255, 255, 255, 0.78);
}

.price-card.featured .button {
  border-color: var(--blue);
}

.plan-label {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: currentColor;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.72;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.price-card .button {
  margin-top: auto;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: #33465a;
  background: #eef4fa;
  font-size: 0.86rem;
  text-transform: uppercase;
}

td:last-child {
  color: var(--blue-dark);
  font-weight: 900;
  white-space: nowrap;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.steps span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 48px;
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.contact-section .eyebrow {
  color: #90f0c8;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.75);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  margin-top: 10px;
  padding: 0 16px;
  color: var(--ink);
  background: #90f0c8;
  border-radius: 8px;
  font-weight: 900;
}

.whatsapp-link:hover {
  background: #b5f8dc;
}

.whatsapp-link svg {
  width: 18px;
  height: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(23, 105, 224, 0.35);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #e5edf5;
  background: #091421;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .pricing-heading,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(62vw, 210px);
    height: 38px;
  }

  .header-action {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics,
  .service-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
