:root {
  --navy: #0c2340;
  --navy-mid: #163354;
  --navy-dark: #091929;
  --teal: #0a8f82;
  --teal-lt: #0db5a5;
  --teal-xlt: #e6f7f6;
  --slate: #445566;
  --slate-lt: #7a8ea0;
  --off: #f4f6f9;
  --off-dark: #eef1f5;
  --white: #ffffff;
  --ink: #111827;
  --ink-soft: #374151;
  --border: rgba(12, 35, 64, 0.08);
  --fd: "DM Serif Display", Georgia, serif;
  --fb: "DM Sans", system-ui, sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --sh: 0 2px 20px rgba(12, 35, 64, 0.07), 0 1px 4px rgba(12, 35, 64, 0.04);
  --sh-md: 0 6px 30px rgba(12, 35, 64, 0.1), 0 2px 8px rgba(12, 35, 64, 0.05);
  --sh-lg:
    0 16px 48px rgba(12, 35, 64, 0.13), 0 4px 12px rgba(12, 35, 64, 0.06);
  --sh-hover:
    0 20px 60px rgba(12, 35, 64, 0.16), 0 4px 16px rgba(12, 35, 64, 0.08);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fb);
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
button {
  font-family: var(--fb);
}
.wrap {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}
.wrap-sm {
  width: min(780px, 100% - 2.5rem);
  margin-inline: auto;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}
h1,
h2,
h3,
h4 {
  font-family: var(--fd);
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--navy);
}
h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  color: var(--navy);
}
h3 {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
}
h4 {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
}
p {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.sec-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.sec-head .eyebrow {
  margin-bottom: 0.7rem;
}
.sec-head h2 {
  margin-bottom: 0.9rem;
}
.rule {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  margin: 0.8rem auto 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: all 0.22s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(12, 35, 64, 0.22);
}
.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover {
  background: var(--teal-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 143, 130, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(12, 35, 64, 0.2);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(12, 35, 64, 0.03);
}
.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off);
  transform: translateY(-2px);
}
.btn-ghost-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost-white:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
}
.tag-navy {
  color: var(--navy);
  background: rgba(12, 35, 64, 0.07);
}
.tag-teal {
  color: var(--teal);
  background: rgba(10, 143, 130, 0.1);
}
.tag-green {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}
.logo-footer-container {
  display: flex;
  align-items: center;
}
.logo-footer {
  width: 120px;
  height: 120px;
}
.logo img {
  max-width: 100%;
  height: 100%;
}
.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.logo-footer-container .logo-name {
  font-family: var(--fd);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-name {
  font-family: var(--fd);
  font-size: 1.45rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-name span {
  color: var(--teal);
}
.nav-links {
  display: flex;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-sm);
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: rgba(12, 35, 64, 0.05);
}
.nav-links .has-drop {
  position: relative;
}
.nav-links .has-drop > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.nav-links .has-drop:hover .nav-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-drop a {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.865rem;
  color: var(--slate) !important;
  background: transparent !important;
}
.nav-drop a:hover {
  background: var(--off) !important;
  color: var(--navy) !important;
}
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-sm);
  font-size: 0.865rem;
  font-weight: 500;
  margin-left: 0.5rem;
  transition:
    background 0.2s,
    box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--navy-mid) !important;
  box-shadow: 0 4px 16px rgba(12, 35, 64, 0.2);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 199;
  padding: 1.5rem 1.25rem;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate);
  border-bottom: 1px solid var(--off);
}
.nav-mobile a:hover {
  color: var(--navy);
  background: var(--off);
}
.mob-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-lt);
  padding: 1rem 1rem 0.4rem;
  display: block;
}
.mob-cta {
  margin-top: 1rem !important;
  background: var(--navy) !important;
  color: #fff !important;
  text-align: center;
  border-radius: var(--r-sm) !important;
}

/* FOOTER */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}
.footer-brand .logo-name {
  color: #fff;
}
.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  max-width: 260px;
}
.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.footer-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  border: 1px solid rgba(10, 143, 130, 0.35);
  background: rgba(10, 143, 130, 0.12);
  color: var(--teal-lt);
}
.footer-col h4 {
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.soon {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  background: rgba(10, 143, 130, 0.2);
  color: var(--teal-lt);
  margin-left: 6px;
  vertical-align: middle;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.82rem;
}
.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  background: var(--navy-dark);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--sh-lg);
  z-index: 500;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: slideUp 0.4s ease both;
}
.cookie-banner.hidden {
  display: none;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cookie-banner h4 {
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cookie-accept {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover {
  background: var(--teal-lt);
}
.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-sm);
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-decline:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.35);
}
.cookie-more {
  font-size: 0.78rem;
  color: var(--teal-lt);
  margin-top: 0.75rem;
  display: inline-block;
}
.cookie-more:hover {
  text-decoration: underline;
}

/* PAGE HERO */
.page-hero {
  background: var(--navy);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 100% at 50% 0%,
    black 40%,
    transparent 100%
  );
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(10, 143, 130, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow {
  color: var(--teal-lt);
  margin-bottom: 0.85rem;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 640px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.75;
}
.page-hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}
.breadcrumb strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* SECTIONS */
.sec {
  padding: 6rem 0;
}
.sec-off {
  background: var(--off);
}
.sec-navy {
  background: var(--navy);
}
.sec-sm {
  padding: 4rem 0;
}

/* HOME HERO */
.home-hero {
  padding: 7rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  min-height: auto;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 35, 64, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 35, 64, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 100% at 50% 0%,
    black 50%,
    transparent 100%
  );
}
.home-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(10, 143, 130, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.home-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 143, 130, 0.08);
  border: 1px solid rgba(10, 143, 130, 0.2);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.75rem;
}
.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.hero-pill span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.04em;
}
.home-hero h1 {
  margin-bottom: 1.4rem;
}
.home-hero h1 em {
  font-style: italic;
  color: var(--teal);
}
.home-hero-sub {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-trust-label {
  font-size: 0.78rem;
  color: var(--slate-lt);
  font-weight: 500;
}
.trust-items {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--slate);
}
.hero-visual {
  position: relative;
  max-height: 560px;
  overflow: hidden;
}
.hero-card-main {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-lg);
  margin-bottom: 1rem;
}
.card-chip {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.card-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
}
.card-val {
  font-family: var(--fd);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
  margin-top: 1.25rem;
}
.card-val-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.3rem;
}
.bar-row {
  display: flex;
  gap: 4px;
  margin-top: 1.25rem;
}
.bar {
  height: 4px;
  border-radius: 2px;
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
}
.bar.on {
  background: var(--teal-lt);
}
.hero-card-sec {
  background: var(--off);
  border-radius: var(--r-md);
  padding: 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.sec-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(10, 143, 130, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sec-card-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.sec-card-sub {
  font-size: 0.78rem;
  color: var(--slate-lt);
  margin-top: 0.15rem;
}
.check-list {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--slate);
}
.check-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  background: rgba(10, 143, 130, 0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7l3 3 6-6' stroke='%230A8F82' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/10px no-repeat;
}

/* STATS */
.stats-band {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-val {
  font-family: var(--fd);
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}
.stat-val span {
  color: var(--teal);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--slate-lt);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* PROBLEMS */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-card {
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--sh);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.problem-card:hover {
  box-shadow: var(--sh-hover);
  transform: translateY(-3px);
}
.problem-number {
  font-family: var(--fd);
  font-size: 2.5rem;
  font-style: italic;
  color: rgba(10, 143, 130, 0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.problem-card p {
  font-size: 0.9rem;
}

/* SERVICES SPLIT */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh);
}
.service-half {
  background: #fff;
  padding: 3.5rem;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.service-half:hover {
  background: #fafbfc;
}
.service-half-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.icon-wrap-navy {
  background: rgba(12, 35, 64, 0.07);
}
.icon-wrap-teal {
  background: rgba(10, 143, 130, 0.1);
}
.service-half h3 {
  font-size: 1.65rem;
  margin-bottom: 0.85rem;
}
.service-half > p {
  margin-bottom: 1.75rem;
  flex: 1;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate);
}
.feat-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.feat-icon-navy {
  background: rgba(12, 35, 64, 0.07);
}
.feat-icon-teal {
  background: rgba(10, 143, 130, 0.1);
}

/* PROMISE */
.promise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.promise-content .eyebrow {
  color: var(--teal-lt);
}
.promise-content h2 {
  color: #fff;
  margin: 0.75rem 0 1.25rem;
}
.promise-content > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s;
  margin-bottom: 0.9rem;
}
.pillar:hover {
  background: rgba(255, 255, 255, 0.06);
}
.pillar-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--r-sm);
  background: rgba(10, 143, 130, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar h4 {
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}
.pillar p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}
.promise-diagram {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 2.25rem;
}
.diag-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
}
.tl-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  position: relative;
}
.tl-step:last-child {
  padding-bottom: 0;
}
.tl-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.tl-node {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 1;
}
.tl-node-active {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(10, 143, 130, 0.2);
}
.tl-node-done {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
}
.tl-content h5 {
  font-family: var(--fb);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
}
.tl-content p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.45;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: var(--sh-md);
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-num {
  font-family: var(--fd);
  font-style: italic;
  font-size: 1rem;
  color: var(--teal);
  min-width: 1.5rem;
  margin-top: 1px;
}
.faq-text {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
  line-height: 1.4;
}
.faq-toggle {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.3s;
  margin-top: 1px;
}
.faq-item.open .faq-toggle {
  background: var(--navy);
  transform: rotate(45deg);
}
.faq-item.open .faq-toggle svg path {
  stroke: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
  padding: 0 1.5rem 0 calc(1.5rem + 2.5rem);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.4rem;
}
.faq-answer p {
  font-size: 0.9375rem;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  position: relative;
}
.process-step:last-child {
  padding-bottom: 0;
}
.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 58px;
  bottom: 0;
  width: 2px;
  background: var(--off-dark);
}
.process-node {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--teal);
  box-shadow: var(--sh);
  z-index: 1;
}
.process-body {
  padding-top: 0.85rem;
}
.process-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.process-body p {
  font-size: 0.9375rem;
}
.process-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

/* TOOLS GRID */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 1rem;
}
.tool-card {
  padding: 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--sh);
  transition: box-shadow 0.2s;
}
.tool-card:hover {
  box-shadow: var(--sh-md);
}
.tool-card h4 {
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.tool-card p {
  font-size: 0.8rem;
}

/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.portfolio-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.portfolio-card:hover {
  box-shadow: var(--sh-hover);
  transform: translateY(-4px);
}
.portfolio-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}
.portfolio-body {
  padding: 1.5rem;
  background: #fff;
}
.portfolio-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin-top: 0.75rem;
}
.portfolio-body p {
  font-size: 0.875rem;
}
.portfolio-results {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.port-result-val {
  font-family: var(--fd);
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1;
}
.port-result-label {
  font-size: 0.72rem;
  color: var(--slate-lt);
  margin-top: 0.2rem;
}

/* PRICING */
.pricing-tabs {
  display: flex;
  justify-content: center;
  background: var(--off);
  border-radius: 100px;
  padding: 4px;
  margin: 0 auto 3.5rem;
  width: fit-content;
}
.pricing-tab {
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-family: var(--fb);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-lt);
  cursor: pointer;
  transition: all 0.2s;
}
.pricing-tab.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(12, 35, 64, 0.12);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.pricing-card {
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--sh);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow:
    0 0 0 1px var(--teal),
    var(--sh-md);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 0.6rem;
}
.pricing-name {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-family: var(--fd);
}
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 0.35rem;
}
.pricing-amount {
  font-family: var(--fd);
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
}
.pricing-currency {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 0.4rem;
}
.pricing-note {
  font-size: 0.82rem;
  color: var(--slate-lt);
  margin-bottom: 1.75rem;
}
.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.pricing-feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--slate);
}
.pricing-feat::before {
  content: "";
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(10, 143, 130, 0.1)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M3 9l4 4 8-8' stroke='%230A8F82' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/12px no-repeat;
  margin-top: 1px;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh);
  background: #fff;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.blog-card:hover {
  box-shadow: var(--sh-hover);
  transform: translateY(-3px);
}
.blog-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-body {
  padding: 1.5rem;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.blog-date {
  font-size: 0.78rem;
  color: var(--slate-lt);
}
.blog-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.blog-body p {
  font-size: 0.875rem;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 0.85rem;
  transition: gap 0.2s;
}
.blog-read:hover {
  gap: 9px;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--r-sm);
  background: rgba(10, 143, 130, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail h4 {
  font-family: var(--fb);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.contact-detail p {
  font-size: 0.875rem;
}
.contact-form-wrap {
  background: var(--off);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
  letter-spacing: 0.03em;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid rgba(12, 35, 64, 0.14);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  font-family: var(--fb);
  font-size: 0.9375rem;
  color: var(--ink);
  transition:
    border 0.2s,
    box-shadow 0.2s;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10, 143, 130, 0.12);
}
textarea {
  resize: vertical;
  min-height: 130px;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23445566' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.form-check input {
  margin-top: 3px;
  accent-color: var(--teal);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--slate);
  cursor: pointer;
}
.form-check a {
  color: var(--teal);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .success-icon {
  width: 56px;
  height: 56px;
  background: rgba(10, 143, 130, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* CTA BANDS */
.cta-band {
  padding: 6rem 0;
  text-align: center;
}
.cta-band .eyebrow {
  margin-bottom: 0.9rem;
}
.cta-band h2 {
  margin-bottom: 1rem;
}
.cta-band > .wrap > p {
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-band-dark {
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-dark::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(10, 143, 130, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-band-dark .eyebrow {
  color: var(--teal-lt);
  margin-bottom: 0.9rem;
}
.cta-band-dark h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-band-dark > .wrap > p {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.6);
}

/* LEGAL */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}
.legal-content h1 {
  margin-bottom: 0.5rem;
}
.legal-meta {
  font-size: 0.85rem;
  color: var(--slate-lt);
  margin-bottom: 3rem;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.85rem;
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.6rem;
}
.legal-content p {
  margin-bottom: 1rem;
}
.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}
.legal-content ul li {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.legal-content a {
  color: var(--teal);
}
.legal-content a:hover {
  text-decoration: underline;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.875rem;
}
.legal-table th {
  background: var(--off);
  font-weight: 700;
  color: var(--navy);
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.legal-table td {
  color: var(--slate);
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.legal-table tr:last-child td {
  border-bottom: none;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  padding: 1.5rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: #fff;
}
.value-card h4 {
  font-family: var(--fb);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  margin-top: 0.85rem;
}
.value-card p {
  font-size: 0.875rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .problems-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  h1 {
    font-size: 2.3rem;
  }
  h2 {
    font-size: 1.85rem;
  }
  .home-hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .services-split {
    grid-template-columns: 1fr;
  }
  .service-half {
    padding: 2.5rem 1.75rem;
  }
  .promise-layout {
    grid-template-columns: 1fr;
  }
  .promise-diagram {
    display: none;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .problems-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sec {
    padding: 4rem 0;
  }
  .page-hero {
    padding: 4rem 0 3rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NAV DROPDOWN — FIXED (bridge + 2-col layout)
═══════════════════════════════════════════════════════════════ */
.nav-links .has-drop > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.drop-arrow {
  transition: transform 0.25s;
}
.has-drop:hover .drop-arrow,
.has-drop.open .drop-arrow {
  transform: rotate(180deg);
}
.nav-drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 580px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 1.25rem;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  z-index: 300;
}
/* Bridge: invisible area between nav link and dropdown */
.nav-drop::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.has-drop:hover .nav-drop,
.has-drop:focus-within .nav-drop,
.has-drop.open .nav-drop {
  display: grid;
}
.nav-drop-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--slate-lt);
  padding: 0.15rem 0.65rem 0.65rem;
  display: block;
}
.nav-drop-label a,
.mob-label a {
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
  color: inherit !important;
  padding: 0 !important;
  background: transparent !important;
  display: block !important;
  border: none !important;
}

.nav-drop-label a:hover,
.mob-label a:hover {
  color: var(--teal) !important; 
  background: transparent !important;
}
.nav-drop a.active {
  color: var(--teal) !important;
  font-weight: 600;
}
.nav-drop-col {
  display: flex;
  flex-direction: column;
}
.active-parent > a {
  color: var(--navy) !important;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG — Fixed styles
═══════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--sh);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--sh-hover);
  transform: translateY(-4px);
}
.blog-thumb {
  height: 190px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-thumb-cat {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
.blog-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-body h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-family: var(--fd);
  font-weight: 400;
}
.blog-date {
  font-size: 0.72rem;
  font-family: var(--fb);
  color: var(--slate-lt);
  font-weight: 400;
  line-height: 1.3;
}
.blog-body p {
  font-size: 0.875rem;
  flex: 1;
}
.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 1rem;
  transition: gap 0.2s;
  width: fit-content;
}
.blog-read:hover {
  gap: 9px;
}
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  background: #fff;
}
.blog-featured-thumb {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.blog-featured-body {
  padding: 2.5rem 2rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-body h2 {
  font-size: 1.65rem;
  margin: 0.75rem 0 1rem;
}
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-sidebar-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--sh);
  transition: box-shadow 0.2s;
}
.blog-sidebar-card:hover {
  box-shadow: var(--sh-md);
}
.blog-sidebar-thumb {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.blog-sidebar-card h4 {
  font-size: 0.9rem;
  line-height: 1.35;
  margin-bottom: 0.3rem;
}
.blog-sidebar-card .blog-date {
  font-size: 0.75rem;
}
.blog-tag-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.blog-tag-btn {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.2s;
}
.blog-tag-btn:hover,
.blog-tag-btn.active {
  border-color: var(--teal);
  background: rgba(10, 143, 130, 0.07);
  color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════════
   CHATBOT WIDGET
═══════════════════════════════════════════════════════════════ */
.chatbot-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 600;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 8px 24px rgba(10, 143, 130, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.chatbot-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(10, 143, 130, 0.5);
}
.chatbot-bubble.open {
  background: var(--navy);
}
.chatbot-panel {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 599;
  width: 360px;
  max-height: 520px;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(16px);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.chatbot-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chatbot-header {
  background: var(--navy);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 143, 130, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(10, 143, 130, 0.4);
  flex-shrink: 0;
}
.chatbot-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.chatbot-status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}
.chatbot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
}
.chatbot-close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scroll-behavior: smooth;
}
.chat-msg {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}
.chat-msg.bot {
  flex-direction: row;
}
.chat-msg.user {
  flex-direction: row-reverse;
}
.chat-bubble {
  max-width: 80%;
  padding: 0.65rem 0.9rem;
  border-radius: 18px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble {
  background: var(--off);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: var(--navy);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-typing .chat-bubble {
  display: flex;
  gap: 4px;
  padding: 0.75rem 0.9rem;
}
.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--slate-lt);
  animation: typing 0.9s infinite;
}
.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-6px);
  }
}
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.25rem 0;
}
.quick-reply {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(10, 143, 130, 0.07);
  border: 1.5px solid rgba(10, 143, 130, 0.2);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.quick-reply:hover {
  background: rgba(10, 143, 130, 0.12);
  border-color: var(--teal);
}
.chatbot-input-row {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  background: #fff;
}
.chatbot-input-row input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border 0.2s;
  font-family: var(--fb);
}
.chatbot-input-row input:focus {
  border-color: var(--teal);
}
#chatbotSend {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#chatbotSend:hover {
  background: var(--teal-lt);
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-STEP FORM
═══════════════════════════════════════════════════════════════ */
.msf-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--sh);
}
.msf-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.msf-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s;
  background: var(--off);
  color: var(--slate-lt);
  border: 2px solid var(--border);
}
.msf-step-dot.done {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.msf-step-dot.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.msf-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.msf-step-line.done {
  background: var(--teal);
}
.msf-screen {
  display: none;
  animation: fadeSlide 0.35s ease;
}
.msf-screen.active {
  display: block;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.msf-title {
  font-family: var(--fd);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.msf-subtitle {
  font-size: 0.9rem;
  color: var(--slate-lt);
  margin-bottom: 2rem;
}
.msf-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.msf-option {
  padding: 1.25rem;
  border-radius: var(--r-md);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  background: #fff;
}
.msf-option:hover {
  border-color: var(--teal);
  background: rgba(10, 143, 130, 0.04);
}
.msf-option.selected {
  border-color: var(--navy);
  background: rgba(12, 35, 64, 0.04);
}
.msf-option-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.msf-option-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.msf-option-desc {
  font-size: 0.78rem;
  color: var(--slate-lt);
  margin-top: 0.2rem;
}
.msf-options-wide {
  grid-template-columns: 1fr;
}
.msf-options-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.msf-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.msf-back {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--slate);
  font-family: var(--fb);
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.msf-back:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.msf-next,
.msf-submit {
  background: var(--navy);
  color: #fff;
  border: none;
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.msf-next:hover,
.msf-submit:hover {
  background: var(--navy-mid);
}
.msf-submit {
  background: var(--teal);
}
.msf-submit:hover {
  background: var(--teal-lt);
}
.msf-disqualified {
  text-align: center;
  padding: 2rem;
}
.msf-disqualified h3 {
  margin: 1rem 0 0.75rem;
}
.budget-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.budget-pill {
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  border: 2px solid var(--border);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: all 0.2s;
  background: #fff;
}
.budget-pill:hover,
.budget-pill.selected {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(12, 35, 64, 0.04);
}
.msf-textarea {
  width: 100%;
  border: 1.5px solid rgba(12, 35, 64, 0.14);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  font-family: var(--fb);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: border 0.2s;
  outline: none;
  resize: vertical;
  min-height: 100px;
}
.msf-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10, 143, 130, 0.12);
}
.msf-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.75rem 0;
}
.msf-checkbox input {
  margin-top: 3px;
  accent-color: var(--teal);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.msf-checkbox label {
  font-size: 0.82rem;
  color: var(--slate);
  cursor: pointer;
}
.msf-success {
  text-align: center;
  padding: 2.5rem 2rem;
}
.msf-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(10, 143, 130, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.msf-check-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.msf-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.msf-check-item:hover {
  border-color: var(--teal);
  background: rgba(10, 143, 130, 0.04);
}
.msf-check-item.selected {
  border-color: var(--navy);
  background: rgba(12, 35, 64, 0.04);
}
.msf-check-item input[type="checkbox"] {
  accent-color: var(--navy);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.msf-check-item label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════
   FORMACION SEGURIDAD service extras
═══════════════════════════════════════════════════════════════ */
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.training-card {
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
}
.training-card h3 {
  color: #fff;
}
.training-card p {
  color: rgba(255, 255, 255, 0.55);
}
.training-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}
.training-duration {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.4rem;
}
.training-level {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   CHATBOT-IA service page extras
═══════════════════════════════════════════════════════════════ */
.chat-demo-wrap {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--sh-lg);
  max-width: 340px;
}
.chat-demo-msgs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.cdm-bot,
.cdm-user {
  font-size: 0.875rem;
  padding: 0.65rem 0.9rem;
  border-radius: 16px;
  max-width: 85%;
  line-height: 1.5;
}
.cdm-bot {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border-bottom-left-radius: 4px;
}
.cdm-user {
  background: var(--teal);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-demo-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .nav-drop {
    min-width: 100vw;
    left: 0;
    transform: none;
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured-body {
    padding: 1.5rem;
  }
  .chatbot-panel {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 5.5rem;
  }
  .msf-options {
    grid-template-columns: 1fr;
  }
  .msf-options-3 {
    grid-template-columns: 1fr 1fr;
  }
  .training-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(9, 25, 41, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #fff;
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}
.modal-overlay.open .modal-box {
  transform: none;
}
.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: all 0.2s;
  z-index: 1;
}
.modal-close-btn:hover {
  background: var(--off);
  border-color: var(--navy);
  color: var(--navy);
}
.msf-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.msf-input {
  width: 100%;
  border: 1.5px solid rgba(12, 35, 64, 0.14);
  border-radius: var(--r-sm);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-family: var(--fb);
  outline: none;
  transition: border 0.2s;
  margin-bottom: 0;
}
.msf-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10, 143, 130, 0.12);
}

/* ═══════════════════════════════════════════════════════════════
   EXTRAS CARDS — improved bullet list styling
═══════════════════════════════════════════════════════════════ */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.extras-card {
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh);
  display: flex;
  flex-direction: column;
}
.extras-card-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 1.25rem;
}
.extras-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  margin-bottom: 1.25rem;
}
.extras-item {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.4;
}
.extras-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 0.35em;
}
.extras-item strong {
  color: var(--navy);
  font-weight: 600;
}
.extras-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
  text-decoration: none;
  width: fit-content;
  margin-top: auto;
}
.extras-more:hover {
  gap: 8px;
}

@media (max-width: 900px) {
  .extras-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .extras-grid {
    grid-template-columns: 1fr;
  }
  .modal-box {
    padding: 1.75rem 1.25rem;
  }
}

/* ── Stats: 5-column variant ──────────────────────────────── */
.stats-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 900px) {
  .stats-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 580px) {
  .stats-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── FAQ on dark (navy) background ───────────────────────── */
.faq-dark .sec-head h2 {
  color: #fff;
}
.faq-dark .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.faq-dark .faq-item:hover {
  border-color: rgba(10, 181, 165, 0.4);
}
.faq-dark .faq-q {
  color: #fff;
}
.faq-dark .faq-num {
  color: var(--teal-lt);
}
.faq-dark .faq-text {
  color: rgba(255, 255, 255, 0.85);
}
.faq-dark .faq-answer p {
  color: rgba(255, 255, 255, 0.55);
}
.faq-dark .faq-toggle {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.faq-dark .faq-item.open .faq-toggle {
  background: var(--teal);
  border-color: var(--teal);
}
.faq-dark .faq-item.open .faq-toggle svg path {
  stroke: #fff;
}

/* ══════════════════════════════════════════════════════════
   TIMELINE (methodology)
══════════════════════════════════════════════════════════ */
.tl {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Vertical line running through all dots */
.tl::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--teal) 0%,
    rgba(10, 143, 130, 0.15) 100%
  );
  z-index: 0;
}
.tl-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  position: relative;
}
.tl-item-last {
  padding-bottom: 0;
}

.tl-dot {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  z-index: 1;
  position: relative;
  box-shadow: 0 0 0 4px rgba(10, 143, 130, 0.08);
  transition:
    background 0.2s,
    color 0.2s;
}
.tl-dot-end {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(10, 143, 130, 0.15);
}
.tl-item:hover .tl-dot {
  background: var(--teal);
  color: #fff;
}

.tl-content {
  padding-top: 0.55rem;
  flex: 1;
}
.tl-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.3rem;
}
.tl-content p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 800px) {
  .tl-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ══════════════════════════════════════════════════════════
   SOLO SERVICE CARDS (precios.php)
══════════════════════════════════════════════════════════ */
.solo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: var(--sh);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.solo-card:hover {
  border-color: rgba(10, 143, 130, 0.3);
  box-shadow: 0 8px 32px rgba(10, 143, 130, 0.08);
}
.solo-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.solo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.solo-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}
.solo-title {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.solo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  flex: 1;
}
.solo-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(12, 35, 64, 0.05);
  font-size: 0.82rem;
}
.solo-list li:last-child {
  border-bottom: none;
}
.solo-item-name {
  color: var(--slate);
}
.solo-item-price {
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.8rem;
}
.solo-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap 0.15s;
}
.solo-cta:hover {
  gap: 8px;
}

@media (max-width: 900px) {
  .solo-card {
    padding: 1.25rem;
  }
}
@media (max-width: 700px) {
  .solo-grid-4 {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 480px) {
  .solo-grid-4 {
    grid-template-columns: 1fr !important;
  }
}
