/* =========================
   ROOT VARIABLES (BRAND)
========================= */
:root {
  --primary: #4f6d82;
  --secondary: #e5e5e5;
  --accent: #ffffff;
  --cta: #2fa4a9;
  --dark: #1f2f3a;
}

/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: var(--secondary);
  color: var(--dark);
  line-height: 1.6;
}

/* =========================
   HEADER & NAVBAR  (UPDATED]
========================= */

/* ================================
   ROOT THEME VARIABLES
================================ */
:root {
  /* base theme */
  --bg-color: #ffffff;
  --text-color: #111827;
  --nav-bg: #ffffff;
  --accent: #2563eb;

  /* compatibility variables (from last snippet) */
  --bg: var(--bg-color);
  --text: var(--text-color);

  /* fallback if your old code uses these */
  --primary: var(--nav-bg);
  --dark: #111827;
}

/* Dark mode (supports BOTH toggling methods) */
body.dark-mode,
html[data-theme="dark"] {
  --bg-color: #0f172a;
  --text-color: #e5e7eb;
  --nav-bg: #020617;
  --accent: #38bdf8;

  /* compatibility variables */
  --bg: var(--bg-color);
  --text: var(--text-color);
}

/* Optional: if you use body.light-mode somewhere */
body.light-mode {
  --bg: var(--bg-color);
  --text: var(--text-color);
}

/* ================================
   GLOBAL (from 2nd snippet)
================================ */
body {
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* =========================
   HEADER & NAVBAR (original kept + themed)
========================= */
.site-header {
  background: var(--nav-bg);
  width: 100%;
  position: relative;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px; /* keep original padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.brand a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700; /* from updated snippet */
}

/* =========================
   NAV MENU (original kept + themed)
========================= */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto; /* from updated snippet */
  padding: 0;        /* from updated snippet */
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0; /* keep original */
}

.nav-menu a:hover {
  color: var(--accent);
}

/* If you still use a button as a dropdown trigger */
.dropdown-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
}

.dropdown-toggle:hover {
  color: var(--accent);
}

/* =========================
   DROPDOWN (original kept + themed)
========================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;

  background: var(--nav-bg);
  min-width: 220px;
  list-style: none;
  padding: 10px 0; /* keep original */
  border-radius: 6px; /* keep original */
  box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* merged */
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px; /* keep original */
  color: var(--text-color);
  font-weight: 400;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(0,0,0,0.06);
}

/* Dark hover background for dropdown items (matches theme toggle hover idea) */
body.dark-mode .dropdown-menu a:hover,
html[data-theme="dark"] .dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
}

/* Desktop hover to open (kept) */
@media (min-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ================================
   THEME TOGGLE (from last 2, kept + compatible)
================================ */

/* Container (far right) */
.nav-theme-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* Toggle button (icon-only) */
.theme-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.theme-toggle:hover {
  background: rgba(0,0,0,0.06);
  transform: rotate(15deg);
  opacity: 0.8;
}

body.dark-mode .theme-toggle:hover,
html[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255,255,255,0.08);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Icon base */
.theme-toggle .icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Display-based switching (from last snippet) --- */
.icon-sun { display: none; }
.icon-moon { display: block; }

body.dark-mode .icon-sun,
html[data-theme="dark"] .icon-sun { display: block; }

body.dark-mode .icon-moon,
html[data-theme="dark"] .icon-moon { display: none; }

/* --- Animation-based switching (from 2nd snippet, kept) ---
   Works if you use body.light-mode / body.dark-mode classes.
*/
body.light-mode .icon-sun {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
  pointer-events: none;
}

body.dark-mode .icon-moon {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
  pointer-events: none;
}

body.light-mode .icon-moon,
body.dark-mode .icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ================================
   MOBILE SAFETY (merged)
================================ */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .nav-menu {
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
  }

  .nav-theme-toggle {
    margin-left: 0;
  }
}

/* =========================
   MOBILE MENU
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu li a,
  .dropdown-toggle {
    padding: 15px 0;
    display: block;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
    background: var(--primary);
  }

  .dropdown.open > .dropdown-menu {
    display: block;
  }
}
/* ===== DATA MANAGEMENT HERO ===== */
.data-hero {
  position: relative;
  min-height: 430px;
  height: 56vh;
  max-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;

  /* Replace with your real background image path */
  background-image: url("../images/data-management-hero.jpg");
  background-size: cover;
  background-position: center;
}

/* Dark overlay like the screenshot */
.data-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 28, 0.62);
  z-index: 1;
}

/* Center content */
.data-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px 18px;
  max-width: 1100px;
}

/* Icon circle */
.data-hero__icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;

  background: rgba(39, 122, 150, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.data-hero__svg {
  width: 30px;
  height: 30px;
}

/* Title */
.data-hero__title {
  color: #ffffff;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}

/* Subtitle */
.data-hero__subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  line-height: 1.7;
  margin: 0 0 28px;
}

/* Button */
.data-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  background: #ffffff;
  color: #0f4e63;
  text-decoration: none;

  font-weight: 700;
  font-size: 0.95rem;

  padding: 12px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);

  transition: transform 0.15s ease, opacity 0.15s ease;
}

.data-hero__btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.data-hero__arrow {
  font-size: 1.2rem;
  line-height: 1;
}

/* Mobile */
@media (max-width: 520px) {
  .data-hero {
    height: auto;
    min-height: 430px;
    padding: 40px 0;
  }

  .data-hero__subtitle br {
    display: none;
  }
}
/* ===== ENTERPRISE DATA MANAGEMENT (Text Section) ===== */
.data-info {
  background: #ffffff;
  padding: 78px 20px 95px;
}

.data-info__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.data-info__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px;
  letter-spacing: 0.2px;
}

.data-info__text {
  max-width: 880px;
  margin: 0 auto 28px;
  color: #64748b;
  font-size: 1.03rem;
  line-height: 1.9;
}

.data-info__text:last-child {
  margin-bottom: 0;
}
/* ===== WHAT WE OFFER (Data Management) ===== */
.offer {
  background: #ffffff;
  padding: 70px 20px 95px;
}

.offer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.offer__title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 42px;
  letter-spacing: 0.2px;
}

/* 4 columns like the picture */
.offer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 70px;
  row-gap: 30px;
  justify-items: center;
}

/* Each item */
.offer__item {
  width: 100%;
  max-width: 260px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Circle tick icon */
.offer__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  color: #0f4e63;
  border: 2px solid #0f4e63;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  flex: 0 0 26px;
}

/* Text */
.offer__text {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1000px) {
  .offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }
}

@media (max-width: 520px) {
  .offer__grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .offer__item {
    max-width: 100%;
  }
}
/* ===== WHY CHOOSE OUR DATA MANAGEMENT SERVICES ===== */
.why-data {
  background: #ffffff;
  padding: 70px 20px 95px;
}

.why-data__inner {
  max-width: 1150px;
  margin: 0 auto;
}

.why-data__title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 44px;
  letter-spacing: 0.2px;
}

/* 2 columns like the screenshot */
.why-data__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Card */
.why-data__card {
  background: #ffffff;
  border: 2px solid #e6edf3;
  border-radius: 8px;
  padding: 26px 28px;
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.03);
}

/* Card header */
.why-data__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

/* Round tick icon */
.why-data__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f4e63;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 44px;
}

/* Card title */
.why-data__card-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

/* Text */
.why-data__text {
  margin: 0;
  color: #6b7c8f;
  font-size: 1rem;
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 900px) {
  .why-data__grid {
    grid-template-columns: 1fr;
  }

  .why-data__text br {
    display: none;
  }
}
/* ===== DATA CTA STRIP ===== */
.data-cta {
  background: #0f4e63;
  padding: 85px 20px 95px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
}

.data-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.data-cta__title {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: 0.2px;
}

/* Subtitle */
.data-cta__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 0 auto 34px;
  max-width: 860px;
}

/* Buttons row */
.data-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Button base */
.data-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 240px;
  padding: 12px 24px;
  border-radius: 8px;

  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;

  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* White button */
.data-cta__btn--primary {
  background: #ffffff;
  color: #0f4e63;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.data-cta__btn--primary:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

/* Outline button */
.data-cta__btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
}

.data-cta__btn--outline:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Phone icon */
.data-cta__phone-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.data-cta__svg {
  width: 18px;
  height: 18px;
}

/* Mobile */
@media (max-width: 520px) {
  .data-cta__text br {
    display: none;
  }

  .data-cta__btn {
    width: 100%;
    max-width: 360px;
  }
}
/* ===== HARDWARE SOLUTIONS HERO ===== */
.hardware-hero {
  position: relative;
  min-height: 440px;
  height: 56vh;
  max-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;

  /* Replace with your real image path */
  background-image: url("../images/hardware-hero.jpg");
  background-size: cover;
  background-position: center;
}

/* Dark overlay like the screenshot */
.hardware-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 34, 0.62);
  z-index: 1;
}

/* Center content */
.hardware-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px 18px;
  max-width: 1100px;
}

/* Icon circle */
.hardware-hero__icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;

  background: rgba(39, 122, 150, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.hardware-hero__svg {
  width: 30px;
  height: 30px;
}

/* Title */
.hardware-hero__title {
  color: #ffffff;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}

/* Subtitle */
.hardware-hero__subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  line-height: 1.7;
  margin: 0 0 28px;
}

/* Button */
.hardware-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  background: #ffffff;
  color: #0f4e63;
  text-decoration: none;

  font-weight: 700;
  font-size: 0.95rem;

  padding: 12px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);

  transition: transform 0.15s ease, opacity 0.15s ease;
}

.hardware-hero__btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.hardware-hero__arrow {
  font-size: 1.2rem;
  line-height: 1;
}

/* Mobile */
@media (max-width: 520px) {
  .hardware-hero {
    height: auto;
    min-height: 440px;
    padding: 40px 0;
  }

  .hardware-hero__subtitle br {
    display: none;
  }
}
/* ===== HARDWARE INFO (Text Section) ===== */
.hardware-info {
  background: #ffffff;
  padding: 78px 20px 95px;
}

.hardware-info__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hardware-info__title {
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px;
  letter-spacing: 0.2px;
}

.hardware-info__text {
  max-width: 880px;
  margin: 0 auto 28px;
  color: #64748b;
  font-size: 1.03rem;
  line-height: 1.9;
}

.hardware-info__text:last-child {
  margin-bottom: 0;
}
/* ===== WHAT WE OFFER (Hardware) ===== */
.offer {
  background: #ffffff;
  padding: 70px 20px 95px;
}

.offer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.offer__title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 42px;
  letter-spacing: 0.2px;
}

/* 4 columns layout */
.offer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 70px;
  row-gap: 32px;
  justify-items: center;
}

/* Item */
.offer__item {
  width: 100%;
  max-width: 260px;
  display: flex;
  align-items: flex-start; /* for multi-line items */
  gap: 14px;
}

/* Tick circle */
.offer__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  color: #0f4e63;
  border: 2px solid #0f4e63;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  flex: 0 0 26px;
  margin-top: 1px;
}

/* Text */
.offer__text {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1000px) {
  .offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }
}

@media (max-width: 520px) {
  .offer__grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .offer__item {
    max-width: 100%;
  }
}
/* ===== WHY CHOOSE OUR HARDWARE SOLUTIONS ===== */
.why-hardware {
  background: #ffffff;
  padding: 70px 20px 95px;
}

.why-hardware__inner {
  max-width: 1150px;
  margin: 0 auto;
}

.why-hardware__title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 44px;
  letter-spacing: 0.2px;
}

/* Two column grid matching the image */
.why-hardware__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Card styling */
.why-hardware__card {
  background: #ffffff;
  border: 2px solid #e6edf3;
  border-radius: 8px;
  padding: 26px 28px;
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.03);
}

/* Header row inside card */
.why-hardware__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

/* Dark teal circle icon */
.why-hardware__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f4e63;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 44px;
}

/* Card title */
.why-hardware__card-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

/* Paragraph text */
.why-hardware__text {
  margin: 0;
  color: #6b7c8f;
  font-size: 1rem;
  line-height: 1.9;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .why-hardware__grid {
    grid-template-columns: 1fr;
  }

  .why-hardware__text br {
    display: none;
  }
}
/* ===== HARDWARE CTA SECTION ===== */
.hardware-cta {
  background: #0f4e63;
  padding: 85px 20px 95px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
}

.hardware-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.hardware-cta__title {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: 0.2px;
}

/* Subtitle */
.hardware-cta__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 0 auto 34px;
  max-width: 860px;
}

/* Buttons container */
.hardware-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Base button */
.hardware-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 230px;
  padding: 12px 24px;
  border-radius: 8px;

  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;

  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* White primary button */
.hardware-cta__btn--primary {
  background: #ffffff;
  color: #0f4e63;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.hardware-cta__btn--primary:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

/* Outline button */
.hardware-cta__btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
}

.hardware-cta__btn--outline:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Phone icon */
.hardware-cta__phone {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.hardware-cta__svg {
  width: 18px;
  height: 18px;
}

/* Mobile adjustments */
@media (max-width: 520px) {
  .hardware-cta__text br {
    display: none;
  }

  .hardware-cta__btn {
    width: 100%;
    max-width: 360px;
  }
}
/* =========================
   FOOTER (UPDATED)
========================= */
.site-footer {
  background: #ffffff;
  color: #1f2933;
  border-top: 1px solid #e5e7eb;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;              /* a bit more vertical space like pic 2 */
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 40px;
  align-items: start;
}

/* Column headings */
.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #0f172a;
  font-weight: 800;
  text-align: center;              /* center headings like pic 2 */
}

/* Column paragraph */
.footer-column p {
  color: #475569;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;                  /* centers the paragraph block */
  text-align: center;              /* centers text like pic 2 */
}

/* Lists reset */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* QUICK LINKS (center) */
.footer-links li {
  margin-bottom: 12px;
  text-align: center;
}

.footer-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--cta);
}

/* CONTACT US (icon + text centered like pic 2) */
.footer-contact li {
  margin-bottom: 12px;
  color: #475569;
  display: flex;
  justify-content: center;         /* centers the whole row */
  gap: 12px;
}

.footer-contact i {
  color: var(--cta);
  min-width: 18px;                 /* keeps icons aligned vertically */
  margin: 0;                       /* remove old margin-right behavior */
  margin-top: 2px;
}

/* Make contact links look like normal text (NOT blue/underlined) */
.footer-contact a {
  color: #475569;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--cta);
  text-decoration: underline;
}

/* Divider */
.footer-divider {
  border-top: 1px solid #e5e7eb;
  max-width: 1200px;
  margin: auto;
}

/* Bottom row */
.footer-bottom {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #475569;
  font-size: 0.9rem;
}

.footer-socials a {
  color: #64748b;
  margin-left: 15px;
  font-size: 1.1rem;
}

/* =========================
   CHATBOT BUTTON
========================= */
.chatbot-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  z-index: 999;
}

.chatbot-btn:hover {
  background: #083a56;
}