/* ====================== SupportNow — Shared Styles ====================== */
:root {
  --navy-900: #0a1a3d;
  --navy-800: #0d2050;
  --navy-700: #11295f;
  --green-500: #16a34a;
  --green-600: #15803d;
  --green-400: #22c55e;
  --green-50:  #ecfdf5;
  --green-100: #d1fae5;
  --ink-900: #0b1220;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --line: #e5e7eb;
  --soft: #f1f5f9;
  --bg: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, .08);
  --shadow-lg: 0 20px 40px rgba(10, 26, 61, .12);
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; height: 100%;display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================== Top Utility Bar ====================== */
.topbar {
  background: var(--navy-900);
  color: #e2e8f0;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
}
.topbar-info {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-info svg { width: 14px; height: 14px; }
.btn-callback {
  background: var(--green-500);
  color: #fff;
  padding: 7px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: background .2s ease;
}
.btn-callback:hover { background: var(--green-600); }

/* ====================== Header / Nav ====================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  gap: 4px;
}
.brand img { height: 38px; width: auto; }
.brand .tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: .3px;
  margin-left: 2px;
}
.menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.menu a {
  color: var(--ink-900);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.menu a:hover { color: var(--green-500); }
.menu a.active { color: var(--green-500); }
.menu a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}
.menu .has-caret::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  padding: 2.5px;
  transform: rotate(45deg) translateY(-2px);
}

/* Dropdown */
.menu .has-dropdown { position: relative; }
.menu .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: -12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  margin: 0;
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 100;
}
.menu .has-dropdown:hover > .dropdown,
.menu .has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu .dropdown li { margin: 0; }
.menu .dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  color: var(--ink-700);
}
.menu .dropdown a:hover {
  background: var(--green-50);
  color: var(--green-600);
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink-900);
  position: relative;
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after  { position: absolute; top:  6px; }

/* ====================== Hero (Home) ====================== */
.hero {
  background: #0a1a3d;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-bg-split {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
}
.hero-bg-side {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-bg-left {
  background-image:
    linear-gradient(115deg, rgba(10, 26, 61, 0.92) 0%, rgba(10, 26, 61, 0.55) 100%),
    radial-gradient(700px 420px at 25% 35%, rgba(34, 197, 94, 0.14), transparent 58%),
    url('assets/laptop.jpeg');
}
.hero-bg-right {
  background-image:
    linear-gradient(115deg, rgba(10, 26, 61, 0.4) 0%, rgba(10, 26, 61, 0.88) 100%),
    radial-gradient(600px 400px at 75% 28%, rgba(56, 189, 248, 0.12), transparent 55%),
    url('assets/lap.jpeg');
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .35;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 70px 20px 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero h1 .accent { color: var(--green-400); display: block; }
.hero p {
  font-size: 16px;
  color: #cbd5e1;
  margin: 0 0 26px;
  max-width: 520px;
}
.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 0 0 30px;
}
.feature-row .feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #e2e8f0;
}
.feature-row .feat .ic {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.4);
  border-radius: 50%;
}
.feature-row .feat .ic svg { width: 14px; height: 14px; stroke: var(--green-400); }
.feat strong { display: block; color: #fff; font-weight: 600; font-size: 13px; }
.feat span   { color: #94a3b8; font-size: 12px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green-500); color: #fff; }
.btn-primary:hover { background: var(--green-600); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.08); }
.btn-navy { background: var(--navy-900); color: #fff; }
.btn-navy:hover { background: #061534; }
.btn svg { width: 18px; height: 18px; }

/* Hero callback form card */
.hero-callback-card {
  background: #cfd4d9;
  border-radius: 24px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-lg);
}
.hero-callback-card .callback-form-box h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900);
  margin: 0 0 6px;
  line-height: 1.25;
}
.hero-callback-card .callback-subtitle {
  color: var(--ink-600);
  font-size: 14px;
  margin: 0 0 22px;
}
.hero-callback-card .callback-form {
  gap: 14px;
}
.hero-callback-card .callback-form input,
.hero-callback-card .callback-form select,
.hero-callback-card .callback-form textarea {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero-callback-card .btn-callback-submit {
  width: 100%;
  margin-top: 4px;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  background: linear-gradient(90deg, #4ade80 0%, #22c55e 45%, #16a34a 100%);
  transition: transform .15s ease, box-shadow .2s ease;
}
.hero-callback-card .btn-callback-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
}

/* Hero illustration */
.hero-art {
  position: relative;
  min-height: 420px;
}
.hero-art .city {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(34,197,94,.22), transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(56,189,248,.18), transparent 60%);
  border-radius: 14px;
}
.laptop {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90%;
  max-width: 460px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #1e3a8a, #0a1a3d);
  border: 2px solid rgba(56,189,248,.4);
  border-radius: 12px 12px 4px 4px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.45), inset 0 0 60px rgba(34,197,94,.1);
}
.laptop::after {
  content: '';
  position: absolute;
  bottom: -8px; left: -8%;
  width: 116%; height: 8px;
  background: linear-gradient(180deg, #1f2a44, #0a1428);
  border-radius: 4px;
}
.laptop .laptop-logo {
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: .3px;
  display: flex; align-items: center; gap: 10px;
}
.laptop .laptop-logo::after {
  content: '\00bb';
  color: var(--green-400);
  font-size: 30px;
}
.float-card {
  position: absolute;
  background: rgba(10,26,61,.85);
  border: 1px solid rgba(34,197,94,.35);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  color: #fff;
  display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.float-card svg { width: 18px; height: 18px; }
.float-card.fc-1 { top: 8%;  left: 14%; }
.float-card.fc-2 { top: 38%; left: 4%; }
.float-card.fc-3 { bottom: 12%; right: 6%; }

/* ====================== Stats Strip ====================== */
.stats {
  background: #fff;
  margin: -42px auto 0;
  max-width: 1120px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 28px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
}
.stat { text-align: center; padding: 6px 4px; }
.stat .num { font-size: clamp(22px, 2.2vw, 28px); font-weight: 800; color: var(--navy-900); }
.stat .lbl { font-size: 13px; color: var(--ink-500); margin-top: 4px; }
.stat .ic {
  width: 38px; height: 38px;
  margin: 0 auto 6px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-600);
}
.stat .ic svg { width: 20px; height: 20px; stroke: var(--green-600); }

/* ====================== Section base ====================== */
section { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 38px; }
.section-head h2 {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--navy-900);
}
.section-head .bar {
  width: 60px; height: 3px; background: var(--green-500);
  border-radius: 2px; margin: 0 auto;
}

/* ====================== Services Grid ====================== */
.services {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.svc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34,197,94,.4);
}
.svc .svc-ic {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--green-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green-600);
  margin-bottom: 14px;
}
.svc .svc-ic svg { width: 28px; height: 28px; }
.svc h3 {
  font-size: 15px; font-weight: 700;
  margin: 0 0 8px;
  color: var(--navy-900);
}
.svc p { font-size: 13px; color: var(--ink-600); margin: 0 0 14px; line-height: 1.5; }
.learn {
  color: var(--green-600);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
}
.learn::after { content: '\2192'; }

/* ====================== Dual feature block ====================== */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 0;
}
.duo .card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  border: 1px solid var(--line);
}
.duo .card-body { padding: 28px; }
.tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-600);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.duo h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 14px;
  line-height: 1.25;
}
.check-list { list-style: none; padding: 0; margin: 0 0 18px; }
.check-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-700);
  padding: 5px 0;
}
.check-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4'><polyline points='5 12 10 17 19 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
  flex-shrink: 0;
}
.duo .card.dark { background: linear-gradient(135deg, #0a1a3d 0%, #0d2050 100%); color: #fff; border-color: transparent; }
.duo .card.dark h3 { color: #fff; }
.duo .card.dark .tag { background: rgba(34,197,94,.2); color: var(--green-400); }
.duo .card.dark .check-list li { color: #cbd5e1; }
.duo .img-side {
  background-size: cover;
  background-position: center;
  min-height: 280px;
}
.duo .img-side.office {
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  position: relative;
}
.duo .img-side.office::before {
  content: 'Office Space';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 18px;
  background:
    linear-gradient(135deg, rgba(15,23,42,.4), rgba(15,23,42,.2)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 2px, transparent 2px 22px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 2px, transparent 2px 22px),
    linear-gradient(180deg, #475569, #334155);
}
.duo .img-side.tech {
  background:
    radial-gradient(circle at 60% 40%, rgba(34,197,94,.2), transparent 60%),
    linear-gradient(135deg, #1e3a8a, #0a1a3d);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.duo .img-side.tech::after {
  content: 'IT Support Expert';
  color: #fff; font-weight: 700; font-size: 16px;
  background: rgba(0,0,0,.35);
  padding: 8px 14px; border-radius: 8px;
}
.row-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.call-pill {
  background: var(--navy-900); color: #fff;
  padding: 10px 18px; border-radius: 10px;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
}
.call-pill small { font-weight: 500; font-size: 11px; color: #cbd5e1; display: block; }
.call-pill > div { white-space: nowrap; }

/* ====================== Footer ====================== */
.site-footer {
  background: var(--navy-900);
  color: #cbd5e1;
  padding: 56px 0 22px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.foot-grid h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
  text-transform: none;
}
.foot-brand img { height: 36px; background: #fff; padding: 4px 8px; border-radius: 6px; }
.foot-brand p { font-size: 13px; color: #94a3b8; margin: 14px 0 0; max-width: 280px; }
.foot-links { list-style: none; padding: 0; margin: 0; }
.foot-links li { margin-bottom: 8px; font-size: 13px; }
.foot-links a { color: #cbd5e1; }
.foot-links a:hover { color: var(--green-400); }
.foot-contact li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: #cbd5e1; margin-bottom: 10px;
}
.foot-contact svg { width: 14px; height: 14px; margin-top: 3px; flex-shrink: 0; stroke: var(--green-400); }
.copy {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 32px; padding-top: 18px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: #94a3b8;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #cbd5e1;
  transition: background .2s;
}
.socials a:hover { background: var(--green-500); color: #fff; }
.socials svg { width: 14px; height: 14px; }

/* ====================== Floating WhatsApp ====================== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .5);
  z-index: 100;
  animation: pulse 2s infinite;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, .5); }
  50%      { box-shadow: 0 10px 28px rgba(37, 211, 102, .8), 0 0 0 12px rgba(37, 211, 102, .15); }
}

/* ====================== Support Page Hero ====================== */
.urgent-hero {
  background: #fff;
  padding: 48px 0 30px;
  position: relative;
  overflow: hidden;
}
.urgent-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 10% 0%, rgba(34,197,94,.08), transparent 60%),
    radial-gradient(700px 300px at 100% 100%, rgba(34,197,94,.08), transparent 60%);
  pointer-events: none;
}
.urgent-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.urgent-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -.5px;
}
.urgent-hero h1 .accent { color: var(--green-500); }
.urgent-hero .lead {
  color: var(--ink-600);
  font-size: 16px;
  margin: 6px 0 18px;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pill {
  background: #eaf3ff;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}
.pill.alt { background: #e0f2fe; color: #075985; }
.pill.alt2 { background: #fee2e2; color: #991b1b; }
.pill.alt3 { background: #ede9fe; color: #5b21b6; }
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.services-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ink-700);
  padding: 6px 0;
}
.services-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--green-500);
  border-radius: 4px;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4'><polyline points='5 12 10 17 19 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  flex-shrink: 0;
}
.urgent-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-wa {
  background: var(--navy-900);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-wa:hover { background: var(--navy-800); }
.btn-wa .wa-ic {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-wa svg { width: 18px; height: 18px; fill: #fff; }
.btn-call-big {
  background: var(--navy-900);
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  display: inline-flex; align-items: center; gap: 12px;
}
.btn-call-big .call-ic {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-call-big small { font-weight: 500; font-size: 11px; color: #cbd5e1; display: block; }
.btn-call-big strong {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.availability { font-size: 13px; color: var(--ink-500); margin-top: 12px; text-align: center; }

/* Urgent right side */
.urgent-art {
  position: relative;
  min-height: 460px;
}
.urgent-art .photo {
  width: 100%;
  height: 460px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.4), transparent 60%),
    linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.urgent-art .photo::before {
  content: '';
  position: absolute;
  width: 60%; aspect-ratio: 3/4;
  bottom: 0;
  background: linear-gradient(180deg, var(--navy-900) 30%, var(--navy-800));
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
}
.urgent-art .photo::after {
  content: 'Friendly IT Engineer';
  color: #fff; font-weight: 700;
  position: relative; z-index: 1;
  margin-bottom: 30px;
  background: rgba(0,0,0,.3);
  padding: 8px 14px; border-radius: 8px;
}
/* Offers page: custom hero image + DB headline (no caption bar) */
.urgent-art.offers-hero .photo::after { content: none; display: none; }
.urgent-art.offers-hero .photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
  object-position: bottom center;
}
.offers-dynamic-headline { margin: 0 0 8px; }

/* Offers page: headline block above hero image (single column) */
.urgent-inner.offers-hero-stack {
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
.urgent-inner.offers-hero-stack .urgent-art {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  min-height: 0;
}
.urgent-inner.offers-hero-stack .urgent-art .photo {
  height: auto;
  min-height: 260px;
}

.response-badge {
  position: absolute;
  top: 10px; right: 10px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: #fff;
  border: 2px dashed var(--green-500);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  color: var(--navy-900);
}
.response-badge .ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-50);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.response-badge .ic svg { width: 22px; height: 22px; stroke: var(--green-600); }
.response-badge .num { font-weight: 800; font-size: 16px; line-height: 1.1; }
.response-badge .lbl { font-size: 11px; color: var(--ink-500); }

/* Top bar variant for support page */
.support-topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 20px;
}
.support-topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.support-topbar .brand img { height: 38px; }
.support-topbar-info {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.response-pill {
  background: var(--green-50);
  color: var(--green-600);
  font-weight: 600; font-size: 13px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--green-100);
}
.phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--navy-900); font-size: 15px;
}
.phone-link svg { width: 16px; height: 16px; stroke: var(--green-500); }

/* ====================== Trust strip ====================== */
.trust-strip {
  background: #f0fdf4;
  padding: 24px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
}
.trust .t-ic {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-100);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}
.trust .t-ic svg { width: 24px; height: 24px; }
.trust .t-txt strong { display: block; font-weight: 700; color: var(--navy-900); font-size: 15px; }
.trust .t-txt small  { color: var(--ink-500); font-size: 12px; }

/* ====================== How it works ====================== */
.how {
  padding: 60px 0;
  background: #fff;
}
.how h2 {
  text-align: center;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 36px;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.step { text-align: center; }
.step .s-ic {
  width: 82px; height: 82px;
  border-radius: 50%;
  border: 2px dashed var(--green-400);
  background: var(--green-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green-600);
  margin-bottom: 14px;
}
.step .s-ic svg { width: 36px; height: 36px; }
.step h4 {
  margin: 0 0 6px;
  font-size: 16px; font-weight: 700;
  color: var(--navy-900);
}
.step p { margin: 0; font-size: 13px; color: var(--ink-600); max-width: 220px; margin-inline: auto; line-height: 1.5; }
.step-arrow {
  color: var(--ink-400);
  font-size: 22px;
  font-weight: 300;
}

/* ====================== Brands ====================== */
.brands {
  background: linear-gradient(135deg, #0a1a3d 0%, #0d2050 100%);
  color: #fff;
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.brands::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.brands-clients-img {
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.brands h3 {
  text-align: center; margin: 0 0 24px;
  font-size: 16px; font-weight: 600; color: #cbd5e1;
}
.brand-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.brand-row .b {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  opacity: .92;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
}
.brand-row .b.italic { font-style: italic; }
.brand-row .b.dell {
  background: #fff;
  color: #0a1a3d;
  padding: 10px;
  border-radius: 50%;
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  font-size: 18px;
}
.brand-row .ms-tiles {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 36px; height: 36px;
  margin: 0 auto;
}
.brand-row .ms-tiles span:nth-child(1) { background: #f25022; }
.brand-row .ms-tiles span:nth-child(2) { background: #7fba00; }
.brand-row .ms-tiles span:nth-child(3) { background: #00a4ef; }
.brand-row .ms-tiles span:nth-child(4) { background: #ffb900; }

/* ====================== Final CTA Bar ====================== */
.final-cta {
  background: #ecfdf5;
  padding: 24px 0;
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.final-cta .ask {
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.final-cta .ask small { display: block; color: var(--ink-500); font-size: 12px; }
.final-cta .ask strong { font-size: 16px; color: var(--navy-900); }

/* ====================== Responsive ====================== */
@media (max-width: 1024px) {
  .services { grid-template-columns: repeat(3, 1fr); }
  .stats    { grid-template-columns: repeat(5, 1fr); padding: 22px 16px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner, .urgent-inner { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .brand-row { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
}

@media (max-width: 768px) {
  section { padding: 44px 0; }
  .site-header { position: relative; z-index: 100; }
  .nav { position: relative; flex-wrap: wrap; }
  .menu { display: none; }
  .menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    gap: 0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    list-style: none;
  }
  .menu.open > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .menu.open > li:last-child {
    border-bottom: none;
  }
  .menu.open > li > a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 12px;
    font-size: 16px;
  }
  .menu.open > li > a.active::after {
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    right: auto;
  }
  .menu-toggle { display: inline-flex; }
  .stats { grid-template-columns: repeat(2, 1fr); margin-top: -30px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .duo .card { grid-template-columns: 1fr; }
  .duo .img-side { min-height: 200px; order: -1; }
  .response-badge { width: 110px; height: 110px; }
  .urgent-art .photo { height: 380px; }
  .feature-row { gap: 16px; }
}

@media (max-width: 520px) {
  .topbar-info { gap: 12px; font-size: 12px; }
  .topbar-info .hide-sm { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .services { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 50px 16px 60px; }
  .hero-callback-card {
    padding: 24px 20px 20px;
    border-radius: 20px;
  }
  .hero-callback-card .callback-form-box h2 {
    font-size: 20px;
  }
  .cta-row .btn { flex: 1; justify-content: center; }
  .urgent-cta .btn-wa,
  .urgent-cta .btn-call-big { flex: 1; justify-content: center; }
  .btn-call-big strong { font-size: 14px; }
  .urgent-cta .btn-wa,
  .urgent-cta .btn-call-big { padding-left: 14px; padding-right: 14px; }
  .brand-row { grid-template-columns: repeat(2, 1fr); }
  .copy { justify-content: center; text-align: center; }
}

/* ====================== Service Detail Sections ====================== */
.service-detail {
  padding: 70px 0;
  background: #fff;
}
.service-detail.alt {
  background: #f8fafc;
}
.section-sub {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.6;
}
.sd-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 28px;
}
.sd-hero.reverse {
  grid-template-columns: .95fr 1.05fr;
}
.sd-hero-text .eyebrow {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.sd-hero-text h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -.3px;
}
.sd-hero-text p {
  color: var(--ink-600);
  font-size: 15px;
  margin: 0 0 14px;
  line-height: 1.65;
}
.sd-hero-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sd-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.sd-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.service-detail.alt .sd-block {
  background: #fff;
}
.sd-block h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 18px;
}
.feature-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 18px;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-700);
  font-size: 14px;
  padding: 7px 0;
  line-height: 1.4;
}
.feature-grid li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4'><polyline points='5 12 10 17 19 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}
.sd-cta {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin-top: 8px;
  box-shadow: var(--shadow-md);
}
.sd-cta h3 {
  color: #fff;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.3;
}
.sd-cta p {
  color: #cbd5e1;
  font-size: 15px;
  margin: 0 auto 20px;
  max-width: 620px;
}
.sd-cta .btn { margin-top: 4px; }

/* ====================== AMC Plans ====================== */
.amc-section {
  background: #f8fafc;
  padding: 80px 0;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 16px 0 40px;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.plan.featured {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-color: transparent;
}
.plan.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-500);
  color: #fff;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.plan-ic {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  margin: 0 auto 18px;
  background: var(--green-50);
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.plan-ic svg { width: 28px; height: 28px; }
.plan.featured .plan-ic {
  background: rgba(34,197,94,.18);
  color: var(--green-400);
}
.plan h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 10px;
}
.plan.featured h3 { color: #fff; }
.plan > p {
  color: var(--ink-600);
  font-size: 14px;
  margin: 0 0 18px;
  line-height: 1.55;
}
.plan.featured > p { color: #cbd5e1; }
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
  flex: 1;
}
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-700);
  padding: 5px 0;
  line-height: 1.45;
}
.plan-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4'><polyline points='5 12 10 17 19 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}
.plan.featured .plan-list li { color: #cbd5e1; }
.btn-outline-dark {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}
.btn-outline-dark:hover {
  background: var(--navy-900);
  color: #fff;
}

/* ====================== Solutions ====================== */
.solutions-section {
  background: #fff;
  padding: 80px 0;
}
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 8px 0 32px;
}
.sol {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sol:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34,197,94,.4);
}
.sol-ic {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sol-ic svg { width: 26px; height: 26px; }
.sol h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.sol p {
  font-size: 13.5px;
  color: var(--ink-600);
  margin: 0;
  line-height: 1.55;
}

/* ====================== Clients ====================== */
.clients-section {
  background: #f8fafc;
  padding: 70px 0;
}
.clients-img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
  margin-top: 8px;
}
.clients-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ====================== Resources ====================== */
.resources-section {
  background: #fff;
  padding: 80px 0;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 8px 0 30px;
}
.resource-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34,197,94,.4);
}
.resource-card .r-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.resource-card .r-ic svg { width: 22px; height: 22px; }
.resource-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.resource-card p {
  font-size: 13.5px;
  color: var(--ink-600);
  margin: 0;
  line-height: 1.55;
}
.cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cats span {
  background: var(--green-50);
  color: var(--green-600);
  border: 1px solid var(--green-100);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

/* ====================== About Us ====================== */
.about-section {
  background: #f8fafc;
  padding: 80px 0;
}
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 28px;
}
.about-intro-text p {
  color: var(--ink-600);
  font-size: 15px;
  margin: 0 0 14px;
  line-height: 1.65;
}
.about-intro-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.about-block h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 14px;
}
.about-block p {
  color: var(--ink-600);
  font-size: 15px;
  margin: 0 0 12px;
  line-height: 1.65;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 20px;
}
.vm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.vm-card .vm-ic {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.vm-card .vm-ic svg { width: 26px; height: 26px; }
.vm-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 10px;
}
.vm-card p {
  color: var(--ink-600);
  font-size: 14.5px;
  margin: 0 0 10px;
  line-height: 1.6;
}
.vm-card p strong { color: var(--navy-900); }
.vm-card .plan-list { margin: 8px 0 0; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.industry-grid li {
  background: var(--green-50);
  color: var(--green-600);
  font-weight: 600;
  font-size: 13.5px;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--green-100);
}

/* ====================== Footer Tagline ====================== */
.foot-tagline {
  color: var(--green-400);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  margin: 10px 0 0 !important;
}

/* ====================== Responsive overrides for new sections ====================== */
@media (max-width: 1024px) {
  .sd-hero,
  .sd-hero.reverse,
  .about-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sd-hero.reverse .sd-hero-img { order: -1; }
  .sd-hero-img {
    overflow: visible;
  }
  .sd-hero-img img {
    height: auto;
    max-height: 300px;
    object-fit: contain;
  }
  .about-intro-img img { height: 300px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .plans,
  .sol-grid,
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu.open .has-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .menu.open .has-dropdown > a.has-caret {
    text-align: center;
    border-bottom: 1px solid var(--line);
  }
  .menu.open .has-dropdown > a.has-caret::after {
    margin-left: 8px;
    vertical-align: middle;
  }
  .menu.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px;
    margin: 0;
    min-width: 0;
    background: var(--soft);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  }
  .menu.open .dropdown li {
    margin: 0;
  }
  .menu.open .dropdown a {
    padding: 10px 14px;
    font-size: 15px;
    text-align: center;
    border-radius: 0;
  }
  .service-detail,
  .amc-section,
  .solutions-section,
  .clients-section,
  .resources-section,
  .about-section { padding: 50px 0; }
  .sd-block,
  .about-block { padding: 22px; }
  .sd-cta { padding: 28px 22px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .plans,
  .sol-grid,
  .resource-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .sd-hero-img img {
    max-height: 240px;
  }
  .about-intro-img img { height: 240px; }
  .brand .tagline { display: none; }
}

/* ====================== Callback Form Modal ====================== */
.callback-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.callback-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.modal-content {
  position: relative;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(10, 26, 61, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.15);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--ink-500);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink-900);
}

.callback-form-box h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.3;
}

.callback-subtitle {
  color: var(--ink-500);
  font-size: 14px;
  margin: 0 0 28px;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.callback-form input,
.callback-form select,
.callback-form textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink-900);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.callback-form input::placeholder,
.callback-form textarea::placeholder {
  color: var(--ink-400);
}

.callback-form input:focus,
.callback-form select:focus,
.callback-form textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ====================== Sticky Mobile Action Buttons ====================== */
.sticky-mobile-actions {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  z-index: 999;
  padding: 12px;
  gap: 10px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
  text-decoration: none;
}

.sticky-btn svg {
  width: 18px;
  height: 18px;
}

.call-now-btn {
  background: var(--navy-900);
  color: #fff;
}

.call-now-btn:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 26, 61, 0.25);
}

.call-now-btn:active {
  transform: translateY(0);
}

.whatsapp-btn {
  background: #fff;
  color: var(--ink-900);
  border: 1.5px solid var(--line);
}

.whatsapp-btn:hover {
  background: var(--soft);
  border-color: var(--ink-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn:active {
  transform: translateY(0);
}

/* Show sticky buttons only on mobile */
@media (max-width: 768px) {
  .sticky-mobile-actions {
    display: flex;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .wa-float {
    display: none;
  }
}

/* Modal responsive adjustments */
@media (max-width: 768px) {
  .modal-content {
    padding: 32px 24px;
    width: 95vw;
  }
  
  .callback-form-box h2 {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .modal-content {
    padding: 24px 20px;
    border-radius: 16px;
    width: 95vw;
  }
  
  .modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }
  
  .callback-form-box h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .callback-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .form-group {
    gap: 8px;
  }
  
  .callback-form input,
  .callback-form select,
  .callback-form textarea {
    padding: 11px 12px;
    font-size: 13px;
  }
  
  .sticky-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
  
  .sticky-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .sticky-mobile-actions {
    padding: 10px;
    gap: 8px;
  }
  
  body {
    padding-bottom: 64px;
  }
}
