:root {
  /* Femabide.com Elementor global + homepage brand colors */
  --primary: #038BD9;
  --primary-mid: #1A88C8;
  --primary-dark: #005E94;
  --primary-deep: #0475B6;
  --primary-light: #E7EBEF;
  --accent: #02682E;
  --accent-light: #00903E;
  --accent-soft: #e6f5ec;
  --accent-bright: #19A957;
  --gold: #fec42d;
  --gold-soft: #fff8e6;
  --dark: #1D1D1D;
  --dark-soft: #212327;
  --black: #040404;
  --white: #ffffff;
  --surface: #F8F8F8;
  --muted-line: #DCDCDE;
  --text: #1D1D1D;
  --text-muted: #626363;
  --text-light: rgba(255, 255, 255, 0.9);
  --border: rgba(29, 29, 29, 0.1);
  --shadow: 0 24px 60px rgba(4, 4, 4, 0.1);
  --shadow-lg: 0 40px 80px rgba(4, 4, 4, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Site fonts: Figtree primary, Inter/Manrope secondary (as on femabide.com) */
  --font: "Figtree", "Inter", system-ui, sans-serif;
  --font-heading: "Figtree", "Manrope", system-ui, sans-serif;
  --font-alt: "Manrope", "Figtree", system-ui, sans-serif;
  --section-pad: clamp(56px, 7vw, 88px);
  --section-pad-sm: clamp(40px, 5vw, 64px);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--primary), var(--accent-light), var(--gold));
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: #000000;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px 16px;
}

.logo {
  display: grid;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  grid-area: 1 / 1;
  height: 58px;
  width: auto;
  max-width: min(280px, 28vw);
  object-fit: contain;
  transition: opacity 0.3s;
}

.logo-img--color {
  opacity: 0;
}

.logo-img--white {
  opacity: 1;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(10px, 1.2vw, 20px);
}

.site-nav a {
  font-family: var(--font);
  font-size: clamp(0.78rem, 0.9vw, 0.875rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.header-actions .header-cta {
  display: inline-flex;
  white-space: nowrap;
  padding: 9px 14px;
  font-size: 0.8125rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Typography (Figtree, matching Elementor kit) ── */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--dark);
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.65rem);
  letter-spacing: -0.045em;
  line-height: 1em;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.1em;
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.2em;
  font-weight: 700;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow--dark {
  color: var(--primary);
}

.section {
  width: 100%;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 52px);
}

.section-head h2 {
  color: var(--dark);
}

.section-head--light h2,
.section--dark h2,
.section--accent h2,
.section--form h2,
.form-intro h2 {
  color: var(--white);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 40px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.35s var(--ease);
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: -0.01em;
}

.btn--sm {
  padding: 11px 20px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 17px 32px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 8px 28px rgba(254, 196, 45, 0.4);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(254, 196, 45, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ── Hero ── */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: calc(var(--section-pad) + 72px) 0 calc(var(--section-pad-sm) + 32px);
  background: var(--dark-soft);
  color: var(--white);
  isolation: isolate;
}

.hero h1 {
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      115deg,
      rgba(4, 4, 4, 0.88) 0%,
      rgba(0, 94, 148, 0.78) 42%,
      rgba(33, 35, 39, 0.72) 72%,
      rgba(2, 104, 46, 0.35) 100%
    ),
    radial-gradient(circle at 85% 20%, rgba(3, 139, 217, 0.28), transparent 48%),
    url("../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 18px;
}

.hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  color: var(--text-light);
  margin-bottom: 14px;
  max-width: 580px;
  font-weight: 500;
}

.hero-desc {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.hero-card__title {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--white);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(254, 196, 45, 0.2);
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 0 3px transparent;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.88);
}

/* ── Section backgrounds ── */
.section--white {
  background: var(--white);
}

.section--primary-light {
  background: linear-gradient(160deg, #eef6fb 0%, var(--surface) 50%, var(--white) 100%);
}

.section--surface {
  background: var(--surface);
}

.section--dark {
  background: linear-gradient(135deg, var(--dark-soft) 0%, #0f2a3d 100%);
  color: var(--white);
}

.section--accent {
  background: linear-gradient(160deg, var(--accent) 0%, #014d22 100%);
  color: var(--white);
}

.section--form {
  background:
    radial-gradient(circle at 15% 20%, rgba(3, 139, 217, 0.25), transparent 40%),
    linear-gradient(155deg, var(--primary-dark) 0%, var(--dark) 100%);
  color: var(--white);
}

.section--cta {
  background: linear-gradient(135deg, var(--gold-soft) 0%, #fff 45%, var(--primary-light) 100%);
  padding: var(--section-pad-sm) 0;
}

/* ── Who we serve ── */
/* ── Who We Serve – image cards (flex so last row centers) ── */
.audience-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.audience-card {
  flex: 0 1 calc((100% - 80px) / 5); /* 5 cols, 4 × 20px gaps */
  max-width: calc((100% - 80px) / 5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(4, 4, 4, 0.05);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(3, 139, 217, 0.25);
}

.audience-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(3, 139, 217, 0.12), rgba(2, 104, 46, 0.1));
}

.audience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.audience-card:hover .audience-card__media img {
  transform: scale(1.06);
}

.audience-card h3 {
  padding: 14px 12px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--dark);
  text-align: center;
  margin: 0;
}

@media (max-width: 1100px) {
  .audience-card {
    flex-basis: calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
  }
}

@media (max-width: 900px) {
  .audience-card {
    flex-basis: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 640px) {
  .audience-cards {
    gap: 14px;
  }

  .audience-card {
    flex-basis: calc((100% - 14px) / 2);
    max-width: calc((100% - 14px) / 2);
  }

  .audience-card h3 {
    font-size: 0.85rem;
    padding: 12px 12px 14px;
  }
}

@media (max-width: 420px) {
  .audience-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(10, 14, 20, 0.05);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(3, 139, 217, 0.25);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(3, 139, 217, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 0 0 auto;
}

.service-card__label {
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary) !important;
  margin-bottom: 8px !important;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.mini-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.4;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--primary);
  transform: rotate(45deg);
}

/* ── Industries ── */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.industry-tag {
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--primary-light), var(--white));
  border: 1px solid rgba(3, 139, 217, 0.15);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: all 0.3s var(--ease);
}

.industry-tag:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Process (split dark panel + vertical timeline) ── */
.section--process {
  width: 100%;
  max-width: 100%;
  padding: 0;
  background: #0e0f12;
  overflow: hidden;
}

.process-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(145deg, #0e0f12 0%, #16181d 48%, #0f1c24 100%);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  min-height: min(720px, 90vh);
}

.process-panel__left {
  position: relative;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px) clamp(48px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  z-index: 1;
}

.process-panel__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
}

.process-panel__right .process-panel__content {
  max-width: 580px;
  margin-left: 0;
  margin-right: auto;
}

.process-panel__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.process-panel__left h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 14ch;
}

.process-panel__desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.975rem;
  line-height: 1.65;
  max-width: 36ch;
  margin-bottom: 28px;
}

.process-panel__left .btn {
  align-self: flex-start;
  position: relative;
  z-index: 2;
}

.process-panel__visual {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  pointer-events: none;
  z-index: 0;
}

.process-panel__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    #0e0f12 0%,
    rgba(14, 15, 18, 0.72) 22%,
    rgba(14, 15, 18, 0.12) 52%,
    rgba(14, 15, 18, 0.35) 100%
  );
}

.process-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.95;
  filter: saturate(1.05) brightness(0.9) contrast(1.05);
}

.process-panel__right {
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.015);
}

.process-steps {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin: 0;
  padding: 0;
}

/* Gradient rail behind numbers */
.process-steps::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  bottom: 18px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--gold) 0%,
    #f0a020 18%,
    var(--primary) 48%,
    var(--accent-light) 78%,
    var(--accent) 100%
  );
  box-shadow: 0 0 24px rgba(254, 196, 45, 0.25);
  z-index: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding: 14px 0;
  transition: transform 0.35s var(--ease);
}

.process-step:hover {
  transform: translateX(4px);
}

.process-step__marker {
  display: flex;
  justify-content: center;
  padding-top: 2px;
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #12141a;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 4px rgba(14, 15, 18, 0.9);
}

.process-step__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.process-step h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.3;
}

.process-step p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  max-width: 42ch;
}

.process-step:nth-child(1) .process-step__label { color: var(--gold); }
.process-step:nth-child(2) .process-step__label { color: #f0b84a; }
.process-step:nth-child(3) .process-step__label { color: #5eb8e8; }
.process-step:nth-child(4) .process-step__label { color: #3ecf7a; }
.process-step:nth-child(5) .process-step__label { color: var(--accent-light); }

@media (max-width: 960px) {
  .process-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .process-panel__left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 420px;
    padding-bottom: 200px;
  }

  .process-panel__left h2 {
    max-width: none;
  }

  .process-panel__content {
    max-width: none;
  }

  .process-panel__right .process-panel__content {
    max-width: none;
  }

  .process-panel__visual {
    height: 48%;
  }
}

@media (max-width: 560px) {
  .process-panel__left {
    min-height: 360px;
    padding: 36px 20px 160px;
  }

  .process-panel__right {
    padding: 36px 20px 48px;
  }

  .process-steps::before {
    left: 15px;
    width: 5px;
  }

  .process-step {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .process-step__num {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* ── Why (full-width section + container content) ── */
.section--why {
  width: 100%;
  background: linear-gradient(180deg, #eef1f5 0%, #f5f7fa 40%, #e8eef5 100%);
  padding: var(--section-pad) 0;
}

.section--why .section-head h2 {
  color: var(--dark);
}

.why-bento {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.85fr) 1fr;
  grid-template-rows: auto auto auto;
  gap: 18px;
  align-items: stretch;
  width: 100%;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(29, 29, 29, 0.06);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 8px 28px rgba(4, 4, 4, 0.04);
  transition: all 0.4s var(--ease);
}

.why-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(4, 4, 4, 0.08);
  border-color: rgba(3, 139, 217, 0.2);
}

.why-feature--tl { grid-column: 1; grid-row: 1; }
.why-feature--tr { grid-column: 3; grid-row: 1; }
.why-feature--bl { grid-column: 1; grid-row: 2; }
.why-feature--br { grid-column: 3; grid-row: 2; }

.why-feature--full {
  grid-column: 1 / -1;
  grid-row: 3;
  align-items: center;
  max-width: 720px;
  width: 100%;
  margin: 4px auto 0;
  justify-self: center;
}

.why-feature__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #e8f4fc 0%, #dceef9 100%);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature__icon svg {
  width: 22px;
  height: 22px;
}

.why-feature--tr .why-feature__icon,
.why-feature--br .why-feature__icon {
  background: linear-gradient(145deg, #e6f5ec 0%, #d4efdf 100%);
  color: var(--accent);
}

.why-feature--full .why-feature__icon {
  background: linear-gradient(145deg, #fff4d4 0%, #ffe9a8 100%);
  color: #8a6a00;
}

.why-feature__text h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.why-feature__text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.why-photo {
  grid-column: 2;
  grid-row: 1 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: #e8eef5;
  box-shadow: 0 16px 40px rgba(4, 4, 4, 0.1);
  min-height: 280px;
  align-self: stretch;
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease);
}

.why-photo:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .why-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .why-photo {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 320px;
    max-height: 380px;
  }

  .why-feature--tl { grid-column: 1; grid-row: 2; }
  .why-feature--tr { grid-column: 2; grid-row: 2; }
  .why-feature--bl { grid-column: 1; grid-row: 3; }
  .why-feature--br { grid-column: 2; grid-row: 3; }
  .why-feature--full {
    grid-column: 1 / -1;
    grid-row: 4;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .why-bento {
    grid-template-columns: 1fr;
  }

  .why-photo {
    grid-column: 1;
    grid-row: 1;
    min-height: 280px;
    max-height: 320px;
  }

  .why-feature--tl,
  .why-feature--tr,
  .why-feature--bl,
  .why-feature--br,
  .why-feature--full {
    grid-column: 1;
    grid-row: auto;
  }
}

/* ── Challenges ── */
.challenges-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.challenges-copy h2 {
  margin-bottom: 14px;
}

.challenges-close {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}

.challenges-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.challenges-list li {
  position: relative;
  padding: 14px 16px 14px 40px;
  background: #eef6fb;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid rgba(3, 139, 217, 0.12);
  transition: all 0.3s var(--ease);
}

.challenges-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.95rem;
}

.challenges-list li:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.testimonial-card p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-card footer {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-style: normal;
}

/* ── FAQ ── */
.faq-layout {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item.active {
  box-shadow: var(--shadow);
  border-color: rgba(3, 139, 217, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 50%;
  background: rgba(3, 139, 217, 0.12);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary-dark);
  transition: transform 0.3s var(--ease);
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Lead Form ── */
.form-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.form-intro h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.form-intro > p {
  color: var(--text-light);
  margin-bottom: 22px;
  max-width: 420px;
}

.form-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s;
}

.form-phone:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lead-form {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.lead-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.form-field:not(.form-row .form-field) {
  margin-bottom: 14px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.req {
  color: #cf2e2e;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--muted-line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(3, 139, 217, 0.15);
  background: var(--white);
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: #cf2e2e;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.4em;
}

.form-status.success {
  color: var(--accent);
  font-weight: 600;
}

.form-status.error {
  color: #cf2e2e;
}

/* Honeypot (spam trap) */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Slot booking ── */
.slot-booking {
  margin-bottom: 18px;
}

.slot-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 12px;
  margin-bottom: 10px;
}

.slot-header .slot-label {
  margin-bottom: 0;
}

.slot-hours {
  margin: 0;
  font-size: 0.78rem;
  color: #5a6a7a;
  line-height: 1.4;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}

.slot-btn {
  appearance: none;
  border: 1px solid var(--muted-line);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  text-align: center;
}

.slot-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(3, 139, 217, 0.06);
}

.slot-btn.is-selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(3, 139, 217, 0.15);
}

.slot-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.slot-btn.error {
  border-color: #cf2e2e;
}

.slot-empty {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted, #5a6a7a);
}

.slot-grid:empty + .slot-empty,
.slot-empty:not([hidden]) {
  display: block;
}

/* ── Final CTA ── */
.cta-banner {
  text-align: center;
  max-width: 820px;
}

.cta-banner h2 {
  margin-bottom: 14px;
  color: var(--dark);
}

.cta-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.cta-banner > p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.cta-actions .btn--ghost {
  color: var(--primary-dark);
  border-color: rgba(3, 139, 217, 0.35);
}

.cta-actions .btn--ghost:hover {
  background: var(--primary-light);
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer-brand img {
  margin: 0 auto 12px;
  height: 58px;
  width: auto;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  font-weight: 600;
  color: var(--white);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.85rem;
  margin-top: 8px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 560px;
}

/* ── Mobile sticky CTA ── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(254, 196, 45, 0.45);
  white-space: nowrap;
}

/* ── Floating contact icons ── */
.float-contact {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.float-contact__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.float-contact__btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.float-contact__btn--whatsapp {
  background: #25d366;
}

.float-contact__btn--whatsapp:hover {
  background: #1ebe57;
}

.float-contact__btn--phone {
  background: var(--primary);
}

.float-contact__btn--phone:hover {
  background: var(--primary-dark);
}

.float-contact__btn--email {
  background: #1d1d1d;
}

.float-contact__btn--email:hover {
  background: #000;
}

.float-contact__btn--book {
  background: var(--gold);
  color: var(--dark);
}

.float-contact__btn--book:hover {
  background: #e8b020;
}

.float-contact__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 7px 12px;
  border-radius: 8px;
  background: #111;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.float-contact__tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #111;
}

.float-contact__btn:hover .float-contact__tooltip,
.float-contact__btn:focus-visible .float-contact__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── Reveal / GSAP helpers ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.stagger-group .stagger-item {
  opacity: 0;
  transform: translateY(20px);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .header-inner {
    gap: 10px 12px;
  }

  .site-nav {
    gap: 8px 12px;
  }

  .header-actions .header-cta {
    padding: 9px 12px;
  }
}

@media (max-width: 1100px) {
  .header-actions .header-cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .hero-grid,
  .challenges-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
    flex: none;
    min-width: 0;
  }

  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000000;
    padding: 16px 24px 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.nav-open .site-nav a {
    color: rgba(255, 255, 255, 0.88);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header.nav-open .site-nav a:hover,
  .site-header.nav-open .site-nav a.active {
    color: var(--white);
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .challenges-list {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .float-contact {
    right: 12px;
    bottom: 88px;
    gap: 10px;
  }

  .float-contact__btn {
    width: 46px;
    height: 46px;
  }

  .float-contact__tooltip {
    display: none;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .header-phone span,
  .header-phone {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .services-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero {
    padding-top: calc(var(--section-pad) + 56px);
  }
}
