:root {
  --blue: #0054a6;
  --blue-dark: #004080;
  --blue-light: #1a6bb8;
  --blue-soft: #e8f4fc;
  --green: #8dc63f;
  --green-dark: #6fa82e;
  --green-soft: #f4faeb;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --shadow: 0 10px 40px rgba(0, 84, 166, 0.08);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  color: var(--slate-900);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}

.text-blue { color: var(--blue); }
.text-green { color: var(--green-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
}

.btn--primary:hover:not(:disabled) {
  background: var(--blue-dark);
}

.btn--outline {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(0, 84, 166, 0.35);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.btn--green {
  background: var(--green);
  color: var(--white);
}

.btn--green:hover {
  background: var(--green-dark);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.15rem 0;
}

.brand__logo {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: min(11rem, 42vw);
  object-fit: contain;
}

@media (min-width: 640px) {
  .brand__logo {
    height: 3.5rem;
    max-width: none;
  }
}

.nav {
  display: none;
  gap: 1.5rem;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--blue);
}

.header__cta {
  margin-left: auto;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: var(--blue-soft);
  border-radius: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 1.25rem;
  margin: 0 auto;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.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);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1rem 1.25rem;
  border-top: 1px solid var(--slate-200);
  background: var(--white);
}

.mobile-nav a {
  font-weight: 600;
  padding: 0.35rem 0;
}

.mobile-nav[hidden] {
  display: none;
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .header__cta { margin-left: 0; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.pill--green {
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid rgba(141, 198, 63, 0.35);
}

.pill--blue {
  background: var(--blue-soft);
  color: var(--blue);
  border: 1px solid rgba(0, 84, 166, 0.2);
}

.pill__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  padding: 2rem 0 3rem;
  background: linear-gradient(165deg, var(--blue-soft) 0%, var(--white) 45%, var(--green-soft) 100%);
  overflow: hidden;
}

.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(0, 84, 166, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 84, 166, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, black 20%, transparent 75%);
}

.hero__decor::before,
.hero__decor::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero__decor::before {
  width:  min(420px, 70vw);
  height: min(420px, 70vw);
  top: -8%;
  left: -10%;
  background: rgba(0, 84, 166, 0.12);
}

.hero__decor::after {
  width: min(360px, 60vw);
  height: min(360px, 60vw);
  bottom: -5%;
  right: -8%;
  background: rgba(141, 198, 63, 0.14);
}

.hero__symbol {
  position: absolute;
  font-weight: 800;
  line-height: 1;
  user-select: none;
  animation: hero-float 6s ease-in-out infinite;
}

.hero__symbol--1 {
  top: 14%;
  right: 12%;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: rgba(0, 84, 166, 0.08);
  animation-delay: 0s;
}

.hero__symbol--2 {
  bottom: 32%;
  left: 8%;
  font-size: clamp(2rem, 5vw, 3rem);
  color: rgba(141, 198, 63, 0.12);
  animation-delay: 1.5s;
  display: none;
}

.hero__symbol--3 {
  top: 48%;
  right: 28%;
  font-size: 2rem;
  color: rgba(0, 84, 166, 0.06);
  animation-delay: 2.5s;
  display: none;
}

.hero__orb {
  position: absolute;
  border-radius: 1rem;
  border: 2px solid rgba(0, 84, 166, 0.08);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  animation: hero-float 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 3.5rem;
  height: 3.5rem;
  top: 18%;
  left: 6%;
  animation-delay: 0.5s;
}

.hero__orb--2 {
  width: 2.75rem;
  height: 2.75rem;
  bottom: 28%;
  right: 10%;
  border-color: rgba(141, 198, 63, 0.2);
  animation-delay: 2s;
}

.hero__orb--3 {
  width: 2rem;
  height: 2rem;
  top: 55%;
  left: 14%;
  display: none;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__main {
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(141, 198, 63, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-dark);
}

.hero__eyebrow .pill__dot {
  margin: 0;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 6.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--slate-900);
}

.hero__title-line {
  display: block;
}

.hero__title-accent {
  display: block;
  font-size: clamp(2.35rem, 7.5vw, 3.75rem);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 55%, var(--green-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0.1em 0;
}

.hero__lead {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
  color: var(--slate-600);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 10.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 0.85rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0, 84, 166, 0.2);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn--call {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.hero-btn--call:hover {
  box-shadow: 0 12px 28px rgba(0, 84, 166, 0.3);
}

.hero-btn--wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.hero-btn--wa:hover {
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.82rem;
  color: var(--slate-500);
  font-weight: 500;
}

.hero__trust li {
  position: relative;
  padding-left: 1rem;
}

.hero__trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Hero side panel */
.hero__panel {
  background: var(--white);
  border: 1px solid rgba(0, 84, 166, 0.1);
  border-radius: 1.35rem;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow:
    0 4px 6px rgba(0, 84, 166, 0.04),
    0 20px 50px rgba(0, 84, 166, 0.1);
}

.hero__panel-head {
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--slate-100);
}

.hero__panel-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.28rem 0.6rem;
  border-radius: 0.4rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__panel h2 {
  font-size: 1.2rem;
  margin: 0;
}

.hero__steps {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero__steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--slate-700);
}

.hero__step-num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.5rem;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.hero__panel-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 640px) {
  .hero__symbol--2,
  .hero__symbol--3 {
    display: block;
  }

  .hero__orb--3 {
    display: block;
  }
}

@media (min-width: 960px) {
  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .hero__wrap {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem 3rem;
  }

  .hero__main {
    text-align: left;
    align-self: center;
  }

  .hero__eyebrow {
    margin-left: 0;
  }

  .hero__lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__trust {
    justify-content: flex-start;
  }

}

/* Stats */
.stats {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  padding: 2rem 0;
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 1px 1px, white 1.5px, transparent 0);
  background-size: 20px 20px;
}

.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stats__value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
}

.stats__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--slate-100) 0%, var(--white) 100%);
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.section-head__line {
  display: block;
  width: 3rem;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  margin: 0 auto 1rem;
}

.section-head__line--green {
  background: var(--green);
}

.section-head p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate-600);
}

/* Benefits — What You Get in FREE Call */
.benefits__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefits__card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 24px rgba(0, 84, 166, 0.06);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.benefits__card:hover {
  border-color: rgba(0, 84, 166, 0.2);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.benefits__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.benefits__num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.04em;
}

.benefits__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--blue-soft);
  color: var(--blue);
}

.benefits__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--slate-900);
}

.benefits__card > p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--slate-600);
  flex: 1;
}

.benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--slate-100);
  padding-top: 0.85rem;
}

.benefits__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-700);
  line-height: 1.45;
}

.benefits__list li:last-child {
  margin-bottom: 0;
}

.benefits__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.benefits__cta {
  margin-top: 2.5rem;
}

.benefits__cta-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem 1.35rem;
  border-radius: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(0, 84, 166, 0.12);
  box-shadow:
    0 4px 6px rgba(0, 84, 166, 0.04),
    0 20px 48px rgba(0, 84, 166, 0.1);
  position: relative;
  overflow: hidden;
}

.benefits__cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.benefits__cta-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .benefits__cta-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2rem 2rem 2.25rem;
  }
}

.benefits__cta-text {
  position: relative;
  z-index: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .benefits__cta-text {
    text-align: left;
  }
}

.benefits__cta-badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(141, 198, 63, 0.35);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
}

.benefits__cta-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--slate-900);
}

.benefits__cta-sub {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--slate-600);
  max-width: 28rem;
}

@media (min-width: 768px) {
  .benefits__cta-sub {
    margin-right: 0;
  }
}

.benefits__cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 768px) {
  .benefits__cta-actions {
    width: auto;
    min-width: 15rem;
  }
}

.benefits__cta-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.15rem;
  border-radius: 0.85rem;
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefits__cta-btn:hover {
  transform: translateY(-2px);
}

.benefits__cta-btn-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.2);
}

.benefits__cta-btn-label {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}

.benefits__cta-btn-label strong {
  font-size: 0.95rem;
  color: var(--white);
}

.benefits__cta-btn-label span {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
}

.benefits__cta-btn--call {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 6px 20px rgba(0, 84, 166, 0.25);
}

.benefits__cta-btn--call:hover {
  box-shadow: 0 10px 28px rgba(0, 84, 166, 0.32);
}

.benefits__cta-btn--wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.benefits__cta-btn--wa:hover {
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

/* Why Choose Finnanno */
.why__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .why__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why__card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.why__card:hover {
  border-color: rgba(0, 84, 166, 0.2);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.why__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--blue-soft), var(--green-soft));
  color: var(--blue);
}

.why__icon svg {
  display: block;
}

.why__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--slate-900);
}

.why__card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate-600);
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

.cards--3 {
  grid-template-columns: 1fr;
}

.cards--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .cards--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.card:hover {
  border-color: rgba(0, 84, 166, 0.25);
  box-shadow: var(--shadow);
}

.card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.05rem;
}

.card p {
  font-size: 0.92rem;
  margin: 0;
}

.card--compact {
  padding: 1.25rem;
}

/* Schemes */
.scheme-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .scheme-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.scheme-block {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.scheme-block h3 {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background: linear-gradient(90deg, var(--blue), rgba(0, 84, 166, 0.9));
  color: var(--white);
}

.scheme-block table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.scheme-block th,
.scheme-block td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--slate-100);
}

.scheme-block th {
  font-weight: 600;
  color: var(--slate-800);
  width: 42%;
}

.scheme-block tr:nth-child(even) {
  background: rgba(241, 245, 249, 0.6);
}

.scheme-list {
  padding: 1rem;
}

.scheme-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.55rem;
  font-size: 0.875rem;
}

.scheme-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Clients — dark band + logo marquee */
.clients {
  position: relative;
  padding: 0;
  background: var(--blue-dark);
  overflow: hidden;
}

.clients__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--blue));
}

.clients__top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0 2rem;
  align-items: end;
}

@media (min-width: 768px) {
  .clients__top {
    grid-template-columns: 1fr auto;
    gap: 2rem;
    padding: 3rem 0 2.25rem;
  }
}

.clients__badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.75rem;
  border-radius: 0.35rem;
  background: rgba(141, 198, 63, 0.2);
  border: 1px solid rgba(141, 198, 63, 0.35);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
}

.clients__head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  color: var(--white);
  line-height: 1.2;
}

.clients__desc {
  margin: 0;
  max-width: 32rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.clients__metrics {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.clients__metric {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
  min-width: 5rem;
}

.clients__metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.clients__metric-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.clients__metric-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
}

.clients__marquee-wrap {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 2rem;
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.clients__marquee-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.client-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.client-marquee__track {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  padding: 0.35rem 0;
}

@media (min-width: 640px) {
  .client-marquee__track {
    gap: 1rem;
  }
}

.client-marquee__track--left {
  animation: client-marquee-left 50s linear infinite;
}

.client-marquee__track--right {
  animation: client-marquee-right 50s linear infinite;
}

.client-marquee:hover .client-marquee__track {
  animation-play-state: paused;
}

.client-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8.5rem;
  min-height: 7.5rem;
  padding: 0.85rem 0.65rem 0.75rem;
  border-radius: 1rem;
  background: var(--white);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .client-chip {
    width: 9.5rem;
    min-height: 8rem;
    padding: 1rem 0.75rem 0.85rem;
  }
}

.client-chip--blue,
.client-chip--green {
  border: none;
}

.client-chip:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  z-index: 2;
}

.client-chip__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, var(--blue-soft), var(--green-soft));
  padding: 0.45rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

@media (min-width: 640px) {
  .client-chip__logo {
    width: 4.25rem;
    height: 4.25rem;
  }
}

.client-chip:hover .client-chip__logo {
  transform: scale(1.06);
}

.client-chip__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-chip__name {
  margin: 0.55rem 0 0;
  min-height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--slate-800);
  letter-spacing: 0.01em;
}

@media (min-width: 640px) {
  .client-chip__name {
    font-size: 0.67rem;
  }
}

@keyframes client-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes client-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .client-marquee__track--left,
  .client-marquee__track--right {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .client-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .client-chip:hover {
    transform: none;
  }
}

/* Book — Call & WhatsApp */
.book {
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-soft) 100%);
}

.book__center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.book__center h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.book__lead {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.book__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 520px) {
  .book__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.book-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  font-weight: 600;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  flex: 1;
  max-width: 18rem;
}

.book-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.book-cta--call {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.book-cta--wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.book-cta__icon {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.book-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.book-cta__text strong {
  font-size: 1.05rem;
  color: var(--white);
}

.book-cta__text span {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.92;
}

/* Footer */
.footer {
  color: var(--white);
}

.footer__main {
  position: relative;
  background: var(--blue-dark);
  overflow: hidden;
}

.footer__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 84, 166, 0.35) 0%, transparent 45%);
  pointer-events: none;
}

.footer__main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
}

.footer__main .container {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .footer__main .container {
    padding-top: 2.75rem;
  }
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 960px) {
  .footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}

.footer__logo-wrap {
  flex-shrink: 0;
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  background: var(--white);
}

.footer__logo {
  display: block;
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .footer__logo {
    height: 3rem;
  }
}

.footer__brand-text {
  min-width: 0;
}

.footer__brand-name {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.footer__brand-desc {
  margin: 0;
  max-width: 22rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.footer__top-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 960px) {
  .footer__top-cta {
    width: auto;
    flex-shrink: 0;
  }
}

.footer__cta-btn {
  flex: 1;
  min-width: 8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer__cta-btn:hover {
  transform: translateY(-1px);
}

.footer__cta-btn--call {
  background: var(--green);
}

.footer__cta-btn--call:hover {
  background: var(--white);
  color: var(--blue);
}

.footer__cta-btn--wa {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer__cta-btn--wa:hover {
  background: #25d366;
  border-color: #25d366;
}

@media (min-width: 960px) {
  .footer__cta-btn {
    flex: none;
    min-width: 9rem;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.footer__heading {
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(141, 198, 63, 0.4);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.footer__links,
.footer__expertise {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li,
.footer__expertise li {
  margin-bottom: 0.55rem;
}

.footer__links a,
.footer__expertise a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.footer__links a:hover,
.footer__expertise a:hover {
  color: var(--green);
}

.footer__expertise a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__expertise a::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--green);
}

.footer__col--wide {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer__col--wide {
    grid-column: span 1;
  }
}

.footer__spacer {
  height: 4.5rem;
}

@media (min-width: 640px) {
  .footer__spacer {
    height: 1.5rem;
  }
}

.footer__bar {
  background: #003366;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
}

@media (min-width: 640px) {
  .footer__bar-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__copy {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .footer__copy {
    font-size: 0.75rem;
    text-align: left;
  }
}

.footer__bar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}

.footer__bar-nav a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer__bar-nav a:hover {
  color: var(--green);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.15s;
}
