/* =========================================================
   Design tokens
   ========================================================= */
:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #eef2f9;
  --ink: #0c1a30;
  --ink-2: #1b2a44;
  --muted: #5d6c84;
  --muted-2: #8a96ab;
  --line: #e3e9f3;
  --line-strong: #d4dcec;

  --brand: #1a64ff;
  --brand-strong: #0d4ddc;
  --brand-soft: #e6efff;
  --brand-glow: rgba(26, 100, 255, 0.18);

  --whatsapp: #15a352;
  --whatsapp-strong: #0d8242;

  --warning: #c97a14;
  --success: #1a8455;
  --danger: #c0394b;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;

  --shadow-xs: 0 1px 2px rgba(12, 26, 48, 0.05);
  --shadow-sm: 0 4px 14px rgba(12, 26, 48, 0.07);
  --shadow-md: 0 18px 40px rgba(12, 26, 48, 0.09);
  --shadow-lg: 0 30px 70px rgba(12, 26, 48, 0.14);

  --container: min(1200px, calc(100% - 40px));
  --header-height: 76px;
}

/* =========================================================
   Reset & base
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
}

iframe {
  border: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "Manrope", sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}

/* =========================================================
   Buttons
   ========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px var(--brand-glow);
}

.button:focus-visible {
  outline: 3px solid rgba(26, 100, 255, 0.35);
  outline-offset: 2px;
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.button--ghost:hover {
  background: var(--surface);
  color: var(--brand-strong);
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.button--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.button--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.button--whatsapp:hover {
  background: var(--whatsapp-strong);
  box-shadow: 0 12px 28px rgba(21, 163, 82, 0.28);
}

.button--sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.button .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

/* =========================================================
   Header
   ========================================================= */
.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
}

.site-branding__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-branding__custom-logo img,
.site-branding__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.site-branding__custom-logo img {
  object-fit: contain;
}

.site-branding__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-branding__text span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 700;
}

.site-branding__text strong {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.site-nav {
  justify-self: center;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
}

.menu-list a {
  position: relative;
  display: inline-flex;
  padding: 6px 0;
  color: var(--muted);
  transition: color 0.2s ease;
}

.menu-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.menu-list a:hover,
.menu-list .current-menu-item > a,
.menu-list .current_page_item > a {
  color: var(--ink);
}

.menu-list a:hover::after,
.menu-list .current-menu-item > a::after,
.menu-list .current_page_item > a::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  padding: 6px 4px;
}

.site-header__phone .icon {
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.site-header__phone:hover {
  color: var(--brand-strong);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  color: #f3f6fb;
  background:
    radial-gradient(1100px 600px at 85% -20%, rgba(85, 156, 255, 0.35), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(26, 100, 255, 0.28), transparent 60%),
    linear-gradient(180deg, #0a1729 0%, #0c1d3a 65%, #0e2148 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
  padding: 96px 0 100px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #d8e6ff;
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #46e3a4;
  box-shadow: 0 0 0 4px rgba(70, 227, 164, 0.18);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 22ch;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #7eb8ff 0%, #b9d6ff 60%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__copy {
  margin-top: 22px;
  max-width: 56ch;
  color: rgba(225, 233, 248, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__phone-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero__phone-row:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero__phone-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #cfe1ff;
}

.hero__phone-row__icon .icon {
  width: 18px;
  height: 18px;
}

.hero__phone-row__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hero__phone-row__text span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(225, 233, 248, 0.6);
  font-weight: 700;
}

.hero__phone-row__text strong {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 2px;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.01em;
}

.hero__phone-row:hover .hero__phone-row__text strong {
  color: #b9d6ff;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
  width: 100%;
}

.hero__highlight {
  padding: 18px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.hero__highlight span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(225, 233, 248, 0.6);
  font-weight: 700;
  margin-bottom: 6px;
}

.hero__highlight strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}

/* Hero media */
.hero__media {
  position: relative;
}

.hero__media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 80px rgba(4, 12, 28, 0.45);
}

.hero__media-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.hero__media-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 18px 40px rgba(4, 12, 28, 0.35);
}

.hero__media-tag .icon {
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.hero__media-tag--top {
  top: 22px;
  left: -18px;
}

.hero__media-tag--bottom {
  bottom: 22px;
  right: -16px;
  background: var(--ink);
  color: #fff;
}

.hero__media-tag--bottom .icon {
  color: #7eb8ff;
}

/* =========================================================
   Sections shared
   ========================================================= */
.section {
  padding: 96px 0;
  position: relative;
}

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

.section--dark {
  color: #eaf0fb;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(85, 156, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #0c1a30 0%, #102448 100%);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p,
.section--dark li {
  color: inherit;
}

.section--dark .section-label {
  color: #8fbcff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.15;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.section--dark .section-label {
  background: rgba(143, 188, 255, 0.12);
  color: #b6d2ff;
}

/* =========================================================
   Page hero (interior pages)
   ========================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 400px at 100% -10%, rgba(85, 156, 255, 0.3), transparent 60%),
    linear-gradient(180deg, #0a1729 0%, #0e2148 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, #000 40%, transparent 100%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  padding: 90px 0 80px;
}

.page-hero .section-label {
  background: rgba(143, 188, 255, 0.14);
  color: #b6d2ff;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  color: #fff;
  max-width: 22ch;
}

.page-hero p {
  margin-top: 18px;
  max-width: 60ch;
  color: rgba(225, 233, 248, 0.78);
  line-height: 1.7;
  font-size: 1.02rem;
}

/* =========================================================
   Stats
   ========================================================= */
.stats-band {
  position: relative;
  z-index: 2;
  margin-top: -54px;
  padding: 0 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.stats-grid--flat {
  box-shadow: none;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 12px;
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 700;
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

/* =========================================================
   Service / Process / Testimonial cards
   ========================================================= */
.card-grid,
.process-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 100, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 20px;
}

.service-card__icon .icon {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.process-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.process-card h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  position: relative;
  padding: 30px 28px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b400;
  margin-bottom: 14px;
}

.testimonial-card__stars .icon {
  width: 16px;
  height: 16px;
}

.testimonial-card p {
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 0.98rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: "Sora", sans-serif;
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.testimonial-card__meta strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.testimonial-card__role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

/* =========================================================
   Coverage section
   ========================================================= */
.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: stretch;
}

.coverage-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coverage-grid h2 {
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.coverage-grid > div > p {
  margin-top: 18px;
  color: rgba(225, 233, 248, 0.78);
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d8e6ff;
  font-size: 0.86rem;
  font-weight: 600;
}

.coverage-panel {
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.coverage-panel ul {
  display: grid;
  gap: 14px;
}

.coverage-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(225, 233, 248, 0.86);
  line-height: 1.55;
}

.coverage-panel li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat,
    linear-gradient(135deg, var(--brand) 0%, #5b94ff 100%);
}

/* =========================================================
   Quote / Form
   ========================================================= */
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
}

.quote-section .section-heading {
  margin-bottom: 28px;
}

.quote-info {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.feature-list + .quote-info {
  margin-top: 28px;
}

.quote-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.quote-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
}

.quote-info__icon .icon {
  width: 20px;
  height: 20px;
}

.quote-info__item strong {
  display: block;
  font-size: 0.96rem;
  color: var(--ink);
}

.quote-info__item p {
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.quote-info__item a {
  color: var(--ink);
  font-weight: 600;
}

.quote-info__item a:hover {
  color: var(--brand-strong);
}

.quote-form-wrap {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.panel .quote-form-wrap {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-top: 22px;
}

.quote-form {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted-2);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(26, 100, 255, 0.14);
}

.form-field--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form .button {
  justify-self: start;
}

.form-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-notice--success {
  background: rgba(26, 132, 85, 0.1);
  color: var(--success);
  border: 1px solid rgba(26, 132, 85, 0.22);
}

.form-notice--error {
  background: rgba(192, 57, 75, 0.08);
  color: var(--danger);
  border: 1px solid rgba(192, 57, 75, 0.22);
}

/* =========================================================
   Split layout, panels (used on inner pages)
   ========================================================= */
.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.panel {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.panel--soft {
  background: var(--surface-soft);
  border-color: transparent;
}

.panel--contrast {
  color: #fff;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(85, 156, 255, 0.32), transparent 60%),
    linear-gradient(140deg, #0c1a30 0%, #1a3266 100%);
  border-color: rgba(143, 188, 255, 0.22);
}

.panel--contrast h2,
.panel--contrast p,
.panel--contrast li {
  color: #fff;
}

.panel--contrast .section-label {
  background: rgba(143, 188, 255, 0.14);
  color: #b6d2ff;
}

.panel h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.2;
}

.panel > p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.panel--contrast > p {
  color: rgba(225, 233, 248, 0.84);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat,
    linear-gradient(135deg, var(--brand) 0%, #5b94ff 100%);
}

.panel--contrast .feature-list li::before {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1729' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat,
    linear-gradient(135deg, #cfe1ff 0%, #ffffff 100%);
}

.panel .button {
  margin-top: 24px;
}

/* =========================================================
   Contact cards
   ========================================================= */
.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  border-color: rgba(26, 100, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 6px;
}

.contact-card__icon .icon {
  width: 22px;
  height: 22px;
}

.contact-card h2 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.contact-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--brand-strong);
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: 20px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  display: block;
}

/* =========================================================
   Prose
   ========================================================= */
.prose {
  max-width: 760px;
}

.prose > * + * {
  margin-top: 1.1em;
}

.prose h2,
.prose h3 {
  margin-top: 1.6em;
  margin-bottom: 0.4em;
}

.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.prose a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(85, 156, 255, 0.34), transparent 60%),
    linear-gradient(135deg, #0a1729 0%, #1a3266 60%, #1a64ff 140%);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 56px 0;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  max-width: 30ch;
}

.cta-band__inner > div:first-child p {
  margin-top: 10px;
  color: rgba(225, 233, 248, 0.78);
  max-width: 56ch;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  color: rgba(225, 233, 248, 0.78);
  background: #08111e;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr;
  gap: 36px;
  padding: 64px 0 36px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-footer__brand-row img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.site-footer__brand-row strong {
  font-family: "Sora", sans-serif;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.site-footer__brand p {
  color: rgba(225, 233, 248, 0.66);
  line-height: 1.65;
  font-size: 0.95rem;
  max-width: 38ch;
}

.footer-menu,
.footer-list {
  display: grid;
  gap: 10px;
}

.footer-menu a,
.footer-list a {
  color: rgba(225, 233, 248, 0.7);
  font-size: 0.94rem;
  transition: color 0.15s ease;
}

.footer-menu a:hover,
.footer-list a:hover {
  color: #fff;
}

.footer-list li {
  font-size: 0.94rem;
  color: rgba(225, 233, 248, 0.7);
}

.site-footer__bottom {
  padding: 22px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(225, 233, 248, 0.55);
}

.site-footer__social {
  display: inline-flex;
  gap: 10px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__social a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer__social .icon {
  width: 18px;
  height: 18px;
}

/* =========================================================
   Floating actions
   ========================================================= */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-actions__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 30px rgba(8, 17, 32, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.floating-actions__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(8, 17, 32, 0.32);
}

.floating-actions__item--whatsapp {
  background: var(--whatsapp);
}

.floating-actions__item--whatsapp:hover {
  background: var(--whatsapp-strong);
}

.floating-actions__item .icon {
  width: 24px;
  height: 24px;
}

.floating-actions__item .screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 0 80px;
  }

  .hero__media-tag--top {
    left: 16px;
  }

  .hero__media-tag--bottom {
    right: 16px;
  }

  .card-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-grid,
  .quote-section,
  .split-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(1200px, calc(100% - 32px));
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .site-header__actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-open .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: block;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }

  .nav-open .menu-list {
    display: grid;
    gap: 14px;
  }

  .nav-open .menu-list a {
    padding: 8px 4px;
    font-size: 1rem;
  }

  .nav-open .menu-list a::after {
    display: none;
  }

  .nav-open .site-nav .menu-list::after {
    content: "";
    display: block;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .section,
  .page-hero .container {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero__grid {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .hero__highlights,
  .stats-grid {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .stat-card {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .card-grid,
  .process-grid,
  .testimonial-grid,
  .contact-grid,
  .site-footer__grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .coverage-panel,
  .quote-form-wrap {
    padding: 22px;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
    padding: 44px 0;
  }

  .cta-band__actions .button {
    flex: 1;
    min-width: 140px;
  }

  .stats-band {
    margin-top: -32px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .floating-actions__item {
    width: 52px;
    height: 52px;
  }

  .hero__media-tag {
    font-size: 0.78rem;
    padding: 10px 12px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
