/* =========================================================
   ZENDIOTECH — GLOBAL DESIGN SYSTEM
   Shared across all pages
   ========================================================= */

:root {
  /* COLORS */
  --navy: #062f5f;
  --navy-deep: #041d3a;
  --blue: #0080be;
  --blue-dark: #0070a8;
  --teal: #16b8b0;
  --cyan: #20c6d0;
  --ink: #10233f;
  --text: #172033;
  --muted: #526174;
  --muted-light: #d9e7f2;
  --page: #f4f7fb;
  --card: #ffffff;
  --line: #e2edf4;
  --soft: #e8f3fa;

  /* SHADOWS */
  --shadow: 0 18px 45px rgba(18, 43, 70, 0.10);
  --shadow-sm: 0 4px 12px rgba(18, 43, 70, 0.08);

  /* SPACING & LAYOUT */
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;

  /* TYPOGRAPHY */
  --font-primary: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* TIMING */
  --transition: 220ms ease;
  --transition-fast: 150ms ease;
  --transition-slow: 300ms ease;
}

/* =========================================================
   BASE STYLES
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: var(--page);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */

.site-header {
  position: relative;
  color: #fff;
  background:
linear-gradient(
135deg,
#041d3a 0%,
#062f5f 48%,
#075f91 100%
);
  overflow: hidden;
  z-index: 100;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  inset-inline-start: -240px;
  top: -250px;
  border-radius: 50%;
  background: rgba(32, 198, 208, 0.10);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
  padding: 20px 0;
}

.logo {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto;
  gap: 10px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.logo img {
  display: block !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  object-fit: contain !important;
}

.logo span {
  display: inline-block;
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  flex: 0 0 44px;
  transition: background-color var(--transition);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.menu-toggle span {
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  display: block;
  width: 21px;
  height: 2px;
  margin: 0;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -7px);
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, 7px);
}

.menu-toggle.active span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.language-toggle {
  border: 0;
  border-radius: 8px;
  padding: 9px 13px;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition: all var(--transition);
}

.language-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* =========================================================
   CONTAINER & SECTIONS
   ========================================================= */

.container {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 60px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
}

/* =========================================================
   HERO SECTIONS
   ========================================================= */

.hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 60px;
  width: min(100% - 48px, 1240px);
  min-height: 690px;
  margin: 0 auto;
  padding: 80px 0 110px;
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content > p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-block;
  padding: 14px 28px;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 128, 190, 0.25);
}

.button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.button:active {
  transform: translateY(0);
}

.button.light {
  color: var(--blue);
  background: transparent;
  border: 2px solid var(--blue);
}

.button.light:hover {
  background: rgba(0, 128, 190, 0.05);
  border-color: var(--blue-dark);
}

/* =========================================================
   CARDS
   ========================================================= */

.card {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card:hover {
  box-shadow: var(--shadow);
}

.card:focus-within {
  box-shadow: var(--shadow);
  border-color: var(--blue);
}

/* 3D tilt effect on pointer:fine devices */
@media (pointer: fine) {
  .card {
    cursor: pointer;
  }

  .card:hover {
    transform: perspective(900px) rotateX(-2deg) rotateY(3deg) translateY(-4px);
  }
}

.card-number {
  display: block;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.card h3 {
  font-size: 1.3rem;
  margin: 0;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* =========================================================
   GRIDS
   ========================================================= */

.grid {
  display: grid;
  gap: 28px;
}

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

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

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

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

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

/* =========================================================
   FORMS
   ========================================================= */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--text);
  transition: all var(--transition);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: var(--muted-light);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  background: #fff;
  outline: none;
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: #dc2626;
}

input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
  border-color: #16a34a;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3,
.site-footer .footer-title,
.site-footer .footer-column > h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.site-footer .footer-column > div a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.site-footer .footer-column > div a:hover {
  color: #fff;
}


.footer-column p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-column a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-bottom {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.footer-social a:hover {
  color: #fff;
}

/* =========================================================
   UTILITIES
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 300ms ease, transform 300ms ease;
}

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

.back-to-top {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

.hide-mobile {
  display: block;
}

.hide-desktop {
  display: none;
}

/* =========================================================
   ORBITAL & 3D ELEMENTS
   ========================================================= */

.orbit {
  border: 1px solid rgba(0, 128, 190, 0.2);
  border-radius: 50%;
  position: absolute;
}

.core {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(0, 128, 190, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.core-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.node {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 128, 190, 0.6);
  border-radius: 50%;
  left: 50%;
  top: 50%;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* Legal links row within the global footer */
.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  padding-top: 28px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal .footer-title {
  margin: 0;
}

.footer-legal .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal .footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal .footer-links a:hover {
  color: #fff;
}

@media (max-width: 820px) {
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .footer-legal .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}


/* =========================================================
PREMIUM SHARED HEADER & FOOTER
International corporate visual refinement.
Keeps existing HTML and functionality unchanged.
========================================================= */

/* ---------- Header ---------- */

.site-header {
  background:
    linear-gradient(
      135deg,
      #031a34 0%,
      #062f5f 48%,
      #075f91 100%
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 35px rgba(4, 29, 58, 0.12);
}

.site-header::before {
  width: 620px;
  height: 620px;
  inset-inline-start: -300px;
  top: -320px;
  background:
    radial-gradient(
      circle,
      rgba(32, 198, 208, 0.13) 0%,
      rgba(32, 198, 208, 0.04) 38%,
      transparent 70%
    );
}

.nav {
  gap: 36px;
  padding: 18px 0;
}

.logo {
  letter-spacing: -0.025em;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.logo:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.nav-links {
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(3, 26, 52, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 25px rgba(0, 0, 0, 0.08);
}

.nav-links a {
  position: relative;
  padding: 9px 11px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 650;
  opacity: 0.78;
  transition:
    color var(--transition),
    background-color var(--transition),
    opacity var(--transition),
    transform var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  opacity: 1;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.language-toggle {
  margin-inline-start: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: none;
  transform: none;
  font-size: 13px;
  font-weight: 750;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.language-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.language-toggle:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      #031a34 0%,
      #041d3a 52%,
      #062f5f 100%
    );
  border-top: 1px solid rgba(32, 198, 208, 0.10);
  padding: 72px 0 22px;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  inset-inline-end: -260px;
  top: -300px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(32, 198, 208, 0.09) 0%,
      rgba(32, 198, 208, 0.025) 42%,
      transparent 70%
    );
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 18px !important;
}

.footer-brand .logo img {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
}

.footer-brand .logo span {
  font-size: 23px;
}

.footer-column h3,
.site-footer .footer-title,
.site-footer .footer-column > h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.footer-column p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-column a,
.site-footer .footer-column > div a {
  position: relative;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.5;
  transition:
    color var(--transition),
    transform var(--transition);
}

.footer-column a:hover,
.site-footer .footer-column > div a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-column span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.footer-legal {
  position: relative;
  z-index: 1;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 22px;
  border-top-color: rgba(255, 255, 255, 0.09);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
}

.footer-bottom span:last-child {
  color: rgba(255, 255, 255, 0.58);
}

/* ---------- Shared motion accessibility ---------- */

@media (prefers-reduced-motion: reduce) {
  .logo,
  .nav-links a,
  .language-toggle,
  .footer-column a {
    transition: none;
  }
}

/* ---------- Premium mobile header/footer ---------- */

@media (max-width: 820px) {
  .nav {
    padding: 14px 0;
  }

  .nav-links {
    gap: 4px !important;
    padding: 12px !important;
    background:
      linear-gradient(
        145deg,
        rgba(3, 26, 52, 0.99),
        rgba(6, 47, 95, 0.98)
      ) !important;
    border-color: rgba(255, 255, 255, 0.10) !important;
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  }

  .nav-links a {
    padding: 13px 14px !important;
    background: transparent !important;
    font-size: 14px;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .language-toggle {
    margin: 6px 0 0 !important;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-content {
    gap: 34px;
    margin-bottom: 34px;
  }

  .footer-bottom {
    gap: 10px;
    line-height: 1.6;
  }
}

/* PREMIUM LEGAL ALIGNMENT */

.site-footer .footer-legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer .footer-legal .footer-title {
  flex: 0 0 auto;
  margin: 0;
  line-height: 1;
}

.site-footer .footer-legal .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer .footer-legal .footer-links a {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .footer-legal .footer-links a:hover {
  color: #fff;
}

@media (max-width: 560px) {
  .site-footer .footer-legal {
    display: block;
    margin-top: 4px;
    padding-top: 22px;
  }

  .site-footer .footer-legal .footer-title {
    margin-bottom: 14px;
  }

  .site-footer .footer-legal .footer-links {
    display: grid;
    gap: 10px;
  }

  .site-footer .footer-legal .footer-links a {
    margin: 0;
  }
}

/* ============================================================
   ZENDIOTECH — AUTHORITATIVE SHARED FOOTER
   This block is intentionally last so the shared footer
   remains consistent across every page.
   ============================================================ */

.site-footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(
    145deg,
    #031a34 0%,
    #041d3a 52%,
    #062f5f 100%
  ) !important;
  color: #fff !important;
  border-top: 1px solid rgba(32, 198, 208, 0.10);
  padding: 72px 0 22px !important;
}

.site-footer .footer-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--max));
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
}

.site-footer .footer-column {
  min-width: 0;
}

.site-footer .footer-brand .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px !important;
}

.site-footer .footer-brand .logo img {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
}

.site-footer .footer-brand .logo span {
  color: #fff !important;
  font-size: 23px !important;
  font-weight: 700;
}

.site-footer .footer-column h3,
.site-footer .footer-column .footer-title {
  color: #fff !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 0 0 18px !important;
}

.site-footer .footer-column p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 0.9rem !important;
  line-height: 1.8 !important;
}

.site-footer .footer-column .footer-links {
  margin: 0;
}

.site-footer .footer-column .footer-links a,
.site-footer .footer-column > div a {
  display: block;
  width: fit-content;
  margin: 0 0 10px !important;
  padding: 0;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  text-decoration: none;
  transform: none !important;
}

.site-footer .footer-column .footer-links a:hover,
.site-footer .footer-column > div a:hover {
  color: #fff !important;
  transform: translateX(2px) !important;
}

.site-footer .footer-column span {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.88rem !important;
}

.site-footer .footer-legal {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 4px 0 0 !important;
  padding: 22px 0 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer .footer-legal .footer-title {
  flex: 0 0 auto;
  margin: 0 !important;
}

.site-footer .footer-legal .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer .footer-legal .footer-links a {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
}

.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 22px 0 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 0.78rem !important;
}

.site-footer .footer-bottom span {
  color: rgba(255, 255, 255, 0.58) !important;
}


/* Shared responsive footer */

@media (max-width: 1100px) {
  .site-footer .footer-content {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .site-footer {
    padding-top: 58px !important;
  }

  .site-footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 34px;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer .footer-legal {
    display: block;
    margin-top: 4px !important;
    padding-top: 22px !important;
  }

  .site-footer .footer-legal .footer-title {
    margin-bottom: 14px !important;
  }

  .site-footer .footer-legal .footer-links {
    display: grid;
    gap: 10px;
  }

  .site-footer .footer-legal .footer-links a {
    margin: 0 !important;
  }
}
