:root {
  --navy-950: #03122a;
  --navy-900: #071b3a;
  --navy-800: #0a2b59;
  --blue-700: #0756d9;
  --blue-600: #1268ef;
  --blue-500: #2d7cff;
  --blue-100: #e8f1ff;
  --gold-500: #ffbd24;
  --gold-100: #fff4cf;
  --pink-500: #ff4f87;
  --pink-100: #ffe8f0;
  --green-500: #18bd69;
  --green-100: #e3f9ec;
  --cyan-400: #34cfff;
  --ink: #10213d;
  --muted: #5c6b82;
  --line: #dce6f1;
  --surface: #ffffff;
  --surface-soft: #f5f9ff;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 10px 30px rgba(6, 29, 65, 0.08);
  --shadow-md: 0 20px 60px rgba(6, 29, 65, 0.14);
  --container: 1180px;
  --header-height: 80px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

h3 {
  font-size: 1.35rem;
}

::selection {
  color: white;
  background: var(--blue-600);
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

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

.section {
  padding-block: clamp(78px, 9vw, 126px);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: white;
  background: var(--navy-900);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: relative;
  z-index: 40;
  color: #ddebff;
  background: var(--navy-950);
  font-size: 0.78rem;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar p span {
  margin-right: 7px;
  color: var(--gold-500);
}

.topbar a {
  font-weight: 700;
  transition: color 180ms ease;
}

.topbar a:hover {
  color: white;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(220, 230, 241, 0.72);
  backdrop-filter: blur(16px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(4, 25, 57, 0.09);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  width: 138px;
  height: 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand img {
  width: 126px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.1vw, 32px);
}

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 12px;
  color: #304058;
  font-size: 0.92rem;
  font-weight: 650;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  color: var(--navy-900);
  background: var(--blue-100);
  border: 0;
  border-radius: 13px;
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 3px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.button--large {
  min-height: 58px;
  padding: 16px 25px;
}

.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 12px 28px rgba(18, 104, 239, 0.28);
}

.button--primary:hover {
  box-shadow: 0 16px 36px rgba(18, 104, 239, 0.35);
}

.button--ghost {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
}

.button--ghost:hover {
  background: white;
  box-shadow: var(--shadow-sm);
}

.button--outline {
  color: var(--blue-700);
  background: transparent;
  border-color: #b8d3ff;
}

.button--outline:hover {
  background: var(--blue-100);
}

.button--light {
  color: var(--navy-900);
  background: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.button--whatsapp-secondary {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.button--whatsapp-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.75);
}

.hero {
  position: relative;
  min-height: calc(100svh - 114px);
  display: grid;
  align-items: center;
  padding-block: clamp(68px, 8vw, 110px);
  overflow: hidden;
  background:
    linear-gradient(rgba(220, 232, 248, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 232, 248, 0.32) 1px, transparent 1px),
    radial-gradient(circle at 80% 5%, #e6f3ff 0, transparent 34%),
    linear-gradient(135deg, #fbfdff 0%, #f2f7ff 55%, #fffaf0 100%);
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -200px -8%;
  height: 300px;
  background: white;
  border-radius: 50% 50% 0 0 / 15% 15% 0 0;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
}

.hero__content {
  max-width: 650px;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 13px;
  color: var(--blue-700);
  background: rgba(232, 241, 255, 0.8);
  border: 1px solid rgba(89, 145, 228, 0.25);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 189, 36, 0.18);
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--blue-600);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -4px;
  left: -4px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 16'%3E%3Cpath d='M3 10C86 2 205 3 297 8' fill='none' stroke='%23ffbd24' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  transform: rotate(-1deg);
  z-index: -1;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #3f5068;
  font-size: 0.82rem;
  font-weight: 650;
  list-style: none;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__trust svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  color: white;
  background: var(--green-500);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__visual {
  position: relative;
}

.hero__stage {
  position: relative;
  isolation: isolate;
  width: min(100%, 540px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.hero__stage::before,
.hero__stage::after {
  content: "";
  position: absolute;
  z-index: -2;
  border-radius: 50%;
}

.hero__stage::before {
  inset: 8%;
  background: linear-gradient(145deg, var(--navy-900), #0c3f86);
  box-shadow: 0 34px 90px rgba(6, 40, 90, 0.25);
}

.hero__stage::after {
  inset: 14%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 80px rgba(34, 128, 255, 0.18);
}

.hero__stage > img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 28px 25px rgba(0, 0, 0, 0.28));
  animation: hero-float 5.5s ease-in-out infinite;
}

.hero__stage--photo {
  width: min(100%, 560px);
}

.hero__stage--photo::before {
  inset: 4% 2% 2% 7%;
  background: linear-gradient(145deg, var(--blue-600), var(--navy-900));
  border-radius: 42px;
  box-shadow: 0 34px 90px rgba(6, 40, 90, 0.28);
  transform: rotate(4deg);
}

.hero__stage--photo::after {
  inset: 2% 6% 6% 2%;
  z-index: -1;
  background: linear-gradient(145deg, rgba(255, 189, 36, 0.55), rgba(52, 207, 255, 0.18));
  border: 0;
  border-radius: 42px;
  box-shadow: none;
  transform: rotate(-3deg);
}

.hero__stage--photo > .hero__photo {
  width: 92%;
  height: 92%;
  object-fit: cover;
  object-position: center;
  background: var(--navy-900);
  border: 5px solid white;
  border-radius: 36px;
  box-shadow: 0 28px 60px rgba(4, 25, 57, 0.3);
  filter: none;
  animation: hero-photo-float 6.5s ease-in-out infinite;
}

.hero__mini-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(4, 25, 57, 0.2);
  backdrop-filter: blur(10px);
}

.hero__mini-card--top {
  top: 13%;
  right: -2%;
}

.hero__mini-card--bottom {
  bottom: 11%;
  left: -4%;
}

.mini-card__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  font-weight: 900;
}

.mini-card__icon--gold {
  color: #8f5d00;
  background: var(--gold-100);
}

.mini-card__icon--green {
  color: #087944;
  background: var(--green-100);
}

.hero__mini-card p {
  margin: 0;
  line-height: 1.15;
}

.hero__mini-card strong,
.hero__mini-card small {
  display: block;
}

.hero__mini-card strong {
  color: var(--navy-900);
  font-size: 0.85rem;
}

.hero__mini-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
}

.floating-star {
  position: absolute;
  z-index: 5;
  color: var(--gold-500);
  line-height: 1;
  filter: drop-shadow(0 0 9px rgba(255, 189, 36, 0.75));
  animation: star-pulse 2.4s ease-in-out infinite;
}

.floating-star--one {
  top: 8%;
  left: 12%;
  font-size: 2rem;
}

.floating-star--two {
  right: 3%;
  bottom: 24%;
  color: var(--cyan-400);
  font-size: 1.4rem;
  animation-delay: -0.7s;
}

.floating-star--three {
  bottom: 7%;
  left: 27%;
  color: var(--pink-500);
  font-size: 1.8rem;
  animation-delay: -1.2s;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}

.hero__glow--one {
  top: 10%;
  left: -120px;
  width: 250px;
  height: 250px;
  background: rgba(45, 124, 255, 0.14);
}

.hero__glow--two {
  right: 14%;
  bottom: 3%;
  width: 180px;
  height: 180px;
  background: rgba(255, 79, 135, 0.1);
}

@keyframes hero-float {
  0%,
  100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes hero-photo-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes star-pulse {
  0%,
  100% { opacity: 0.55; transform: scale(0.85) rotate(0); }
  50% { opacity: 1; transform: scale(1.12) rotate(12deg); }
}

.proof-strip {
  position: relative;
  z-index: 4;
  padding: 22px 0;
  background: white;
  border-bottom: 1px solid var(--line);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip__grid > div {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding-inline: 24px;
}

.proof-strip__grid > div + div {
  border-left: 1px solid var(--line);
}

.proof-strip__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 13px;
  font-size: 1rem;
  font-weight: 900;
}

.proof-strip__icon--pink {
  color: var(--pink-500);
  background: var(--pink-100);
}

.proof-strip__icon--green {
  color: var(--green-500);
  background: var(--green-100);
}

.proof-strip p {
  margin: 0;
  line-height: 1.25;
}

.proof-strip strong,
.proof-strip small {
  display: block;
}

.proof-strip strong {
  color: var(--navy-900);
  font-size: 0.9rem;
}

.proof-strip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

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

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

.section-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker--light {
  color: #a9d1ff;
}

.services {
  background: white;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 25px 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 36px rgba(5, 33, 73, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: #b8d3fa;
  box-shadow: var(--shadow-md);
}

.service-card--featured {
  border: 2px solid var(--blue-500);
}

.service-card__label {
  position: absolute;
  top: -14px;
  right: 18px;
  padding: 6px 10px;
  color: white;
  background: var(--blue-600);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(18, 104, 239, 0.22);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card__icon,
.process-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 17px;
}

.service-card__icon svg,
.process-card__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__icon--gold,
.process-card__icon--gold {
  color: #9a6500;
  background: var(--gold-100);
}

.service-card__icon--pink {
  color: #c7205b;
  background: var(--pink-100);
}

.service-card__icon--green,
.process-card__icon--green {
  color: #087e47;
  background: var(--green-100);
}

.service-card h3 {
  margin-bottom: 13px;
}

.service-card > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.58;
}

.service-card ul {
  margin: 0 0 24px;
  padding: 0;
  color: #42526a;
  font-size: 0.83rem;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 7px 0 7px 20px;
  border-top: 1px solid #edf2f7;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 900;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 0;
  color: var(--blue-700);
  background: none;
  border: 0;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.experience {
  position: relative;
  overflow: hidden;
  color: #d5e6ff;
  background:
    radial-gradient(circle at 8% 20%, rgba(45, 124, 255, 0.25), transparent 28%),
    radial-gradient(circle at 91% 85%, rgba(255, 79, 135, 0.16), transparent 24%),
    var(--navy-950);
}

.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 0.7px, transparent 0.7px);
  background-size: 29px 29px;
  mask-image: linear-gradient(90deg, black, transparent 35%, transparent 65%, black);
}

.experience__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.experience h2,
.quote h2 {
  color: white;
}

.experience__content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: #b9cae4;
}

.experience__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 30px;
}

.experience__items div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  color: #e7f1ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  font-size: 0.83rem;
}

.experience__items span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold-500);
  background: rgba(255, 189, 36, 0.12);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 900;
}

.experience__visual {
  position: relative;
  padding: 36px 0;
}

.experience-card {
  position: relative;
  z-index: 2;
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
  transform: rotate(1.5deg);
}

.experience-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 800;
}

.status-dot {
  padding: 7px 10px;
  color: #087b46;
  background: var(--green-100);
  border-radius: 999px;
  font-size: 0.67rem;
}

.experience-card__timeline {
  padding-block: 8px;
}

.timeline-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-block: 16px;
}

.timeline-row + .timeline-row {
  border-top: 1px solid #edf2f7;
}

.timeline-row__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 13px;
  font-size: 0.75rem;
  font-weight: 900;
}

.timeline-row__number--pink {
  color: #b61c53;
  background: var(--pink-100);
}

.timeline-row__number--gold {
  color: #966100;
  background: var(--gold-100);
}

.timeline-row strong,
.timeline-row small {
  display: block;
}

.timeline-row strong {
  color: var(--navy-900);
  font-size: 0.88rem;
}

.timeline-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.experience-card__note {
  margin: 0;
  padding: 12px 13px;
  color: var(--muted);
  background: var(--surface-soft);
  border-radius: 11px;
  font-size: 0.7rem;
}

.experience__circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.experience__circle--one {
  inset: 1% -8% 0 0;
}

.experience__circle--two {
  inset: 9% 1% 7% -7%;
  border-style: dashed;
}

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

.process__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__grid::before {
  content: "";
  position: absolute;
  top: 64px;
  right: 16%;
  left: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #bdd1ec 0 8px, transparent 8px 15px);
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process-card__number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #d6e3f4;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.process-card h3 {
  margin-bottom: 11px;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(58px, 8vw, 120px);
}

.about__brand-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 55px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(52, 207, 255, 0.28), transparent 30%),
    radial-gradient(circle at 80% 75%, rgba(255, 189, 36, 0.22), transparent 30%),
    linear-gradient(145deg, var(--navy-950), #0b3672);
  border-radius: 44px 20px 44px 20px;
  box-shadow: var(--shadow-md);
}

.about__brand-card::before,
.about__brand-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.about__brand-card::before {
  width: 390px;
  height: 390px;
}

.about__brand-card::after {
  width: 290px;
  height: 290px;
  border-style: dashed;
}

.about__brand-card img {
  position: relative;
  z-index: 2;
  width: min(100%, 310px);
  filter: brightness(0) invert(1) drop-shadow(0 16px 18px rgba(0, 0, 0, 0.3));
}

.about__brand-card p {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: #c8dcf6;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about__brand-card p span {
  padding-inline: 5px;
  color: var(--gold-500);
}

.about__spark {
  position: absolute;
  z-index: 3;
  color: var(--gold-500);
  filter: drop-shadow(0 0 8px rgba(255, 189, 36, 0.7));
}

.about__spark--one {
  top: 17%;
  right: 14%;
  font-size: 2.2rem;
}

.about__spark--two {
  bottom: 18%;
  left: 15%;
  color: var(--cyan-400);
  font-size: 1.7rem;
}

.about__content > p {
  margin-bottom: 16px;
  color: var(--muted);
}

.about__highlights {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.about__highlights > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 17px;
  background: var(--surface-soft);
  border: 1px solid #e6eef8;
  border-radius: 15px;
}

.about__highlights > div > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-700);
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(5, 39, 83, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
}

.about__highlights p,
.about__highlights strong,
.about__highlights small {
  display: block;
  margin: 0;
}

.about__highlights strong {
  color: var(--navy-900);
  font-size: 0.88rem;
}

.about__highlights small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.faq {
  background: #fbfdff;
  border-top: 1px solid var(--line);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 110px);
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
}

.faq__intro > p {
  margin-bottom: 25px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__item h3 {
  margin: 0;
}

.accordion__item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.accordion__item button span {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: var(--blue-100);
  border-radius: 10px;
}

.accordion__item button span::before,
.accordion__item button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background: var(--blue-700);
  border-radius: 3px;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion__item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion__panel {
  padding: 0 58px 25px 0;
  color: var(--muted);
}

.accordion__panel p {
  margin: 0;
}

.quote {
  position: relative;
  overflow: hidden;
  color: #c8d9f2;
  background:
    radial-gradient(circle at 85% 5%, rgba(52, 207, 255, 0.17), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(255, 189, 36, 0.12), transparent 25%),
    linear-gradient(145deg, var(--navy-950), #082959);
}

.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 55%);
}

.quote__simple {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(36px, 6vw, 66px);
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.quote__simple > p {
  max-width: 790px;
  margin: 0 auto 32px;
  color: #c4d4e9;
}

.quote__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.quote__actions .button {
  text-align: center;
}

.site-footer {
  padding-top: 70px;
  color: #aebed6;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1.15fr;
  gap: 45px;
  padding-bottom: 55px;
}

.footer__brand img {
  width: 150px;
  height: auto;
  margin: -30px 0 -22px;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  max-width: 290px;
  margin: 0;
  font-size: 0.82rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer__links h2 {
  margin-bottom: 7px;
  color: white;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.footer__links a,
.footer__links span {
  font-size: 0.78rem;
}

.footer__links a:hover {
  color: white;
}

.footer__cta {
  padding: 21px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
}

.footer__cta p {
  margin-bottom: 16px;
  font-size: 0.8rem;
}

.footer__cta strong {
  color: white;
}

.footer__bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a:hover {
  color: white;
}

.floating-whatsapp {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px 12px 14px;
  color: white;
  background: #0bab5b;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  box-shadow: 0 15px 38px rgba(4, 67, 35, 0.32);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 44px rgba(4, 67, 35, 0.4);
}

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.js .reveal--delay,
.js .reveal--delay-1 { transition-delay: 100ms; }
.js .reveal--delay-2 { transition-delay: 180ms; }
.js .reveal--delay-3 { transition-delay: 260ms; }

@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .service-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer__cta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .footer__cta p {
    margin: 0;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: calc(34px + var(--header-height)) 0 auto;
    max-height: calc(100svh - 106px);
    display: grid;
    align-items: stretch;
    gap: 0;
    padding: 22px 20px 28px;
    overflow-y: auto;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(4, 25, 57, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: none;
  }

  .main-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
  }

  .brand {
    height: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .experience__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 740px;
    text-align: center;
    margin-inline: auto;
  }

  .eyebrow,
  .hero__trust {
    justify-content: center;
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .experience__grid {
    gap: 45px;
  }

  .experience__content {
    max-width: 720px;
  }

  .experience__visual {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .about__grid {
    grid-template-columns: minmax(300px, 0.75fr) 1fr;
    gap: 45px;
  }

  .about__brand-card {
    min-height: 420px;
    padding: 35px;
  }

}

@media (max-width: 740px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar a {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero__grid {
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    display: grid;
    justify-items: start;
    width: fit-content;
  }

  .hero__stage {
    width: 95%;
  }

  .hero__mini-card--top {
    right: -3%;
  }

  .hero__mini-card--bottom {
    left: -3%;
  }

  .hero__mini-card {
    padding: 10px 12px;
  }

  .proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid > div {
    justify-content: flex-start;
    padding-block: 12px;
  }

  .proof-strip__grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .services__grid,
  .process__grid,
  .about__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

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

  .service-card {
    padding: 28px 23px 24px;
  }

  .experience__items {
    grid-template-columns: 1fr;
  }

  .process__grid::before {
    display: none;
  }

  .process-card {
    padding: 28px;
  }

  .about__brand-card {
    min-height: 390px;
  }

  .faq__intro {
    position: static;
  }

  .quote__simple {
    padding: 34px 22px 44px;
  }

  .quote__actions {
    display: grid;
  }

  .quote__actions .button {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 25px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__cta {
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__bottom {
    padding-block: 19px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    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: 430px) {
  .eyebrow {
    width: 100%;
    justify-content: center;
    font-size: 0.7rem;
    text-align: center;
  }

  .hero__mini-card--top {
    top: 7%;
  }

  .hero__mini-card--bottom {
    bottom: 5%;
  }

  .mini-card__icon {
    width: 30px;
    height: 30px;
  }

  .hero__mini-card strong {
    font-size: 0.73rem;
  }

  .hero__mini-card small {
    font-size: 0.62rem;
  }

  .about__brand-card {
    min-height: 335px;
    border-radius: 30px 15px 30px 15px;
  }

  .about__brand-card p {
    font-size: 0.62rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand,
  .footer__cta {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
