/* ===== HeaderModel01 ===== */
body > header {
  width: 100%;
}

.site-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  min-height: 96px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header-nav.is-scrolled,
body:not(.page-home) .site-header-nav {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(26, 29, 33, 0.04);
}

.site-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
  min-height: 96px;
}

.logo-icon {
  height: 58px;
  width: auto;
  max-width: min(280px, 100%);
  object-fit: contain;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  border: 1px solid #c5ced4;
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
}

.nav-toggle svg {
  width: 22px;
  height: 16px;
  max-width: none;
}

.site-header-collapse {
  display: none;
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.site-header-collapse.is-open {
  display: block;
}

.site-header-menu {
  align-items: center;
  gap: 44px;
}

.site-header-menu .nav-item {
  position: relative;
}

.site-header-menu .nav-link {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy) !important;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0 !important;
}

.site-header-menu .nav-link:hover {
  color: var(--teal) !important;
}

.site-header-menu .nav-link.active {
  color: var(--navy) !important;
}

.site-header-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: var(--teal);
}

.nav-dropdown-toggle {
  gap: 6px;
}

.nav-dropdown-caret {
  font-size: 8px;
  transform: scaleX(1.3);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding: 10px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  z-index: 20;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-body);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--teal);
  background: var(--teal-soft);
}

.btn-es.site-header-cta {
  min-width: 268px;
  padding: 14px 22px;
  font-size: 13px;
  border-radius: 10px;
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .site-header-nav {
    height: 96px;
  }

  .site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .logo-icon {
    height: 62px;
  }

  .site-header-collapse {
    display: flex;
    align-items: center;
    gap: 28px;
    width: auto;
    padding: 0;
    margin: 0 0 0 auto;
    background: transparent;
    border: 0;
  }

  .site-header-menu {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header-cta {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

@media (max-width: 991.98px) {
  .site-header-nav,
  .site-header-inner {
    min-height: 88px;
  }

  .site-logo {
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .logo-icon {
    height: 48px;
    max-width: min(200px, calc(100vw - 120px));
  }

  .nav-toggle {
    display: inline-flex !important;
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid #c5ced4;
    color: var(--navy);
  }

  .site-header-collapse {
    flex: 1 0 100%;
  }

  .site-header-menu {
    gap: 4px;
    margin-bottom: 12px;
  }

  .site-header-cta {
    width: 100%;
    min-width: 0;
    margin: 8px 0 0;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 4px 0 8px 12px;
  }
}

/* ===== Hero ===== */
.section-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  margin-top: var(--header-h);
  overflow: hidden;
  background: #eef1f4;
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  object-position: center right;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.74) 28%,
    rgba(255, 255, 255, 0.32) 46%,
    rgba(255, 255, 255, 0) 64%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
}

.hero-stack {
  width: 46%;
  max-width: 600px;
  padding: 72px 0;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal);
}

.section-hero h1 {
  font-size: clamp(36px, 3.5vw, 64px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.section-hero h1 .hero-line {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 600px;
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-sub {
  position: relative;
  max-width: 480px;
  margin-bottom: 36px;
  padding-left: 14px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--teal);
}

.btn-es.hero-cta {
  width: 348px;
  min-height: 62px;
  margin-bottom: 44px;
  border-radius: 12px;
  font-size: 14px;
}

.hero-cta-arrow {
  transition: transform 0.2s ease;
}

.hero-cta:hover .hero-cta-arrow,
.hero-cta:focus-visible .hero-cta-arrow {
  transform: translateX(4px);
}

.hero-highlights {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 8px;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
  padding-right: 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-highlights li + li {
  padding-left: 20px;
  border-left: 1px solid rgba(26, 29, 33, 0.12);
}

.hero-highlight-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
}

/* ===== Ticker ===== */
.section-ticker {
  background: var(--teal);
  color: var(--white);
  overflow: hidden;
}

.ticker-viewport {
  display: flex;
  align-items: center;
  height: 64px;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 48s linear infinite;
}

.ticker-seq {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-seq li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-text {
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1;
}

.section-ticker:hover .ticker-track,
.section-ticker:focus-within .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .ticker-seq + .ticker-seq {
    display: none;
  }

  .ticker-viewport {
    overflow-x: auto;
  }
}

@media (max-width: 991.98px) {
  .ticker-viewport {
    height: 58px;
  }

  .ticker-text {
    padding: 0 22px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .ticker-track {
    animation-duration: 52s;
  }
}

@media (max-width: 767.98px) {
  .ticker-viewport {
    height: 52px;
  }

  .ticker-text {
    padding: 0 18px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .ticker-track {
    animation-duration: 56s;
  }
}

/* ===== Why / compromisso ===== */
.section-why {
  padding: 88px 0 72px;
  background: var(--white);
}

.why-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr) auto;
  gap: 48px 56px;
  align-items: start;
  margin-bottom: 48px;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--teal);
}

.why-eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.why-eyebrow-light::before {
  background: var(--teal);
}

.section-why h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.why-intro-text {
  max-width: 520px;
  padding-top: 28px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
}

.why-intro-text strong {
  color: var(--navy);
  font-weight: 600;
}

.why-note {
  margin: 0;
  color: #8a929a;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.why-note-top {
  padding-top: 34px;
  text-align: right;
}

.why-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 72px 0 64px;
  background: #11161c;
}

.why-panel-inner {
  position: relative;
  z-index: 1;
}

.why-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(80, 157, 164, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 157, 164, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 75%);
}

.why-tower {
  position: absolute;
  right: 0;
  top: 4%;
  width: min(38%, 400px);
  height: auto;
  pointer-events: none;
  opacity: 0.5;
}

.why-tower img {
  width: 100%;
  height: auto;
}

.why-panel-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-why h3 {
  color: #f3f6f7;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  max-width: 920px;
  margin: 0 auto;
}

.why-grid li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 16px 20px;
  color: #f3f6f7;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(80, 157, 164, 0.22);
  border-radius: 10px;
}

.why-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

@media (max-width: 1199.98px) {
  .why-panel {
    padding: 56px 0 48px;
  }
}

@media (max-width: 991.98px) {
  .section-why {
    padding: 64px 0 56px;
  }

  .why-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .why-intro-text,
  .why-note-top {
    padding-top: 0;
    text-align: left;
  }

  .why-note-top,
  .why-tower {
    display: none;
  }

  .why-panel {
    padding: 40px 0 32px;
  }

  .why-panel-head {
    margin-bottom: 32px;
  }

  .why-grid {
    gap: 12px;
  }
}

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

  .section-why h2 {
    font-size: clamp(30px, 8vw, 40px);
  }
}

/* ===== Shared headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-title {
  font-size: clamp(28px, 4vw, 44px);
}

/* ===== Awards ===== */
.section-awards {
  padding: 40px 0 var(--space-section);
}

.awards-shelf {
  background: var(--white);
  border: 1px solid #eef1f4;
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  padding: 28px 18px 12px;
  overflow: hidden;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.award-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* ===== Reviews ===== */
.section-reviews {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 88px 0 72px;
  background: #11161c;
}

.reviews-bg,
.reviews-bg picture,
.reviews-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reviews-bg img {
  object-fit: cover;
  object-position: center right;
}

.reviews-veil {
  position: absolute;
  inset: 0;
  background: rgba(17, 22, 28, 0.76);
}

.reviews-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 40px 28px;
  align-items: center;
  min-height: 560px;
}

.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(243, 246, 247, 0.78);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reviews-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal);
}

.section-reviews h2 {
  max-width: 12ch;
  margin-bottom: 22px;
  color: #f3f6f7;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.reviews-lead {
  max-width: 28ch;
  color: #b8c0c6;
  font-size: 16px;
  line-height: 1.7;
}

.reviews-board {
  min-width: 0;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
}

.review-card {
  flex: 0 0 372px;
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 32px;
  background: #f7f8f9;
  border-radius: 14px;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.review-card blockquote {
  flex: 1;
  margin: 0 0 20px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8eef0;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.review-name {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}

.review-source {
  color: var(--text-secondary);
  font-size: 12px;
}

.review-by {
  margin: 0;
  color: #6b7078;
  font-size: 13px;
  line-height: 1.45;
}

.review-by span {
  display: block;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.reviews-arrows {
  display: flex;
  gap: 10px;
}

.reviews-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.reviews-arrow.is-next {
  border-color: var(--teal);
  color: var(--teal);
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.reviews-dot {
  width: 22px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
}

.reviews-dot.is-active {
  background: var(--teal);
}

.reviews-note {
  position: absolute;
  z-index: 1;
  margin: 0;
  color: rgba(186, 196, 204, 0.38);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.reviews-note-tr {
  top: 36px;
  right: 40px;
  text-align: right;
  border-right: 1px solid var(--teal);
  padding-right: 12px;
}

.reviews-note-bl {
  left: 40px;
  bottom: 28px;
}

.reviews-note-bl::before,
.reviews-note-br::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--teal);
}

.reviews-note-br {
  right: 40px;
  bottom: 28px;
  text-align: right;
}

@media (min-width: 1200px) {
  .reviews-board {
    margin-right: calc(50% - 50vw + 24px);
  }
}

@media (max-width: 1199.98px) {
  .review-card {
    flex-basis: 340px;
  }
}

@media (max-width: 991.98px) {
  .section-reviews {
    min-height: 0;
    padding: 64px 0 56px;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
  }

  .section-reviews h2 {
    max-width: 14ch;
  }

  .reviews-note {
    display: none;
  }

  .review-card {
    flex-basis: 320px;
    min-height: 270px;
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .review-card {
    width: calc(100vw - 72px);
    flex: 0 0 calc(100vw - 72px);
    min-width: 0;
  }
}

/* ===== About ===== */
.section-about {
  padding: var(--space-section) 0;
  background: var(--bg-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.about-copy .section-title {
  font-size: clamp(32px, 4vw, 46px);
  margin: 14px 0 22px;
}

.about-copy p {
  color: var(--text-body);
  margin-bottom: 18px;
  max-width: 48ch;
}

.about-copy .btn-es {
  margin-top: 12px;
}

/* ===== Services ===== */
.section-services {
  background: var(--teal);
  padding: var(--space-section) 0;
  border-radius: 48px 48px 0 0;
}

.section-services .section-title,
.section-services .section-title .accent {
  color: var(--white) !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: block;
  background: var(--white);
  border-radius: 28px;
  padding: 18px 18px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus-visible {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.1);
}

.service-card-media {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 22px;
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 180px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 28px 10px;
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 20px;
}

/* ===== Clients ===== */
.section-clients {
  background: var(--bg-soft);
  padding: 80px 0 40px;
  border-radius: 0 0 48px 48px;
  margin-top: -1px;
}

.clients-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: clients-marquee 38s linear infinite;
}

.clients-carousel:hover .clients-track {
  animation-play-state: paused;
}

.clients-logos {
  display: flex;
  align-items: center;
}

.client-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 96px;
  padding: 0 18px;
}

.client-logo {
  max-width: 150px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes clients-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
  .clients-carousel { overflow-x: auto; mask-image: none; }
}

/* ===== Testimonials ===== */
.section-testimonials {
  background: var(--bg-soft);
  padding: 40px 0 var(--space-section);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.testimonials-copy .section-title {
  font-size: clamp(30px, 3.8vw, 44px);
  max-width: 16ch;
  text-align: left;
  margin-bottom: 28px;
}

.testimonials-quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-soft);
}

.testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 16px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonials-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.testimonials-photo {
  display: block;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1600 / 1697;
  background: url("../img/testimonials-pc.jpg") center / contain no-repeat;
}

.testimonials-cta {
  align-self: center;
}

/* ===== CTA ===== */
.section-cta {
  padding: 0 0 32px;
  background: var(--white);
}

.cta-banner {
  background: var(--teal);
  border-radius: 36px;
  min-height: 260px;
  padding: 56px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  max-width: 16ch;
}

/* ===== Footer ===== */
.footer {
  background: var(--white);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  display: block;
  width: 180px;
  height: 116px;
  min-height: 116px;
  max-width: 100%;
  margin: 0 auto 16px;
  object-fit: contain;
  background: url("../img/logo-footer.png") center / contain no-repeat;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 240px;
  margin: 0 auto;
}

.footer-col-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-list a,
.footer-contacts a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-list a:hover,
.footer-contacts a:hover {
  color: var(--teal);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-social-title {
  margin-top: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-bottom a:hover {
  color: var(--teal);
}

/* ===== WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1100;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

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

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--white);
}

/* ===== Cookie ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 16px;
}

.cookie-card {
  background: var(--white);
  border: 1px solid var(--line);
  max-width: 480px;
  box-shadow: var(--shadow-card);
  border-radius: 16px;
  padding: 20px;
}

.cookie-card p {
  font-size: 14px;
  color: var(--text-body);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.cookie-decline {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .cookie-banner {
    bottom: 24px;
    left: 24px;
    right: auto;
    padding: 0;
  }
}

/* ===== Legal ===== */
.page-legal {
  background: var(--bg-soft);
}

.page-legal main {
  padding: calc(var(--header-h) + 48px) 0 var(--space-section);
}

.legal-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  padding: 40px 28px;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 12px;
}

.legal-updated,
.legal-prose p,
.legal-prose li {
  color: var(--text-body);
}

.legal-prose {
  margin-top: 32px;
}

.legal-prose h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
}

.legal-prose p {
  margin-bottom: 16px;
}

.legal-prose ul,
.legal-prose ol {
  list-style: disc;
  padding-left: 1.3rem;
  margin: 0 0 16px;
}

.legal-prose a,
.legal-back a {
  color: var(--teal);
}

.legal-back {
  margin-top: 40px;
}

.legal-back a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-card {
    padding: 56px;
  }
}

/* ===== Inner pages ===== */
.page-inner .site-header-nav {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.page-service,
.page-about {
  background: var(--bg-soft);
}

.inner-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: calc(var(--header-h) + 36px) 24px 56px;
  background-color: var(--teal);
  text-align: center;
}

.inner-hero.has-photo {
  background-image: linear-gradient(rgba(80, 157, 164, 0.82), rgba(80, 157, 164, 0.82)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.inner-hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 54px);
}

.page-about .section-about {
  padding-top: 56px;
}

.page-services .services-header {
  display: none;
}

.page-services .section-services {
  padding-top: 64px;
  border-radius: 0;
}

.page-services .section-cta {
  padding-top: 48px;
}

.service-page {
  padding: 56px 0 72px;
}

.service-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 56px;
  align-items: start;
}

.service-page-copy p {
  color: var(--text-body);
  margin-bottom: 16px;
}

.service-page-copy h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 36px 0 16px;
}

.service-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 20px;
}

.service-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-body);
}

.service-check-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal);
}

.service-page-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.service-aside-card,
.service-aside-cta {
  background: var(--white);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
}

.service-aside-card h2,
.service-aside-cta h2 {
  font-size: 26px;
  margin-bottom: 18px;
}

.service-aside-list {
  display: flex;
  flex-direction: column;
}

.service-aside-list a {
  display: block;
  position: relative;
  min-height: 46px;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text-body);
  font-size: 15px;
}

.service-aside-list a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--teal);
  font-size: 18px;
  line-height: 1;
}

.service-aside-list li:last-child a {
  border-bottom: 0;
}

.service-aside-list a:hover,
.service-aside-list a:focus-visible,
.service-aside-list a[aria-current="page"] {
  color: var(--teal);
}

.service-aside-cta .btn-es {
  width: 100%;
}

@media (max-width: 991.98px) {
  .about-grid,
  .testimonials-layout,
  .footer-grid,
  .service-page-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-copy .section-title {
    max-width: none;
  }

  .section-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 88px;
    background: var(--white);
  }

  .hero-veil {
    display: none;
  }

  .hero-inner,
  .hero-stack {
    display: contents;
  }

  .hero-bg,
  .hero-bg img {
    position: relative;
    order: 2;
    width: 100%;
    height: 360px;
  }

  .hero-bg img {
    object-position: 88% 28%;
  }

  .hero-content {
    order: 1;
    width: 100%;
    max-width: none;
    padding: 36px 40px 8px;
  }

  .section-hero h1 {
    font-size: clamp(34px, 5vw, 48px);
  }

  .section-hero h1 .hero-line {
    white-space: normal;
  }

  .hero-lead,
  .hero-sub {
    max-width: 640px;
  }

  .hero-cta {
    width: min(348px, 100%);
    margin-bottom: 28px;
  }

  .hero-highlights {
    order: 3;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 16px;
    padding: 20px 40px 36px;
    background: var(--white);
  }

  .hero-highlights li {
    flex: 1 1 42%;
    padding-right: 12px;
  }

  .hero-highlights li + li {
    padding-left: 12px;
  }

  .service-page-aside {
    position: static;
  }

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

@media (max-width: 767.98px) {
  .hero-bg,
  .hero-bg img {
    height: 280px;
  }

  .hero-bg img {
    object-position: 92% 30%;
  }

  .hero-content {
    padding: 28px 20px 8px;
  }

  .hero-lead,
  .hero-sub {
    max-width: none;
  }

  .hero-cta {
    width: 100%;
    margin-bottom: 24px;
  }

  .hero-highlights {
    padding: 16px 20px 28px;
  }

  .hero-highlights li,
  .hero-highlights li + li {
    flex: 1 1 100%;
    padding: 10px 0;
    border-left: 0;
    border-top: 1px solid rgba(26, 29, 33, 0.08);
  }

  .hero-highlights li:first-child {
    border-top: 0;
  }

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

  .section-services,
  .section-clients {
    border-radius: 28px 28px 0 0;
  }

  .cta-banner {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .footer-bottom,
  .footer-brand {
    text-align: center;
    justify-content: center;
  }

  .whatsapp-float {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    min-height: 56px;
    border-radius: 0;
    gap: 14px;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    background: var(--teal);
    box-shadow: none;
  }

  .whatsapp-float-label {
    display: inline;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  body:has(.whatsapp-float) {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  body:has(.whatsapp-float) .cookie-banner {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}
