/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2B5BAE;
  --blue-dark: #1f4690;
  --blue-light: #eef3fb;
  --orange: #F07820;
  --orange-dark: #d4661a;
  --orange-light: #fff4ec;
  --dark: #0f172a;
  --dark2: #1e293b;
  --gray: #64748b;
  --gray-light: #f1f5f9;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(43,91,174,0.10);
  --shadow-lg: 0 8px 40px rgba(43,91,174,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.accent { color: var(--orange); }

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--gray); }

.section-label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-label.center { display: block; text-align: center; }
.section-sub { color: var(--gray); max-width: 520px; margin: 10px auto 40px; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue-light); }
.btn-nav {
  background: var(--orange);
  color: #fff;
  font-size: 0.85rem;
  padding: 9px 20px;
}
.btn-nav:hover { background: var(--orange-dark); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; text-align: center; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37,99,235,0.08);
  transition: box-shadow 0.2s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.10); }

.nav-online {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #16a34a;
  white-space: nowrap;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 5px 12px;
  border-radius: 100px;
}
.online-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-green 2s infinite;
}

/* DROPDOWN */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 16px 0 8px;
  min-width: 210px;
  z-index: 200;
  border: 1px solid rgba(43,91,174,0.08);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(43,91,174,0.08);
  border-top: 1px solid rgba(43,91,174,0.08);
  rotate: 45deg;
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark2);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--orange-light);
  color: var(--orange);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--orange); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo img { height: 44px; object-fit: contain; mix-blend-mode: multiply; }

.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a {
  text-decoration: none;
  color: var(--dark2);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--gray-light);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(26,56,112,0.82) 60%, rgba(43,91,174,0.78) 100%),
    url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&q=80') center/cover no-repeat;
  padding-top: 104px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(240,120,32,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(43,91,174,0.22) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: 80px 24px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px 6px 10px;
  border-radius: 100px;
  border: 1px solid rgba(34,197,94,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.3);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.3); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}

.hero h1 { color: #fff; margin-bottom: 16px; }
.hero-sub { color: #fbd0a8; font-size: 1.15rem; margin-bottom: 36px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero .btn-primary { background: var(--orange); border-color: var(--orange); }
.hero .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.1); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong { color: #fff; font-size: 1.15rem; font-weight: 700; }
.stat span { color: #fbd0a8; font-size: 0.78rem; font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

.hero-ms-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  animation: fadeInUp 0.8s ease 0.4s both;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ms-badge-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

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

@media (max-width: 600px) { .hero-ms-badge { bottom: 20px; right: 16px; padding: 12px 16px; min-width: 160px; } }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   TICKER BAR
   ============================ */
.ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--blue);
  overflow: hidden;
  padding: 9px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 24px;
  animation: ticker 40s linear infinite;
}
.ticker-track span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker-track span:nth-child(even) { color: rgba(255,255,255,0.4); font-size: 0.6rem; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================
   TEAM
   ============================ */
.team { padding: 100px 0; background: var(--gray-light); }

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

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s;
}
.team-card:hover .team-photo img { transform: scale(1.05); }

.team-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin: 14px 8px 4px;
}
.team-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
  padding-bottom: 14px;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================
   ABOUT
   ============================ */
.about { padding: 100px 0; background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 { margin-bottom: 10px; }
.about-text .lead { font-size: 1.1rem; font-style: italic; color: var(--blue); margin-bottom: 16px; }
.about-text p { margin-bottom: 14px; }
@media (max-width: 900px) {
  .about-text { text-align: center; }
  .about-text .lead { text-align: center; }
}

.about-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .about-team-tags { justify-content: center; }
}
.about-team-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}
.about-team-tags .tag-blue { background: var(--blue-light); color: var(--blue); }
.about-team-tags .tag-orange { background: var(--orange-light); color: var(--orange); }

.about-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
}
.quote-icon {
  font-size: 5rem;
  line-height: 1;
  color: var(--blue);
  font-family: Georgia, serif;
  margin-bottom: -16px;
  opacity: 0.6;
}
.about-card p { color: #cbd5e1; font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.quote-author { color: var(--blue); font-size: 0.85rem; font-weight: 600; }

/* ============================
   SERVICES
   ============================ */
.services { padding: 100px 0; background: var(--gray-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(37,99,235,0.08);
  transition: all 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.2);
}
.service-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; }

/* ============================
   INDUSTRIES
   ============================ */
.industries { padding: 100px 0; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.industry-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(37,99,235,0.1);
  transition: all 0.25s;
  text-decoration: none;
  display: block;
  color: inherit;
  cursor: pointer;
}
.industry-card:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.industry-icon { width: 72px; height: 72px; margin: 0 auto 20px; }
.industry-icon svg { width: 100%; height: 100%; }
.industry-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.industry-card p { font-size: 0.9rem; }

/* ============================
   ABOUT CARD IMAGE
   ============================ */
.about-card-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================
   PARTNERS
   ============================ */
.partners { padding: 80px 0; background: var(--white); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.partner-item {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.partner-item:hover {
  background: var(--white);
  border-color: rgba(43,91,174,0.15);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.partner-item img {
  max-height: 44px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.2s;
}
.partner-item:hover img { filter: grayscale(0) opacity(1); }

@media (max-width: 900px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials { padding: 100px 0; background: var(--gray-light); }

.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 48px;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.google-badge div { display: flex; flex-direction: row; align-items: center; gap: 6px; }
.google-badge strong { font-size: 1.1rem; color: var(--dark); font-weight: 700; }
.google-badge span { font-size: 0.82rem; color: var(--gray); }
.stars { font-size: 1.6rem; color: #f59e0b; letter-spacing: 2px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(43,91,174,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.t-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card p {
  color: var(--dark2);
  font-size: 0.92rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}
.t-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.t-author span { font-size: 0.75rem; color: var(--gray); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================
   WHY US
   ============================ */
.whyus {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.whyus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.whyus .section-label {
  background: rgba(59,130,246,0.2);
  color: #93c5fd;
}
.whyus h2 { color: #fff; margin-bottom: 32px; }

.whyus-list { display: flex; flex-direction: column; gap: 22px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}
.why-item strong { color: #fff; font-size: 0.95rem; display: block; margin-bottom: 4px; }
.why-item p { color: #94a3b8; font-size: 0.85rem; }

.whyus-cta-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-label { color: #93c5fd; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.whyus-cta-box h3 { color: #fff; font-size: 1.5rem; font-weight: 700; }
.whyus-cta-box p { color: #94a3b8; font-size: 0.9rem; }
.whyus-cta-box .btn-outline { border-color: rgba(255,255,255,0.3); color: #fff; }
.whyus-cta-box .btn-outline:hover { background: rgba(255,255,255,0.08); }

/* ============================
   CONTACT
   ============================ */
.contact { padding: 100px 0; background: var(--gray-light); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: 0.88rem; color: var(--blue); font-weight: 700; text-transform: none; letter-spacing: 0; margin-bottom: 4px; }
.contact-item a, .contact-item span {
  display: block;
  color: var(--dark);
  font-size: 0.92rem;
  text-decoration: none;
  line-height: 1.6;
}
.contact-item a:hover { color: var(--blue); }

/* FORM */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--dark2); }
.form-group input,
.form-group textarea {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
  background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); background: var(--white); }
.form-success {
  display: none;
  text-align: center;
  color: #16a34a;
  font-weight: 600;
  margin-top: 12px;
  font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { height: 42px; object-fit: contain; margin-bottom: 14px; display: block; filter: brightness(0) invert(1); }
.footer-brand p { color: #64748b; font-size: 0.85rem; line-height: 1.6; max-width: 240px; }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links strong, .footer-contact strong {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-links a, .footer-contact a, .footer-contact span {
  color: #64748b;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
}
.footer-links a:hover, .footer-contact a:hover { color: #93c5fd; }

.footer-bottom {
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
}
.footer-bottom span { color: #475569; font-size: 0.78rem; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .about-inner, .whyus-inner, .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links, .btn-nav, .nav-phone, .nav-online { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .whyus-cta-box { padding: 28px 24px; }
  .contact-form { padding: 24px; }
}
