﻿/* ============================================
   MINS Technologies - Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --white: #FFFFFF;
  --bg-light: #F5F9FF;
  --soft-blue: #E6F0FF;
  --primary: #1E6FD6;
  --primary-dark: #1558b0;
  --deep-blue: #0D47A1;
  --navy: #102033;
  --muted: #5A6B7A;
  --border: #D8E6F8;
  --shadow: 0 4px 24px rgba(30, 111, 214, 0.10);
  --shadow-lg: 0 8px 40px rgba(30, 111, 214, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* -- TYPOGRAPHY -- */
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--muted); font-size: 0.97rem; line-height: 1.75; }

.text-primary { color: var(--primary); }
.text-navy    { color: var(--navy); }
.text-muted   { color: var(--muted); }

/* -- LAYOUT -- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.section-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 640px; margin: 0 auto; }

/* -- NAVBAR -- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: var(--shadow-lg); }

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.nav-logo .logo-sub { color: var(--muted); font-weight: 500; }
.nav-logo .brand-logo {
  width: auto;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--soft-blue);
}

.nav-cta,
.nav-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,111,214,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-ghost {
  background: var(--soft-blue);
  color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}

.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--soft-blue); }

/* Hamburger */
.nav-hamburger,
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  background: none;
  border: none;
}
.nav-hamburger span,
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-lg);
}
.nav-mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-mobile a:hover { background: var(--soft-blue); color: var(--primary); }
.nav-mobile.open { display: flex; }

/* -- HERO -- */
.hero {
  padding: 70px 0 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 40px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: rgba(30,111,214,0.06);
  border-radius: 50%;
}

.hero .container {
  max-width: none;
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 1;
}

.hero-grid {
  min-height: calc(100vh - 70px);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 62%;
  min-height: calc(100vh - 70px);
  padding: 66px 15% 56px 7%;
  position: relative;
  z-index: 2;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft-blue);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 3.5vw, 3.55rem);
}
.hero h1 span { color: var(--primary); }
.highlight { color: var(--primary); }
.hero .hero-sub {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.hero p {
  margin-bottom: 20px;
  max-width: 610px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.hero-tag,
.hero-tags .tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual {
  position: absolute;
  inset: 0 0 0 42%;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.hero-grid:hover .hero-photo { transform: scale(1.025); }

/* -- CARDS -- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--soft-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

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

/* -- GRIDS -- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* -- STATS -- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* -- SERVICE CARDS -- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--deep-blue));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,111,214,0.3);
}

.service-card h3 { margin: 16px 0 10px; }
.service-card p { font-size: 0.875rem; margin-bottom: 20px; }

.service-card a.link-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card a.link-arrow:hover { gap: 12px; }

/* -- HOME SERVICES -- */
.home-services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(30,111,214,0.08), transparent 26%),
    var(--white) !important;
}

.home-services-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.home-services .service-card {
  min-height: 350px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-color: var(--navy);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(16,32,51,0.14);
  isolation: isolate;
}

.home-services .service-card::before {
  inset: 0;
  height: auto;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,15,30,0.06) 18%, rgba(4,15,30,0.64) 58%, rgba(4,15,30,0.96) 100%),
    linear-gradient(90deg, rgba(4,15,30,0.45), transparent 72%);
  transform: none;
  transition: background var(--transition);
}

.home-services .service-card-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.home-services .service-card:nth-child(2) .service-card-photo,
.home-services .service-card:nth-child(5) .service-card-photo,
.home-services .service-card:nth-child(8) .service-card-photo {
  object-position: 58% center;
}

.home-services .service-card > :not(.service-card-photo) {
  position: relative;
  z-index: 1;
}

.home-services .service-card .card-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 18px;
  color: #fff;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(10px);
}

.home-services .service-card .card-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
}

.home-services .service-card h3 {
  max-width: 430px;
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.25rem;
}

.home-services .service-card p {
  max-width: 470px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  line-height: 1.65;
}

.home-services .service-card a.link-arrow {
  width: fit-content;
  min-height: 36px;
  padding: 8px 13px;
  color: #fff;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.home-services .service-card a.link-arrow::after {
  content: '';
  position: absolute;
  inset: -300px;
}

.home-services .service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(13,71,161,0.22);
}

.home-services .service-card:hover::before {
  transform: none;
  background:
    linear-gradient(180deg, rgba(4,15,30,0.02) 12%, rgba(4,15,30,0.58) 54%, rgba(4,15,30,0.98) 100%),
    linear-gradient(90deg, rgba(30,111,214,0.18), transparent 72%);
}

.home-services .service-card:hover .service-card-photo {
  transform: scale(1.045);
}

.home-services .service-card:hover .card-icon {
  background: var(--primary);
  border-color: rgba(255,255,255,0.5);
}

/* -- SERVICE PAGE HERO -- */
.service-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, #F0F7FF 0%, #E6F0FF 60%, #F5F9FF 100%);
}

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

.service-hero-text h1 { margin-bottom: 20px; }
.service-hero-text p { margin-bottom: 28px; }

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

/* -- ABOUT SECTION -- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.about-feature::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* -- HOME ABOUT -- */
.home-about {
  padding: 96px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(30,111,214,0.08), transparent 28%),
    var(--white);
}

.home-about-grid {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
}

.home-about-content h2 {
  max-width: 650px;
  margin-bottom: 18px;
}

.home-about-content > p {
  max-width: 660px;
}

.home-about-content > p:first-of-type {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 600;
}

.home-about-features {
  gap: 10px;
  margin-top: 28px;
}

.home-about-features .about-feature {
  min-height: 48px;
  padding: 12px 14px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}

.home-about-features .about-feature::before {
  width: 20px;
  height: 20px;
  border: 5px solid var(--soft-blue);
  box-shadow: 0 0 0 1px var(--primary);
}

.home-about-features .about-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(30,111,214,0.45);
  box-shadow: var(--shadow);
}

.home-about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.home-about-link {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
}

.home-about-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform var(--transition);
}

.home-about-link:hover span {
  transform: translateX(5px);
}

.home-about-proof {
  min-height: 510px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, var(--primary), var(--deep-blue));
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(13,71,161,0.25);
  isolation: isolate;
}

.home-about-proof::before,
.home-about-proof::after {
  content: '';
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
}

.home-about-proof::before {
  width: 360px;
  height: 360px;
  top: -190px;
  right: -100px;
}

.home-about-proof::after {
  width: 240px;
  height: 240px;
  right: 25px;
  bottom: -165px;
}

.home-about-proof-intro > span {
  display: inline-block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.home-about-proof-intro h3 {
  max-width: 470px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.3;
}

.home-about-proof-intro p {
  max-width: 460px;
  color: rgba(255,255,255,0.76);
  font-size: 0.88rem;
}

.home-about-stats {
  gap: 10px;
  margin-top: 38px !important;
}

.home-about-stat {
  padding: 18px 12px;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.home-about-stat .stat-number {
  color: #fff;
  font-size: 1.65rem;
}

.home-about-stat .stat-label {
  color: rgba(255,255,255,0.72);
  font-size: 0.68rem;
  line-height: 1.4;
}

/* -- VISUAL BOX -- */
.visual-box {
  background: linear-gradient(135deg, var(--soft-blue), #dceeff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.visual-box svg {
  width: 100%;
  max-width: 340px;
}

/* -- CTA SECTION -- */
.cta-section {
  background: var(--bg-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: rgba(30,111,214,0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(30,111,214,0.05);
  border-radius: 50%;
}

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

.cta-inner h2 { color: var(--navy); margin-bottom: 10px; }
.cta-inner p { color: var(--muted); }

/* -- PAGE HERO -- */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, #F0F7FF 0%, #E6F0FF 60%, #F5F9FF 100%);
  position: relative;
}

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

/* Professional service heroes */
.service-detail-hero {
  min-height: 670px;
  padding: 150px 0 84px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 22%, rgba(83,162,255,0.2), transparent 25%),
    radial-gradient(circle at 12% 88%, rgba(30,111,214,0.22), transparent 28%),
    linear-gradient(135deg, #07182b 0%, #0b2747 54%, #0d3c70 100%);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.service-detail-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  top: 50%;
  right: -170px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255,255,255,0.025),
    0 0 0 180px rgba(255,255,255,0.018);
  transform: translateY(-50%);
}

.service-detail-hero .page-hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 84px;
}

.service-detail-hero .section-label,
.services-overview-hero .section-label {
  padding: 0 0 10px;
  color: #8dc2ff;
  background: transparent;
  border-bottom: 2px solid #58a6ff;
  border-radius: 0;
  letter-spacing: 2.4px;
}

.service-detail-hero h1 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.55rem, 4.5vw, 4.2rem);
  letter-spacing: -0.045em;
}

.service-detail-hero .page-hero-grid > div:first-child > p {
  max-width: 660px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.service-detail-hero .btn-primary {
  background: #fff;
  color: var(--deep-blue);
}

.service-detail-hero .btn-primary:hover {
  color: #fff;
  background: var(--primary);
}

.service-detail-hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.service-detail-hero .btn-outline:hover {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.service-detail-hero .visual-box {
  min-height: 400px;
  padding: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 28px;
  box-shadow:
    0 28px 70px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
}

.service-detail-hero .visual-box::before {
  content: 'MINS TECHNOLOGY OPERATIONS';
  position: absolute;
  top: 18px;
  left: 22px;
  color: rgba(255,255,255,0.52);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.service-detail-hero .visual-box::after {
  content: '\25CF  SYSTEM ONLINE';
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: #8de5ad;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.service-detail-hero .visual-box > svg,
.service-detail-hero .visual-box > .support-dashboard {
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.16));
}

.services-overview-hero {
  min-height: 650px;
  padding: 160px 0 100px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 42%, rgba(74,158,255,0.26), transparent 23%),
    linear-gradient(125deg, #07182b 0%, #0a2544 58%, #0d4a88 100%);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.services-overview-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
}

.services-overview-hero::after {
  content: '8';
  position: absolute;
  right: 7%;
  top: 50%;
  z-index: -1;
  color: rgba(255,255,255,0.055);
  font-size: clamp(20rem, 34vw, 34rem);
  font-weight: 900;
  line-height: 0.8;
  transform: translateY(-45%);
}

.services-overview-hero .about-hero-inner {
  max-width: 780px;
}

.services-overview-hero .about-hero-inner h1 {
  max-width: 760px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  letter-spacing: -0.05em;
}

.services-overview-hero .about-hero-inner > p {
  max-width: 720px;
  color: rgba(255,255,255,0.7);
}

.services-overview-hero .about-hero-badges span {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.services-overview-hero .about-hero-badges span svg {
  stroke: #8dc2ff;
}

.services-hero-actions {
  margin-top: 30px;
}

.services-overview-hero .btn-primary {
  background: #fff;
  color: var(--deep-blue);
}

.services-overview-hero .btn-primary:hover {
  color: #fff;
  background: var(--primary);
}

.services-overview-hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.services-overview-hero .btn-outline:hover {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

/* -- LIST WITH TICKS -- */
.tick-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.tick-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.tick-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--soft-blue);
  border: 2px solid var(--primary);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E6FD6' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* -- BENEFITS GRID -- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.benefit-icon {
  width: 52px; height: 52px;
  background: var(--soft-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.benefit-card h4 { margin-bottom: 6px; }
.benefit-card p { font-size: 0.82rem; }

/* -- INDUSTRY CARDS (legacy) -- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: default;
}

.industry-card:hover {
  background: var(--soft-blue);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.industry-card .ind-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.industry-card h4 { font-size: 0.82rem; color: var(--navy); }

/* -- INDUSTRIES SECTION (redesigned) -- */
.industries-section {
  position: relative;
  background: var(--white);
  padding: 96px 0;
  overflow: hidden;
}

.industries-bg-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 5% 15%, rgba(30,111,214,0.06), transparent),
    radial-gradient(ellipse 40% 40% at 95% 85%, rgba(30,111,214,0.05), transparent);
}

.industries-bg-shape::before,
.industries-bg-shape::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(30,111,214,0.07);
  border-radius: 50%;
}
.industries-bg-shape::before {
  width: 600px; height: 600px;
  top: -220px; right: -180px;
}
.industries-bg-shape::after {
  width: 380px; height: 380px;
  bottom: -160px; left: -100px;
}

/* Header row */
.industries-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.industries-stat-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.industries-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.industries-stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.industries-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.industries-stat-divider {
  width: 1px;
  height: 38px;
  background: var(--border);
}

/* Cards grid */
.industry-grid-new {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ind-card {
  position: relative;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 22px 24px;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.ind-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(30,111,214,0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.ind-card:hover {
  background: var(--soft-blue);
  border-color: rgba(30,111,214,0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ind-card:hover::before { opacity: 1; }

.ind-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--soft-blue);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.ind-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  transition: stroke var(--transition);
}

.ind-card:hover .ind-card-icon {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(30,111,214,0.25);
}

.ind-card:hover .ind-card-icon svg {
  stroke: #fff;
}

.ind-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.ind-card p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.ind-card-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #6db3ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 18px 18px;
}

.ind-card:hover .ind-card-line { transform: scaleX(1); }

/* -- CONTACT PAGE LAYOUT -- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

/* -- FORMS -- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group .req { color: #E53E3E; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--bg-light);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,111,214,0.1);
  background: white;
}

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

.btn-full {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 1rem;
  border-radius: 10px;
  margin-top: 0.5rem;
}

.form-success-box {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: #E6F4EA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #2E7D32;
  margin: 0 auto 1.2rem;
  font-weight: 700;
}

/* Contact info sidebar */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--soft-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.contact-value {
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.6;
}

.contact-badge-row {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.contact-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.badge-dot.green { background: #22C55E; }
.badge-dot.blue  { background: #1E6FD6; }

.why-contact-card {
  background: linear-gradient(135deg, #1E6FD6 0%, #0D47A1 100%);
  border-radius: 20px;
  padding: 1.8rem;
}

.why-contact-card h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.why-contact-card .tick-list li { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.why-contact-card .tick-list li::before { color: #93C5FD; }

/* -- CONTACT GRID (legacy pages) -- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* -- FOOTER -- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; }
.footer-brand .nav-logo .brand-logo { height: 48px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 280px; }

.footer-col h4,
.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: #fff; padding-left: 6px; }
.footer-col li { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }

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

/* -- SUPPORT DASHBOARD -- */
.support-dashboard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.status-dot { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; }
.status-dot::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.metric-card .metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}
.metric-card .metric-label { font-size: 0.78rem; color: var(--muted); }
.metric-card .metric-badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 20px;
  margin-top: 6px;
  background: #dcfce7;
  color: #16a34a;
  font-weight: 600;
}

/* -- SECTION -- */
.section { padding: 80px 0; }

/* -- SCROLL REVEAL -- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- BADGE ROW -- */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.badge {
  background: var(--soft-blue);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

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

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.why-card h3 { margin: 14px 0 8px; font-size: 1rem; }
.why-card p { font-size: 0.85rem; }

/* -- HOME WHY MINS -- */
.home-why {
  position: relative;
  overflow: hidden;
}

.home-why::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 50%;
  width: 720px;
  height: 280px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(30,111,214,0.1), transparent 68%);
  transform: translateX(-50%);
}

.home-why .container {
  position: relative;
  z-index: 1;
}

.home-why .why-grid {
  gap: 18px;
}

.home-why .why-card {
  min-height: 300px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.92);
  border-color: rgba(30,111,214,0.14);
  box-shadow: 0 8px 30px rgba(16,32,51,0.06);
  isolation: isolate;
}

.home-why .why-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  z-index: -1;
  background: linear-gradient(180deg, var(--primary), var(--deep-blue));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}

.home-why .why-card::after {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(30,111,214,0.12);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
}

.home-why .why-card:nth-child(1)::after { content: '01'; }
.home-why .why-card:nth-child(2)::after { content: '02'; }
.home-why .why-card:nth-child(3)::after { content: '03'; }
.home-why .why-card:nth-child(4)::after { content: '04'; }
.home-why .why-card:nth-child(5)::after { content: '05'; }
.home-why .why-card:nth-child(6)::after { content: '06'; }

.home-why .why-card .card-icon {
  width: 58px;
  height: 58px;
  margin: 0 0 24px;
  position: relative;
  border: 1px solid rgba(30,111,214,0.16);
  border-radius: 18px;
  color: var(--primary);
  background: linear-gradient(145deg, #fff, var(--soft-blue));
  box-shadow: 0 8px 18px rgba(30,111,214,0.12), inset 0 1px 0 #fff;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.home-why .why-card .card-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  right: -3px;
  bottom: -3px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--primary);
}

.home-why .why-card .card-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-why .why-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.06rem;
}

.home-why .why-card p {
  flex: 1;
  margin-bottom: 24px;
  font-size: 0.84rem;
  line-height: 1.7;
}

.home-why .why-card > p::after {
  display: block;
  width: fit-content;
  margin-top: 18px;
  padding: 5px 10px;
  color: var(--primary);
  background: var(--soft-blue);
  border-radius: 20px;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-why .why-card:nth-child(1) > p::after { content: 'Expert decisions, faster'; }
.home-why .why-card:nth-child(2) > p::after { content: 'Designed around your goals'; }
.home-why .why-card:nth-child(3) > p::after { content: 'One accountable partner'; }
.home-why .why-card:nth-child(4) > p::after { content: 'Lower operational risk'; }
.home-why .why-card:nth-child(5) > p::after { content: 'Performance you can trust'; }
.home-why .why-card:nth-child(6) > p::after { content: 'Keep business moving'; }

.home-why .why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30,111,214,0.42);
  box-shadow: 0 18px 42px rgba(30,111,214,0.14);
}

.home-why .why-card:hover::before {
  transform: scaleY(1);
}

.home-why .why-card:hover::after {
  color: rgba(30,111,214,0.22);
  transform: translateY(-3px);
}

.home-why .why-card:hover .card-icon {
  color: #fff;
  background: linear-gradient(145deg, #3c8bed, var(--deep-blue));
  box-shadow: 0 12px 24px rgba(30,111,214,0.24);
  transform: translateY(-3px) rotate(-3deg);
}

.home-why .why-card:hover .card-icon svg {
  stroke: currentColor;
}

/* Home page: flatter content patterns to avoid a card-heavy landing page */
.home-about-features .about-feature {
  min-height: 0;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}

.home-about-features .about-feature:hover {
  transform: none;
  border-color: var(--primary);
  box-shadow: none;
}

.home-why .why-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  border-top: 1px solid var(--border);
}

.home-why .why-card {
  min-height: 0;
  padding: 30px 56px 30px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.home-why .why-card::before {
  display: none;
}

.home-why .why-card::after {
  top: 31px;
  right: 0;
  color: rgba(30,111,214,0.18);
  font-size: 1rem;
}

.home-why .why-card .card-icon {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.home-why .why-card .card-icon::after,
.home-why .why-card > p::after {
  display: none;
}

.home-why .why-card h3 {
  margin: 0 32px 6px 0;
}

.home-why .why-card p {
  margin: 0;
}

.home-why .why-card:hover {
  transform: none;
  border-color: var(--primary);
  box-shadow: none;
}

.home-why .why-card:hover::after {
  transform: none;
}

.home-why .why-card:hover .card-icon {
  transform: none;
  box-shadow: none;
}

.home-core-services {
  background:
    linear-gradient(90deg, var(--bg-light) 0, var(--bg-light) 32%, var(--white) 32%) !important;
}

.home-service-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
  border-top: 1px solid var(--border);
}

.home-service-list .service-card {
  min-height: 190px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.home-service-list .service-card::before {
  display: none;
}

.home-service-list .service-card .card-icon {
  grid-row: 1 / span 3;
  margin: 0;
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 50%;
}

.home-service-list .service-card h3 {
  margin: 0 0 8px;
}

.home-service-list .service-card p {
  margin-bottom: 12px;
}

.home-service-list .service-card:hover {
  transform: none;
  border-color: var(--primary);
  box-shadow: none;
}

.industry-grid-new {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  border-top: 1px solid var(--border);
}

.ind-card {
  min-height: 100px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 16px;
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  overflow: visible;
}

.ind-card::before,
.ind-card-line {
  display: none;
}

.ind-card-icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.ind-card h4 {
  align-self: end;
  margin-bottom: 2px;
}

.ind-card p {
  align-self: start;
}

.ind-card:hover {
  background: transparent;
  border-color: var(--primary);
  transform: none;
  box-shadow: none;
}

.ind-card:hover .ind-card-icon {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.ind-card:hover .ind-card-icon svg {
  stroke: var(--deep-blue);
}

/* -- SUPPORT PAGE -- */

.support-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Support channels */
.support-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.support-channel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.support-channel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,111,214,0.3);
}

.support-channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--soft-blue);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.support-channel-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  transition: stroke var(--transition);
}

.support-channel:hover .support-channel-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.support-channel:hover .support-channel-icon svg { stroke: #fff; }

.support-channel-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--soft-blue);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
}

.support-channel h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.support-channel p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.support-channel-detail {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-word;
}

/* SLA Cards */
.sla-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sla-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: var(--transition);
}

.sla-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,111,214,0.2);
}

.sla-priority {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.sla-time {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.sla-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 14px;
}

.sla-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* -- CONTACT PAGE -- */

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-quick-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition);
  text-decoration: none;
}

.contact-quick-card:hover {
  background: var(--soft-blue);
  border-color: rgba(30,111,214,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-quick-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-quick-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.contact-quick-card:hover .contact-quick-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.contact-quick-card:hover .contact-quick-icon svg { stroke: #fff; }

.contact-quick-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-quick-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-quick-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

/* -- SERVICES PAGE -- */

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  align-items: flex-start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.svc-item:first-child { border-top: 1px solid var(--border); }

.svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--soft-blue);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  transition: var(--transition);
}

.svc-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  transition: stroke var(--transition);
}

.svc-item:hover .svc-icon {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(30,111,214,0.22);
}

.svc-item:hover .svc-icon svg { stroke: #fff; }

.svc-body { display: flex; flex-direction: column; }

.svc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.svc-body h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.svc-body > p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 20px;
}

.svc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.svc-features li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
}

.svc-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--transition);
  width: fit-content;
}

.svc-link:hover { gap: 12px; }

/* Why strip */
.svc-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}

.svc-why-item {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.svc-why-item:last-child { border-right: none; }
.svc-why-item:hover { background: var(--white); }

.svc-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.svc-why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.svc-why-item:hover .svc-why-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.svc-why-item:hover .svc-why-icon svg { stroke: #fff; }

.svc-why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-why-item p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* -- ABOUT PAGE -- */

/* Hero */
.about-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(30,111,214,0.1), transparent 30%),
    linear-gradient(135deg, #fbfdff, var(--bg-light));
  border-bottom: 1px solid var(--border);
}

.about-hero-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about-hero-photo {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,0.88);
  border-radius: 28px;
  background: var(--soft-blue);
  box-shadow: 0 22px 55px rgba(30,111,214,0.14);
}

.about-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(230,240,255,0.2) 55%, rgba(255,255,255,0.45)),
    linear-gradient(180deg, transparent 55%, rgba(255,255,255,0.42));
}

.about-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.05) saturate(0.92) contrast(0.96);
  transform: scale(1.04);
}

.support-hero-photo img {
  object-position: 48% center;
}

.contact-hero-photo img {
  object-position: center;
}

.about-hero-photo-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 16px 18px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(16,32,51,0.1);
  backdrop-filter: blur(12px);
}

.about-hero-photo-note strong,
.about-hero-photo-note span {
  display: block;
}

.about-hero-photo-note strong {
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 0.88rem;
}

.about-hero-photo-note span {
  color: var(--muted);
  font-size: 0.72rem;
}

.about-hero-inner {
  max-width: 660px;
}

.about-hero-inner h1 {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.12;
  color: var(--navy);
}

.about-hero-inner > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 32px;
}

.about-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.about-hero-badges span svg {
  stroke: var(--primary);
  flex-shrink: 0;
}



.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
  text-align: center;
}

.about-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.about-stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* Pillars (right column of who we are) */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.about-pillar:last-child {
  border-bottom: none;
}

.about-pillar:hover {
  background: var(--bg-light);
}

.about-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft-blue);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.about-pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.about-pillar:hover .about-pillar-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.about-pillar:hover .about-pillar-icon svg {
  stroke: #fff;
}

.about-pillar h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-pillar p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* Vision & Mission */
.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,111,214,0.3);
}

.about-vm-icon {
  width: 52px;
  height: 52px;
  background: var(--soft-blue);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-vm-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.about-vm-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-vm-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 14px;
}

.about-vm-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Values */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-value {
  padding: 32px 28px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-value::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #6db3ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.about-value:hover {
  background: var(--white);
  border-color: rgba(30,111,214,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-value:hover::after { transform: scaleX(1); }

.about-value-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(30,111,214,0.12);
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.about-value h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-value p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* -- MISSION / VISION -- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.mv-card.blue-card {
  background: linear-gradient(135deg, var(--primary), var(--deep-blue));
  border: none;
}
.mv-card.blue-card h3,
.mv-card.blue-card p { color: #fff; }
.mv-card h3 { margin-bottom: 14px; }
.mv-card .mv-list { margin-top: 16px; }
.mv-card .mv-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mv-card .mv-list li::before {
  content: '->';
  color: var(--primary);
  font-weight: 700;
}
.mv-card.blue-card .mv-list li {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.mv-card.blue-card .mv-list li::before { color: rgba(255,255,255,0.9); }



/* -- FORM SUCCESS -- */
.form-success {
  background: #f0fdf4;
  border: 1.5px solid #22c55e;
  border-radius: 10px;
  padding: 16px 20px;
  color: #16a34a;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
  text-align: center;
}

/* -- RESPONSIVE -- */
@media (max-width: 1024px) {
  .home-about-grid { gap: 40px; }
  .home-about-proof { padding: 36px; }
  .hero-content { width: 70%; padding-left: 5%; padding-right: 18%; }
  .hero-visual { left: 48%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid-new { grid-template-columns: repeat(3, 1fr); }
  .industries-header { flex-direction: column; align-items: flex-start; gap: 28px; }
  .industries-stat-row { gap: 20px; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-vm-grid { grid-template-columns: 1fr; }
  .about-stats-grid { gap: 10px; }
  .about-stat { padding: 0 28px; }
  .svc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-why-item { border-bottom: 1px solid var(--border); }
  .svc-why-item:nth-child(2) { border-right: none; }
  .svc-why-item:nth-child(3), .svc-why-item:nth-child(4) { border-bottom: none; }
  .support-channels { grid-template-columns: repeat(2, 1fr); }
  .sla-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-quick-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .service-hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta, .nav-ctas { display: none; }
  .nav-hamburger, .hamburger { display: flex; }
  .hero { padding: 70px 0 0; }
  .hero-grid, .about-split, .page-hero-grid, .contact-grid, .mv-grid { grid-template-columns: 1fr; }
  .home-about { padding: 58px 0; }
  .home-about-grid { gap: 34px; }
  .home-about-features { grid-template-columns: 1fr; }
  .home-about-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .home-about-actions .btn { width: 100%; }
  .home-about-link { padding: 8px; text-align: center; }
  .home-about-proof { min-height: 0; padding: 28px 20px; border-radius: 20px; }
  .home-about-stats { grid-template-columns: 1fr 1fr !important; margin-top: 28px !important; }
  .hero-grid { display: flex; flex-direction: column; min-height: calc(100vh - 70px); border-radius: 0; }
  .hero-visual { position: relative; inset: auto; width: 100%; order: -1; }
  .hero-photo { height: 300px; }
  .hero-content {
    width: 100%;
    min-height: 0;
    padding: 34px 24px 38px;
    border-radius: 0;
    clip-path: none;
  }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero p { font-size: 0.88rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .home-why .why-grid { gap: 14px; }
  .home-why .why-card { min-height: 0; padding: 24px; }
  .home-why .why-card .card-icon { width: 52px; height: 52px; margin-bottom: 18px; }
  .home-why .why-card p { margin-bottom: 0; }
  .home-why .why-card::after { top: 20px; right: 20px; font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid-new { grid-template-columns: repeat(2, 1fr); }
  .industries-section { padding: 64px 0; }
  .industries-stat-row { gap: 16px; }
  .industries-stat-num { font-size: 1.5rem; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .about-vm-grid { grid-template-columns: 1fr; }
  .about-stats-grid { flex-direction: column; gap: 24px; padding: 36px 0; }
  .about-stat-divider { width: 40px; height: 1px; }
  .about-pillar { padding: 20px; }
  .about-hero { padding: 110px 0 60px; }
  .svc-item { grid-template-columns: 56px 1fr; gap: 24px; padding: 36px 0; }
  .svc-why-grid { grid-template-columns: 1fr 1fr; }
  .svc-why-item { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .svc-why-item:last-child { border-bottom: none; }
  .support-channels { grid-template-columns: 1fr 1fr; }
  .sla-grid { grid-template-columns: 1fr 1fr; }
  .contact-quick-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .dashboard-metrics { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  section, .section { padding: 56px 0; }
}

/* Universal phone layout guardrails */
main,
section,
.container,
.nav-inner,
.hero-content,
.page-hero-grid > *,
.about-split > *,
.contact-layout > *,
.contact-grid > *,
.footer-grid > *,
.svc-item > *,
.card,
.service-card,
.why-card,
.benefit-card,
.stat-card,
.support-channel,
.sla-card,
.contact-quick-card,
.contact-form-wrap,
.contact-info-card {
  min-width: 0;
}

.card,
.service-card,
.why-card,
.benefit-card,
.stat-card,
.support-channel,
.sla-card,
.contact-quick-card,
.contact-form-wrap,
.contact-info-card {
  width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .why-grid,
  .home-services-grid,
  .home-service-list,
  .industry-grid,
  .industry-grid-new,
  .benefits-grid,
  .about-values-grid,
  .about-vm-grid,
  .svc-why-grid,
  .support-channels,
  .sla-grid,
  .contact-quick-grid,
  .dashboard-metrics,
  .service-hero-inner,
  .services-portfolio-header {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .card,
  .service-card,
  .why-card,
  .benefit-card,
  .stat-card,
  .support-channel,
  .sla-card,
  .contact-quick-card,
  .contact-form-wrap,
  .contact-info-card {
    max-width: 100%;
  }

  .svc-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .svc-features {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .svc-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .svc-icon {
    margin-bottom: 4px;
  }

  .home-about-stats,
  .stats-row {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid-new { grid-template-columns: repeat(2, 1fr); }
  .about-values-grid { grid-template-columns: 1fr; }
}

/* -- MOBILE-FIRST OPTIMIZATION -- */
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button,
.btn,
.nav-links a,
.nav-mobile a {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid rgba(30,111,214,0.35);
  outline-offset: 3px;
}

@media (hover: none) {
  .card:hover,
  .service-card:hover,
  .why-card:hover,
  .benefit-card:hover,
  .industry-card:hover,
  .btn-primary:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }

  body {
    min-width: 320px;
    text-rendering: optimizeLegibility;
  }

  .container,
  .nav-inner,
  .nav-container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .navbar {
    height: 70px;
    background: rgba(255,255,255,0.96);
  }

  .nav-inner,
  .nav-container {
    gap: 12px;
  }

  .nav-logo {
    min-width: 0;
    max-width: calc(100% - 58px);
    font-size: 1rem;
    line-height: 1.15;
  }

  .nav-logo .brand-logo {
    height: 46px;
  }

  .nav-hamburger,
  .hamburger {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }

  .nav-mobile {
    top: 70px;
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
  }

  .nav-mobile a,
  .nav-links.mobile-open a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  section,
  .section {
    padding: 52px 0;
  }

  .page-hero,
  .service-hero {
    padding: 112px 0 54px;
  }

  .page-hero-grid,
  .service-hero-inner,
  .about-split,
  .contact-layout,
  .contact-grid,
  .mv-grid {
    gap: 32px;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-header p {
    max-width: 100%;
  }

  h1 { font-size: clamp(2rem, 10vw, 2.75rem); }
  h2 { font-size: clamp(1.65rem, 8vw, 2.15rem); }
  h3 { font-size: 1.08rem; }

  p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .section-label,
  .section-tag {
    max-width: 100%;
    padding: 6px 14px;
    font-size: 0.68rem;
    letter-spacing: 1.3px;
    white-space: normal;
  }

  .btn {
    min-height: 44px;
    justify-content: center;
    padding: 11px 18px;
  }

  .btn-lg {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 0.94rem;
  }

  .hero-btns,
  .cta-inner {
    width: 100%;
    gap: 10px;
  }

  .hero-btns .btn,
  .cta-inner > .btn {
    flex: 1 1 180px;
  }

  .hero-content {
    padding: 32px 18px 38px;
  }

  .hero-photo {
    height: clamp(230px, 62vw, 310px);
  }

  .hero-tags {
    gap: 7px;
  }

  .hero-tag,
  .hero-tags .tag,
  .badge {
    font-size: 0.72rem;
  }

  .visual-box {
    min-height: 260px;
    padding: 24px;
  }

  .service-hero-visual svg {
    max-height: 280px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .why-grid,
  .benefits-grid,
  .stats-row {
    gap: 16px;
  }

  .card,
  .service-card,
  .why-card,
  .mv-card,
  .stat-card,
  .benefit-card {
    padding: 22px;
    border-radius: 14px;
  }

  .service-card[style*="display:flex"] {
    flex-direction: column;
    gap: 14px !important;
  }

  .service-card .card-icon {
    margin-bottom: 4px;
  }

  .support-dashboard,
  .contact-form-wrap,
  .contact-info-card {
    padding: 20px;
    border-radius: 16px;
  }

  .dashboard-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .system-health-grid {
    grid-template-columns: 1fr !important;
  }

  .support-engineer-card {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 14px !important;
  }

  .support-engineer-card .btn {
    width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 46px;
    font-size: 16px;
  }

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

  .contact-value,
  .footer-col a {
    overflow-wrap: anywhere;
  }

  .contact-item {
    gap: 12px;
  }

  .footer {
    padding: 50px 0 calc(26px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 28px;
    margin-bottom: 34px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .cta-section {
    padding: 56px 0;
    text-align: center;
  }

  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"],
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .home-about-stats {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 480px) {
  .container,
  .nav-inner,
  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-logo {
    font-size: 0.92rem;
  }

  .nav-logo .brand-logo {
    height: 42px;
  }

  .nav-logo .logo-sub {
    display: none;
  }

  .hero-btns .btn,
  .cta-inner > .btn,
  .cta-section .btn {
    width: 100%;
    flex-basis: 100%;
  }

  .industry-card {
    padding: 18px 10px;
  }

  .industry-card h4 {
    font-size: 0.76rem;
  }

  .contact-badge-row {
    flex-direction: column;
  }

  .contact-badge {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-services .service-card {
    min-height: 320px;
    padding: 24px;
    border-radius: 18px;
  }

  .home-services .service-card h3 {
    font-size: 1.12rem;
  }

  .home-services .service-card p {
    margin-bottom: 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .home-services .service-card {
    min-height: 300px;
    padding: 20px;
  }

  .home-services .service-card .card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }
}

/* Landing page list layouts: responsive overrides */
@media (max-width: 1024px) {
  .industry-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-core-services {
    background: var(--white) !important;
  }

  .home-why .why-grid,
  .home-service-list,
  .industry-grid-new {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-why .why-card {
    min-height: 0;
    padding: 24px 36px 24px 0;
    grid-template-columns: 44px 1fr;
    border-radius: 0;
  }

  .home-why .why-card .card-icon {
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .home-why .why-card::after {
    top: 26px;
    right: 0;
    font-size: 0.82rem;
  }

  .home-service-list .service-card {
    min-height: 0;
    padding: 26px 0;
    grid-template-columns: 44px 1fr;
    border-radius: 0;
  }

  .home-service-list .service-card .card-icon {
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .ind-card {
    min-height: 0;
    padding: 20px 0;
  }
}

/* Service hero responsive refinements */
@media (max-width: 1024px) {
  .service-detail-hero {
    min-height: 0;
  }

  .service-detail-hero .page-hero-grid {
    gap: 44px;
  }

  .service-detail-hero .visual-box {
    min-height: 340px;
    padding: 34px;
  }
}

@media (max-width: 768px) {
  .service-detail-hero,
  .services-overview-hero {
    min-height: 0;
    padding: 118px 0 64px;
  }

  .service-detail-hero::before,
  .services-overview-hero::before {
    background-size: 38px 38px;
  }

  .service-detail-hero::after {
    width: 340px;
    height: 340px;
    top: auto;
    right: -210px;
    bottom: 20px;
    transform: none;
  }

  .services-overview-hero::after {
    right: -10%;
    top: auto;
    bottom: 20px;
    font-size: 18rem;
    transform: none;
  }

  .service-detail-hero .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-detail-hero h1,
  .services-overview-hero .about-hero-inner h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    letter-spacing: -0.04em;
  }

  .service-detail-hero .visual-box {
    min-height: 290px;
    padding: 38px 20px 32px;
    border-radius: 20px;
  }

  .service-detail-hero .visual-box::before {
    top: 14px;
    left: 16px;
    font-size: 0.52rem;
  }

  .service-detail-hero .visual-box::after {
    right: 16px;
    bottom: 12px;
    font-size: 0.52rem;
  }

  .service-detail-hero .hero-btns .btn {
    flex: 1 1 180px;
  }

  .services-overview-hero .about-hero-badges {
    gap: 8px;
  }

  .services-overview-hero .about-hero-badges span {
    font-size: 0.72rem;
  }
}

/* Light professional theme for individual service-page heroes */
.service-detail-hero {
  background:
    radial-gradient(circle at 84% 20%, rgba(30,111,214,0.14), transparent 26%),
    radial-gradient(circle at 8% 92%, rgba(109,179,255,0.14), transparent 30%),
    linear-gradient(135deg, #fbfdff 0%, #f0f7ff 52%, #e7f2ff 100%);
  border-bottom-color: var(--border);
}

.service-detail-hero::before {
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(30,111,214,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,111,214,0.06) 1px, transparent 1px);
}

.service-detail-hero::after {
  border-color: rgba(30,111,214,0.1);
  box-shadow:
    0 0 0 90px rgba(30,111,214,0.025),
    0 0 0 180px rgba(30,111,214,0.018);
}

.service-detail-hero .section-label {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.service-detail-hero h1 {
  color: var(--navy);
}

.service-detail-hero .page-hero-grid > div:first-child > p {
  color: var(--muted);
}

.service-detail-hero .btn-primary {
  color: #fff;
  background: var(--primary);
}

.service-detail-hero .btn-primary:hover {
  background: var(--primary-dark);
}

.service-detail-hero .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.service-detail-hero .btn-outline:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.service-detail-hero .visual-box {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(230,240,255,0.75));
  border-color: rgba(30,111,214,0.18);
  box-shadow:
    0 28px 70px rgba(30,111,214,0.14),
    inset 0 1px 0 #fff;
}

.service-detail-hero .visual-box::before {
  color: rgba(13,71,161,0.52);
}

.service-detail-hero .visual-box::after {
  color: #16803b;
}

/* Photo-led service hero visuals */
.service-detail-hero .service-hero-photo {
  min-height: 420px;
  padding: 0;
  display: block;
  isolation: isolate;
  background-image:
    linear-gradient(180deg, rgba(5,24,45,0.04) 20%, rgba(5,24,45,0.8) 100%),
    url('assets/hero-it-infrastructure.png');
  background-size: cover;
  background-position: center;
  border: 8px solid rgba(255,255,255,0.9);
  box-shadow: 0 28px 70px rgba(30,111,214,0.18);
}

.service-detail-hero .service-hero-photo::before {
  content: 'Enterprise Technology Operations';
  top: auto;
  left: 28px;
  right: 28px;
  bottom: 62px;
  z-index: 2;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  text-transform: none;
}

.service-detail-hero .service-hero-photo::after {
  content: '24/7 MONITORING  /  CERTIFIED ENGINEERS';
  left: 28px;
  right: auto;
  bottom: 31px;
  z-index: 2;
  color: rgba(255,255,255,0.72);
  font-size: 0.62rem;
  letter-spacing: 1.2px;
}

.service-detail-hero .service-hero-photo > svg,
.service-detail-hero .service-hero-photo > .support-dashboard {
  display: none;
}

.service-detail-hero .service-hero-photo-internet {
  background-position: 68% center;
}

.service-detail-hero .service-hero-photo-internet::before {
  content: 'High-Availability Connectivity';
}

.service-detail-hero .service-hero-photo-internet::after {
  content: 'UP TO 10 GBPS  /  99.9% SLA';
}

.service-detail-hero .service-hero-photo-network {
  background-position: 45% center;
}

.service-detail-hero .service-hero-photo-network::before {
  content: 'Enterprise Network Command Center';
}

.service-detail-hero .service-hero-photo-network::after {
  content: 'SECURE LAN / WAN  /  PROACTIVE MONITORING';
}

.service-detail-hero .service-hero-photo-wireless {
  background-position: 60% center;
}

.service-detail-hero .service-hero-photo-wireless::before {
  content: 'Intelligent Wireless Infrastructure';
}

.service-detail-hero .service-hero-photo-wireless::after {
  content: 'WI-FI 6 / 6E  /  SEAMLESS COVERAGE';
}

.service-detail-hero .service-hero-photo-security {
  background-position: 78% center;
}

.service-detail-hero .service-hero-photo-security::before {
  content: 'Security Operations & Threat Response';
}

.service-detail-hero .service-hero-photo-security::after {
  content: 'ZERO TRUST  /  CONTINUOUS PROTECTION';
}

.service-detail-hero .service-hero-photo-datacenter {
  background-position: 28% center;
}

.service-detail-hero .service-hero-photo-datacenter::before {
  content: 'Mission-Critical Datacenter Operations';
}

.service-detail-hero .service-hero-photo-datacenter::after {
  content: 'RESILIENT DESIGN  /  BUSINESS CONTINUITY';
}

.service-detail-hero .service-hero-photo-managed {
  background-position: 70% center;
}

.service-detail-hero .service-hero-photo-managed::before {
  content: 'Managed Technology Operations';
}

.service-detail-hero .service-hero-photo-managed::after {
  content: '24/7 SUPPORT  /  PREDICTABLE SERVICE';
}

.service-detail-hero .service-hero-photo-storage {
  background-position: 22% center;
}

.service-detail-hero .service-hero-photo-storage::before {
  content: 'Enterprise Compute & Data Platform';
}

.service-detail-hero .service-hero-photo-storage::after {
  content: 'HIGH AVAILABILITY  /  SECURE DATA';
}

@media (max-width: 768px) {
  .service-detail-hero .service-hero-photo {
    min-height: 300px;
    padding: 0;
    border-width: 5px;
  }

  .service-detail-hero .service-hero-photo::before {
    left: 18px;
    right: 18px;
    bottom: 48px;
    font-size: 0.95rem;
  }

  .service-detail-hero .service-hero-photo::after {
    left: 18px;
    bottom: 23px;
    font-size: 0.52rem;
  }
}

/* Services overview page refresh */
.services-page-hero {
  min-height: 690px;
  padding: 150px 0 90px;
  isolation: isolate;
  background:
    radial-gradient(circle at 10% 20%, rgba(30,111,214,0.1), transparent 28%),
    linear-gradient(135deg, #fbfdff 0%, #f2f8ff 58%, #e8f3ff 100%);
}

.services-page-hero .container {
  min-height: 450px;
  position: relative;
  display: flex;
  align-items: center;
}

.services-page-hero .container::after {
  content: '';
  position: absolute;
  width: 47%;
  top: 0;
  right: 24px;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(5,24,45,0.02) 35%, rgba(5,24,45,0.72) 100%),
    url('assets/hero-it-infrastructure.png') center / cover;
  border: 9px solid rgba(255,255,255,0.92);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(30,111,214,0.18);
}

.services-page-hero .about-hero-inner {
  width: 50%;
  max-width: 670px;
  position: relative;
  z-index: 1;
}

.services-page-hero .about-hero-inner h1 {
  margin-top: 12px;
  font-size: clamp(2.6rem, 4.6vw, 4.25rem);
  letter-spacing: -0.05em;
}

.services-page-hero .about-hero-inner > p {
  max-width: 620px;
  margin-bottom: 26px;
}

.services-page-hero .about-hero-badges {
  gap: 8px;
}

.services-page-hero .about-hero-badges span {
  padding: 6px 12px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
}

.services-page-hero-actions {
  margin-top: 28px;
}

.services-portfolio {
  padding: 96px 0;
  background: var(--white);
}

.services-portfolio-header {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
}

.services-portfolio-header h2 {
  max-width: 690px;
}

.services-portfolio-header > p {
  max-width: 470px;
  padding-left: 24px;
  border-left: 2px solid var(--primary);
}

.services-portfolio .svc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 54px;
  border-top: 1px solid var(--border);
}

.services-portfolio .svc-item,
.services-portfolio .svc-item:first-child {
  min-height: 390px;
  padding: 38px 0 34px;
  position: relative;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  border-top: 0;
  border-bottom: 1px solid var(--border);
}

.services-portfolio .svc-item::after {
  position: absolute;
  top: 40px;
  right: 0;
  color: rgba(30,111,214,0.14);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 1px;
}

.services-portfolio .svc-item:nth-child(1)::after { content: '01'; }
.services-portfolio .svc-item:nth-child(2)::after { content: '02'; }
.services-portfolio .svc-item:nth-child(3)::after { content: '03'; }
.services-portfolio .svc-item:nth-child(4)::after { content: '04'; }
.services-portfolio .svc-item:nth-child(5)::after { content: '05'; }
.services-portfolio .svc-item:nth-child(6)::after { content: '06'; }
.services-portfolio .svc-item:nth-child(7)::after { content: '07'; }
.services-portfolio .svc-item:nth-child(8)::after { content: '08'; }

.services-portfolio .svc-icon {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--border);
}

.services-portfolio .svc-body h3 {
  max-width: calc(100% - 38px);
  font-size: 1.22rem;
}

.services-portfolio .svc-body > p {
  max-width: 520px;
}

.services-portfolio .svc-features {
  gap: 8px 18px;
  margin-bottom: 22px;
}

.services-portfolio .svc-link {
  margin-top: auto;
}

.services-portfolio .svc-item:hover .svc-icon {
  transform: none;
}

.services-proof {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(30,111,214,0.05), transparent 55%),
    var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-proof .svc-why-item {
  padding-top: 52px;
  padding-bottom: 52px;
}

@media (max-width: 1024px) {
  .services-page-hero .container::after {
    width: 43%;
  }

  .services-page-hero .about-hero-inner {
    width: 55%;
  }

  .services-portfolio .svc-list {
    gap: 0 34px;
  }
}

@media (max-width: 768px) {
  .services-page-hero {
    min-height: 0;
    padding: 112px 0 56px;
  }

  .services-page-hero .container {
    min-height: 0;
    display: block;
  }

  .services-page-hero .container::after {
    position: relative;
    width: 100%;
    height: 280px;
    top: auto;
    right: auto;
    bottom: auto;
    display: block;
    margin-top: 36px;
    border-width: 5px;
    border-radius: 20px;
  }

  .services-page-hero .about-hero-inner {
    width: 100%;
  }

  .services-page-hero .about-hero-inner h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .services-portfolio {
    padding: 60px 0;
  }

  .services-portfolio-header {
    margin-bottom: 34px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-portfolio-header > p {
    padding-left: 16px;
  }

  .services-portfolio .svc-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-portfolio .svc-item,
  .services-portfolio .svc-item:first-child {
    min-height: 0;
    padding: 30px 0;
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .services-portfolio .svc-icon {
    width: 48px;
    height: 48px;
  }

  .services-portfolio .svc-item::after {
    top: 32px;
  }

  .services-proof .svc-why-item {
    padding: 30px 20px;
  }
}

/* Final mobile overrides shared by every page */
@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .why-grid,
  .home-services-grid,
  .home-service-list,
  .industry-grid,
  .industry-grid-new,
  .benefits-grid,
  .about-values-grid,
  .about-vm-grid,
  .svc-why-grid,
  .support-channels,
  .sla-grid,
  .contact-quick-grid,
  .dashboard-metrics,
  .service-hero-inner,
  .services-portfolio-header {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .card,
  .service-card,
  .why-card,
  .benefit-card,
  .stat-card,
  .support-channel,
  .sla-card,
  .contact-quick-card,
  .contact-form-wrap,
  .contact-info-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .svc-features {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .services-portfolio .svc-item,
  .services-portfolio .svc-item:first-child,
  .svc-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-about-stats,
  .stats-row {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Larger, consistent typography across every page */
html {
  font-size: 17px;
}

body {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .about-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .about-hero-inner {
    max-width: 100%;
  }

  .about-hero-photo {
    min-height: 320px;
    border-width: 6px;
    border-radius: 20px;
  }

  .about-hero-photo img {
    min-height: 320px;
  }

  p,
  .hero p {
    font-size: 1rem;
  }

  .service-card p,
  .why-card p,
  .benefit-card p,
  .footer-brand p,
  .footer-col a,
  .footer-col li,
  .svc-features li,
  .stat-label,
  .support-channel p,
  .sla-card p {
    font-size: 0.9rem;
  }

  .section-label,
  .section-tag {
    font-size: 0.75rem;
  }

  .btn,
  .btn-lg,
  .svc-link,
  .link-arrow {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero-photo,
  .about-hero-photo img {
    min-height: 270px;
  }

  .about-hero-photo-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }
}

/* Homepage industries section */
.industries-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.industries-header {
  align-items: stretch;
  margin-bottom: 42px;
}

.industries-intro {
  max-width: 670px;
}

.industries-intro h2 {
  margin-top: 12px;
}

.industries-intro p {
  max-width: 650px;
  margin-top: 14px;
}

.industries-stat-row {
  align-self: center;
  padding: 20px 24px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.industry-grid-new {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ind-card {
  min-height: 210px;
  padding: 28px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 28px rgba(30,111,214,0.07);
}

.ind-card h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.ind-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.industries-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 26px 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #173f6d);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.industries-cta div {
  display: grid;
  gap: 4px;
}

.industries-cta span {
  color: #9cc8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.industries-cta strong {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .industry-grid-new {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industries-stat-row {
    width: 100%;
    justify-content: space-around;
  }
}

@media (max-width: 768px) {
  .industries-section {
    padding: 64px 0;
  }

  .industries-header {
    gap: 24px;
    margin-bottom: 28px;
  }

  .industries-stat-row {
    gap: 12px;
    padding: 16px 12px;
  }

  .industries-stat-label {
    font-size: 0.65rem;
    white-space: normal;
    text-align: center;
  }

  .industry-grid-new {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
  }

  .ind-card {
    min-height: 0;
    padding: 24px;
    border-radius: 16px;
  }

  .industries-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .industries-cta .btn {
    width: 100%;
  }
}

