/*
Theme Name: TICORADIOS Operativa 360
Theme URI: https://ticoradios.com/
Author: TICORADIOS
Description: Tema corporativo adaptable para TICORADIOS, con sectores, beneficios, testimonios animados y contacto directo.
Version: 1.0.1
Text Domain: ticoradios
*/

:root {
  --ink: #07100c;
  --navy: #071521;
  --navy-2: #0b2235;
  --panel: #101915;
  --green: #9dff00;
  --green-bright: #b6ff33;
  --paper: #f4f7f2;
  --muted: #9aa69f;
  --line: rgba(157, 255, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(5, 14, 20, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 36px;
  grid-template-columns: auto 1fr auto;
  height: 84px;
  left: 0;
  padding: 0 5vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-wave {
  align-items: center;
  display: flex;
  gap: 2px;
  height: 11px;
  justify-content: center;
  margin-bottom: 3px;
}

.brand-wave i {
  background: var(--green);
  border-radius: 2px;
  display: block;
  height: 5px;
  width: 2px;
}

.brand-wave i:nth-child(2),
.brand-wave i:nth-child(12) {
  height: 7px;
}

.brand-wave i:nth-child(3),
.brand-wave i:nth-child(5),
.brand-wave i:nth-child(9),
.brand-wave i:nth-child(11) {
  height: 9px;
}

.brand-wave i:nth-child(4),
.brand-wave i:nth-child(7),
.brand-wave i:nth-child(10) {
  height: 11px;
}

.brand-name {
  color: var(--paper);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.brand-name em {
  color: var(--green);
  font-style: normal;
}

.brand-lockup small {
  color: #d8e1dc;
  font-size: 8.5px;
  font-style: italic;
  font-weight: 750;
  letter-spacing: 0.025em;
  margin-top: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-footer .brand-wave {
  gap: 3px;
  height: 16px;
}

.brand-footer .brand-wave i {
  width: 3px;
}

.brand-footer .brand-wave i:nth-child(2),
.brand-footer .brand-wave i:nth-child(12) {
  height: 10px;
}

.brand-footer .brand-wave i:nth-child(3),
.brand-footer .brand-wave i:nth-child(5),
.brand-footer .brand-wave i:nth-child(9),
.brand-footer .brand-wave i:nth-child(11) {
  height: 13px;
}

.brand-footer .brand-wave i:nth-child(4),
.brand-footer .brand-wave i:nth-child(7),
.brand-footer .brand-wave i:nth-child(10) {
  height: 16px;
}

.brand-footer .brand-name {
  font-size: 32px;
}

.brand-footer .brand-lockup small {
  font-size: 9px;
  margin-top: 6px;
}

.site-header nav {
  display: flex;
  gap: clamp(20px, 2.3vw, 38px);
  justify-content: center;
}

.site-header nav a {
  color: #d8e1dc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
}

.site-header nav a::after {
  background: var(--green);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  border: 1px solid var(--green);
  border-radius: 4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  padding: 13px 18px;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--green);
  color: var(--ink);
}

.hero {
  align-items: center;
  display: flex;
  min-height: 790px;
  overflow: hidden;
  padding: 124px 5vw 52px;
  position: relative;
}

.hero::after {
  background: linear-gradient(
    90deg,
    var(--navy) 4%,
    rgba(7, 21, 33, 0.97) 34%,
    rgba(7, 21, 33, 0.54) 58%,
    rgba(7, 21, 33, 0.1) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
}

.hero-photos,
.hero-photo {
  inset: 0;
  position: absolute;
}

.hero-photo {
  background-position: center right;
  background-size: cover;
  opacity: 0;
  animation: hero-cycle 18s infinite ease-in-out;
  transform: scale(1.025);
}

.hero-photo-security {
  background-image: url("assets/hero-seguridad-construccion.webp");
}

.hero-photo-hospitality {
  animation-delay: 6s;
  background-image: url("assets/hero-hoteleria-eventos.webp");
}

.hero-photo-logistics {
  animation-delay: 12s;
  background-image: url("assets/hero-logistica-manufactura.webp");
}

.hero-grid {
  background-image: linear-gradient(rgba(157, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  inset: 0 45% 0 0;
  mask-image: linear-gradient(to right, black, transparent);
  position: absolute;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
  position: relative;
  width: 55%;
  z-index: 3;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(54px, 5.1vw, 76px);
  font-weight: 850;
  letter-spacing: -0.058em;
  line-height: 0.98;
  margin-bottom: 28px;
}

h1 span {
  color: var(--green);
}

.hero-copy {
  color: #d5dfda;
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 580px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 28px;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  transition: box-shadow 180ms ease, transform 180ms ease,
    background 180ms ease;
}

.button.primary {
  background: var(--green);
  color: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-bright);
  box-shadow: 0 12px 34px rgba(157, 255, 24, 0.2);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(157, 255, 0, 0.76);
  color: var(--paper);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(157, 255, 0, 0.1);
  transform: translateY(-2px);
}

.trust {
  align-items: center;
  color: #c4d0ca;
  display: flex;
  font-size: 14px;
  gap: 10px;
  margin: 24px 0 0;
}

.trust span {
  align-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  height: 23px;
  justify-content: center;
  width: 23px;
}

.signal-pin {
  align-items: center;
  border: 1px solid rgba(157, 255, 0, 0.56);
  border-radius: 50%;
  display: flex;
  height: 68px;
  justify-content: center;
  position: absolute;
  right: 22%;
  top: 30%;
  width: 68px;
  z-index: 4;
}

.signal-pin::before,
.signal-pin::after {
  border: 1px solid var(--green);
  border-radius: 50%;
  content: "";
  inset: -1px;
  position: absolute;
  animation: ping 2.7s infinite ease-out;
}

.signal-pin::after {
  animation-delay: 0.9s;
}

.signal-pin span {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(157, 255, 0, 0.88);
  height: 12px;
  width: 12px;
}

.hero-sector-cue {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(5, 13, 9, 0.72);
  border: 1px solid rgba(157, 255, 0, 0.34);
  bottom: 30px;
  color: #dce6df;
  display: grid;
  font-size: 11px;
  font-weight: 800;
  height: 42px;
  letter-spacing: 0.09em;
  min-width: 250px;
  overflow: hidden;
  padding: 0 18px 0 32px;
  position: absolute;
  right: 5vw;
  text-transform: uppercase;
  z-index: 5;
}

.hero-sector-cue::before {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
  content: "";
  height: 7px;
  left: 14px;
  position: absolute;
  width: 7px;
}

.hero-sector-cue span {
  grid-area: 1 / 1;
  opacity: 0;
  animation: sector-cycle 18s infinite ease-in-out;
}

.hero-sector-cue span:nth-child(2) {
  animation-delay: 6s;
}

.hero-sector-cue span:nth-child(3) {
  animation-delay: 12s;
}

.quick-benefits {
  background: #091711;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 5vw;
}

.quick-benefits > div {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 18px;
  min-height: 118px;
  padding: 22px 34px;
}

.quick-benefits > div:first-child {
  padding-left: 0;
}

.quick-benefits > div:last-child {
  border-right: 0;
}

.quick-benefits strong {
  color: var(--green);
  font-size: 26px;
}

.quick-benefits span {
  color: #c4d0ca;
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 110px 7vw;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.offer-intro h2,
.reassurance h2,
.final-cta h2 {
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin-bottom: 0;
}

.problem {
  align-items: end;
  background: var(--paper);
  color: #112018;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.2fr 0.8fr;
}

.problem-copy {
  color: #445149;
  font-size: 17px;
  line-height: 1.7;
}

.problem-copy p:last-child {
  margin-bottom: 0;
}

.benefits {
  background: var(--paper);
  color: #112018;
  padding-top: 0;
}

.benefit-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
  background: #e8ede8;
  min-height: 330px;
  padding: 28px;
  position: relative;
  transition: background 180ms ease, transform 180ms ease;
}

.benefit-card:hover {
  background: #e0e9dc;
  transform: translateY(-4px);
}

.card-number {
  color: #77837b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.benefit-visual {
  background: linear-gradient(145deg, #f1f5ef, #dde7da);
  border: 1px solid #b8c9b1;
  height: 136px;
  margin: 30px 0 24px;
  overflow: hidden;
  position: relative;
}

.benefit-visual::after {
  background: linear-gradient(90deg, transparent, rgba(157, 255, 0, 0.3), transparent);
  content: "";
  height: 1px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 18px;
}

.benefit-visual small {
  bottom: 12px;
  color: #597052;
  font-size: 8px;
  font-weight: 900;
  left: 14px;
  letter-spacing: 0.13em;
  position: absolute;
}

.radio-device {
  background: #173122;
  border-radius: 8px;
  height: 66px;
  left: 30px;
  position: absolute;
  top: 34px;
  width: 40px;
}

.radio-device::before {
  background: #173122;
  border-radius: 3px 3px 0 0;
  content: "";
  height: 22px;
  left: 8px;
  position: absolute;
  top: -17px;
  width: 4px;
}

.radio-device i {
  background: var(--green);
  border-radius: 50%;
  height: 6px;
  position: absolute;
  right: 7px;
  top: 8px;
  width: 6px;
}

.radio-device b {
  color: var(--green);
  font-size: 9px;
  left: 10px;
  letter-spacing: 0.08em;
  position: absolute;
  top: 26px;
}

.radio-device span {
  border: 1px solid #78916f;
  bottom: 9px;
  left: 10px;
  position: absolute;
  right: 10px;
}

.signal-waves {
  align-items: center;
  display: flex;
  gap: 7px;
  left: 86px;
  position: absolute;
  top: 39px;
}

.signal-waves i {
  border: 2px solid #3f6b35;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  display: block;
  height: 28px;
  transform: rotate(45deg);
  width: 28px;
}

.signal-waves i:nth-child(2) { height: 44px; margin-left: -24px; width: 44px; }
.signal-waves i:nth-child(3) { height: 60px; margin-left: -40px; width: 60px; }

.map-route {
  background-image: linear-gradient(#c4d2bf 1px, transparent 1px), linear-gradient(90deg, #c4d2bf 1px, transparent 1px);
  background-size: 24px 24px;
  inset: 19px 12px 28px;
  position: absolute;
}

.map-route > i {
  background: #597a4e;
  border-radius: 50%;
  height: 6px;
  position: absolute;
  width: 6px;
}

.map-route > i:nth-child(1) { left: 10%; top: 70%; }
.map-route > i:nth-child(2) { left: 42%; top: 35%; }
.map-route > i:nth-child(3) { right: 12%; top: 62%; }

.map-pin {
  background: #173122;
  border: 5px solid var(--green);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 6px 16px rgba(23, 49, 34, 0.25);
  height: 29px;
  left: 57%;
  position: absolute;
  top: 18%;
  transform: rotate(-45deg);
  width: 29px;
}

.sos-rings {
  align-items: center;
  display: flex;
  height: 106px;
  justify-content: center;
  position: relative;
}

.sos-rings i {
  border: 1px solid rgba(63, 107, 53, 0.45);
  border-radius: 50%;
  height: 78px;
  position: absolute;
  width: 78px;
}

.sos-rings i:nth-child(2) { height: 104px; width: 104px; }

.sos-rings strong {
  align-items: center;
  background: #173122;
  border: 4px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(157, 255, 0, 0.12);
  color: var(--green);
  display: flex;
  font-size: 14px;
  height: 58px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 58px;
  z-index: 1;
}

.network-map { inset: 18px 18px 28px; position: absolute; }
.network-map::before, .network-map::after { background: #90a98a; content: ""; left: 50%; position: absolute; top: 49%; transform: translate(-50%, -50%); }
.network-map::before { height: 1px; width: 82%; }
.network-map::after { height: 72%; width: 1px; }
.hub, .node { border-radius: 50%; position: absolute; z-index: 1; }
.hub { align-items: center; background: #173122; color: var(--green); display: flex; font-size: 12px; font-weight: 900; height: 48px; justify-content: center; left: 50%; top: 49%; transform: translate(-50%, -50%); width: 48px; }
.node { background: var(--green); border: 5px solid #3f6b35; height: 17px; width: 17px; }
.n1 { left: 5%; top: 41%; } .n2 { right: 5%; top: 41%; } .n3 { left: 47%; top: 2%; } .n4 { bottom: 2%; left: 47%; }

.benefit-card h3,
.sector-card h3,
.process-line h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.benefit-card p,
.sector-card p,
.process-line p {
  color: #657169;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.offer {
  background: #0a120e;
}

.offer-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.offer-intro {
  padding: clamp(40px, 5vw, 76px);
}

.offer-intro > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  margin: 28px 0;
  max-width: 560px;
}

.text-link {
  border-bottom: 1px solid var(--green);
  color: var(--green);
  display: inline-flex;
  font-weight: 800;
  gap: 50px;
  padding-bottom: 8px;
}

.include-list {
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 42px;
}

.include-list div {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9e2dd;
  display: flex;
  font-size: 14px;
  gap: 14px;
  padding: 20px 12px;
}

.include-list span {
  color: var(--green);
  font-weight: 900;
}

.sectors {
  background: #eff3ee;
  color: #112018;
}

.sector-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
}

.sector-card {
  background: #e8ede8;
  border: 1px solid #cad2ca;
  margin: 0 -1px -1px 0;
  min-height: 340px;
  overflow: hidden;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease,
    box-shadow 180ms ease;
}

.sector-card:hover {
  background: white;
  box-shadow: 0 18px 38px rgba(17, 32, 24, 0.12);
  transform: translateY(-4px);
}

.sector-image {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.sector-image::after {
  background: linear-gradient(to top, rgba(5, 14, 9, 0.52), transparent 64%);
  content: "";
  inset: 0;
  position: absolute;
}

.sector-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.sector-card:hover .sector-image img {
  transform: scale(1.04);
}

.sector-image span {
  background: rgba(5, 14, 9, 0.78);
  border: 1px solid rgba(157, 255, 0, 0.48);
  bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  left: 16px;
  letter-spacing: 0.12em;
  padding: 7px 9px;
  position: absolute;
  z-index: 1;
}

.sector-content {
  padding: 25px 28px 30px;
}

.process {
  background: #09130e;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  position: relative;
}

.process-line::before {
  background: var(--line);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 25px;
}

.process-line article {
  padding-right: 36px;
  position: relative;
}

.process-line article > span {
  align-items: center;
  background: #09130e;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  font-size: 13px;
  font-weight: 900;
  height: 50px;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  width: 50px;
  z-index: 1;
}

.process-line p {
  color: var(--muted);
}

.reassurance {
  align-items: center;
  background: #101b15;
  display: grid;
  gap: 7vw;
  grid-template-columns: 0.9fr 1.1fr;
}

.reassurance-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  margin: 28px 0;
}

.reassurance-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 420px;
  position: relative;
}

.radar {
  background: repeating-radial-gradient(
    circle,
    transparent 0 54px,
    rgba(157, 255, 0, 0.18) 55px 56px
  );
  border: 1px solid rgba(157, 255, 0, 0.22);
  border-radius: 50%;
  height: 380px;
  position: relative;
  width: 380px;
}

.radar i {
  background: linear-gradient(50deg, rgba(157, 255, 0, 0.25), transparent 55%);
  border-radius: 50%;
  inset: 0;
  position: absolute;
  animation: sweep 8s linear infinite;
}

.dot {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--green);
  height: 8px;
  position: absolute;
  width: 8px;
  z-index: 2;
}

.d1 {
  left: 26%;
  top: 31%;
}

.d2 {
  right: 25%;
  top: 48%;
}

.d3 {
  bottom: 22%;
  left: 44%;
}

.status-card {
  backdrop-filter: blur(12px);
  background: rgba(10, 18, 14, 0.85);
  border: 1px solid var(--line);
  bottom: 20px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
  padding: 22px 26px;
  position: absolute;
  right: 2vw;
}

.status-card span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.status-card strong {
  font-size: 18px;
  margin: 8px 0 4px;
}

.status-card small {
  color: var(--muted);
}

.testimonials {
  background: #0b1510;
  border-bottom: 1px solid rgba(157, 255, 0, 0.14);
  border-top: 1px solid rgba(157, 255, 0, 0.14);
}

.testimonial-heading {
  align-items: end;
  display: grid;
  gap: 7vw;
  grid-template-columns: 1.15fr 0.85fr;
}

.testimonial-heading > p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  max-width: 560px;
}

.testimonial-toolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}

.testimonial-toolbar > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-toolbar div {
  display: flex;
  gap: 8px;
}

.testimonial-toolbar button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(157, 255, 0, 0.38);
  border-radius: 50%;
  color: var(--green);
  cursor: pointer;
  display: flex;
  font-size: 20px;
  height: 46px;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease;
  width: 46px;
}

.testimonial-toolbar button:hover,
.testimonial-toolbar button:focus-visible {
  background: var(--green);
  color: var(--ink);
}

.testimonial-track {
  display: grid;
  gap: 16px;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-auto-flow: column;
  margin-top: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(157, 255, 0, 0.35) transparent;
}

.testimonial-track:hover {
  cursor: default;
}

.testimonial-card {
  background: #101d16;
  border: 1px solid rgba(157, 255, 0, 0.16);
  display: flex;
  flex-direction: column;
  margin-right: -1px;
  min-height: 410px;
  padding: 34px;
  scroll-snap-align: start;
  transition: background 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.testimonial-card:hover {
  background: #14231a;
  border-color: rgba(157, 255, 0, 0.48);
  transform: translateY(-4px);
}

.testimonial-card-top {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.testimonial-card-top span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.testimonial-card-top b {
  color: rgba(157, 255, 0, 0.28);
  font-family: Georgia, serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 0.7;
}

.testimonial-card h3 {
  font-size: 23px;
  margin: 48px 0 16px;
}

.testimonial-card > p {
  color: #aebbb4;
  line-height: 1.7;
}

.testimonial-author {
  border-top: 1px solid rgba(157, 255, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-top: 22px;
}

.testimonial-author strong {
  color: var(--green);
  font-size: 14px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 12px;
}

.faq {
  background: var(--paper);
  color: #112018;
}

.faq-list {
  border-top: 1px solid #bdc9be;
  margin-left: auto;
  margin-top: 58px;
  max-width: 850px;
}

.faq details {
  border-bottom: 1px solid #bdc9be;
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 750;
  list-style: none;
  padding: 24px 42px 24px 0;
  position: relative;
}

.faq summary::after {
  color: #496239;
  content: "+";
  font-size: 28px;
  position: absolute;
  right: 4px;
  top: 17px;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  color: #5b685f;
  line-height: 1.7;
  max-width: 750px;
  padding-bottom: 24px;
}

.final-cta {
  align-items: center;
  background: var(--green);
  color: var(--ink);
  display: grid;
  gap: 7vw;
  grid-template-columns: 1fr auto;
  padding: 88px 7vw;
}

.final-cta .eyebrow {
  color: #30450e;
}

.final-cta p:not(.eyebrow) {
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 630px;
}

.contact-links {
  display: grid;
  gap: 12px;
  min-width: min(330px, 100%);
}

.contact-links a {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 17px 22px;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  background: #15251b;
  transform: translateY(-2px);
}

.contact-links span {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 18px;
}

.contact-links .contact-whatsapp {
  background: #163d25;
  border-color: #163d25;
  box-shadow: 0 10px 24px rgba(5, 18, 10, 0.18);
}

.contact-links .contact-whatsapp:hover,
.contact-links .contact-whatsapp:focus-visible {
  background: #0e4a25;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  color: #062710;
  display: flex;
  gap: 10px;
  padding: 9px 17px 9px 9px;
  position: fixed;
  right: 24px;
  transition: box-shadow 180ms ease, transform 180ms ease;
  z-index: 50;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  transform: translateY(-3px);
}

.whatsapp-float span {
  align-items: center;
  background: white;
  border-radius: 50%;
  display: flex;
  font-size: 21px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.whatsapp-float b {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.button.light {
  background: var(--ink);
  color: var(--green);
  min-width: 300px;
}

.button.light:hover,
.button.light:focus-visible {
  background: #15251b;
}

footer {
  align-items: center;
  background: #050b08;
  display: grid;
  gap: 34px;
  grid-template-columns: auto 1fr auto;
  padding: 48px 7vw;
}

footer p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  text-align: center;
}

footer > div {
  display: flex;
  gap: 24px;
}

footer > div a {
  color: #d6e0da;
  font-size: 13px;
  font-weight: 700;
}

@keyframes ping {
  0% {
    opacity: 0.9;
    transform: scale(0.7);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

@keyframes hero-cycle {
  0%,
  30% {
    opacity: 1;
    transform: scale(1);
  }
  35%,
  95% {
    opacity: 0;
    transform: scale(1.025);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes sector-cycle {
  0%,
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  35%,
  95% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1000px) {
  .site-header nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero-content {
    width: 72%;
  }

  .quick-benefits,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-benefits > div:nth-child(2) {
    border-right: 0;
  }

  .offer-panel,
  .problem,
  .reassurance,
  .testimonial-heading {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .include-list {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

  .process-line::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .whatsapp-float {
    bottom: 16px;
    padding: 7px;
    right: 16px;
  }

  .whatsapp-float b {
    display: none;
  }

  .testimonial-track {
    grid-auto-columns: 100%;
  }

  .testimonial-toolbar {
    align-items: flex-start;
    gap: 18px;
  }

  .testimonial-toolbar > span {
    line-height: 1.5;
    max-width: 190px;
  }

  .testimonial-card {
    min-height: 390px;
  }

  .site-header {
    height: 72px;
    padding: 0 20px;
  }

  .brand-header .brand-name {
    font-size: 20px;
  }

  .brand-header .brand-lockup small {
    font-size: 5.7px;
  }

  .header-cta {
    font-size: 11px;
    padding: 11px 12px;
  }

  .hero {
    align-items: end;
    min-height: 790px;
    padding: 108px 20px 46px;
  }

  .hero::after {
    background: linear-gradient(
      to bottom,
      rgba(7, 21, 33, 0.15),
      rgba(7, 21, 33, 0.84) 42%,
      var(--navy) 72%
    );
  }

  .hero-photo {
    background-position: 66% center;
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: 47px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .signal-pin {
    right: 20%;
    top: 22%;
  }

  .hero-sector-cue {
    bottom: auto;
    left: 20px;
    right: auto;
    top: 82px;
  }

  .quick-benefits {
    grid-template-columns: 1fr;
  }

  .quick-benefits > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 0;
    min-height: 90px;
    padding: 18px 20px;
  }

  .quick-benefits > div:first-child {
    padding-left: 20px;
  }

  .section {
    padding: 78px 20px;
  }

  .problem {
    gap: 40px;
  }

  .benefits {
    padding-top: 0;
  }

  .benefit-grid,
  .sector-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 280px;
  }

  .benefit-visual {
    margin-top: 42px;
  }

  .offer {
    padding-left: 0;
    padding-right: 0;
  }

  .offer-intro,
  .include-list {
    padding: 38px 20px;
  }

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

  .sector-grid {
    margin-top: 40px;
  }

  .process-line article {
    padding-right: 0;
  }

  .radar {
    aspect-ratio: 1;
    height: auto;
    max-width: 300px;
    width: 100%;
  }

  .reassurance > * {
    min-width: 0;
  }

  .status-card {
    right: 0;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 68px 20px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 44px 20px;
    text-align: center;
  }

  .brand-footer {
    justify-content: center;
  }

  footer > div {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
