:root {
  --navy: #0b2447;
  --navy-deep: #06162d;
  --blue: #146c94;
  --cyan: #19a7ce;
  --gold: #f6b73c;
  --white: #ffffff;
  --off-white: #f6f9fc;
  --text: #172033;
  --muted: #657085;
  --border: #dce5ef;
  --success: #13a36f;
  --shadow: 0 18px 50px rgba(11, 36, 71, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 239, 0.7);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(6, 22, 45, 0.08);
}

.nav-wrapper {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  border-radius: 13px;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(20, 108, 148, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  color: var(--navy);
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #344057;
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--cyan);
}

.main-nav .nav-button {
  padding: 11px 17px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
}

.main-nav .nav-button:hover,
.main-nav .nav-button:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 150px 0 85px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 22, 45, 0.97), rgba(11, 36, 71, 0.94)),
    radial-gradient(circle at top right, #19a7ce, #06162d 58%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.04), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.22;
}

.hero-glow-one {
  width: 380px;
  height: 380px;
  right: 4%;
  top: 12%;
  background: var(--cyan);
}

.hero-glow-two {
  width: 230px;
  height: 230px;
  left: -70px;
  bottom: 40px;
  background: var(--gold);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow,
.eyebrow-light {
  color: #79dcf8;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-content > p {
  max-width: 690px;
  margin: 26px 0 0;
  color: #d8e8f6;
  font-size: 1.12rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #7ee5ff, #22b4dd);
  box-shadow: 0 12px 28px rgba(25, 167, 206, 0.28);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.button-outline {
  color: var(--navy);
  border-color: var(--border);
  background: var(--white);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-full {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  color: #bad6e9;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04));
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.router-visual {
  position: relative;
  height: 240px;
  display: grid;
  place-items: center;
}

.router {
  position: relative;
  z-index: 3;
  width: 230px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding-right: 25px;
  background: linear-gradient(180deg, #f7fbff, #b7d3e6);
  border-radius: 18px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

.router::before,
.router::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 34px;
  height: 10px;
  background: #8eaec4;
  border-radius: 0 0 8px 8px;
}

.router::before {
  left: 22px;
}

.router::after {
  right: 22px;
}

.router-light {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(19, 163, 111, 0.8);
}

.signal {
  position: absolute;
  left: 50%;
  bottom: 108px;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #7ee5ff;
  border-radius: 50%;
}

.signal-one {
  width: 80px;
  height: 80px;
}

.signal-two {
  width: 130px;
  height: 130px;
  opacity: 0.65;
}

.signal-three {
  width: 180px;
  height: 180px;
  opacity: 0.32;
}

.status-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.status-row > div,
.mini-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(3, 14, 30, 0.28);
  border-radius: 14px;
}

.status-row small,
.mini-card span {
  display: block;
  margin-bottom: 5px;
  color: #aac6db;
  font-size: 0.75rem;
}

.status-row strong,
.mini-card strong {
  color: var(--white);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  background: #4be0a5;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(75, 224, 165, 0.8);
}

.mini-card {
  margin-top: 12px;
}

.trust-bar {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-items {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow-x: auto;
  color: #536178;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-items span {
  white-space: nowrap;
}

.section {
  padding: 110px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 22, 45, 0.98), rgba(11, 36, 71, 0.96)),
    var(--navy-deep);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.contact-copy h2,
.cta-content h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.service-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(11, 36, 71, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: 800;
}

.service-card h3,
.step h3,
.price-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.25rem;
}

.service-card p,
.step p,
.price-card li,
.about-content p,
.contact-copy > p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(11, 36, 71, 0.06);
}

.step-number {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 2.1rem;
  font-weight: 900;
}

.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 3;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
}

.price-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(11, 36, 71, 0.06);
}

.price-card.featured {
  transform: translateY(-12px);
  border-color: rgba(25, 167, 206, 0.65);
  box-shadow: var(--shadow);
}

.price-label {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 2rem;
}

.price-status {
  margin: 6px 0 20px;
  color: var(--cyan);
  font-weight: 800;
}

.price-card ul {
  min-height: 130px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 8px 0 8px 25px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: var(--navy-deep);
  background: #c9f5ff;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 900;
}

.package-note {
  margin: 28px 0 0;
  color: var(--muted);
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 70px;
}

.about-content h2,
.cta-content h2 {
  color: var(--white);
}

.about-content p {
  color: #c7d9e9;
  font-size: 1.03rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.values-grid > div {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.values-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #7ee5ff;
  font-size: 1.08rem;
}

.values-grid span {
  color: #c7d9e9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 70px;
}

.contact-copy h2 {
  margin-bottom: 20px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-list > * {
  padding: 17px 18px;
  border: 1px solid var(--border);
  background: var(--off-white);
  border-radius: 13px;
}

.contact-list span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-list strong {
  color: var(--navy);
}

.contact-warning {
  margin-top: 18px;
  color: #80621e;
  font-size: 0.82rem;
}

.contact-form {
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.form-row label {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  background: #fbfdff;
  border: 1px solid #cfdbe7;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(25, 167, 206, 0.13);
}

.form-row textarea {
  resize: vertical;
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 0.88rem;
  text-align: center;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: #b33a3a;
}

.cta-section {
  padding: 72px 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue), var(--cyan));
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-content h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
}

.cta-actions {
  min-width: max-content;
  margin-top: 0;
}

.site-footer {
  padding: 70px 0 28px;
  color: #bdcde0;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 70px;
  padding-bottom: 45px;
}

.brand-footer .brand-text strong {
  color: var(--white);
}

.brand-footer .brand-text small {
  color: #8fa8c0;
}

.footer-grid p {
  max-width: 420px;
}

.footer-grid h3 {
  margin: 5px 0 18px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a:hover {
  color: #7ee5ff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.86rem;
  }

  .hero-grid {
    gap: 42px;
  }

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

  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: block;
    z-index: 1002;
  }

  .menu-toggle.active span:nth-child(2) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 380px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 100px 30px 30px;
    background: var(--white);
    box-shadow: -20px 0 50px rgba(6, 22, 45, 0.18);
    transform: translateX(105%);
    transition: transform 0.28s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 13px 10px;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: 50%;
    bottom: -18px;
    transform: translateX(50%);
  }

  .price-card.featured {
    transform: none;
  }

  .cta-content {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrapper {
    min-height: 70px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .brand-text small {
    font-size: 0.5rem;
  }

  .hero {
    padding: 125px 0 70px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero-content > p {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
    gap: 8px;
  }

  .hero-card {
    padding: 20px;
  }

  .router-visual {
    height: 210px;
  }

  .router {
    width: 190px;
  }

  .section {
    padding: 82px 0;
  }

  .cards-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .status-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ABJO Website Chatbot */
.chatbot-launcher {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 11px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(6, 22, 45, 0.3);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(6, 22, 45, 0.36);
}

.chatbot-launcher-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 1.1rem;
}

.chatbot-panel {
  position: fixed;
  z-index: 1201;
  right: 24px;
  bottom: 94px;
  width: min(390px, calc(100vw - 32px));
  height: min(590px, calc(100vh - 130px));
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(6, 22, 45, 0.28);
  transform-origin: bottom right;
  animation: chatbotOpen 0.22s ease-out;
}

.chatbot-panel[hidden] {
  display: none;
}

@keyframes chatbotOpen {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chatbot-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 17px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
}

.chatbot-agent {
  display: flex;
  align-items: center;
  gap: 11px;
}

.chatbot-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, #ffffff, #bcefff);
  border-radius: 14px;
  font-size: 1.25rem;
  font-weight: 900;
}

.chatbot-agent strong,
.chatbot-agent small {
  display: block;
}

.chatbot-agent small {
  margin-top: 2px;
  color: #cce9f5;
  font-size: 0.73rem;
}

.chatbot-online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  background: #55e6ab;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(85, 230, 171, 0.9);
}

.chatbot-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.chatbot-messages {
  padding: 18px;
  overflow-y: auto;
  background:
    linear-gradient(rgba(246, 249, 252, 0.94), rgba(246, 249, 252, 0.94)),
    radial-gradient(circle at top right, rgba(25, 167, 206, 0.13), transparent 48%);
}

.chat-message {
  width: fit-content;
  max-width: 85%;
  margin-bottom: 12px;
  padding: 11px 13px 8px;
  border-radius: 15px;
  box-shadow: 0 5px 14px rgba(11, 36, 71, 0.06);
}

.chat-message p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  white-space: pre-line;
}

.chat-message time {
  display: block;
  margin-top: 4px;
  color: #8490a2;
  font-size: 0.65rem;
}

.bot-message {
  margin-right: auto;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom-left-radius: 5px;
}

.user-message {
  margin-left: auto;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-bottom-right-radius: 5px;
}

.user-message time {
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
}

.chatbot-quick-actions {
  display: flex;
  gap: 7px;
  padding: 11px 14px;
  overflow-x: auto;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.chatbot-quick-actions button {
  flex: 0 0 auto;
  padding: 8px 10px;
  color: var(--blue);
  background: #f1fbfe;
  border: 1px solid #bdeaf6;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr 45px;
  gap: 8px;
  padding: 11px 14px 8px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.chatbot-form input {
  min-width: 0;
  padding: 11px 13px;
  border: 1px solid #cfdbe7;
  border-radius: 12px;
  outline: none;
}

.chatbot-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(25, 167, 206, 0.12);
}

.chatbot-form button {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.chatbot-note {
  margin: 0;
  padding: 0 14px 10px;
  color: #7a8597;
  background: var(--white);
  font-size: 0.64rem;
  text-align: center;
}

@media (max-width: 620px) {
  .chatbot-launcher {
    right: 14px;
    bottom: 14px;
    padding-right: 13px;
  }

  .chatbot-launcher-text {
    display: none;
  }

  .chatbot-panel {
    inset: 78px 10px 10px;
    width: auto;
    height: auto;
    border-radius: 18px;
  }
}


/* Official ABJO logo integration */
.brand-logo {
  min-width: 0;
}

.brand-logo img {
  display: block;
  width: 210px;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.site-header .brand-logo img {
  width: 205px;
  max-height: 58px;
}

.brand-footer img {
  width: 250px;
  max-height: 92px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
}

.hero-logo-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px 7px 7px;
  color: #dff7ff;
  background: rgba(3, 14, 30, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-logo-badge img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media (max-width: 620px) {
  .site-header .brand-logo img {
    width: 155px;
    max-height: 50px;
  }

  .brand-footer img {
    width: 220px;
  }
}


/* Social media footer */
.footer-grid-social {
  grid-template-columns: 1.35fr 0.65fr 0.7fr 1.3fr;
  gap: 44px;
}

.footer-company .footer-slogan {
  margin-top: 18px;
  color: #7ee5ff;
  font-weight: 800;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin: 5px 0 13px;
}

.footer-social-intro {
  margin: -4px 0 12px;
  color: #91a8bd;
  font-size: 0.85rem;
}

.social-links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.social-link {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  color: #d8e6f2;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.social-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #183552;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 900;
}

.social-link > span:last-child {
  min-width: 0;
}

.social-link strong,
.social-link small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-link strong {
  font-size: 0.82rem;
}

.social-link small {
  margin-top: 1px;
  color: #91a8bd;
  font-size: 0.67rem;
}

.social-link.facebook:hover {
  border-color: #1877f2;
}

.social-link.facebook .social-icon {
  background: #1877f2;
}

.social-link.instagram:hover {
  border-color: #d62976;
}

.social-link.instagram .social-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.linkedin:hover {
  border-color: #0a66c2;
}

.social-link.linkedin .social-icon {
  background: #0a66c2;
  font-size: 0.72rem;
}

.social-link.x-social:hover {
  border-color: #ffffff;
}

.social-link.x-social .social-icon {
  color: #ffffff;
  background: #050505;
}

.social-link.youtube:hover {
  border-color: #ff0000;
}

.social-link.youtube .social-icon {
  background: #ff0000;
}

.social-link.whatsapp:hover {
  border-color: #25d366;
}

.social-link.whatsapp .social-icon {
  background: #25d366;
}

.footer-contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.footer-contact-bar > * {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.footer-contact-bar span,
.footer-contact-bar strong {
  display: block;
}

.footer-contact-bar span {
  margin-bottom: 3px;
  color: #829ab0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact-bar strong {
  color: #dbe8f3;
  font-size: 0.88rem;
}

@media (max-width: 1080px) {
  .footer-grid-social {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer-social-column {
    grid-column: 1 / -1;
  }

  .social-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .footer-grid-social {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-company,
  .footer-social-column {
    grid-column: 1 / -1;
  }

  .social-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-contact-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .footer-grid-social,
  .social-links {
    grid-template-columns: 1fr;
  }

  .footer-company,
  .footer-social-column {
    grid-column: auto;
  }
}

.partner-form{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;margin-top:20px}.partner-form input{padding:14px;border-radius:8px;border:1px solid #ccc;font-size:1rem}.partner-form button{border:none;cursor:pointer}
