/* ============================================================
   PAGE SECTIONS -- Net Desire Technologies
   ============================================================ */

/* ============================================================
   HOME -- HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 140vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=75') center/cover no-repeat;
  opacity: 0.12;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg,
      rgba(11,30,61,0.98) 0%,
      rgba(11,30,61,0.85) 40%,
      rgba(21,82,160,0.45) 80%,
      rgba(11,30,61,0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Live badge */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 6px var(--gold-400);
  animation: livePulse 2.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 6px var(--gold-400); opacity: 1; }
  50%      { box-shadow: 0 0 14px var(--gold-400); opacity: 0.7; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  color: var(--brand-white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  /* Hard-limit to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  flex-wrap: wrap;
}

.hero-stat {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-white);
  line-height: 1;
}
.hero-stat-num em { font-style: normal; color: var(--gold-400); }
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-top: 6px;
}

/* Right panel -- hero visual */
.hero-visual {
  position: relative;
}

.hero-card-main {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-card-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  opacity: 0.85;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,30,61,0.90));
  padding: 32px 28px 28px;
}

.hero-vendor-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.vendor-pill {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  backdrop-filter: blur(8px);
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  backdrop-filter: blur(8px);
}
.hero-float-card--tl { top: -16px; left: -20px; animation-delay: 0s; }
.hero-float-card--br { bottom: 80px; right: -20px; animation-delay: 2s; }

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

.hfc-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hfc-icon--gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); }
.hfc-text { font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.hfc-sub  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   TRUSTED STRIP
   ============================================================ */
.trusted-strip {
  background: var(--brand-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding-block: 28px;
}

.trusted-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trusted-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 20px;
  border-right: 1px solid var(--border-light);
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
}

.vendor-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.6;
  transition: all var(--dur-base);
  letter-spacing: 0.02em;
}
.vendor-name:hover { opacity: 1; color: var(--blue-500); }

/* ============================================================
   SERVICES SECTION (HOME)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26,95,200,0.10), rgba(26,95,200,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: all var(--dur-base);
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card__body {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue-500);
  transition: gap var(--dur-fast);
}
.service-card__link:hover { gap: 10px; }
.service-card__link svg { width: 14px; height: 14px; }

/* ============================================================
   ABOUT STRIP (HOME)
   ============================================================ */
.about-strip {
  background: var(--brand-surface);
  position: relative;
  overflow: hidden;
}

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

.about-image-cluster {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.08);
}
.about-badge-card .big-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.about-badge-card .big-label {
  font-size: 11px;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
}

.about-content {}
.about-content p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 18px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.why-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
}
.why-card:last-child { border-right: none; }
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,95,200,0.08), transparent);
  opacity: 0;
  transition: opacity var(--dur-base);
}
.why-card:hover { background: rgba(255,255,255,0.04); }
.why-card:hover::after { opacity: 1; }

.why-card__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 24px;
  transition: color var(--dur-base);
}
.why-card:hover .why-card__num { color: rgba(201,168,76,0.20); }

.why-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-white);
  margin-bottom: 12px;
}
.why-card__body {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-category-card {
  background: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
}
.product-category-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.pcc-header {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcc-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
}
.pcc-header--cyber { background: linear-gradient(135deg, #0a1628, #1552a0); }
.pcc-header--cloud { background: linear-gradient(135deg, #0d2040, #1a5fc8); }
.pcc-header--backup { background: linear-gradient(135deg, #1a2a10, #2d6a1e); }
.pcc-header--storage { background: linear-gradient(135deg, #1a1020, #6b1a8c); }
.pcc-header--managed { background: linear-gradient(135deg, #1a1010, #c84c1a); }
.pcc-header--infra { background: linear-gradient(135deg, #101820, #1552a0); }

.pcc-icon {
  font-size: 52px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.pcc-body { padding: 28px 28px 32px; }
.pcc-title { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.pcc-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.pcc-vendors {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pcc-vendor {
  background: var(--brand-surface);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
}
.team-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.team-card__avatar {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-bg {
  position: absolute;
  inset: 0;
}
.avatar-bg--1 { background: linear-gradient(135deg, #060f1f 0%, #0f2850 50%, #1552a0 100%); }
.avatar-bg--2 { background: linear-gradient(135deg, #0f2850 0%, #1a5fc8 100%); }
.avatar-bg--3 { background: linear-gradient(135deg, #060f1f 0%, #8a6a10 100%); }
.avatar-bg--4 { background: linear-gradient(135deg, #0a2040 0%, #1552a0 100%); }
.avatar-bg--5 { background: linear-gradient(135deg, #0f2040 0%, #2e7bd8 100%); }

.avatar-initials {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
  line-height: 1;
}

.avatar-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
}

.team-card__body {
  padding: 24px 26px 28px;
}

.team-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.team-card__role {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-500);
  margin-bottom: 4px;
}

.team-card__dept {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.team-card__divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 16px;
}

.team-card__bio {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.team-card__social {
  display: flex;
  gap: 8px;
}

.team-social-btn {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--brand-surface);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  transition: all var(--dur-fast);
}
.team-social-btn:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   MISSION / VISION CARDS
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.mv-card--mission {
  background: linear-gradient(140deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.mv-card--vision {
  background: linear-gradient(140deg, var(--blue-600) 0%, var(--blue-500) 100%);
}

.mv-card__icon { font-size: 40px; margin-bottom: 24px; display: block; }
.mv-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brand-white);
  margin-bottom: 16px;
}
.mv-card__body {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.82;
}
.mv-card::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  right: -60px; bottom: -60px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--navy-800) 60%, var(--navy-900) 100%);
  text-align: center;
}

.cta-section h2 { color: var(--brand-white); margin-bottom: 20px; }
.cta-section p  { color: rgba(255,255,255,0.70); font-size: 17px; max-width: 560px; margin: 0 auto 40px; line-height: 1.8; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--brand-white);
  margin-bottom: 8px;
}
.contact-info-card > p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.52);
  margin-bottom: 36px;
  line-height: 1.75;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-detail:last-of-type { border-bottom: none; }

.cd-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(26,95,200,0.18);
  border: 1px solid rgba(26,95,200,0.30);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg { width: 18px; height: 18px; color: var(--blue-300); }

.cd-label { font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.cd-value { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); }
.cd-value a:hover { color: var(--gold-400); }

.contact-form-card {
  background: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.contact-form-card > .sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* Map placeholder */
.map-placeholder {
  background: var(--brand-surface);
  border: 1.5px dashed var(--border-light);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  margin-top: 48px;
}
.map-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue-500), var(--gold-500));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(26,95,200,0.12);
}
.process-step:nth-child(even) .process-num {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  box-shadow: 0 0 0 6px rgba(201,168,76,0.12);
}

.process-step h4 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.process-step p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   PRODUCT DETAIL (inner product page)
   ============================================================ */
.vendor-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.vendor-detail-card {
  background: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.vendor-detail-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
  border-color: rgba(26,95,200,0.15);
}

.vdc-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.vdc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.vdc-name { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.vdc-type { font-size: 12px; color: var(--text-muted); }

.vdc-desc { font-size: 14.5px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; }

.vdc-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.vdc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  font-weight: 500;
}
.vdc-feature::before {
  content: '';
  width: 16px; height: 16px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-width='2.5' d='M3 8l3 3 7-7'/%3E%3C/svg%3E");
  background-size: cover;
}

.vdc-bottom-bar {
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(26px, 4vw, 44px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .vendor-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero__content { padding-top: 100px; padding-bottom: 64px; }
  .hero-headline { font-size: clamp(24px, 6vw, 36px); -webkit-line-clamp: 3; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 26px; }
  .hero-live-badge { font-size: 11px; padding: 5px 12px 5px 8px; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge-card { right: 0; bottom: -12px; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .contact-form-card { padding: 28px 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .vendor-cards-grid { grid-template-columns: 1fr; }

  /* Sections */
  .hero-stats { gap: 24px; }
  .mv-card { padding: 32px 24px; }
  .service-card { padding: 28px 24px; }
  .why-card { padding: 28px 24px; }
  .about-img-main img { height: 320px; }
  .about-badge-card { padding: 18px 20px; }
  .about-badge-card .big-num { font-size: 38px; }

  /* CTA */
  .cta-section p { font-size: 15px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Trusted strip */
  .trusted-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trusted-label { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border-light); padding-bottom: 10px; width: 100%; }
  .trusted-logos { gap: 20px; }

  /* Contact form */
  .contact-form-card h3 { font-size: 21px; }
}

@media (max-width: 480px) {
  /* Nav */
  .header-inner { height: 60px; }
  .logo-img { height: 40px; }

  /* Hero */
  .hero__content { padding-top: 80px; padding-bottom: 48px; }
  .hero-headline { font-size: clamp(22px, 7vw, 30px); }
  .hero-sub { font-size: 14px; line-height: 1.7; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 10px; }

  /* General */
  .team-grid { max-width: 100%; }
  .process-grid { grid-template-columns: 1fr; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .btn { padding: 12px 22px; }

  /* Typography */
  .t-display-lg { font-size: clamp(28px, 7vw, 40px); }
  .t-display-md { font-size: clamp(22px, 6vw, 32px); }

  /* Why cards */
  .why-card { padding: 24px 20px; }
  .why-card__num { font-size: 40px; }

  /* Cards */
  .service-card { padding: 24px 20px; }
  .pcc-body { padding: 20px 20px 24px; }
  .mv-card { padding: 28px 20px; }
  .contact-info-card { padding: 32px 24px; }
  .vendor-detail-card { padding: 26px 22px; }

  /* Section padding */
  .section-pad { padding-block: clamp(48px, 8vw, 80px); }
  .section-pad-sm { padding-block: clamp(32px, 6vw, 56px); }

  /* Footer */
  .footer-top { gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Back to top */
  #back-top { bottom: 20px; right: 20px; }
}
