:root {
  --bg: #edf4ff;
  --bg-soft: #f3f8ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(245, 249, 255, 0.92);
  --ink: #0f1720;
  --ink-soft: #1f2b38;
  --muted: #55626d;
  --brand: #1d63d8;
  --brand-dark: #0f3f99;
  --brand-soft: #dce9ff;
  --signal: #63b5ff;
  --signal-soft: #d9edff;
  --line: rgba(15, 23, 32, 0.1);
  --line-strong: rgba(15, 23, 32, 0.16);
  --shadow: 0 28px 70px rgba(15, 23, 32, 0.1);
  --shadow-strong: 0 28px 80px rgba(7, 22, 44, 0.2);
  --glow: 0 20px 44px rgba(29, 99, 216, 0.16);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(29, 99, 216, 0.18), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(99, 181, 255, 0.2), transparent 22%),
    radial-gradient(circle at 50% 120%, rgba(29, 99, 216, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 48%, #e7f1ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 32, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 32, 0.03) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.08;
}

p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 22px 0 48px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-color: rgba(15, 23, 32, 0.08);
  box-shadow: 0 12px 34px rgba(15, 23, 32, 0.08);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), #4a8cf0);
  color: #effbf7;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(29, 99, 216, 0.24);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

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

.brand-tag {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 32, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero,
.section,
.service-strip {
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.88fr);
  gap: 26px;
  padding: 48px;
  border-radius: 42px;
  color: #f6fcfa;
  background:
    radial-gradient(circle at top right, rgba(99, 181, 255, 0.28), transparent 20%),
    radial-gradient(circle at 14% 16%, rgba(107, 176, 255, 0.12), transparent 22%),
    linear-gradient(145deg, #091629 0%, #0a2760 38%, #11449c 72%, #1d63d8 100%);
  box-shadow: var(--shadow-strong);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.45;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -72px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 181, 255, 0.28), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

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

.eyebrow,
.panel-label,
.mini-label,
.service-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #d5e7ff;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.3rem);
}

.lead,
.intro-story p,
.pillar-card p,
.panel-intro p,
.mission-card p,
.benefit-body p,
.contact-panel p,
.form-note,
.service-card p {
  line-height: 1.75;
}

.hero .lead,
.hero-note,
.hero-stats span,
.hero-panel p,
.hero-contact-card a {
  color: rgba(240, 247, 255, 0.82);
}

.lead {
  font-size: 1.04rem;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(240, 247, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--signal), #8ad0ff);
  color: #08111f;
  box-shadow: 0 18px 30px rgba(99, 181, 255, 0.28);
}

.button-whatsapp {
  background: linear-gradient(135deg, #25d366, #8df2b4);
  color: #052012;
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f6fcfa;
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-note {
  margin-bottom: 26px;
  font-weight: 600;
  color: rgba(240, 247, 255, 0.92);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-stats li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
  min-height: 286px;
}

.hero-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 136px;
  margin: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(2, 11, 28, 0.26);
}

.hero-visual-card-large {
  grid-row: span 2;
}

.hero-visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(6, 16, 34, 0.72) 100%);
}

.hero-visual-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f6fcfa;
}

.hero-panel-top h2 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.panel-label {
  background: rgba(99, 181, 255, 0.18);
  color: #d8eeff;
}

.hero-stack {
  display: grid;
  gap: 14px;
  margin: 0;
}

.stack-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stack-index {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  color: #dff1ff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 800;
}

.stack-card h3,
.service-card h4 {
  font-size: 1.12rem;
}

.hero-contact-card {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding: 14px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 248, 255, 0.7)),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.service-strip p {
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 32, 0.06);
  box-shadow: 0 10px 22px rgba(15, 23, 32, 0.05);
  color: var(--ink-soft);
  font-weight: 700;
  text-align: center;
}

.section {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 40px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.88)),
    var(--surface);
  backdrop-filter: blur(14px);
}

.section::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 181, 255, 0.16), transparent 70%);
  pointer-events: none;
}

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

.section-heading {
  max-width: 760px;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
  background: rgba(29, 99, 216, 0.1);
  color: var(--brand);
}

.section-heading h2,
.mission-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading .lead,
.intro-story p,
.pillar-card p,
.panel-intro p,
.mission-card p,
.benefit-body p,
.contact-panel p,
.service-card p,
.form-note,
.contact-list p {
  color: var(--muted);
}

.intro-layout,
.contact-layout,
.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.intro-layout {
  margin-top: 30px;
}

.intro-story,
.pillar-card,
.mission-card,
.trust-card,
.benefit-sidecard,
.contact-panel,
.contact-form,
.service-card,
.benefit-item {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.intro-story {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(29, 99, 216, 0.06), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(15, 23, 32, 0.06);
}

.intro-story h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

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

.intro-points li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.65;
}

.intro-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--signal));
  box-shadow: 0 0 0 5px rgba(29, 99, 216, 0.08);
}

.pillar-grid,
.service-grid,
.trust-grid,
.mission-grid {
  display: grid;
  gap: 18px;
}

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

.pillar-card,
.service-card,
.trust-card,
.benefit-sidecard {
  padding: 24px;
}

.pillar-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.9)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(10, 48, 110, 0.06);
}

.mini-label,
.service-tag {
  background: rgba(29, 99, 216, 0.1);
  color: var(--brand);
}

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

.split-heading .lead {
  max-width: 470px;
}

.tab-shell {
  margin-top: 28px;
  padding: 18px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(237, 244, 255, 0.84), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(29, 99, 216, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 32, 0.06);
}

.tab-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 99, 216, 0.08);
}

.tab-button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.tab-button.is-active {
  background: linear-gradient(135deg, #ffffff, #f3f8ff);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(15, 23, 32, 0.08), var(--glow);
}

.tab-panels {
  margin-top: 24px;
}

.panel-intro {
  max-width: 720px;
  margin-bottom: 18px;
}

.panel-intro h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.92)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(10, 48, 110, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(29, 99, 216, 0.16);
  box-shadow: 0 24px 52px rgba(10, 48, 110, 0.12);
}

.service-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(29, 99, 216, 0.12);
  background: linear-gradient(180deg, rgba(220, 233, 255, 0.6), rgba(255, 255, 255, 0.92));
  box-shadow: 0 16px 34px rgba(10, 48, 110, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover .service-image,
.service-card:focus-within .service-image {
  transform: scale(1.02);
  box-shadow: 0 22px 42px rgba(10, 48, 110, 0.14);
}

.service-tag {
  margin-top: -38px;
  margin-left: 14px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 99, 216, 0.08);
  box-shadow: 0 12px 24px rgba(10, 48, 110, 0.08);
}

.service-card h4 {
  margin-top: 4px;
  font-size: 1.18rem;
}

.service-link {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(29, 99, 216, 0.12);
  border-radius: 999px;
  background: rgba(29, 99, 216, 0.08);
  color: var(--brand);
  font-weight: 800;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--brand-dark);
  background: rgba(29, 99, 216, 0.14);
  border-color: rgba(29, 99, 216, 0.18);
  transform: translateY(-1px);
}

.service-link::after {
  content: "\2192";
}

.advantages-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(236, 245, 255, 0.96)),
    var(--surface);
}

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

.mission-card {
  padding: 32px;
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(220, 233, 255, 0.95), rgba(217, 237, 255, 0.62)),
    var(--surface-strong);
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.trust-card {
  box-shadow: 0 18px 38px rgba(15, 23, 32, 0.07);
}

.trust-card:first-child {
  background:
    linear-gradient(145deg, #0c2c68 0%, #1650b5 58%, #2f80ff 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.trust-card:first-child h3,
.trust-card:first-child .trust-list {
  color: #f3f8ff;
}

.trust-card:last-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.92)),
    rgba(255, 255, 255, 0.82);
}

.trust-card h3 {
  margin-bottom: 16px;
  font-size: 1.28rem;
}

.trust-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.benefits-layout {
  margin-top: 28px;
}

.benefits-accordion {
  display: grid;
  gap: 14px;
}

.benefit-item {
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 23, 32, 0.05);
}

.benefit-item summary {
  list-style: none;
  position: relative;
  padding: 22px 54px 22px 24px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.benefit-item summary::-webkit-details-marker {
  display: none;
}

.benefit-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 19px;
  font-size: 1.45rem;
  color: var(--brand);
  transition: transform 0.2s ease;
}

.benefit-item[open] summary::after {
  transform: rotate(45deg);
}

.benefit-body {
  padding: 0 24px 22px;
}

.benefit-sidecard {
  background:
    linear-gradient(180deg, rgba(29, 99, 216, 0.08), rgba(255, 255, 255, 0.88)),
    var(--surface-strong);
  box-shadow: 0 18px 38px rgba(15, 23, 32, 0.06);
  position: sticky;
  top: 104px;
}

.benefit-sidecard h3 {
  margin: 16px 0 14px;
  font-size: 1.55rem;
}

.contact-section {
  background:
    linear-gradient(145deg, rgba(217, 236, 255, 0.82), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.contact-panel,
.contact-form {
  padding: 32px;
}

.contact-panel {
  background:
    linear-gradient(155deg, #081629 0%, #10336d 55%, #1650b5 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  color: #f6fcfa;
}

.contact-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #dbeeff;
}

.contact-panel h2,
.contact-panel p,
.contact-panel .contact-list a,
.contact-panel .contact-list p {
  color: rgba(240, 247, 255, 0.9);
}

.contact-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.96)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 44px rgba(15, 23, 32, 0.08);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a {
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #eff6ff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.form-actions .button {
  flex: 1 1 220px;
}

.contact-form label {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 32, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(29, 99, 216, 0.18);
  border-color: rgba(29, 99, 216, 0.2);
}

.form-note {
  font-size: 0.92rem;
}

.form-note.success {
  color: var(--brand);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 30px 8px 0;
  margin-top: 8px;
  border-top: 1px solid rgba(15, 23, 32, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #8df2b4);
  color: #052012;
  font-weight: 800;
  box-shadow: 0 20px 34px rgba(17, 94, 50, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.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;
}

@media (max-width: 1100px) {
  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .intro-layout,
  .contact-layout,
  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pillar-grid,
  .mission-grid,
  .trust-grid,
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual-grid {
    min-height: 240px;
  }
}

@media (max-width: 920px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 32, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .split-heading {
    flex-direction: column;
    align-items: start;
  }

  .hero,
  .section {
    padding: 32px 24px;
  }

  .benefit-sidecard {
    position: static;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 14px;
  }

  .site-header {
    top: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .brand-tag {
    font-size: 0.8rem;
  }

  .hero-stats,
  .service-grid,
  .pillar-grid,
  .mission-grid,
  .trust-grid,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual-card,
  .hero-visual-card-large {
    min-height: 180px;
    grid-row: auto;
  }

  .stack-card {
    grid-template-columns: 1fr;
  }

  .stack-index {
    width: 52px;
    height: 52px;
  }

  .service-strip {
    border-radius: 28px;
  }

  .tab-shell {
    padding: 14px;
  }

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

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 18px;
  }
}
