﻿.hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 18, 30, 0.72), rgba(7, 18, 30, 0.45));
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px) brightness(0.62);
  transform: scale(1.08);
}

.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr minmax(360px, 460px);
  gap: 48px;
  align-items: center;
  padding-top: 28px;
  width: calc(100% - 120px);
  max-width: none;
  margin: 0 60px;
}

.hero-left {
  color: #f2f6fb;
  padding-left: 8px;
}

.hero-logo-white {
  width: 260px;
  margin: 0 0 24px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
  animation: hero-logo-breathe 2.6s ease-in-out infinite;
}

@keyframes hero-logo-breathe {
  0% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.95; }
}

.hero-left h1 {
  font-size: clamp(2.3rem, 5.4vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  max-width: 820px;
}

.hero-ring-word {
  position: relative;
  display: inline-block;
  padding: 0 0.08em;
}

.hero-ring-word svg {
  position: absolute;
  left: -16%;
  top: 62%;
  width: 132%;
  height: 1.12em;
  transform: translateY(-50%);
  pointer-events: none;
  overflow: visible;
}

.hero-ring-word path {
  fill: none;
  stroke: #3f7ea0;
  stroke-width: 9px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: hero-ring-draw 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes hero-ring-draw {
  0% {
    stroke-dashoffset: 1500;
    opacity: 0.3;
  }
  18% {
    opacity: 1;
  }
  58% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  80% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -1500;
    opacity: 0.35;
  }
}

.hero-subline {
  font-size: clamp(1rem, 2vw, 1.35rem);
  max-width: 640px;
  margin: 0;
  color: #e3ebf3;
}

.hero-form-card {
  background: #e6e9ef;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: 0 26px 54px rgba(8, 18, 28, 0.34);
  justify-self: end;
}

.hero-form-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.7vw, 2rem);
  color: #1b2431;
  line-height: 1.2;
}

.rentabilidad-mark {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.rentabilidad-mark svg {
  position: absolute;
  left: -12%;
  bottom: -3px;
  width: 136%;
  height: 34px;
  transform: none;
  pointer-events: none;
  overflow: visible;
}

.rentabilidad-mark path {
  fill: none;
  stroke: #2f8ec2;
  stroke-width: 13px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  opacity: 0.98;
  animation: rentabilidad-draw 2.4s ease-in-out infinite;
}

.rentabilidad-mark-title {
  padding-bottom: 4px;
}

.rentabilidad-mark-title svg {
  left: -10%;
  bottom: -2px;
  width: 130%;
  height: 40px;
}

.rentabilidad-mark-title path {
  stroke: #2f8ec2;
  stroke-width: 14px;
  opacity: 1;
}

.rentabilidad-mark path:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes rentabilidad-draw {
  0% {
    stroke-dashoffset: 1500;
    opacity: 0.35;
  }
  25% {
    opacity: 1;
  }
  65% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.hero-form-card p {
  margin: 0 0 16px;
  color: #3d4b58;
}

.hero-form-grid {
  display: grid;
  gap: 10px;
}

.hero-form-card .field {
  gap: 6px;
}

.hero-form-card .field label {
  font-size: 13px;
  color: #334250;
}

.hero-form-card .field input:not([type="checkbox"]),
.hero-form-card .field select {
  border: 1px solid #c7d0db;
  border-radius: 12px;
  background: #f9fbfd;
  padding: 12px 14px;
}

.hero-check-row {
  margin-top: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.hero-check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1d3046;
  margin: 0;
}

.hero-check-row label {
  font-size: 14px;
  color: #2d3d4d;
  margin: 0;
}

.hero-check-row a {
  text-decoration: underline;
}

.hero-submit {
  width: 100%;
  margin-top: 12px;
  border-radius: 999px;
  background: #1e2d45;
  border-color: #1e2d45;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-submit:hover {
  background: #152238;
  border-color: #152238;
}

.align-center {
  align-items: center;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 0;
}

.intro-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.home-services-overview {
  background: linear-gradient(180deg, #f4f8fb 0%, #edf3f7 100%);
}

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

.home-service-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d7e1e8;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(16, 30, 42, 0.08);
}

.home-service-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #dfeaf1;
  color: #2d5162;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-service-card h3 {
  margin: 16px 0 12px;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  line-height: 1.1;
}

.home-service-card p {
  margin: 0;
  color: #506474;
}

.sales-section {
  background: linear-gradient(160deg, #d6e4ee, #c5d7e4);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.sales-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}

.sales-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2d5162;
  margin-bottom: 10px;
}

.sales-copy h2 {
  margin: 0 0 12px;
  max-width: 520px;
}

.sales-copy p {
  margin: 0 0 14px;
  max-width: 560px;
  color: #3c515f;
}

.sales-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: #243a4a;
}

.sales-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sales-points img {
  width: 18px;
  height: 18px;
}

.sales-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.sales-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 16px;
}

.sales-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(18, 33, 46, 0.18);
}

.sales-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sales-photo-main {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 320px;
}

.sales-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: #ffffff;
  border: 1px solid #d8e2ea;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 18px 30px rgba(16, 30, 42, 0.12);
}

.sales-strip-item {
  display: grid;
  gap: 4px;
  text-align: center;
  color: #274151;
}

.sales-strip-item strong {
  font-size: 0.98rem;
}

.sales-strip-item span {
  font-size: 0.85rem;
  color: #5a7182;
}

.who-section {
  background: #2d5162;
}

.who-section .intro-head h2,
.who-section .intro-head p {
  color: #f1f6fa;
}

.who-section .card {
  background: #ffffff;
  border-color: #d9e3ea;
  box-shadow: 0 18px 34px rgba(15, 35, 48, 0.2);
}

.who-section .card h3 {
  color: #0f2434;
}

.who-section .card p {
  color: #425a6b;
}

.who-photo {
  width: min(100%, 300px);
  height: auto;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto 14px;
  image-rendering: auto;
}

.who-lottie-wrap {
  width: min(100%, 300px);
  margin: 0 auto 14px;
}

.who-lottie {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.who-lottie dotlottie-wc {
  display: block;
  width: 100%;
  height: 100%;
}

.who-photo-fallback {
  display: none;
  margin-bottom: 0;
}

.who-lottie-failed .who-lottie {
  display: none;
}

.who-lottie-failed .who-photo-fallback {
  display: block;
}

.visual-card {
  background: #fff;
  border: 1px solid #d9e0e5;
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 16px 38px rgba(21, 31, 40, 0.12);
}

.team-grid img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.team-single {
  max-width: 1080px;
  margin: 0 auto;
}

.team-card {
  position: relative;
  text-align: left;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 18%, rgba(45, 81, 98, 0.11), transparent 42%),
    linear-gradient(145deg, #ffffff, #f5f8fb);
  box-shadow: 0 20px 42px rgba(20, 32, 45, 0.13);
}

.team-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  border: 1px solid rgba(45, 81, 98, 0.15);
  background: radial-gradient(circle, rgba(45, 81, 98, 0.12), transparent 72%);
  pointer-events: none;
}

.team-media-wrap {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}

.team-glow {
  position: absolute;
  inset: auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 81, 98, 0.2), rgba(45, 81, 98, 0.04) 68%, transparent 74%);
}

.team-card img {
  position: relative;
  z-index: 1;
  width: 210px;
  height: 210px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  margin: 0;
  box-shadow: 0 14px 34px rgba(21, 34, 47, 0.22);
}

.team-content {
  position: relative;
  z-index: 1;
}

.team-card h3 {
  margin: 0 0 6px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.team-role {
  margin: 0 0 12px;
  color: #335265;
  font-weight: 600;
}

.team-card blockquote {
  margin: 0 0 14px;
  color: #425968;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.team-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-metrics span {
  border: 1px solid #c8d6e1;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #28465b;
  background: rgba(255, 255, 255, 0.84);
}

.testimonials-spot {
  background: linear-gradient(160deg, #2d5162, #23424f);
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
  isolation: isolate;
}

.testimonials-spot h2 {
  color: #f1f7fb;
}

.testimonials-spot::before {
  content: none;
}

.testimonial-spot-card {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: #f7fafc;
  box-shadow: 0 20px 40px rgba(10, 22, 31, 0.24);
}

.testimonial-spot-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.testimonial-spot-copy {
  padding: 34px 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.testimonial-viewport {
  width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.42s ease;
  width: 100%;
}

.testimonial {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
  color: #2b4051;
  box-sizing: border-box;
}

.testimonial blockquote {
  margin: 0 0 26px;
  line-height: 1.6;
  font-size: 1.42rem;
  color: #213a4c;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  position: relative;
  padding: 0 18px;
}

.testimonial blockquote::before,
.testimonial blockquote::after {
  position: static;
  color: rgba(45, 81, 98, 0.55);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.testimonial blockquote::before {
  content: "“";
  margin-right: 6px;
  vertical-align: -2px;
}

.testimonial blockquote::after {
  content: "”";
  margin-left: 6px;
  vertical-align: -2px;
}

.testimonial-author {
  margin: 0 0 4px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1f3345;
}

.testimonial-place {
  margin: 0;
  color: #667b8b;
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #afc0cb;
  padding: 0;
  cursor: pointer;
}

.dots button.active {
  background: #2d5162;
}

.home-sales-promo {
  background: linear-gradient(135deg, #eef4f7, #d9e6ee);
}

.home-sales-promo-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 28px 30px;
  background:
    radial-gradient(circle at top right, rgba(45, 81, 98, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.94));
  box-shadow: 0 18px 38px rgba(17, 33, 44, 0.1);
}

.home-sales-promo-shell h2 {
  margin-bottom: 10px;
}

.home-sales-promo-shell p {
  margin: 0;
  max-width: 760px;
  color: #48606f;
}

.home-sales-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1140px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 40px;
  }

  .hero-form-card {
    max-width: 620px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 84vh;
  }

  .hero-logo-white {
    width: min(140px, 38vw);
  }

  .hero-left h1 {
    font-size: clamp(2rem, 9vw, 3.4rem);
  }

  .testimonial-spot-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .testimonial-spot-media img {
    min-height: 250px;
  }

  .testimonial-spot-copy {
    padding: 22px 18px 16px;
  }

  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    padding: 24px;
  }

  .team-card::before {
    right: -120px;
    top: -110px;
  }

  .team-role {
    margin-bottom: 10px;
  }

  .team-metrics {
    justify-content: center;
  }

  .sales-hero {
    grid-template-columns: 1fr;
  }

  .sales-collage {
    grid-auto-rows: 140px;
  }

  .sales-photo-main {
    min-height: 260px;
  }

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

@media (max-width: 768px) {
  .hero {
    min-height: 78vh;
  }

  .hero-split {
    width: calc(100% - 24px);
    margin: 0 12px;
    padding-top: 20px;
    gap: 16px;
  }

  .hero-left {
    padding-left: 0;
  }

  .hero-logo-white {
    margin-bottom: 14px;
  }

  .hero-left h1 {
    margin-bottom: 10px;
  }

  .hero-subline {
    font-size: 0.97rem;
  }

  .hero-form-card {
    border-radius: 16px;
    padding: 16px 14px;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .hero-form-card h2 {
    margin-bottom: 10px;
  }

  .hero-form-card p {
    margin-bottom: 10px;
  }

  .hero-submit {
    margin-top: 8px;
  }

  .team-card {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .team-card img {
    width: 170px;
    height: 170px;
  }

  .team-glow {
    width: 188px;
    height: 188px;
  }

  .testimonial-spot-card {
    border-radius: 14px;
  }

  .testimonial-spot-copy {
    padding: 16px 14px 14px;
  }

  .testimonial blockquote {
    font-size: 1.18rem;
    padding: 0 6px;
    margin-bottom: 16px;
  }

  .sales-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .sales-hero {
    gap: 18px;
  }

  .sales-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 160px;
  }

  .sales-photo-main {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
  }

  .sales-strip {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .sales-strip-item {
    text-align: left;
  }

  .home-sales-promo-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px;
  }
}

/* Motion + typography refinement */
:root {
  --noma-display-font: "SF Pro Display", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --noma-editorial-font: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --noma-ui-font: "Manrope", "SF Pro Text", "Segoe UI", sans-serif;
}

.home-hero-title,
.rentabilidad-copy h2,
.sales-copy h2,
.who-section h2,
.direction-card h3,
.testimonials-heading h2,
.testimonials-spot h2 {
  font-family: var(--noma-display-font);
  letter-spacing: -0.04em;
}

.hero-copy p,
.rentabilidad-copy p,
.sales-copy p,
.who-intro,
.testimonial-copy,
.direction-card p,
.sales-strip-item span {
  font-family: var(--noma-ui-font);
}

.direction-card blockquote,
.testimonial-copy q,
.testimonial-copy blockquote,
.sales-copy .editorial-line {
  font-family: var(--noma-editorial-font);
}

.sales-section {
  position: relative;
  overflow: hidden;
}

.sales-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.34), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(45, 81, 98, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 46%);
  pointer-events: none;
}

.sales-copy h2,
.who-section h2,
.testimonials-spot h2 {
  position: relative;
  display: inline-block;
}

.sales-copy h2::after,
.who-section h2::after,
.testimonials-spot h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 81, 98, 0.92), rgba(45, 81, 98, 0.18));
  transform-origin: left center;
  animation: nomaLineReveal 1.3s ease both;
}

.sales-copy,
.direction-card,
.testimonials-spot .testimonials-shell,
.sales-strip {
  animation: nomaSoftRise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sales-copy {
  animation-delay: 0.08s;
}

.sales-collage figure,
.sales-collage .sales-photo,
.team-card,
.who-card,
.testimonial-card,
.sales-strip-item {
  will-change: transform, box-shadow;
  transition:
    transform 320ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease,
    background-color 320ms ease;
}

.sales-collage figure:nth-child(1),
.sales-collage .sales-photo:nth-child(1) {
  animation: nomaFloatOne 8s ease-in-out infinite;
}

.sales-collage figure:nth-child(2),
.sales-collage .sales-photo:nth-child(2) {
  animation: nomaFloatTwo 9s ease-in-out infinite;
}

.sales-collage figure:nth-child(3),
.sales-collage .sales-photo:nth-child(3) {
  animation: nomaFloatThree 10s ease-in-out infinite;
}

.sales-strip-item {
  position: relative;
  overflow: hidden;
  animation: nomaSoftRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sales-strip-item:nth-child(1) {
  animation-delay: 0.12s;
}

.sales-strip-item:nth-child(2) {
  animation-delay: 0.22s;
}

.sales-strip-item:nth-child(3) {
  animation-delay: 0.32s;
}

.sales-strip-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.32) 50%, transparent 72%);
  transform: translateX(-130%);
  animation: nomaSheen 6.5s ease-in-out infinite;
  pointer-events: none;
}

.sales-strip-item:hover,
.who-card:hover,
.team-card:hover,
.testimonial-card:hover,
.sales-collage figure:hover,
.sales-collage .sales-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(24, 49, 61, 0.14);
}

.who-card h3,
.team-card h3,
.testimonial-card h3 {
  font-family: var(--noma-display-font);
  letter-spacing: -0.03em;
}

.who-card p,
.team-card p,
.testimonial-meta,
.testimonial-card p {
  font-family: var(--noma-ui-font);
}

.direction-card {
  position: relative;
  overflow: hidden;
}

.direction-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(45, 81, 98, 0.14);
  border-radius: 50%;
  animation: nomaOrbit 14s linear infinite;
  pointer-events: none;
}

.direction-card blockquote {
  font-size: clamp(2.2rem, 2.5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.testimonials-spot {
  position: relative;
  overflow: hidden;
}

.testimonials-spot::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.testimonial-card {
  animation: nomaSoftRise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.08s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.18s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes nomaSoftRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nomaLineReveal {
  from {
    opacity: 0;
    transform: scaleX(0.2);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes nomaFloatOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(-1deg);
  }
}

@keyframes nomaFloatTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(2deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(4deg);
  }
}

@keyframes nomaFloatThree {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(1deg);
  }
}

@keyframes nomaSheen {
  0%, 72%, 100% {
    transform: translateX(-130%);
  }
  82% {
    transform: translateX(130%);
  }
}

@keyframes nomaOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sales-copy,
  .direction-card,
  .testimonials-spot .testimonials-shell,
  .sales-strip,
  .sales-strip-item,
  .testimonial-card,
  .sales-collage figure,
  .sales-collage .sales-photo {
    animation: none !important;
  }

  .sales-strip-item::before,
  .direction-card::after,
  .sales-copy h2::after,
  .who-section h2::after,
  .testimonials-spot h2::after {
    animation: none !important;
  }
}
