:root {
  --bg: #eef7ff;
  --bg-2: #f8fbff;
  --panel: rgba(255, 255, 255, 0.85);
  --panel-strong: #ffffff;
  --text: #0f2433;
  --muted: #5a7285;
  --line: rgba(16, 79, 117, 0.16);
  --brand-blue: #0ea5e9;
  --brand-cyan: #22d3ee;
  --brand-orange: #f6ad00;
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --shadow-soft: 0 14px 35px rgba(27, 82, 120, 0.12);
  --shadow-strong: 0 28px 80px rgba(26, 81, 119, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.15), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(246, 173, 0, 0.16), transparent 30%),
    linear-gradient(160deg, #f7fcff 0%, var(--bg) 50%, var(--bg-2) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  pointer-events: none;
  width: 28vw;
  height: 28vw;
  border-radius: 50%;
  filter: blur(60px);
}

body::before {
  top: -10vw;
  left: -8vw;
  background: rgba(14, 165, 233, 0.25);
}

body::after {
  right: -8vw;
  bottom: -10vw;
  background: rgba(34, 211, 238, 0.16);
}

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 109, 157, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 109, 157, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 35%, black 30%, transparent 80%);
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  color: #062137;
  background: #fff;
  font-weight: 700;
  text-decoration: none;
  z-index: 3000;
}

.skip-link:focus {
  top: 12px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 2.2rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.35));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4.3rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

p {
  margin-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: #1277a8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.lead,
.section-intro {
  color: var(--muted);
  max-width: 760px;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(10px);
  background: rgba(248, 253, 255, 0.8);
  border-bottom: 1px solid rgba(13, 105, 154, 0.12);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 52px;
  height: 52px;
  padding: 6px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(15, 116, 167, 0.12);
  box-shadow: var(--shadow-soft);
}

nav {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

nav a {
  color: #13384f;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  opacity: 0.94;
  transition: 0.2s ease;
  white-space: nowrap;
}

nav a:hover {
  color: var(--brand-blue);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: #13384f;
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
}

.hero {
  padding-top: 7.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 1.8rem;
  align-items: stretch;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.26rem;
  border-radius: 999px;
  border: 0;
  color: #082030;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(110deg, var(--brand-blue), var(--brand-cyan) 48%, var(--brand-orange));
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.32);
}

.btn-sm {
  padding: 0.48rem 0.95rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: #ffffff;
  color: #1a4c69;
  border: 1px solid rgba(19, 124, 177, 0.24);
  box-shadow: 0 10px 20px rgba(20, 97, 141, 0.1);
}

.hero-points {
  margin: 1.6rem 0 0;
  padding-left: 1.15rem;
  color: #4e6a7e;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 124, 177, 0.18);
  background: linear-gradient(160deg, #ffffff, #f2f9ff);
  box-shadow: var(--shadow-strong);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -25% -44% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 173, 0, 0.25), transparent 70%);
}

.trust-strip-wrap {
  margin-top: 1.1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(14, 120, 172, 0.16);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.kpi-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.kpi-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  padding: 1.05rem;
}

.kpi-label {
  margin: 0 0 0.35rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}

.kpi-value {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.kpi-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  color: #0f3f5a;
  margin-bottom: 0.2rem;
}

.trust-strip span {
  color: #5a7285;
  font-size: 0.88rem;
}

.chip-wrap {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip-wrap span,
.industry-list span {
  padding: 0.47rem 0.87rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 122, 175, 0.18);
  background: #f5fbff;
  color: #23516c;
  font-size: 0.87rem;
}

.cards,
.demo-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.7rem;
}

.cards.three,
.demo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.demo-card,
.faq-item,
.inline-widget-wrap,
.contact-form {
  border: 1px solid rgba(16, 122, 175, 0.16);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(5px);
}

.card,
.demo-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card::before,
.demo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.card:hover,
.demo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 122, 175, 0.32);
  box-shadow: 0 18px 36px rgba(19, 98, 141, 0.18);
}

.card h3,
.demo-card h3 {
  margin-bottom: 0.55rem;
}

.card p,
.demo-card p,
.faq-item p,
.mini-note,
.form-status,
.legal-links a,
.footer-wrap p {
  color: var(--muted);
}

.product-meta {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f4f75;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.17), rgba(246, 173, 0, 0.17));
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.feature-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: #516e81;
  font-size: 0.94rem;
}

.card-actions {
  margin-top: auto;
  padding-top: 0.8rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.logo-wall {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.logo-wall span {
  text-align: center;
  padding: 0.6rem;
  border-radius: 10px;
  border: 1px dashed rgba(16, 122, 175, 0.3);
  color: #4d6f84;
  background: #f9fdff;
  font-weight: 600;
  font-size: 0.86rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.price-card {
  border: 1px solid rgba(16, 122, 175, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
}

.price-lane {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: #0f5f8b;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-tag {
  margin: 0.35rem 0 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  color: #0e405d;
  font-weight: 700;
}

.price-card .btn {
  margin-top: auto;
}

.prequal-card {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 122, 175, 0.2);
  background: #f7fcff;
  display: grid;
  gap: 0.7rem;
}

.wizard-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 0.8rem;
}

.wizard-step[hidden] {
  display: none;
}

.demo-card a,
.legal-links a:hover {
  color: #126f9f;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.badge-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 183, 226, 0.3);
  background: rgba(8, 20, 34, 0.72);
  color: #d6e9fa;
  font-size: 0.82rem;
  font-weight: 600;
}

.timeline {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(165deg, rgba(12, 28, 45, 0.95), rgba(8, 19, 32, 0.92));
  box-shadow: var(--shadow-soft);
  padding: 0.95rem;
}

.timeline-step {
  margin: 0 0 0.3rem;
  color: #6ad7ff;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.timeline-item h3 {
  margin-bottom: 0.35rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.2rem;
  align-items: stretch;
}

.inline-widget-wrap {
  overflow: hidden;
  min-height: 630px;
  background: var(--panel-strong);
}

.contact-form {
  margin-top: 1.35rem;
  padding: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.roi-output p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.56rem;
  padding-bottom: 0.56rem;
  border-bottom: 1px dashed rgba(111, 183, 226, 0.24);
}

.roi-output p strong {
  color: #eaf4ff;
}

.roi-output p span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #9ee0ff;
}

.roi-output p:last-of-type {
  margin-bottom: 0.7rem;
}

label {
  display: grid;
  gap: 0.42rem;
  font-weight: 600;
  color: #1b4a65;
}

label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 120, 172, 0.24);
  background: #ffffff;
  color: #11334a;
  padding: 0.75rem 0.82rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(14, 165, 233, 0.25);
  border-color: rgba(14, 165, 233, 0.52);
}

.recaptcha-slot {
  margin: 1rem 0;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.faq-item {
  padding: 1rem 1.05rem;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(15, 120, 172, 0.15);
  background: #f4fbff;
  padding-top: 2.2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  margin-bottom: 0.8rem;
}

.legal-links {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.legal-links a {
  text-decoration: none;
}

.copyright {
  margin: 0;
  margin-top: 1.2rem;
  padding: 1rem;
  text-align: center;
  color: #5c7687;
  border-top: 1px solid rgba(15, 120, 172, 0.15);
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1300;
  border-radius: 999px;
  text-decoration: none;
  color: #072437;
  font-weight: 800;
  padding: 0.76rem 1.1rem;
  background: linear-gradient(110deg, var(--brand-blue), var(--brand-cyan) 45%, var(--brand-orange));
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.35);
}

.floating-cta:hover {
  transform: translateY(-2px);
}

.floating-whatsapp {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1300;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  padding: 0.72rem 1.05rem;
  background: #25d366;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.floating-lang {
  position: fixed;
  left: 1rem;
  top: 6rem;
  z-index: 1300;
  border: 1px solid rgba(14, 165, 233, 0.3);
  background: #ffffff;
  color: #145678;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.42rem 0.75rem;
}

.chat-widget {
  position: fixed;
  right: 1rem;
  bottom: 4.8rem;
  z-index: 1300;
}

.chat-toggle {
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  color: #fff;
  background: #0f7ab1;
  box-shadow: 0 10px 22px rgba(16, 122, 175, 0.28);
  cursor: pointer;
}

.chat-panel {
  margin-top: 0.45rem;
  width: 250px;
  border: 1px solid rgba(16, 122, 175, 0.2);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 0.8rem;
}

.chat-actions {
  display: grid;
  gap: 0.4rem;
}

.chat-actions button {
  border: 1px solid rgba(16, 122, 175, 0.24);
  background: #f5fbff;
  color: #154e6e;
  border-radius: 8px;
  padding: 0.45rem;
  font-weight: 600;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1260px) {
  nav a {
    font-size: 0.82rem;
  }

  nav {
    gap: 0.55rem;
  }
}

@media (max-width: 1024px) {
  .cards.three,
  .demo-grid,
  .testimonial-grid,
  .logo-wall,
  .pricing-grid,
  .kpi-grid,
  .timeline,
  .two-col,
  .hero-grid,
  .roi-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6.4rem;
  }
}

@media (max-width: 980px) {
  nav {
    position: absolute;
    right: 1rem;
    top: 78px;
    min-width: 240px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 120, 172, 0.19);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .footer-wrap {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.8rem 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .floating-cta {
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.68rem 0.95rem;
    font-size: 0.92rem;
  }

  .floating-whatsapp {
    left: 0.7rem;
    bottom: 0.7rem;
    padding: 0.64rem 0.9rem;
    font-size: 0.9rem;
  }

  .floating-lang {
    left: 0.7rem;
    top: 5.2rem;
  }

  .chat-widget {
    right: 0.7rem;
    bottom: 4.2rem;
  }
}

/* Theme refresh: premium dark layout */
:root {
  --bg: #060f1a;
  --bg-2: #0a1626;
  --panel: rgba(11, 24, 39, 0.82);
  --panel-strong: #0e1e31;
  --text: #e8f4ff;
  --muted: #95adc2;
  --line: rgba(94, 167, 210, 0.24);
  --shadow-soft: 0 16px 38px rgba(2, 8, 18, 0.42);
  --shadow-strong: 0 34px 90px rgba(2, 8, 18, 0.58);
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(14, 165, 233, 0.2), transparent 30%),
    radial-gradient(circle at 95% 6%, rgba(246, 173, 0, 0.12), transparent 28%),
    radial-gradient(circle at 52% 115%, rgba(34, 211, 238, 0.16), transparent 36%),
    linear-gradient(165deg, #050d18 0%, #081425 42%, #0c1b2e 100%);
}

body::before {
  background: rgba(18, 84, 134, 0.42);
}

body::after {
  background: rgba(6, 165, 150, 0.24);
}

.bg-decor {
  background-image:
    linear-gradient(rgba(91, 160, 203, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 160, 203, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(9, 24, 40, 0.82), rgba(7, 18, 31, 0.72));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  color: #6dd8ff;
}

.lead,
.section-intro {
  color: var(--muted);
}

.site-header {
  background: rgba(5, 13, 24, 0.82);
  border-bottom: 1px solid var(--line);
}

.brand {
  color: #ebf5ff;
}

.brand img {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(91, 160, 203, 0.32);
}

nav a {
  color: #d8ebfd;
}

nav a:hover {
  color: #6ed8ff;
}

.menu-toggle {
  color: #d8ebfd;
  background: rgba(11, 24, 39, 0.92);
  border-color: var(--line);
}

.btn {
  color: #06121e;
}

.btn-ghost {
  background: rgba(8, 20, 34, 0.82);
  color: #d9edff;
  border: 1px solid rgba(111, 183, 226, 0.34);
  box-shadow: none;
}

.hero-points {
  color: var(--muted);
}

.hero-panel,
.trust-strip,
.card,
.demo-card,
.faq-item,
.inline-widget-wrap,
.contact-form,
.price-card,
.prequal-card {
  border-color: var(--line);
  background: linear-gradient(165deg, rgba(12, 28, 45, 0.95), rgba(8, 19, 32, 0.92));
  box-shadow: var(--shadow-soft);
}

.hero-panel::after {
  background: radial-gradient(circle, rgba(246, 173, 0, 0.2), transparent 70%);
}

.trust-strip strong,
.card h3,
.demo-card h3,
.price-tag,
.faq-item summary {
  color: #eaf4ff;
}

.trust-strip span,
.feature-list,
.logo-wall span,
.price-lane,
.hero-points li {
  color: var(--muted);
}

.chip-wrap span,
.industry-list span {
  border: 1px solid rgba(111, 183, 226, 0.3);
  background: rgba(8, 20, 34, 0.7);
  color: #d4e9fb;
}

.product-meta {
  color: #9edcff;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.2), rgba(246, 173, 0, 0.16));
  border-color: rgba(111, 183, 226, 0.38);
}

.logo-wall span {
  border-color: rgba(111, 183, 226, 0.28);
  background: rgba(8, 20, 34, 0.72);
}

.demo-card a,
.legal-links a:hover {
  color: #73dbff;
}

label {
  color: #d5e8fa;
}

input,
select,
textarea {
  border-color: rgba(111, 183, 226, 0.3);
  background: rgba(6, 16, 28, 0.9);
  color: #eaf4ff;
}

input::placeholder,
textarea::placeholder {
  color: #8fa7bc;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(79, 197, 245, 0.24);
  border-color: rgba(79, 197, 245, 0.54);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 13, 24, 0.9);
}

.legal-links a,
.copyright {
  color: #8ea7bb;
}

.copyright {
  border-top: 1px solid var(--line);
}

.floating-lang {
  border-color: rgba(111, 183, 226, 0.3);
  background: rgba(9, 22, 36, 0.92);
  color: #d3e8fb;
}

.chat-toggle {
  color: #06121e;
  background: linear-gradient(110deg, var(--brand-blue), var(--brand-cyan) 48%, var(--brand-orange));
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.3);
}

.chat-panel {
  border-color: var(--line);
  background: rgba(9, 22, 36, 0.96);
}

.chat-actions button {
  border-color: rgba(111, 183, 226, 0.3);
  background: rgba(8, 20, 34, 0.9);
  color: #d6e9fa;
}

@media (max-width: 980px) {
  nav {
    border-color: var(--line);
    background: rgba(9, 22, 36, 0.98);
  }
}
