/* ═══════════════════════════════════════════════════════════════════════════
   TRIPLESHOT — components.css
   Navbar · Footer · Botones · Cards · Formulario · WhatsApp · CTA Banner
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(8,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(236,30,50,0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.navbar__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.navbar__logo-main {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 1.5rem;
  color: var(--c-white);
  letter-spacing: -0.03em;
}

.navbar__logo-main span {
  color: var(--c-primary-bright);
}

.navbar__logo-sub {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: var(--fw-medium);
  color: var(--c-text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Hamburguesa */
.navbar__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}

.navbar__burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t-mid) var(--ease),
              opacity var(--t-mid) var(--ease),
              width var(--t-mid) var(--ease);
  transform-origin: center;
}

.navbar__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.navbar__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay Menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 48px) 40px);
  transition: clip-path 0.75s var(--ease);
}

.nav-overlay.open {
  pointer-events: all;
  clip-path: circle(150% at calc(100% - 48px) 40px);
}

.nav-overlay__left {
  flex: 1;
  background: linear-gradient(135deg, #EC1E32 0%, #6D051C 100%);
  display: flex;
  align-items: center;
  padding-left: var(--sp-xl);
}

.nav-overlay__right {
  flex: 1;
  background: var(--c-bg-wine-lt);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--sp-xl);
  gap: var(--sp-md);
}

.nav-overlay__logo {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 4rem;
  color: var(--c-white);
  line-height: 1;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s var(--ease);
}
.nav-overlay__logo span { color: var(--c-bg-wine-lt); }
.nav-overlay.open .nav-overlay__logo { opacity: 1; transform: none; }

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.nav-overlay__link {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--t-fast), transform var(--t-fast);
  opacity: 0;
  transform: translateX(30px);
}

.nav-overlay.open .nav-overlay__link {
  opacity: 1;
  transform: none;
}

.nav-overlay.open .nav-overlay__link:nth-child(1) { transition: all 0.4s 0.35s var(--ease); }
.nav-overlay.open .nav-overlay__link:nth-child(2) { transition: all 0.4s 0.42s var(--ease); }
.nav-overlay.open .nav-overlay__link:nth-child(3) { transition: all 0.4s 0.49s var(--ease); }
.nav-overlay.open .nav-overlay__link:nth-child(4) { transition: all 0.4s 0.56s var(--ease); }
.nav-overlay.open .nav-overlay__link:nth-child(5) { transition: all 0.4s 0.63s var(--ease); }

.nav-overlay__link:hover,
.nav-overlay__link.active {
  color: var(--c-white);
  transform: translateX(12px);
}

.nav-overlay__link.active {
  color: var(--c-primary-bright);
}

.nav-overlay__socials {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
  opacity: 0;
  transition: opacity 0.4s 0.7s;
}
.nav-overlay.open .nav-overlay__socials { opacity: 1; }

.nav-overlay__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.nav-overlay__social:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: scale(1.1);
}

/* ─── BOTONES ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 0.9em 2.2em;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease-back),
              box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
}

/* Shimmer sweep */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ease);
}
.btn:hover::after { left: 150%; }

.btn:hover { transform: scale(1.04); }
.btn:active { transform: scale(0.97); }

/* Variantes */
.btn--primary {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-bright) 100%);
  color: var(--c-white);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  box-shadow: 0 6px 30px rgba(229,57,53,0.65);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 2px solid var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary);
  box-shadow: var(--shadow-btn);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--c-primary);
}

.btn--full { width: 100%; justify-content: center; }

/* Estado loading */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn.loading::before {
  content: '';
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--c-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 6px;
}

/* ─── WHATSAPP BUTTON ────────────────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 25vh;
  right: 32px;
  z-index: 900;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: wa-bounce 2.5s var(--ease) infinite;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wa-ring 2.5s ease infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.7);
  animation: none;
}

/* ─── ESTRELLA CTA ───────────────────────────────────────────────────────── */
.cta-estrella {
  width: 110px;
  height: 110px;
  object-fit: contain;
  animation: estrella-pulse 2.5s ease-in-out infinite;
  display: block;
  margin-inline: auto;
}

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  border: 1px solid var(--c-border-bright);
  border-radius: var(--r-xl);
  padding: var(--sp-lg) var(--sp-xl);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-md);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(45,0,0,0.9) 0%, rgba(18,0,0,0.9) 100%);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(236,30,50,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: var(--fw-black);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-md);
}

.cta-banner__logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.cta-banner__chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.chat-bubble {
  background: var(--c-white);
  color: #222;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  padding: 12px 16px;
  border-radius: var(--r-md);
  border-bottom-left-radius: 4px;
  max-width: 260px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.chat-bubble:nth-child(2) {
  align-self: flex-end;
  border-radius: var(--r-md);
  border-bottom-right-radius: 4px;
  background: var(--c-bg-wine-lt);
  color: var(--c-white);
}

.chat-bubble.visible {
  animation: chat-appear 0.4s var(--ease-back) forwards;
}

/* ─── CARDS ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              border-color var(--t-mid);
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px var(--c-primary-bright), var(--shadow-glow-sm);
  border-color: var(--c-primary);
}

.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover .card__image { transform: scale(1.05); }

.card__body {
  padding: var(--sp-md);
}

.card__meta {
  font-size: var(--fs-xs);
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  color: var(--c-white);
  margin-bottom: var(--sp-xs);
}

.card__excerpt {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
}

/* ─── TESTIMONIOS SWIPER ────────────────────────────────────────────────── */
.swiper--testimonials {
  width: 100%;
}

/* ─── TESTIMONIOS CARD ───────────────────────────────────────────────────── */
.testimonial-card {
  background: linear-gradient(135deg, var(--c-primary) 0%, #A00000 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-lg);
  position: relative;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card__quote {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  margin-bottom: var(--sp-sm);
}

.testimonial-card__inner {
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--c-white);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-sm);
}

.testimonial-card__author strong {
  display: block;
  font-size: var(--fs-small);
  color: var(--c-white);
}
.testimonial-card__author span {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.65);
}

/* ─── FORMULARIO DE CONTACTO ────────────────────────────────────────────── */
.contact-form__title {
  font-size: var(--fs-h2);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  color: var(--c-white);
  margin-bottom: var(--sp-xs);
}

.contact-form__subtitle {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-md);
}

.contact-form__subtitle a {
  color: var(--c-primary-bright);
  font-weight: var(--fw-bold);
}

.form-group {
  margin-bottom: var(--sp-sm);
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--c-text-muted);
  margin-bottom: 6px;
  transition: color var(--t-fast);
}

.form-group:focus-within label {
  color: var(--c-primary-bright);
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 14px 18px;
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
}

.form-control::placeholder { color: rgba(255,255,255,0.2); }

.form-control:focus {
  border-color: var(--c-primary-bright);
  background: rgba(236,30,50,0.06);
  box-shadow: 0 0 0 3px rgba(236,30,50,0.15);
}

.form-control.error {
  border-color: #ff5252;
  box-shadow: 0 0 0 3px rgba(255,82,82,0.15);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  display: none;
  margin-top: var(--sp-sm);
}
.form-message.success {
  display: block;
  background: rgba(76,175,80,0.15);
  border: 1px solid #4CAF50;
  color: #81C784;
}
.form-message.error {
  display: block;
  background: rgba(244,67,54,0.15);
  border: 1px solid #f44336;
  color: #EF9A9A;
}

/* ─── FAQ ACCORDION ──────────────────────────────────────────────────────── */
.faq { padding-block: var(--sp-xl); }

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
  align-items: start;
}

.accordion-item {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.accordion-item.active {
  border-color: var(--c-primary);
  box-shadow: 0 0 20px rgba(236,30,50,0.1);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 20px 24px;
  cursor: pointer;
  transition: background var(--t-fast);
}
.accordion-header:hover { background: rgba(236,30,50,0.06); }

.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--c-primary-bright);
  font-size: 1.1rem;
  font-weight: var(--fw-black);
  transition: transform var(--t-mid) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.accordion-item.active .accordion-icon { transform: rotate(45deg); }

.accordion-title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  color: var(--c-white);
  flex: 1;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.accordion-item.active .accordion-body {
  max-height: 300px;
}

.accordion-body p {
  padding: 0 24px 20px;
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
}

/* ─── CLIENTS MARQUEE ────────────────────────────────────────────────────── */
.clients {
  overflow: hidden;
  padding-block: var(--sp-lg);
}

.clients__track {
  display: flex;
  gap: var(--sp-xl);
  width: max-content;
  animation: marquee 25s linear infinite;
}
.clients__track:hover { animation-play-state: paused; }

.clients__logo {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--t-mid);
  filter: grayscale(1) brightness(2);
  width: 150px;
  height: 100px;
  object-fit: contain;
}
.clients__logo:hover { opacity: 1; filter: none; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--c-bg-wine);
  padding-top: var(--sp-xl);
}

.footer__contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  align-items: start;
}

.footer__contact-section > * {
  min-width: 0;
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: var(--sp-sm);
  padding-block: var(--sp-lg);
  border-top: 1px solid var(--c-border);
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 1rem;
  transition: background var(--t-fast), transform var(--t-fast) var(--ease-back),
              box-shadow var(--t-fast);
}
.social-icon:hover {
  background: var(--c-primary-bright);
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(229,57,53,0.5);
}

.footer__bottom {
  background: rgba(0,0,0,0.5);
  padding-block: 20px;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--c-text-dim);
}

.footer__nav {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: var(--fs-xs);
  color: var(--c-text-dim);
  transition: color var(--t-fast);
}
.footer__nav a:hover,
.footer__nav a.active { color: var(--c-primary-bright); }

/* ─── FONDO GLOBAL ───────────────────────────────────────────────────────── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.page-bg__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 30% 50%,
    rgba(180,0,0,0.55) 0%,
    rgba(80,0,0,0.3) 40%,
    transparent 70%),
    var(--c-bg);
}

#page-particles {
  position: absolute;
  inset: 0;
}

/* ─── HERO BASE ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__glow {
  position: absolute;
  bottom: 0; left: 20%;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-primary-bright), transparent);
  filter: blur(4px);
  animation: glow-line 3s ease-in-out infinite;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  color: var(--c-white);
  margin-bottom: var(--sp-sm);
}

.hero__title--red { color: var(--c-primary-bright); }

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-md);
  max-width: 480px;
}

/* ─── SECTION HEADER DIVIDERS ────────────────────────────────────────────── */
.section-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-primary-bright);
  padding: 6px 16px;
  border: 1px solid var(--c-primary);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-sm);
}

/* ─── LASER LINE ─────────────────────────────────────────────────────────── */
.laser-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 10%,
    var(--c-primary-bright) 50%,
    transparent 90%,
    transparent 100%);
  opacity: 0.7;
  animation: laser-scan 4s ease-in-out infinite;
  filter: blur(1px);
}

/* ─── INFO ITEMS (contacto) ──────────────────────────────────────────────── */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}

.info-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(236,30,50,0.15);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary-bright);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-item__text strong {
  display: block;
  font-size: var(--fs-small);
  color: var(--c-white);
  margin-bottom: 2px;
}
.info-item__text span {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
}
.info-item__text a {
  color: var(--c-primary-bright);
  transition: color var(--t-fast);
}
.info-item__text a:hover { color: var(--c-white); }

/* ─── VAMOS DIRECTO AL OBJETIVO ──────────────────────────────────────────── */
.objetivo-section {
  text-align: center;
  padding-block: var(--sp-md);
  position: relative;
  overflow: visible;
}

.objetivo-diana {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  z-index: 0;
  pointer-events: none;
  animation: objetivo-pulse 3s ease-in-out infinite;
}

.objetivo-section__title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-white);
  position: relative;
  z-index: 1;
  line-height: var(--lh-tight);
}

/* ─── SERVICE HIGHLIGHT ITEMS ────────────────────────────────────────────── */
.service-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  padding: var(--sp-lg) var(--sp-xl);
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
}

.service-highlight__item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.service-highlight__icon {
  color: var(--c-primary-bright);
  font-size: 1.6rem;
  margin-bottom: var(--sp-xs);
}

.service-highlight__title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
}

.service-highlight__desc {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
}

.service-highlight__desc span {
  color: var(--c-primary-bright);
}
