:root {
  --navy: #031a35;
  --navy-dark: #021022;
  --navy-2: #05264c;
  --blue: #1088ff;
  --blue-hover: #0072e0;
  --blue-soft: #7dc1ff;
  --blue-glow: rgba(16, 136, 255, 0.25);
  --ink: #071426;
  --muted: #5c6b80;
  --line: #dbe5ef;
  --panel: #ffffff;
  --soft: #f6f9fc;
  --shadow-sm: 0 4px 12px rgba(8, 31, 58, 0.06);
  --shadow-md: 0 12px 34px rgba(8, 31, 58, 0.1);
  --shadow-lg: 0 20px 45px rgba(8, 31, 58, 0.16);
  --header-height: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 0 max(24px, calc((100% - 1200px) / 2));
  color: #fff;
  background: rgba(2, 16, 34, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.logo {
  height: 90px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  transition: height 0.3s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  opacity: 0.9;
  padding: 6px 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: #55b4ff;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(5, 18, 37, 0.5);
}

.language-switch button {
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: #dcecff;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-switch button.active {
  color: #08213d;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, #219cff, #0076e8);
  color: #fff;
  box-shadow: 0 8px 24px var(--blue-glow);
}

.header-cta:hover,
.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 126, 255, 0.4);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(5, 18, 37, 0.35);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.button.light {
  color: #09213d;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.button.light:hover {
  background: #f0f7ff;
  transform: translateY(-1px);
}

/* Mobile Hamburger Toggle Button */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 11px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 20, 40, 0.96) 0%,
      rgba(2, 20, 40, 0.92) 40%,
      rgba(2, 20, 40, 0.65) 75%,
      rgba(2, 20, 40, 0.35) 100%
    ),
    url("images/datacenter.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(255, 255, 255, 0.04) 62% 63%, transparent 63%),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(255, 255, 255, 0.03) 58px 59px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 60px 0 80px;
}

.hero-copy h1 {
  color: #fff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
  margin: 0;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-copy h1 span {
  display: inline-block;
  color: var(--blue-soft);
}

.hero-copy p {
  max-width: 580px;
  margin: 24px 0 32px;
  color: #d9e8f8;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
}

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

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  max-width: 580px;
  color: #dcecff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-badges span {
  position: relative;
  padding-left: 26px;
  display: flex;
  align-items: center;
}

.hero-badges span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 136, 255, 0.25);
  border: 1px solid var(--blue-soft);
  color: var(--blue-soft);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */

.portfolio-strip,
.section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.section h2,
.why h2,
.portfolio-strip h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  text-align: center;
  color: var(--ink);
}

.underline {
  width: 40px;
  height: 4px;
  margin: 14px auto 36px;
  background: linear-gradient(90deg, var(--blue), var(--blue-soft));
  border-radius: 2px;
}

/* ==========================================================================
   PORTFOLIO STRIP
   ========================================================================== */

.portfolio-strip {
  padding: 64px 0;
}

.portfolio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.portfolio-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 136, 255, 0.3);
}

.portfolio-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-photo {
  transform: scale(1.04);
}

.portfolio-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
}

.portfolio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-detail {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  scroll-margin-top: 100px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-color: rgba(16, 136, 255, 0.4);
  box-shadow: var(--shadow-md);
}

.service-detail:target {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(16, 136, 255, 0.15);
}

.service-detail h3 {
  margin: 0 0 10px;
  font-size: 19px;
  color: var(--ink);
}

.service-detail p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-detail ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #20344d;
  font-size: 13.5px;
  line-height: 1.5;
}

/* Icons */
.icon {
  display: inline-block;
  width: 44px;
  height: 44px;
  color: var(--blue);
  border: 2.5px solid currentColor;
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.monitor::before { left: 7px; right: 7px; bottom: -9px; height: 3px; }
.monitor::after { left: 17px; bottom: -18px; width: 8px; height: 10px; }
.shield { border-radius: 21px 21px 10px 10px; }
.shield::before { left: 14px; top: 17px; width: 13px; height: 3px; transform: rotate(-45deg); }
.shield::after { left: 20px; top: 15px; width: 15px; height: 3px; transform: rotate(-45deg); }
.file { border-radius: 4px; }
.file::before { right: -3px; top: -3px; width: 14px; height: 14px; background: #fff; border-left: 3px solid currentColor; border-bottom: 3px solid currentColor; }
.file::after { left: 10px; top: 17px; width: 20px; height: 3px; box-shadow: 0 8px 0 currentColor; }
.truck::before { left: 5px; top: 24px; width: 45px; height: 13px; border: 3px solid currentColor; background: transparent; }
.truck::after { left: 6px; bottom: -7px; width: 9px; height: 9px; border-radius: 50%; box-shadow: 30px 0 0 currentColor; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */

.why {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(12, 131, 239, 0.26), transparent 28%),
    linear-gradient(135deg, #02152b, #06244a 60%, #03152a);
  padding: 72px max(24px, calc((100% - 1200px) / 2));
}

.why h2 {
  color: #fff;
}

.why .eyebrow {
  color: #55b4ff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.why-grid article {
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.why-grid article:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.why .icon {
  color: #66bfff;
  margin-bottom: 12px;
}

.why h3 {
  margin: 12px 0 8px;
  font-size: 17px;
  color: #fff;
}

.why p {
  margin: 0;
  color: #c4d7ed;
  font-size: 13px;
  line-height: 1.5;
}

.team::before { left: 5px; top: 10px; width: 8px; height: 8px; border-radius: 50%; box-shadow: 13px 0 0 currentColor, 26px 0 0 currentColor; }
.team::after { left: 3px; bottom: 10px; width: 35px; height: 14px; border: 3px solid currentColor; border-radius: 12px 12px 4px 4px; background: transparent; }
.value { border-radius: 50%; }
.value::before { content: "$"; inset: 0; display: grid; place-items: center; background: transparent; font-size: 25px; font-weight: 800; }
.report::before { left: 9px; bottom: 9px; width: 5px; height: 15px; box-shadow: 10px -8px 0 currentColor, 20px -17px 0 currentColor; }

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */

.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.timeline li {
  position: relative;
  text-align: center;
}

.timeline li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 14px;
  color: #9cb8d6;
  font-size: 20px;
  font-weight: bold;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #3ab0ff, #086ed0);
  border: 4px solid #d5ecff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(16, 136, 255, 0.25);
}

.timeline h3 {
  margin: 14px 0 6px;
  font-size: 15px;
  color: var(--ink);
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

/* ==========================================================================
   INDUSTRIES SERVED
   ========================================================================== */

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

.industry-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 130px;
  padding: 20px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.industry-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 136, 255, 0.4);
  box-shadow: var(--shadow-md);
}

.industry-grid h3 {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.3;
}

.bank::before, .gov::before { left: 6px; top: 13px; width: 28px; height: 4px; box-shadow: 0 14px 0 currentColor; }
.bank::after, .gov::after { left: 10px; top: 19px; width: 4px; height: 12px; box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor; }
.health::before { left: 18px; top: 8px; width: 6px; height: 25px; }
.health::after { left: 8px; top: 18px; width: 26px; height: 6px; }
.factory::before { left: 6px; bottom: 8px; width: 30px; height: 20px; clip-path: polygon(0 40%, 27% 20%, 27% 40%, 54% 20%, 54% 40%, 100% 18%, 100% 100%, 0 100%); }
.enterprise::before { left: 10px; bottom: 8px; width: 22px; height: 29px; box-shadow: inset 0 -5px 0 #fff; }
.education::before { left: 7px; top: 13px; width: 28px; height: 18px; transform: skewY(-18deg); }

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 54px max(24px, calc((100% - 1200px) / 2));
  color: #fff;
  background: linear-gradient(135deg, #02152b, #06244a 60%, #03152a);
}

.stats article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats article:last-child {
  border-right: 0;
}

.stats strong {
  color: #8ac4ff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.stats span {
  margin-top: 8px;
  font-size: 14px;
  color: #d1e5fa;
}

/* ==========================================================================
   FAQ & ASSESSMENT SECTION
   ========================================================================== */

.faq-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.faq {
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.faq h2 {
  text-align: left;
  margin-bottom: 24px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue);
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s ease, background 0.2s ease;
}

details[open] summary::after {
  content: "−";
  background: var(--blue);
  color: #fff;
}

details p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.assessment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 44px 38px;
  color: #fff;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(3, 33, 83, 0.96), rgba(0, 73, 153, 0.88)),
    url("images/datacenter.jpg") center/cover;
  box-shadow: var(--shadow-md);
}

.assessment h2 {
  color: #fff;
  text-align: left;
  margin: 0 0 16px;
  font-size: clamp(26px, 3.2vw, 34px);
}

.assessment p {
  margin: 0 0 28px;
  color: #d8eaff;
  font-size: 15px;
  line-height: 1.65;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  font-size: 14px;
  font-weight: 800;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
  color: #fff;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  fill: #fff;
  flex-shrink: 0;
}

.whatsapp-text {
  white-space: nowrap;
}

/* Pulsing aura effect */
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid #25d366;
  opacity: 0.7;
  animation: wa-pulse 2.2s infinite ease-in-out;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.96);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(0.96);
    opacity: 0;
  }
}

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

.site-footer {
  color: #fff;
  background: linear-gradient(135deg, #021022, #041b38 60%, #021022);
  padding: 60px max(24px, calc((100% - 1200px) / 2)) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  height: 88px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
}

.footer-grid h3 {
  margin: 0 0 18px;
  font-size: 16px;
  color: #fff;
  font-weight: 800;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 10px;
  color: #b8cbdc;
  font-size: 13.5px;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #55b4ff;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0;
  color: #08203f;
  background: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: #55b4ff;
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 20px;
  color: #9cb3c9;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom a {
  margin-left: 20px;
  color: #9cb3c9;
}

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

.footer-legal {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal p {
  margin: 0;
  color: #7f99b3;
  font-size: 12px;
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE FIRST APPROACH)
   ========================================================================== */

/* Tablet Breakpoint (max-width: 992px) */
@media (max-width: 992px) {
  :root {
    --header-height: 110px;
  }

  .site-header {
    padding: 0 20px;
  }

  .logo {
    height: 80px;
    max-width: 350px;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(3, 23, 48, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 16px;
    width: 100%;
    padding: 8px 0;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    bottom: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 60px;
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

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

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

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

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

  .timeline li:nth-child(4)::after {
    display: none;
  }

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

/* Mobile Breakpoint (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 96px;
  }

  .logo {
    height: 70px;
    max-width: 300px;
  }

  .portfolio-strip,
  .section,
  .hero-inner {
    width: min(100% - 32px, 1200px);
  }

  .header-right .header-cta {
    display: none; /* Hide top CTA on small header to prevent clutter */
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 30px 0 50px;
  }

  .hero-copy h1 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-badges {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .why {
    padding: 50px 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-grid article {
    text-align: left;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
  }

  .why-grid article .icon {
    margin-bottom: 0;
  }

  .why-grid article div {
    display: flex;
    flex-direction: column;
  }

  .why h3 {
    margin: 0 0 4px;
  }

  /* Transform Timeline to Vertical on Mobile */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 20px;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 43px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: #d0e4f7;
    z-index: 0;
  }

  .timeline li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    position: relative;
    z-index: 1;
  }

  .timeline li:not(:last-child)::after {
    display: none;
  }

  .timeline span {
    margin: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .timeline div {
    flex: 1;
  }

  .timeline h3 {
    margin: 2px 0 4px;
  }

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

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
    padding: 40px 16px;
  }

  .stats article {
    border-right: 0;
  }

  .stats article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .faq-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq {
    padding: 24px 18px;
  }

  .assessment {
    padding: 32px 24px;
  }

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

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

  .footer-bottom a {
    margin-left: 0;
    margin-right: 16px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    padding: 10px 16px;
  }

  .whatsapp-text {
    font-size: 13px;
  }
}

/* Extra Small Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
  :root {
    --header-height: 86px;
  }

  .logo {
    height: 60px;
    max-width: 250px;
  }

  .site-header {
    padding: 0 16px;
  }

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

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

  .stats article:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 16px;
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .whatsapp-float {
    padding: 12px;
    border-radius: 50%;
  }

  .whatsapp-text {
    display: none; /* Icon-only floating button on ultra-small viewports */
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}
