/* ============================================================
 * Kinetic Corp · AI Transformation One-Pager
 * Premium Dark Theme · Modern Responsive Layout
 * ============================================================ */

:root {
  --bg: #070708;
  --bg-2: #0d0d10;
  --bg-3: #0a0a0c;
  --brand: #FF6600;
  --brand-hot: #FF8A33;
  --brand-glow: rgba(21, 12, 5, 0.15);
  --line: rgba(255, 255, 255, 0.08);
  --line-active: rgba(255, 102, 0, 0.35);
  --card: rgba(18, 18, 21, 0.75);
  --card-hover: rgba(26, 26, 30, 0.85);
  --txt: #FFFFFF;
  --txt-70: rgba(255, 255, 255, 0.72);
  --txt-55: rgba(255, 255, 255, 0.55);
  --txt-40: rgba(255, 255, 255, 0.40);
  --display: "Poppins", system-ui, sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --wrap: 1180px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ---------- COMMON LAYOUT & TYPO ---------- */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand));
}
h2.sec {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-size: clamp(28px, 4.2vw, 46px);
  margin-top: 12px;
}
.hot {
  color: var(--brand);
}
.hot-bold {
  color: var(--brand);
  font-weight: 600;
}
/* Términos marcarios (AI First · AI Hybrid · Hybrid AI Method) */
.brand-term {
  font-style: italic;
  font-weight: 600;
  color: var(--brand-hot);
}
section {
  padding: clamp(60px, 8vh, 100px) 0;
  position: relative;
}

/* ---------- SCROLL REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HEADER / NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 7, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(7, 7, 8, 0.88);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  height: clamp(30px, 3.2vw, 35px);
  width: auto;
  transition: var(--transition);
}
.brand-logo:hover {
  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.4));
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.andersen {
  display: flex;
  align-items: center;
}
.andersen-logo {
  height: 20px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.andersen-logo:hover {
  opacity: 1;
}

/* Hamburger toggle styling */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--txt);
  margin: 4px auto;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative; /* confina .hero-glow al hero */
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: clamp(60px, 10vh, 120px);
  overflow: hidden;
  min-height: 100vh;
  background-image: url("img/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .wrap {
  width: 100%;
  position: relative;
  z-index: 2; /* todo el contenido del hero por encima de .hero-glow */
}
.hero-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 70%);
  pointer-events: none;
  z-index: 1;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-size: clamp(38px, 6vw, 76px);
  position: relative;
  z-index: 2;
}
.hero h1 span {
  color: var(--brand);
  background: linear-gradient(135deg, var(--brand), var(--brand-hot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .sub {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--txt);
  margin-top: 24px;
  max-width: 840px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}
.hero .cta {
  position: relative;
  z-index: 2;
}

/* ---------- LOGOS MARQUEE ---------- */
.logos {
  position: relative;
  padding: 36px 0;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  overflow: hidden;
}

/* Fade masks on edges */
.logos-fade-left,
.logos-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logos-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.logos-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.logos-track-wrap {
  overflow: hidden;
  width: 100%;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}

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

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

.logo-item {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1) brightness(1.6) opacity(0.55);
  transition: filter 0.3s ease;
}

.logo-item:hover {
  filter: grayscale(0) brightness(1) opacity(1);
}

/* ---------- PROBLEMA ---------- */
.problema {
  background: linear-gradient(180deg, var(--bg), var(--bg-3));
}
.problema h2.sec {
  max-width: 920px;
}
.risks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.risk {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
}
.risk:hover {
  transform: translateY(-5px);
  border-color: var(--line-active);
  background: var(--card-hover);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.04);
}
.risk .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.25);
  margin-bottom: 24px;
  transition: var(--transition);
}
.risk:hover .ic {
  background: rgba(255, 102, 0, 0.18);
  border-color: rgba(255, 102, 0, 0.5);
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.2);
}
.risk .ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.risk p {
  font-size: 14.5px;
  color: var(--txt-70);
  line-height: 1.5;
  font-weight: 500;
}

/* ---------- SERVICIOS / ORBIT (PENTAGON INTERACTIVO) ---------- */
.servicios {
  background: linear-gradient(180deg, var(--bg-3), var(--bg));
  overflow: hidden;
}
.servicios .head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

/* ── Stage container ── */
.stage {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 1000 / 860;
}

/* ── Background SVG ── */
.stage > .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Concentric rings */
.ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1px;
}
.ring-orbit {
  fill: none;
  stroke: rgba(255, 102, 0, 0.18);
  stroke-width: 1px;
  stroke-dasharray: 6 10;
}
@keyframes spin-orbit {
  to { transform: rotate(360deg); }
}
.orbit-rotate {
  transform-origin: 500px 430px;
  animation: spin-orbit 40s linear infinite;
}

/* Connectors (static lines) */
.connector {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1px;
}

/* Animated flow dots */
.flow {
  fill: none;
  stroke: #FF6600;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-dasharray: 6 200;
  stroke-dashoffset: 0;
  opacity: 0;
  animation: flow-pulse 4s ease-in-out infinite;
}
@keyframes flow-pulse {
  0%   { stroke-dashoffset: 200; opacity: 0; }
  10%  { opacity: 0.9; }
  80%  { opacity: 0.6; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
/* Staggered delay per consecutive flow path */
.flow + .flow { animation-delay: 0.8s; }
.flow + .flow + .flow { animation-delay: 1.6s; }
.flow + .flow + .flow + .flow { animation-delay: 2.4s; }
.flow + .flow + .flow + .flow + .flow { animation-delay: 3.2s; }

/* Glow dots at node tips */
.glow {
  filter: url(#soft);
}
@keyframes core-pulse-anim {
  0%, 100% { opacity: 0.18; r: 105; }
  50%       { opacity: 0.28; r: 118; }
}
.core-pulse {
  animation: core-pulse-anim 3s ease-in-out infinite;
}

/* ── Node base (all nodes) ── */
.node {
  position: absolute;
  transform: translate(-50%, -50%);
}

/* ── CORE disc ── */
.core {
  left: 50%;
  top: 50%;
  z-index: 4;
}
.core-disc {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #1a1a22, #0b0b10);
  border: 1.5px solid rgba(255, 102, 0, 0.35);
  box-shadow: 0 0 32px rgba(255, 102, 0, 0.18), inset 0 0 20px rgba(255, 102, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  transition: box-shadow 0.35s;
}
.core-kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-hot);
  margin-bottom: 6px;
}
.core-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}
.core-title small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-55);
  margin-top: 5px;
}

/* ── Service cards ── */
.svc {
  z-index: 5;
}
/* Pentagon vertex positions (match SVG connector endpoints) */
.svc-scan       { left: 50%;   top: 13.7%; }
.svc-governance { left: 84.8%; top: 39%; }
.svc-training   { left: 71.5%; top: 83.5%; }
.svc-talent     { left: 28.5%; top: 83.5%; }
.svc-agentic    { left: 15.2%; top: 39%; }
.svc-card {
  width: 284px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 16px 14px;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.svc-card:hover,
.svc-card.active {
  border-color: rgba(255, 102, 0, 0.55);
  box-shadow: 0 4px 28px rgba(255, 102, 0, 0.18);
  transform: translateY(-3px);
}
.svc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.svc-ic {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-ic svg {
  width: 16px;
  height: 16px;
  stroke: var(--brand-hot);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-verb {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-hot);
  line-height: 1;
  margin-bottom: 2px;
}
.svc-name {
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.1;
}
.svc-desc {
  font-size: 14.5px;
  color: var(--txt-70);
  line-height: 1.5;
}

/* ---------- BENEFICIOS — light mode ---------- */
.cols3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.beneficios {
  background: #fafafa;
}
.beneficios h2 {
  color: #111111;
}
.bcard {
  background: #f6f6f6;
  border: 1px solid #e0e0e0;
  border-radius: 18px;
  padding: 36px 28px;
  transition: var(--transition);
}
.bcard:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.08);
}
.bcard .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.28);
  margin-bottom: 24px;
  transition: var(--transition);
}
.bcard:hover .ic {
  background: rgba(255, 102, 0, 0.16);
  border-color: rgba(255, 102, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.15);
}
.bcard .ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bcard h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(19px, 1.8vw, 22px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #111111;
}
.bcard ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bcard li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: #444444;
  line-height: 1.45;
}
.bcard li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.8);
}
/* ---------- DIFERENCIAL ---------- */
.diff {
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
}
.dcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.dcard:hover {
  transform: translateY(-6px);
  border-color: var(--line-active);
  background: var(--card-hover);
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.04);
}
.dcard .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.28);
  margin-bottom: 24px;
  transition: var(--transition);
}
.dcard:hover .ic {
  background: rgba(255, 102, 0, 0.16);
  border-color: rgba(255, 102, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.15);
}
.dcard .ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dcard h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(19px, 1.8vw, 22px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.dcard p {
  font-size: 14.5px;
  color: var(--txt-70);
  line-height: 1.55;
}
/* Certificaciones ISO (sellos sobre chip blanco para legibilidad en dark) */
.dcard-certs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}
.cert-badge {
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cert-badge img {
  height: 100%;
  width: auto;
  display: block;
  /* Sellos ya procesados a blanco sobre transparente (iso-*-white.png) */
  opacity: 0.92;
}
/* Respaldo Andersen Global */
.dcard-andersen {
  margin-top: auto;
  padding-top: 24px;
}
.dcard-andersen img {
  height: 22px;
  width: auto;
  opacity: 0.8;
}

/* ---------- CIERRE / CTA ---------- */
.cierre {
  background: radial-gradient(80% 120% at 50% 0%, rgba(255, 102, 0, 0.12), transparent 60%);
  text-align: center;
  padding: clamp(80px, 12vh, 140px) 0;
}
.cierre h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-size: clamp(34px, 5.2vw, 68px);
}
.cierre p {
  color: var(--txt-70);
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 720px;
  margin: 20px auto 0;
  line-height: 1.6;
}
.hs-form-frame {
  width: 100%;
  max-width: 75%;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  font-family: var(--display) !important;
}
/* Bloque visible solo en el export PDF (pdf.css lo muestra) */
.pdf-only {
  display: none;
}
.pdf-contact {
  margin-top: 16px;
  color: var(--txt-55);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.04em;
}
.cta {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand);
  color: #070708;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 18px 36px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
  transition: var(--transition);
}
.cta svg {
  width: 18px;
  height: 18px;
  stroke: #070708;
  stroke-width: 2.2;
  fill: none;
  transition: transform 0.3s ease;
}
.cta:hover {
  background: var(--brand-hot);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(255, 102, 0, 0.4);
}
.cta:hover svg {
  transform: translateX(4px);
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: #070708;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-left {
  display: flex;
  align-items: center;
}
.brand-logo-footer {
  height: 32px;
  width: auto;
  opacity: 0.85;
}
.footer-right {
  font-size: 13px;
  color: var(--txt-40);
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.andersen-logo-footer {
  height: 20px;
  width: auto;
  opacity: 0.6;
}

/* ---------- RESPONSIVE MEDIA QUERIES ---------- */

@media (prefers-reduced-motion: reduce) {
  .flow, .orbit-rotate, .core-pulse {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Desktop and tablet landscape */
@media (max-width: 1100px) {
  .risks {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet portrait and mobile */
@media (max-width: 860px) {
  /* Toggle navbar hamburger display */
  .nav-toggle {
    display: block;
  }
  
  /* Mobil menu drawer style */
  .nav-menu {
    position: fixed;
    top: 60px; /* nav height */
    right: -100%;
    width: 280px;
    height: calc(100vh - 60px);
    background: rgba(7, 7, 8, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--line);
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 24px;
    gap: 40px;
    align-items: flex-start;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-menu.open {
    right: 0;
  }

  /* Hamburger animation */
  .nav-toggle.open .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Grid layout overrides */
  .risks {
    grid-template-columns: repeat(2, 1fr);
  }
  .cols3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Collapse Pentagon Orbit on mobile into vertical scroll list */
  .stage {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .stage > .bg {
    display: none !important;
  }
  .node.core {
    display: none !important;
  }
  .node.svc {
    position: static !important;
    transform: none !important;
    width: 100%;
  }
  .svc-card {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 14px;
  }
  .svc-card:hover {
    transform: none;
  }
}

@media (max-width: 520px) {
  .risks {
    grid-template-columns: 1fr;
  }
  .hs-form-frame {
    max-width: 100%;
  }
  footer .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
