:root {
  --bg: #0f0f0f;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.6);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);

  --primary: #ffd700;
  --primary-ink: #0b0b0b;
  --secondary: #2ecc71;

  --radius: 10px;
  --radius-sm: 8px;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #0a0a0a;
  line-height: 1.45;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(1400px 900px at 15% 8%, rgba(255, 215, 0, 0.035) 0%, rgba(255, 215, 0, 0) 70%),
    radial-gradient(1500px 980px at 85% 16%, rgba(46, 204, 113, 0.03) 0%, rgba(46, 204, 113, 0) 72%),
    linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 48%, #090a0a 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 280px;
  max-width: 100%;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}

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

.nav-link {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
}

.header-cta {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease,
    color 160ms ease;
  user-select: none;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(180deg, rgba(255, 215, 0, 1), rgba(255, 215, 0, 0.86));
  color: var(--primary-ink);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 26px rgba(255, 215, 0, 0.12);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  outline: none;
  background: linear-gradient(180deg, rgba(255, 225, 40, 1), rgba(255, 215, 0, 0.9));
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Hero */
.hero {
  padding: 54px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.6px;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

.trust-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-card {
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-inner {
  padding: 18px;
}

.kpi {
  display: grid;
  gap: 2px;
  padding: 8px 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}
.kpi + .kpi {
  margin-top: 8px;
}
.kpi-number {
  font-weight: 800;
  letter-spacing: -0.3px;
}
.kpi-label {
  color: var(--muted-2);
  font-size: 13px;
}

.divider {
  display: none;
}

.checklist {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.checklist li {
  margin: 9px 0;
}
.checklist.compact li {
  margin: 7px 0;
}

/* Sections */
.section {
  padding: 56px 0;
}
.section-alt {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}
.section-cta {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.3px;
}

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

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.image-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
}

.image-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.image-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
}

.card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.mini {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.mini li {
  margin: 8px 0;
}

/* Split panels */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.panel {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
}
.panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
}

.tag {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li {
  margin: 8px 0;
}

.note {
  margin: 12px 0 0;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.22);
  color: rgba(255, 255, 255, 0.82);
}

/* Government section */
.gov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.gov-card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.dl {
  margin: 0;
}
.dl-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dl-row:last-child {
  border-bottom: 0;
}
.dl dt {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}
.dl dd {
  margin: 0;
  font-weight: 700;
}

/* Quote section */
.cta-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: start;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 8px;
}

.form {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.field.two {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
  transition: border-color 150ms ease, background 150ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 215, 0, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.form-hint {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.captcha-wrap {
  margin-top: 12px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.contact-card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-card h3 {
  margin: 0 0 10px;
}

.link {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 215, 0, 0.92);
  font-weight: 700;
}
.link:hover {
  text-decoration: underline;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-top: 10px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.42);
  color: #25d366;
  transition: transform 120ms ease, background 150ms ease, border-color 150ms ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  background: rgba(37, 211, 102, 0.24);
  border-color: rgba(37, 211, 102, 0.6);
  transform: translateY(-1px);
  outline: none;
}

.whatsapp-icon {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden-field {
  display: none !important;
}

/* Footer */
.site-footer {
  padding: 26px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
}

.footer-title {
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--muted);
  font-size: 13px;
}
.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  margin-top: 8px;
  font-size: 12px;
  text-align: right;
}

.muted {
  color: var(--muted);
}
.small {
  font-size: 13px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
  }
  .brand {
    grid-area: brand;
  }
  .nav {
    grid-area: nav;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .header-cta {
    grid-area: cta;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
  .gov-grid {
    grid-template-columns: 1fr;
  }
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
