/* ============================================================
   Safety GPS Trading LLC — Corporate Website Styles
   ============================================================ */

:root {
  --blue: #0088d6;
  --blue-dark: #0069a8;
  --blue-bright: #00aeef;
  --blue-soft: #e8f6fc;
  --navy: #0b1628;
  --navy-mid: #132038;
  --ink: #111827;
  --muted: #5b667a;
  --line: #e5eaf0;
  --surface: #f4f7fb;
  --white: #ffffff;
  --green: #25d366;
  --green-dark: #1ebe57;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 40px rgba(11, 22, 40, 0.08);
  --shadow-sm: 0 4px 16px rgba(11, 22, 40, 0.06);
  --font: "Manrope", system-ui, sans-serif;
  --font-display: "Outfit", "Manrope", system-ui, sans-serif;
  --container: 1180px;
  --header-h: 84px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--muted);
  max-width: 560px;
  margin-top: 0.85rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 136, 214, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: transparent;
  padding-inline: 0;
}

.btn-ghost:hover {
  gap: 0.75rem;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding: 0.45rem 0;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}

.topbar-links a:hover {
  color: var(--blue-bright);
}

.topbar-links svg {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 56px;
  width: auto;
}

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

.nav > li {
  position: relative;
}

.nav > li > a,
.nav-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}

.nav > li > a:hover,
.nav-toggle-btn:hover,
.nav > li > a.active {
  color: var(--blue);
}

.nav > li > a.active {
  box-shadow: inset 0 -2px 0 var(--blue);
  border-radius: 0;
}

.nav-toggle-btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav > li.open .nav-toggle-btn svg,
.nav > li:hover .nav-toggle-btn svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition),
    visibility var(--transition);
  z-index: 50;
}

.nav > li:hover > .dropdown,
.nav > li.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--ink);
  transition: background var(--transition), color var(--transition);
}

.dropdown a:hover {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header-phone .label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.header-phone a {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.header-phone a:hover {
  color: var(--blue);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 36px);
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 136, 214, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 174, 239, 0.12), transparent 50%),
    linear-gradient(135deg, #07111f 0%, #0f1f38 45%, #0a1628 100%);
  color: var(--white);
  overflow: hidden;
  padding: 4rem 0 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero h1 .accent {
  color: var(--blue-bright);
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.85rem;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.7s ease 0.5s both;
}

.hero-visual {
  position: relative;
  animation: fadeUp 0.9s ease 0.35s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand,
  .hero h1,
  .hero-sub,
  .hero-text,
  .hero-ctas,
  .hero-visual,
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hero-stage {
  position: relative;
  aspect-ratio: 1.05;
  max-width: 520px;
  margin-left: auto;
}

.hero-monitor {
  position: absolute;
  inset: 8% 8% 22% 5%;
  background: linear-gradient(160deg, #1a2d4a, #0d1a2e);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  padding: 1rem;
}

.hero-monitor::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 10px;
  background: #0a1424;
  border-radius: 0 0 6px 6px;
}

.monitor-header {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.monitor-header span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.monitor-header span:first-child {
  background: #ff5f57;
}

.monitor-map {
  height: 55%;
  background:
    radial-gradient(circle at 35% 45%, rgba(0, 174, 239, 0.5) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 38%, rgba(0, 136, 214, 0.7) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 62%, rgba(0, 174, 239, 0.45) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(0, 136, 214, 0.15), transparent),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.04) 18px,
      rgba(255, 255, 255, 0.04) 19px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.04) 18px,
      rgba(255, 255, 255, 0.04) 19px
    ),
    #0c1a30;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pulse-ring {
  position: absolute;
  left: 56%;
  top: 35%;
  width: 28px;
  height: 28px;
  border: 2px solid var(--blue-bright);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2.4s ease-out infinite;
}

.monitor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.monitor-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.5rem;
  text-align: center;
}

.monitor-stat strong {
  display: block;
  font-size: 0.95rem;
  color: var(--blue-bright);
  font-family: var(--font-display);
}

.monitor-stat span {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-phone {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 28%;
  aspect-ratio: 0.5;
  background: linear-gradient(180deg, #1e3355, #0d1a2e);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  padding: 0.5rem;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.hero-phone-screen {
  height: 100%;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 174, 239, 0.4) 0 6px, transparent 7px),
    linear-gradient(180deg, #102038, #0a1528);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 12%;
  gap: 0.35rem;
}

.hero-phone-screen span {
  width: 60%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.hero-cam {
  position: absolute;
  left: 0;
  top: 5%;
  width: 22%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #2a3f5e, #152338);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 2;
  animation: float 5s ease-in-out 0.5s infinite;
}

.hero-cam-lens {
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #4a90c2, #0a1a2e 60%);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-bio {
  position: absolute;
  left: 2%;
  bottom: 12%;
  width: 24%;
  aspect-ratio: 0.85;
  background: linear-gradient(160deg, #1a2d4a, #0d1a2e);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 2;
  animation: float 4.5s ease-in-out 1s infinite;
}

.hero-bio svg {
  width: 48%;
  color: var(--blue-bright);
  opacity: 0.85;
}

.hero-van {
  position: absolute;
  bottom: -2%;
  left: 28%;
  width: 38%;
  z-index: 3;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
}

.hero-van svg {
  width: 100%;
  height: auto;
}

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

@keyframes pulse {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.6);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.2);
  }
}

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

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 0.5rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
}

/* ---------- Solutions ---------- */
.solutions-section {
  background: var(--surface);
}

.solutions-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.solutions-header .section-lead {
  margin-inline: auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 136, 214, 0.25);
}

.solution-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--blue), var(--blue-bright));
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.solution-icon svg {
  width: 26px;
  height: 26px;
}

.solution-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.solution-card ul {
  flex: 1;
  margin-bottom: 1.25rem;
}

.solution-card li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
  margin-top: auto;
}

.learn-more:hover {
  gap: 0.65rem;
}

.learn-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.learn-more:hover svg {
  transform: translateX(3px);
}

/* ---------- Impact + Presence ---------- */
.impact-section {
  background: var(--white);
}

.impact-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-panel,
.presence-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  width: 100%;
}

.impact-heading,
.presence-heading {
  margin-bottom: 1.35rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  grid-auto-rows: auto;
}

.stat-item {
  text-align: center;
  padding: 1rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.stat-item .icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.55rem;
  color: var(--blue);
}

.stat-item .icon svg {
  width: 100%;
  height: 100%;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.stat-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.2rem;
  line-height: 1.3;
}

.presence-body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.75rem;
  align-items: center;
}

.uae-map {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 1rem;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.uae-map svg {
  width: 100%;
  height: auto;
  max-height: 220px;
}

.presence-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.branch-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.branch-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.branch-item .pin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.branch-item .pin svg {
  width: 14px;
  height: 14px;
}

.branch-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
}

.branch-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

.onsite-note {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.onsite-note svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

/* ---------- Industries ---------- */
.industries-section {
  background: var(--surface);
  text-align: center;
}

.industries-section .section-lead {
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.industries-row {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 0.75rem;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.35rem;
  transition: transform var(--transition);
}

.industry-item:hover {
  transform: translateY(-3px);
}

.industry-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  transition: background var(--transition), color var(--transition);
}

.industry-item:hover .industry-icon {
  background: var(--blue);
  color: var(--white);
}

.industry-icon svg {
  width: 24px;
  height: 24px;
}

.industry-item span {
  font-size: 0.7rem;
  font-weight: 650;
  color: var(--navy);
  line-height: 1.25;
}

/* ---------- Why + Featured ---------- */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.why-col,
.featured-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.check-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--ink);
}

.check-list li svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-image {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, rgba(11, 22, 40, 0.72), rgba(11, 22, 40, 0.45)),
    url("../images/why-technicians.jpg") center / cover no-repeat;
  position: relative;
  display: grid;
  place-items: center;
}

.why-image-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
}

.why-image-content svg {
  width: 48px;
  height: 48px;
  margin-bottom: 0.65rem;
  opacity: 0.95;
}

.why-image-content p {
  font-weight: 650;
  font-size: 1rem;
  opacity: 0.95;
  max-width: 320px;
  margin-inline: auto;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.featured-scroll {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  flex: 1;
  min-height: 0;
}

.featured-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.featured-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.featured-thumb {
  flex: 1;
  min-height: 110px;
  background-color: var(--navy-mid);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.featured-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 22, 40, 0.35));
  pointer-events: none;
}

.featured-card h4 {
  padding: 0.95rem 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 45%, var(--blue-dark) 100%);
  border-top: none;
  letter-spacing: -0.01em;
  margin-top: auto;
  transition: filter var(--transition), background var(--transition);
}

.featured-card:hover h4 {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-bright) 100%);
}

/* ---------- Process ---------- */
.process-section {
  background: var(--surface);
}

.process-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue), var(--blue-soft));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 6px var(--surface);
}

.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  padding-inline: 0.25rem;
}

/* ---------- Social proof ---------- */
.social-section {
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(0, 136, 214, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(0, 174, 239, 0.06), transparent 50%),
    linear-gradient(180deg, #f7fafc 0%, var(--white) 55%, #f4f8fb 100%);
}

.social-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.social-head .partners-lead {
  margin-left: auto;
  margin-right: auto;
}

.partners-lead {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin-top: 0.65rem;
}

/* Logo marquee carousel */
.logo-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  margin: 0.5rem 0 2.75rem;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: logo-marquee 48s linear infinite;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-slide {
  flex: 0 0 auto;
  width: 168px;
  height: 96px;
  border: 1px solid rgba(0, 136, 214, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), #f3f8fc);
  display: grid;
  place-items: center;
  padding: 0.85rem 1rem;
  box-shadow: 0 6px 18px rgba(11, 22, 40, 0.04);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.logo-slide img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.12);
  opacity: 0.92;
  transition: filter var(--transition), opacity var(--transition),
    transform var(--transition);
}

.logo-slide:hover {
  border-color: rgba(0, 136, 214, 0.35);
  box-shadow: 0 12px 28px rgba(0, 136, 214, 0.12);
}

.logo-slide:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

/* Feedback / testimonials carousel */
.feedback-block {
  max-width: 820px;
  margin: 0 auto;
}

.feedback-head {
  text-align: center;
  margin-bottom: 1.35rem;
}

.feedback-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--navy);
  margin-top: 0.35rem;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 246, 252, 0.9));
  border: 1px solid rgba(0, 136, 214, 0.15);
  border-radius: var(--radius);
  padding: 2.1rem 2.25rem 2rem;
  position: relative;
  box-shadow: 0 14px 36px rgba(11, 22, 40, 0.06);
  overflow: hidden;
  min-height: 240px;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--blue-bright));
}

.testimonial-card .quote-icon {
  width: 36px;
  height: 36px;
  color: var(--blue);
  opacity: 0.45;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 550;
  line-height: 1.7;
  margin-bottom: 1.35rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-meta strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-meta span {
  font-size: 0.82rem;
  color: var(--muted);
}

.stars {
  display: flex;
  gap: 2px;
  color: #f5a623;
}

.stars svg {
  width: 16px;
  height: 16px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 136, 214, 0.25);
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
    color var(--transition), transform var(--transition);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(11, 22, 40, 0.18);
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
}

.carousel-dot.active {
  width: 22px;
  background: var(--blue);
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .logo-track .logo-slide[aria-hidden="true"] {
    display: none;
  }

  .testimonial-track {
    transition: none;
  }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(0, 136, 214, 0.25), transparent),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 4rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 480px;
  margin-bottom: 0.65rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #080e18;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  transition: background var(--transition), border-color var(--transition),
    color var(--transition);
}

.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--blue-bright);
}

.footer-office {
  margin-bottom: 1rem;
}

.footer-office strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.footer-office span {
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-credit a {
  color: var(--blue-bright);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-credit-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom a:hover {
  color: var(--blue-bright);
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11, 22, 40, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease,
    background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), background var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: var(--green-dark);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(0, 136, 214, 0.2), transparent),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  color: var(--blue-bright);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Content pages ---------- */
.content-block {
  max-width: 720px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-intro .content-block {
  max-width: none;
}

.about-media {
  min-width: 0;
}

.image-placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--radius);
  border: 1px dashed rgba(0, 136, 214, 0.35);
  background:
    linear-gradient(145deg, rgba(0, 136, 214, 0.08), rgba(11, 22, 40, 0.04)),
    var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
}

.image-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--blue);
  opacity: 0.75;
}

.image-placeholder span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.image-placeholder small {
  font-size: 0.82rem;
  color: var(--muted);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  aspect-ratio: 4 / 5;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2rem 0 0.85rem;
}

.content-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 1.5rem 0 0.65rem;
}

.content-block p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.content-block ul {
  margin: 0.75rem 0 1.25rem;
}

.content-block li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.content-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.value-card .num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.mission-tabs {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  margin-top: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}

.tab-nav {
  background: var(--navy);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tab-btn {
  text-align: left;
  padding: 0.85rem 1rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: rgba(0, 136, 214, 0.25);
  color: var(--white);
}

.tab-panels {
  padding: 2rem;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

.tab-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.tab-panel p {
  color: var(--muted);
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-channels {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-channels h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}

.contact-channels ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-channels li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 136, 214, 0.2);
  color: var(--blue-bright);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.channel-icon.whatsapp {
  background: rgba(37, 211, 102, 0.18);
  color: var(--green);
}

.channel-icon svg {
  width: 18px;
  height: 18px;
}

.contact-channels strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.2rem;
}

.contact-channels a {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.contact-channels a:hover {
  color: var(--blue-bright);
}

.branches-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.branches-stack .branch-card-header {
  padding: 1rem 1.15rem;
}

.branches-stack .branch-card-header h3 {
  font-size: 1.05rem;
}

.branches-stack .branch-card-body {
  padding: 1.1rem 1.15rem;
}

.branches-stack .branch-card-body p {
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
}

.branches-stack .branch-card-body p:last-child {
  margin-bottom: 0;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  gap: 1rem;
}

.info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-card .icon svg {
  width: 20px;
  height: 20px;
}

.info-card h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.info-card p,
.info-card a {
  font-size: 0.88rem;
  color: var(--muted);
}

.info-card a:hover {
  color: var(--blue);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.form-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-card > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 136, 214, 0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-message {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-message.success {
  display: block;
  background: #e8f8ef;
  color: #0d7a3f;
  border: 1px solid #b6e6c9;
}

.form-message.error {
  display: block;
  background: #fef0f0;
  color: #c0392b;
  border: 1px solid #f5c6c2;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ---------- Branch cards ---------- */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.branch-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.branch-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  padding: 1.5rem;
}

.branch-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.branch-card-header span {
  font-size: 0.82rem;
  opacity: 0.7;
}

.branch-card-body {
  padding: 1.5rem;
}

.branch-card-body p {
  display: flex;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.branch-card-body svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Industry detail grid ---------- */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.industry-card:hover {
  border-color: rgba(0, 136, 214, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.industry-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  border: none;
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  transition: background var(--transition), color var(--transition);
}

.industry-card:hover .icon {
  background: var(--blue);
  color: var(--white);
}

.industry-card .icon svg {
  width: 22px;
  height: 22px;
}

.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.industry-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  flex: 1;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.industry-tags span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid rgba(0, 136, 214, 0.15);
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
}

.industry-card .learn-more {
  margin-top: auto;
}

/* ---------- Solution detail ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 0.85rem;
  padding: 1.15rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.feature-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-item .icon svg {
  width: 20px;
  height: 20px;
}

.feature-item h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--muted);
}

.split-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.side-column {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.side-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.side-panel h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.side-panel p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.side-panel ul {
  margin-bottom: 1.5rem;
}

.side-panel li {
  font-size: 0.88rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.side-panel-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.side-panel-actions .btn {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.75rem 0.85rem;
  font-size: 0.82rem;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.more-solutions-section {
  background: var(--surface);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.more-solutions-header {
  margin-bottom: 1.5rem;
}

.more-solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.more-sol-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition), color var(--transition);
}

.more-sol-card span:last-child {
  color: var(--blue);
  opacity: 0.7;
  transition: transform var(--transition), opacity var(--transition);
}

.more-sol-card:hover {
  border-color: rgba(0, 136, 214, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: var(--blue);
}

.more-sol-card:hover span:last-child {
  opacity: 1;
  transform: translateX(3px);
}

.more-solutions {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.more-solutions h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.more-solutions ul {
  margin: 0;
  list-style: none;
}

.more-solutions li {
  padding: 0;
  border: none;
}

.more-solutions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  transition: color var(--transition), padding-left var(--transition);
}

.more-solutions li:last-child a {
  border-bottom: none;
}

.more-solutions a::after {
  content: "→";
  color: var(--blue);
  opacity: 0.55;
  transition: opacity var(--transition), transform var(--transition);
}

.more-solutions a:hover {
  color: var(--blue);
  padding-left: 0.25rem;
}

.more-solutions a:hover::after {
  opacity: 1;
  transform: translateX(3px);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }

  .process-timeline::before {
    display: none;
  }

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

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

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-wrap {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 88vw);
    background: var(--white);
    border-left: 1px solid var(--line);
    padding: 5rem 1.25rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    z-index: 999;
    box-shadow: var(--shadow);
  }

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

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav > li > a,
  .nav-toggle-btn {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.75rem;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    padding: 0 0 0.5rem 0.75rem;
    min-width: 0;
  }

  .nav > li.open > .dropdown {
    display: block;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 22, 40, 0.45);
    z-index: 998;
  }

  .nav-overlay.open {
    display: block;
  }

  .hero-grid,
  .why-grid,
  .contact-grid,
  .split-content,
  .about-intro,
  .mission-tabs {
    grid-template-columns: 1fr;
  }

  .presence-body {
    grid-template-columns: 1fr;
  }

  .featured-scroll {
    grid-template-rows: none;
    flex: none;
  }

  .featured-thumb {
    min-height: 120px;
    aspect-ratio: 16 / 10;
    flex: none;
  }

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

  .image-placeholder,
  .about-media img {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }

  .form-card {
    position: static;
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0 4rem;
  }

  .hero-visual {
    max-width: 420px;
    margin-inline: auto;
  }

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

  .tab-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .side-column,
  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .logo-slide {
    width: 140px;
    height: 84px;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem 1.4rem;
    min-height: 0;
  }

  .testimonial-card blockquote {
    font-size: 0.98rem;
  }

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

  .section {
    padding: 3.5rem 0;
  }

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

  .solutions-grid,
  .branches-grid,
  .industry-cards,
  .values-grid,
  .featured-scroll,
  .feature-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .more-solutions-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr 1fr;
  }

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

  .topbar {
    display: none;
  }

  .logo img {
    height: 46px;
  }
}
