:root {
  --bg: #f3f7ff;
  --surface: #ffffff;
  --surface-2: #eaf1ff;
  --ink: #131f34;
  --ink-soft: #4d5f80;
  --primary: #1f5fbf;
  --primary-strong: #17438d;
  --accent: #dd9f47;
  --border: rgba(31, 95, 191, 0.16);
  --shadow: 0 22px 45px rgba(23, 67, 141, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --ease: cubic-bezier(0.2, 0.75, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 18% 14%, rgba(31, 95, 191, 0.07), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(221, 159, 71, 0.08), transparent 24%);
}

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

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

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(2px);
}

.ambient-top {
  top: -210px;
  left: -200px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 95, 191, 0.24) 0%, rgba(31, 95, 191, 0) 70%);
}

.ambient-bottom {
  right: -180px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 159, 71, 0.22) 0%, rgba(221, 159, 71, 0) 72%);
}

.container {
  width: min(var(--max-width), calc(100% - 2.25rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 7vw, 6.2rem) 0;
}

.section-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(234, 241, 255, 0.65));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: start;
  width: fit-content;
  max-width: max-content;
  margin: 0 0 1rem;
  padding: 0.36rem 0.9rem;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(31, 95, 191, 0.1);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.7vw, 3.8rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.65rem, 3.3vw, 2.65rem);
  max-width: 20ch;
}

h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 251, 255, 0.82);
  border-bottom: 1px solid rgba(31, 95, 191, 0.08);
  backdrop-filter: blur(10px);
  transition: border-color 280ms var(--ease), box-shadow 280ms var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 10px 28px rgba(19, 31, 52, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 124px;
  gap: 1.4rem;
  transition: min-height 280ms var(--ease);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.36rem 0.7rem 0.36rem 0.36rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 95, 191, 0.1);
  box-shadow: 0 14px 34px rgba(23, 67, 141, 0.08);
  flex-shrink: 0;
}

.brand img {
  width: clamp(96px, 10vw, 122px);
  height: clamp(96px, 10vw, 122px);
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(31, 95, 191, 0.22);
  transition: width 280ms var(--ease), height 280ms var(--ease), border-radius 280ms var(--ease);
}

.brand span {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  font-weight: 700;
  transition: font-size 280ms var(--ease);
}

.site-header.is-scrolled .header-inner {
  min-height: 86px;
}

.site-header.is-scrolled .brand img {
  width: clamp(60px, 5.4vw, 76px);
  height: clamp(60px, 5.4vw, 76px);
  border-radius: 15px;
}

.site-header.is-scrolled .brand span {
  font-size: clamp(0.92rem, 1.4vw, 1.03rem);
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 95, 191, 0.1);
  box-shadow: 0 12px 28px rgba(23, 67, 141, 0.06);
}

.main-nav a {
  position: relative;
  color: #233553;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.58rem 0.86rem;
  border-radius: 999px;
}

.main-nav a:last-child {
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  box-shadow: 0 12px 24px rgba(23, 67, 141, 0.22);
}

.main-nav a:last-child::after {
  display: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

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

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero-copy {
  display: grid;
  gap: 1.4rem;
  max-width: 640px;
}

.hero-description {
  max-width: 62ch;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.86rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  color: #274c8f;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(31, 95, 191, 0.08);
  border: 1px solid rgba(31, 95, 191, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.28rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), background-color 260ms var(--ease);
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 12px 24px rgba(23, 67, 141, 0.26);
}

.btn-outline {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--primary-strong);
}

.hero-stats {
  margin-top: 0.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 1.12rem 1rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 241, 255, 0.78));
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(23, 67, 141, 0.08);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.78;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--primary-strong);
  font-family: "Outfit", "Segoe UI", sans-serif;
}

.stat-card span {
  font-size: 0.83rem;
  color: #435a81;
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
}

.hero-media img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  object-fit: cover;
  object-position: center 24%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 18px -16px 18px;
  height: 24px;
  background: radial-gradient(circle, rgba(23, 67, 141, 0.28), rgba(23, 67, 141, 0));
  filter: blur(8px);
  z-index: -1;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: stretch;
}

.about-image {
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 26px 54px rgba(23, 67, 141, 0.14);
  min-height: 0;
  object-fit: cover;
}

.about-copy {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.about-copy h2 {
  max-width: 12ch;
}

.about-copy > p {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.72;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  height: 100%;
  padding: 1.12rem 1.08rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 255, 0.92));
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(23, 67, 141, 0.07);
}

.info-card-head {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  margin-bottom: 0.72rem;
}

.info-card-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 95, 191, 0.1);
  color: var(--primary);
  border: 1px solid rgba(31, 95, 191, 0.18);
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.82rem;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 0.66rem;
  min-height: 3rem;
  padding: 0.78rem 0.88rem;
  border-radius: 14px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1c448a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 95, 191, 0.16);
  box-shadow: 0 14px 32px rgba(23, 67, 141, 0.05);
}

.about-value-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 95, 191, 0.1);
  color: var(--primary);
  border: 1px solid rgba(31, 95, 191, 0.18);
  flex-shrink: 0;
}

.about-value-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 1.22rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(240, 245, 255, 0.88));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(23, 67, 141, 0.06);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -52% auto auto -24%;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(221, 159, 71, 0.22) 0%, rgba(221, 159, 71, 0) 72%);
  pointer-events: none;
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  margin-bottom: 0.52rem;
}

.service-icon {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 95, 191, 0.1);
  color: var(--primary);
  border: 1px solid rgba(31, 95, 191, 0.25);
  flex-shrink: 0;
}

.service-icon svg {
  width: 1.08rem;
  height: 1.08rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 0;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.66;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 95, 191, 0.35);
  box-shadow: 0 22px 42px rgba(23, 67, 141, 0.12);
}

.section-intro {
  margin-top: 1rem;
  max-width: 70ch;
  font-size: 0.97rem;
}

.line-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.line-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 246, 255, 0.9));
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.08rem;
  box-shadow: 0 16px 36px rgba(23, 67, 141, 0.06);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.line-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), rgba(221, 159, 71, 0.75));
  opacity: 0.75;
}

.line-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.line-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 95, 191, 0.1);
  color: var(--primary);
  border: 1px solid rgba(31, 95, 191, 0.25);
  flex-shrink: 0;
}

.line-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-card h3 {
  margin-bottom: 0;
}

.line-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.line-card li {
  position: relative;
  padding-left: 1rem;
  color: #435a81;
  font-size: 0.91rem;
  line-height: 1.55;
}

.line-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

.line-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 95, 191, 0.34);
  box-shadow: 0 22px 42px rgba(23, 67, 141, 0.12);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: clamp(1.3rem, 3vw, 2.4rem);
  align-items: start;
}

.faq-copy {
  display: grid;
  align-content: start;
}

.faq-copy .section-intro {
  margin-top: 0.8rem;
}

.faq-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.faq-media {
  height: 100%;
}

.faq-media img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 26px 54px rgba(23, 67, 141, 0.14);
  object-fit: cover;
  object-position: center;
}

.faq-item {
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 246, 255, 0.88));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.08rem 1.04rem;
  box-shadow: 0 16px 36px rgba(23, 67, 141, 0.06);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.faq-head {
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
  margin-bottom: 0.5rem;
}

.faq-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 95, 191, 0.1);
  color: var(--primary);
  border: 1px solid rgba(31, 95, 191, 0.24);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 1.02rem;
  height: 1.02rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-item h3 {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.faq-item p {
  font-size: 0.94rem;
  line-height: 1.62;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 95, 191, 0.32);
  box-shadow: 0 22px 42px rgba(23, 67, 141, 0.1);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem);
  align-items: start;
}

.process-copy {
  display: grid;
  gap: 1.35rem;
  padding-right: 0;
}

.process-copy h2 {
  max-width: 16ch;
}

.process-copy p {
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.62;
}

.process-copy img {
  margin-top: 0.55rem;
  width: 100%;
  height: clamp(280px, 32vw, 430px);
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  object-fit: cover;
  object-position: center center;
}

.process-steps {
  margin: 0;
  margin-top: clamp(6rem, 9vw, 7.6rem);
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.82rem;
  align-content: start;
  width: 100%;
}

.process-steps li {
  padding: 1rem 1.08rem 1.02rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 246, 255, 0.9));
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(23, 67, 141, 0.06);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.process-step-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  margin-bottom: 0.2rem;
}

.process-step-number {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.process-step-icon {
  width: 1.58rem;
  height: 1.58rem;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 95, 191, 0.1);
  color: var(--primary);
  border: 1px solid rgba(31, 95, 191, 0.24);
}

.process-step-icon svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-steps h3 {
  margin-bottom: 0.38rem;
}

.process-steps p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.process-steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 95, 191, 0.3);
  box-shadow: 0 22px 40px rgba(23, 67, 141, 0.1);
}

.section-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, #1f5fbf, #17438d 72%);
}

.section-cta::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.section-cta::after {
  content: "";
  position: absolute;
  inset: -120px -90px auto auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 228, 188, 0.18), rgba(255, 228, 188, 0));
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: start;
}

.section-cta .eyebrow {
  color: #f7cf95;
  background: rgba(255, 255, 255, 0.12);
}

.section-cta h2,
.section-cta p {
  color: rgba(247, 251, 251, 0.96);
}

.section-cta p {
  margin-top: 0.8rem;
}

.contact-quick {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
}

.btn-whatsapp-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  padding: 1.02rem 1.56rem;
  min-width: 290px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  background: linear-gradient(120deg, #25d366, #1ba84f);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 30px rgba(15, 48, 28, 0.35);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.btn-whatsapp-cta::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -12%;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.btn-whatsapp-cta svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.btn-whatsapp-cta:hover,
.btn-whatsapp-cta:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 34px rgba(15, 48, 28, 0.42);
}

.site-footer {
  background: #0b1515;
  padding: 1.05rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}

.footer-inner p {
  color: rgba(225, 238, 238, 0.78);
  font-size: 0.88rem;
}

.footer-inner a {
  color: #ffe4bc;
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 70;
  height: 58px;
  padding: 0 1rem 0 0.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(120deg, #25d366, #1ba84f);
  box-shadow: 0 14px 26px rgba(27, 168, 79, 0.36);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  animation: whatsapp-pulse 1.85s ease-out infinite;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 28px rgba(27, 168, 79, 0.45);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 14px 26px rgba(27, 168, 79, 0.36), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 14px 26px rgba(27, 168, 79, 0.36), 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 14px 26px rgba(27, 168, 79, 0.36), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
  transition-delay: var(--delay, 0s);
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .process-layout,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    justify-self: center;
    width: min(100%, 640px);
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .about-cards,
  .about-values,
  .service-grid,
  .line-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-image {
    height: auto;
  }

  .about-image img {
    height: auto;
  }

  .process-steps {
    margin-top: 0;
  }

  .faq-media {
    justify-self: center;
    width: min(100%, 620px);
    height: auto;
  }

  .faq-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 104px;
  }

  .brand img {
    width: 82px;
    height: 82px;
    border-radius: 16px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 78px;
  }

  .site-header.is-scrolled .brand img {
    width: 62px;
    height: 62px;
    border-radius: 14px;
  }

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

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1.1rem;
    left: 1.1rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    gap: 0.4rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 250ms var(--ease), transform 250ms var(--ease);
  }

  .main-nav a {
    padding: 0.5rem;
    border-radius: 10px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(31, 95, 191, 0.1);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-stats,
  .about-cards,
  .about-values,
  .service-grid,
  .line-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
    max-height: 420px;
    object-position: center 18%;
  }

  .about-image img {
    min-height: 300px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-copy {
    padding-right: 0;
    gap: 1.05rem;
  }

  .process-steps {
    gap: 0.8rem;
  }

  .process-steps li {
    padding: 0.98rem 0.95rem 1rem;
  }

  .brand {
    padding-right: 0.55rem;
  }

  .hero-proof {
    gap: 0.45rem;
  }

  .hero-proof span {
    min-height: 32px;
    font-size: 0.76rem;
  }

  .process-step-meta {
    margin-bottom: 0.14rem;
  }

  .process-step-number {
    font-size: 1.1rem;
  }

  .process-step-icon {
    width: 1.42rem;
    height: 1.42rem;
  }

  .process-step-icon svg {
    width: 0.82rem;
    height: 0.82rem;
  }

  .contact-quick {
    justify-content: flex-start;
  }

  .btn-whatsapp-cta {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    height: 54px;
    padding-inline: 0.95rem;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
