/* =========================
   ROOT
========================= */
:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-section: #f1f5f9;
  --surface: rgba(255, 255, 255, 0.96);

  --text: #0f172a;
  --text-muted: #475569;
  --text-soft: #64748b;

  --primary: #0b5ed7;
  --primary-dark: #084298;
  --primary-soft: #eaf2ff;

  --dark: #08162b;
  --dark-soft: #10233f;

  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);

  --shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 48px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 28px 70px rgba(2, 8, 23, 0.18);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 32px;

  --container-max: 1320px;
  --header-height: 90px;
  --cookie-banner-offset: 0px;

  --transition: 0.28s ease;
}

/* =========================
   BASE
========================= */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-feature-settings: "liga" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container,
.container-lg,
.container-xl,
.container-xxl {
  max-width: var(--container-max);
}

.section-padding {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-padding-sm {
  padding-top: 64px;
  padding-bottom: 64px;
}

.bg-soft {
  background: var(--bg-soft);
}

/* =========================
   TYPOGRAPHY
========================= */
.display-title {
  font-size: clamp(2.2rem, 4.5vw, 4.75rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  min-height: var(--header-height);
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.navbar .container {
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 28px;
  padding: 0;
}

.navbar-brand img,
.navbar img,
img.navbar-logo {
  display: block;
  width: auto;
  max-width: none;
  max-height: none;
}

.navbar-logo {
  display: block;
  width: auto;
  height: 56px;
  object-fit: contain;
}

.navbar-collapse {
  align-items: center;
}

.navbar .navbar-nav {
  align-items: center;
  gap: 0.2rem;
}

.navbar .nav-item {
  display: flex;
  align-items: center;
}

.navbar .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.68rem 0.92rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--primary-dark);
  background: var(--bg-soft);
}

.nav-link-button {
  min-width: 132px;
  padding: 0 18px !important;
  border-radius: 999px !important;
  border: 1px solid transparent;
}

.nav-link-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
  box-shadow: var(--shadow-sm);
}

.nav-link-primary:hover,
.nav-link-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.nav-link-outline {
  background: #fff;
  border-color: var(--border-strong);
  color: var(--text) !important;
}

.nav-link-outline:hover,
.nav-link-outline:focus {
  background: var(--bg-soft);
  border-color: rgba(11, 94, 215, 0.24);
  color: var(--primary-dark) !important;
}

.navbar-account-text {
  display: inline-block;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.navbar .dropdown-menu {
  margin-top: 12px;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.navbar .dropdown-item,
.navbar .dropdown-item-text {
  padding: 0.72rem 0.85rem;
  border-radius: var(--radius-sm);
}

.navbar .dropdown-item:hover {
  background: var(--bg-soft);
}

.navbar-toggler {
  padding: 0.52rem 0.72rem;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: rgba(11, 94, 215, 0.35);
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.04), rgba(255, 255, 255, 0));
}

.hero-banner {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  min-height: 720px;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #08162b;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(
      100deg,
      rgba(5, 15, 32, 0.88) 0%,
      rgba(7, 23, 46, 0.80) 34%,
      rgba(8, 27, 54, 0.56) 58%,
      rgba(8, 27, 54, 0.22) 100%
    );
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 30%, rgba(11, 94, 215, 0.18), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.06), transparent 24%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 110px;
}

.hero-panel {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-title {
  margin: 1.1rem 0 1rem;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 760px;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 640px;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.8;
  font-weight: 700;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.7),
    0 4px 12px rgba(0, 0, 0, 0.55);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-actions .btn {
  min-height: 52px;
  padding: 0.82rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.hero-actions .btn-outline-light {
  border-width: 1.5px;
}

.hero-actions .btn-outline-light:hover,
.hero-actions .btn-outline-light:focus {
  color: var(--text);
  background: #fff;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-features span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.94rem;
  font-weight: 500;
}

/* =========================
   CARDS / BOXES
========================= */
.card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.feature-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 94, 215, 0.18);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 700;
}

.feature-card h3,
.feature-card h4 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =========================
   BUTTONS
========================= */
.btn {
  border-radius: 999px;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-primary {
  border-color: rgba(11, 94, 215, 0.28);
  color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--text);
}

.btn-light:hover,
.btn-light:focus {
  background: #f8fafc;
  border-color: #f8fafc;
  color: var(--text);
}

/* =========================
   FORMS
========================= */
.form-control,
.form-select {
  min-height: 50px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(11, 94, 215, 0.42);
  box-shadow: 0 0 0 0.18rem rgba(11, 94, 215, 0.12);
}

textarea.form-control {
  min-height: 140px;
  border-radius: 18px;
}

/* =========================
   CONTENT
========================= */
.content-styled h2,
.content-styled h3,
.content-styled h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 700;
}

.content-styled p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.content-styled ul {
  padding-left: 1.2rem;
  margin-bottom: 1.25rem;
}

.content-styled li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.content-styled hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid var(--border);
}

/* =========================
   PRODUCT ACTIONS
========================= */
.product-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  align-self: flex-start;
}

.product-header-actions .btn {
  flex: 0 0 auto;
  width: auto !important;
  min-height: 46px;
  padding: 0.75rem 1.25rem;
  border-radius: 12px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* =========================
   INDUSTRIES
========================= */
.industry-card-image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.industry-image-placeholder {
  height: 200px;
  background: #f1f3f5;
}

.industry-card {
  transition: all 0.25s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   SECTIONS
========================= */
.section-dark {
  background:
    radial-gradient(circle at top left, rgba(11, 94, 215, 0.12), transparent 26%),
    linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.86);
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p,
.section-dark li,
.section-dark .text-muted {
  color: rgba(255, 255, 255, 0.72) !important;
}

/* =========================
   COOKIE BANNER
========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  display: none;
  padding: 16px 0;
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-banner-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-link {
  margin-left: 6px;
  color: #8ec5ff;
  text-decoration: underline;
}

.cookie-link:hover {
  color: #c6e2ff;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   CHAT
========================= */
.site-chat-wrap {
  position: fixed;
  right: 20px;
  left: auto;
  bottom: calc(24px + var(--cookie-banner-offset, 0px));
  z-index: 10000;
  width: auto;
  pointer-events: none;
}

.site-chat-wrap * {
  pointer-events: auto;
}

.site-chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: none;
  width: 370px;
  max-width: calc(100vw - 24px);
  height: 580px;
  max-height: calc(100vh - 120px);
  overflow: hidden;
  border: 1px solid rgba(13, 110, 253, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
}

.site-chat-wrap.is-open .site-chat-panel {
  display: block;
}

.site-chat-wrap.is-open .site-chat-toggle {
  display: none;
}

.site-chat-toggle {
  border: 0;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  border-radius: 999px;
  min-height: 58px;
  padding: 0 18px 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(13, 110, 253, 0.30);
}

.site-chat-toggle:hover {
  transform: translateY(-1px);
}

.site-chat-toggle-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-chat-toggle-icon svg {
  display: block;
}

.site-chat-toggle-text {
  white-space: nowrap;
  font-size: 0.95rem;
  line-height: 1;
}

.site-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
}

.site-chat-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-chat-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.site-chat-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.site-chat-subtitle {
  margin-top: 3px;
  font-size: 0.83rem;
  opacity: 0.9;
}

.site-chat-close {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.site-chat-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-chat-body {
  height: 370px;
  overflow-y: auto;
  padding: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f8fd 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-chat-msg {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.94rem;
  line-height: 1.45;
  white-space: normal;
  word-break: break-word;
}

.site-chat-msg-bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #e6eef8;
  color: #1f2937;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.site-chat-msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.18);
}

.site-chat-quick-actions {
  padding: 10px 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
}

.site-chat-chip {
  border: 1px solid #cfe2ff;
  background: #eef5ff;
  color: #0b5ed7;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.81rem;
  font-weight: 600;
  cursor: pointer;
}

.site-chat-chip:hover {
  background: #dbeafe;
}

.site-chat-form {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border-top: 1px solid #eef2f7;
}

.site-chat-input {
  min-height: 52px;
  resize: none;
  border: 1px solid #d9e3f0;
  border-radius: 14px;
  padding: 12px;
  outline: none;
  font-size: 0.95rem;
}

.site-chat-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.site-chat-send {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-chat-products {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.site-chat-product-card {
  display: block;
  padding: 12px;
  border: 1px solid #e6eef9;
  border-radius: 14px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.site-chat-product-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.08);
}

.site-chat-product-brand {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0d6efd;
}

.site-chat-product-title {
  margin-top: 4px;
  font-size: 0.92rem;
  color: #1f2937;
}

.site-chat-product-meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #64748b;
}

.site-chat-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.site-chat-contact-link,
.site-chat-whatsapp-link {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.site-chat-contact-link {
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
}

.site-chat-whatsapp-link {
  background: linear-gradient(135deg, #25d366, #1faa52);
}

.site-chat-contact-link:hover,
.site-chat-whatsapp-link:hover {
  color: #fff !important;
  opacity: 0.95;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  position: relative;
  margin-top: 0;
  background:
    radial-gradient(circle at top left, rgba(11, 94, 215, 0.14), transparent 28%),
    linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-logo {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-title {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer-links a {
  display: inline-block;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: #fff;
}

.footer-link-inline {
  color: rgba(255, 255, 255, 0.86);
}

.footer-link-inline:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

/* =========================
   FOOTER LOGO BAND
========================= */
.footer-logo-bands {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 8px 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-logo-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.footer-logo-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: footerLogoMove 26s linear infinite;
}

.footer-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 96px;
  min-width: 96px;
  height: 48px;
  padding: 4px 8px;
  background: #fff;
}

.footer-logo-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 88px;
  max-height: 34px;
  object-fit: contain;
  border: 0;
  background: transparent;
}

@keyframes footerLogoMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.footer-logo-strip::before,
.footer-logo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 24px;
  z-index: 2;
  pointer-events: none;
}

.footer-logo-strip::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.footer-logo-strip::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

/* =========================
   UTILITIES
========================= */
.text-muted {
  color: var(--text-muted) !important;
}

.rounded-4 {
  border-radius: 1.5rem !important;
}

.shadow-soft {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-medium {
  box-shadow: var(--shadow-md) !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 768px) {
  .footer-logo-bands {
    padding: 10px 0;
  }

  .footer-logo-track {
    gap: 16px;
    animation-duration: 30s;
  }

  .footer-logo-item {
    width: 110px;
    min-width: 110px;
    height: 56px;
    padding: 6px 12px;
  }

  .footer-logo-item img {
    max-width: 100px;
    max-height: 40px;
  }

  .footer-logo-strip::before,
  .footer-logo-strip::after {
    width: 40px;
  }
}

@media (min-width: 992px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner-text {
    max-width: 70%;
  }
}

@media (min-width: 1200px) {
  .footer-logo-track {
    animation-duration: 34s;
  }

  .footer-logo-item {
    width: 120px;
    min-width: 120px;
    height: 60px;
  }

  .footer-logo-item img {
    max-width: 108px;
    max-height: 42px;
  }
}

@media (max-width: 1199px) {
  .navbar {
    min-height: 86px;
  }

  .navbar-logo {
    height: 52px;
  }

  .navbar .nav-link {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero-banner {
    min-height: 660px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 82px;
  }

  .navbar {
    min-height: 82px;
    padding: 10px 0;
  }

  .navbar-brand {
    margin-right: 0.75rem;
  }

  .navbar-logo {
    height: 46px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
  }

  .navbar .navbar-nav {
    align-items: stretch;
    gap: 0.25rem;
  }

  .navbar .nav-link {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 0.92rem 0.95rem;
  }

  .nav-link-button {
    justify-content: center !important;
    min-width: 100%;
    margin-top: 0.35rem;
  }

  .hero-banner {
    min-height: 600px;
    background-position: center center;
  }

  .hero-content {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hero-title {
    font-size: clamp(2.1rem, 7vw, 3.4rem);
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .section-padding {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .footer-logo {
    height: 46px;
  }
}

@media (max-width: 768px) {
  .site-chat-wrap {
    right: 12px;
    left: 12px;
    bottom: calc(12px + var(--cookie-banner-offset, 0px));
  }

  .site-chat-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + var(--cookie-banner-offset, 0px));
    width: auto;
    max-width: none;
    height: min(70vh, 580px);
    max-height: min(70vh, 580px);
  }

  .site-chat-toggle {
    width: 58px;
    min-width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
  }

  .site-chat-toggle-text {
    display: none;
  }

  .site-chat-toggle-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .site-chat-body {
    height: calc(min(70vh, 580px) - 210px);
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 76px;
  }

  .navbar {
    min-height: 76px;
  }

  .navbar-logo {
    height: 42px;
  }

  .hero-banner {
    min-height: auto;
  }

  .hero-content {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-subtitle,
  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-features {
    gap: 0.65rem;
  }

  .hero-features span {
    font-size: 0.88rem;
  }

  .card-img-top {
    height: 200px;
  }

  .feature-card {
    padding: 22px;
  }

  .section-padding {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-padding-sm {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .footer-logo {
    height: 40px;
  }
}