/* ================================================================
   ANCROVIA TECHNOLOGIES PRIVATE LIMITED
   Component Styles
   ================================================================ */

/* ================================================================
   NAVBAR
   ================================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-sticky);
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.navbar.navbar-light {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: var(--spacing-xl);
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo svg {
  width: 22px;
  height: 22px;
  color: white;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
}

.navbar-light .brand-name { color: var(--heading-color); }

.brand-tagline {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.navbar-light .brand-tagline { color: var(--text-muted); }

/* Nav Links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  list-style: none;
  margin: 0;
}

.navbar-nav > li {
  position: relative;
}

.navbar-nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.navbar-light .navbar-nav a { color: var(--text-color); }

.navbar-nav a:hover,
.navbar-nav a.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.navbar-light .navbar-nav a:hover,
.navbar-light .navbar-nav a.active {
  color: var(--primary-color);
  background: var(--primary-50);
}

/* Dropdown */
.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: var(--spacing-sm);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: var(--z-dropdown);
  pointer-events: none;
}

.navbar-light .dropdown-menu {
  background: white;
  border-color: var(--border-color);
  box-shadow: var(--shadow-lg);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--dark-text-muted);
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
  background: none;
}

.navbar-light .dropdown-menu a { color: var(--text-muted); }

.dropdown-menu a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.navbar-light .dropdown-menu a:hover {
  color: var(--primary-color);
  background: var(--primary-50);
}

/* CTA Button */
.navbar-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
}

.hamburger:hover { background: rgba(255, 255, 255, 0.1); }
.navbar-light .hamburger:hover { background: var(--surface-alt); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-light .hamburger span { background: var(--heading-color); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
  padding: var(--spacing-md) var(--spacing-lg);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: var(--z-sticky);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  display: block;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-md);
}

.mobile-nav-links li { border-bottom: 1px solid var(--dark-border); }
.mobile-nav-links li:last-child { border-bottom: none; }

.mobile-nav-links a {
  display: block;
  padding: 12px 0;
  color: var(--dark-text);
  font-weight: 500;
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover { color: var(--primary-light); }

.mobile-nav-sub {
  list-style: none;
  padding: 0 0 8px 16px;
}

.mobile-nav-sub a {
  padding: 8px 0;
  color: var(--dark-text-muted);
  font-size: var(--font-size-sm);
}

/* ================================================================
   HERO SECTION (Home)
   ================================================================ */

.hero {
  height: 100vh;
  min-height: 620px;
  background: linear-gradient(135deg, #060d1f 0%, #0d1f4a 40%, #1a3a8a 72%, #1e4fc2 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  box-sizing: border-box;
}

/* Mobile: allow hero to grow so content never clips */
@supports (min-height: 100svh) {
  @media (max-width: 768px) {
    .hero { height: auto; min-height: 100svh; }
  }
}

/* Dot grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.055) 1.5px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79,70,229,0.30) 0%, transparent 60%);
  top: -200px;
  right: -120px;
  animation: floatGlow 12s ease-in-out infinite;
}

.hero-glow-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 60%);
  bottom: -140px;
  left: 2%;
  animation: floatGlow 16s ease-in-out infinite reverse;
}

.hero-glow-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(26,86,219,0.25) 0%, transparent 65%);
  top: 30%;
  left: 38%;
  animation: floatGlow 9s ease-in-out infinite 2s;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(16px, 3vh, 56px) 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero Content */
.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--border-radius-full);
  padding: 6px 16px 6px 10px;
  color: rgba(255,255,255,0.88);
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: clamp(14px, 2vh, 28px);
  backdrop-filter: blur(10px);
  letter-spacing: 0.01em;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: clamp(12px, 1.8vh, 24px);
  letter-spacing: -0.035em;
}

.hero-title .text-gradient {
  background: linear-gradient(100deg, #67e8f9 0%, #7dd3fc 40%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.hero-title .text-gradient {
  background: linear-gradient(100deg, #67e8f9 0%, #a5b4fc 55%, #f0abfc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(var(--font-size-base), 1.2vw, var(--font-size-lg));
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 510px;
  margin-bottom: clamp(16px, 2.5vh, 36px);
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: clamp(16px, 2.5vh, 36px);
}

/* Divider tick between CTA buttons */
.hero-cta-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  padding-top: clamp(14px, 2vh, 28px);
  border-top: 1px solid rgba(255,255,255,0.10);
  width: fit-content;
}

.hero-stat-item {
  padding-right: clamp(16px, 2.5vw, 32px);
  margin-right: clamp(16px, 2.5vw, 32px);
  border-right: 1px solid rgba(255,255,255,0.10);
}

.hero-stat-item:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.875rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.52);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* ----------------------------------------------------------------
   Hero Visual – Glassmorphism Panel
   ---------------------------------------------------------------- */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* No fixed height – stacked column, height driven by cards */
}

/* Decorative ring behind the panel */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: var(--border-radius-xl);
  background: radial-gradient(ellipse at 60% 30%, rgba(79,70,229,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.float-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--border-radius-lg);
  padding: 18px 20px;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}

.float-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}

.float-card-1 {
  border-left: 3px solid var(--accent-color);
}

.float-card-2 {
  border-left: 3px solid var(--secondary-light);
  margin-left: 28px;
}

.float-card-3 {
  border-left: 3px solid var(--primary-light);
}

.float-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon-cyan    { background: rgba(6,182,212,0.18);  color: var(--accent-color); }
.float-card-icon-indigo  { background: rgba(129,140,248,0.18); color: var(--secondary-light); }
.float-card-icon-blue    { background: rgba(59,130,246,0.18);  color: var(--primary-light); }

.float-card-icon svg { width: 18px; height: 18px; }

.float-card-title {
  font-family: var(--font-display);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.3;
}

.float-card-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.42);
  margin-top: 1px;
}

.float-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.float-card-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--border-radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ================================================================
   TRUSTED BAR
   ================================================================ */

.trusted-bar {
  padding: var(--spacing-2xl) 0;
  border-bottom: 1px solid var(--border-color);
}

.trusted-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-2xl);
}

.trusted-logo {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.03em;
  transition: var(--transition);
  opacity: 0.55;
  white-space: nowrap;
}

.trusted-logo:hover { opacity: 1; color: var(--primary-color); }

/* ================================================================
   SERVICES OVERVIEW (Home)
   ================================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.service-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 4px 4px 0 0;
}

.service-card:nth-child(1)::before { background: linear-gradient(90deg, #1a56db, #06b6d4); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, #4f46e5, #7c3aed); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #0d9488, #3b82f6); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, #e11d48, #f59e0b); }
.service-card:nth-child(5)::before { background: linear-gradient(90deg, #059669, #06b6d4); }
.service-card:nth-child(6)::before { background: linear-gradient(90deg, #7c3aed, #1a56db); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(26, 86, 219, 0.18);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(26,86,219,0.10) 0%, rgba(79,70,229,0.08) 100%);
  border: 1.5px solid rgba(26, 86, 219, 0.18);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: var(--primary-color);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(26,86,219,0.10);
}

.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, rgba(26,86,219,0.12), rgba(6,182,212,0.10)); color: #1a56db; border-color: rgba(26,86,219,0.20); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(124,58,237,0.10)); color: #4f46e5; border-color: rgba(79,70,229,0.20); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, rgba(13,148,136,0.12), rgba(59,130,246,0.10)); color: #0d9488; border-color: rgba(13,148,136,0.20); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, rgba(225,29,72,0.10), rgba(245,158,11,0.10)); color: #e11d48; border-color: rgba(225,29,72,0.18); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, rgba(5,150,105,0.12), rgba(6,182,212,0.10)); color: #059669; border-color: rgba(5,150,105,0.20); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(26,86,219,0.10)); color: #7c3aed; border-color: rgba(124,58,237,0.20); }

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 20px rgba(26,86,219,0.30);
}

.service-icon svg { width: 26px; height: 26px; }

.service-name {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: var(--spacing-sm);
}

.service-desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.service-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.service-link:hover svg { transform: translateX(4px); }
.service-link:hover { color: var(--primary-dark); }

/* ================================================================
   ABOUT SNIPPET (Home)
   ================================================================ */

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4xl);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-visual-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 24px 24px;
}

.about-visual-main svg {
  width: 120px;
  height: 120px;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.about-stat-card {
  position: absolute;
  background: white;
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.about-stat-card-1 {
  bottom: -20px;
  right: -20px;
}

.about-stat-card-2 {
  top: -20px;
  left: -20px;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}

.about-stat-text {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.about-content .section-tag { margin-bottom: var(--spacing-md); }

.about-content h2 {
  font-size: clamp(1.75rem, 3vw, var(--font-size-4xl));
  margin-bottom: var(--spacing-lg);
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-feature-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-icon svg { width: 20px; height: 20px; }

.about-feature-text {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--heading-color);
}

/* ================================================================
   WHY US
   ================================================================ */

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  transition: var(--transition);
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:nth-child(1)::after { background: linear-gradient(90deg, #1a56db, #06b6d4); }
.why-card:nth-child(2)::after { background: linear-gradient(90deg, #4f46e5, #7c3aed); }
.why-card:nth-child(3)::after { background: linear-gradient(90deg, #0d9488, #10b981); }
.why-card:nth-child(4)::after { background: linear-gradient(90deg, #e11d48, #f59e0b); }

.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(79, 70, 229, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.why-card:hover::after { opacity: 1; }

.why-card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--border-radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(26,86,219,0.35);
}

.why-card:nth-child(1) .why-card-icon { background: linear-gradient(135deg, #1a56db, #06b6d4); box-shadow: 0 6px 18px rgba(6,182,212,0.30); }
.why-card:nth-child(2) .why-card-icon { background: linear-gradient(135deg, #4f46e5, #7c3aed); box-shadow: 0 6px 18px rgba(124,58,237,0.30); }
.why-card:nth-child(3) .why-card-icon { background: linear-gradient(135deg, #0d9488, #10b981); box-shadow: 0 6px 18px rgba(16,185,129,0.30); }
.why-card:nth-child(4) .why-card-icon { background: linear-gradient(135deg, #e11d48, #f59e0b); box-shadow: 0 6px 18px rgba(245,158,11,0.30); }

.why-card-icon svg { width: 24px; height: 24px; }

.why-card-content h4 {
  font-size: var(--font-size-xl);
  color: white;
  margin-bottom: var(--spacing-sm);
}

.why-card-content p {
  color: var(--dark-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

/* ================================================================
   STATS (Section)
   ================================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

.stat-box {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
}
.stat-box:nth-child(1)::before { background: linear-gradient(90deg, #1a56db, #06b6d4); }
.stat-box:nth-child(2)::before { background: linear-gradient(90deg, #4f46e5, #7c3aed); }
.stat-box:nth-child(3)::before { background: linear-gradient(90deg, #0d9488, #10b981); }
.stat-box:nth-child(4)::before { background: linear-gradient(90deg, #e11d48, #f59e0b); }

.stat-box:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.stat-box-num {
  font-family: var(--font-display);
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-box:nth-child(1) .stat-box-num { background: linear-gradient(135deg, #67e8f9, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-box:nth-child(2) .stat-box-num { background: linear-gradient(135deg, #a5b4fc, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-box:nth-child(3) .stat-box-num { background: linear-gradient(135deg, #6ee7b7, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-box:nth-child(4) .stat-box-num { background: linear-gradient(135deg, #fda4af, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.stat-box-num span { color: var(--accent-color); }

.stat-box-label {
  font-size: var(--font-size-sm);
  color: var(--dark-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.testimonial-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  opacity: 0.05;
  color: var(--primary-color);
}

.testimonial-card:nth-child(1) { border-top: 3px solid #1a56db; }
.testimonial-card:nth-child(2) { border-top: 3px solid #7c3aed; }
.testimonial-card:nth-child(3) { border-top: 3px solid #0d9488; }

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.testimonial-stars svg { width: 18px; height: 18px; }

.testimonial-quote {
  font-size: var(--font-size-base);
  color: var(--text-color);
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-quote::before { content: '"'; color: var(--primary-color); font-size: 1.5em; line-height: 0; }
.testimonial-quote::after  { content: '"'; color: var(--primary-color); font-size: 1.5em; line-height: 0; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,86,219,0.30);
}

.testimonial-card:nth-child(1) .testimonial-avatar { background: linear-gradient(135deg, #1a56db, #06b6d4); }
.testimonial-card:nth-child(2) .testimonial-avatar { background: linear-gradient(135deg, #4f46e5, #7c3aed); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: linear-gradient(135deg, #0d9488, #10b981); }

.testimonial-name {
  font-weight: 700;
  font-size: var(--font-size-base);
  color: var(--heading-color);
  margin-bottom: 2px;
}

.testimonial-title {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

/* ================================================================
   CASE STUDIES
   ================================================================ */

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.case-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.case-card-header {
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-card-header-1 { background: linear-gradient(135deg, #0d1b3e 0%, #1a56db 60%, #06b6d4 100%); }
.case-card-header-2 { background: linear-gradient(135deg, #1a0533 0%, #4f46e5 50%, #7c3aed 100%); }
.case-card-header-3 { background: linear-gradient(135deg, #042f2e 0%, #0d9488 60%, #06b6d4 100%); }

.case-card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 24px 24px;
}

.case-card-header svg {
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,0.25);
  position: relative;
}

.case-card-body { padding: var(--spacing-xl); flex-grow: 1; }

.case-card-tag {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--primary-color);
  background: var(--primary-100);
  border: 1px solid var(--primary-200);
  padding: 3px 10px;
  border-radius: var(--border-radius-full);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-card-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.case-card-desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.case-metrics {
  display: flex;
  gap: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.case-metric {
  flex: 1;
  min-width: 80px;
  text-align: center;
}

.case-metric-num {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.case-metric-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ================================================================
   CTA SECTION
   ================================================================ */

.cta-section {
  background: linear-gradient(135deg, #060d1f 0%, #1a3a8a 40%, #4f46e5 80%, #7c3aed 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--spacing-5xl) 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.07) 1.5px, transparent 0);
  background-size: 28px 28px;
}

.cta-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, rgba(6,182,212,0.12) 50%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
  font-size: clamp(2rem, 4vw, var(--font-size-5xl));
  color: white;
  margin-bottom: var(--spacing-lg);
  font-weight: 800;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

.footer-main {
  padding: var(--spacing-4xl) 0 var(--spacing-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--spacing-3xl);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--spacing-sm);
}

.footer-logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.footer-brand-sub {
  font-size: 8.5px;
  font-weight: 700;
  color: var(--dark-text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: white;
  margin-bottom: 0;
  letter-spacing: -0.03em;
}

.footer-brand-tagline {
  font-size: var(--font-size-sm);
  color: var(--dark-text-muted);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.footer-social-link:hover {
  transform: translateY(-4px);
  filter: brightness(1.15);
}

/* LinkedIn – brand blue */
.footer-social-linkedin {
  background: #0a66c2;
  box-shadow: 0 4px 14px rgba(10,102,194,0.40);
}
.footer-social-linkedin:hover { box-shadow: 0 8px 24px rgba(10,102,194,0.60); }

/* Facebook – brand blue */
.footer-social-facebook {
  background: #1877f2;
  box-shadow: 0 4px 14px rgba(24,119,242,0.40);
}
.footer-social-facebook:hover { box-shadow: 0 8px 24px rgba(24,119,242,0.60); }

/* Instagram – gradient */
.footer-social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 14px rgba(220,39,67,0.40);
}
.footer-social-instagram:hover { box-shadow: 0 8px 24px rgba(220,39,67,0.60); }

/* YouTube – brand red */
.footer-social-youtube {
  background: #ff0000;
  box-shadow: 0 4px 14px rgba(255,0,0,0.35);
}
.footer-social-youtube:hover { box-shadow: 0 8px 24px rgba(255,0,0,0.55); }

/* X / Twitter – near-black */
.footer-social-twitter {
  background: #14171a;
  box-shadow: 0 4px 14px rgba(0,0,0,0.40);
}
.footer-social-twitter:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.60); }

.footer-social-link svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: var(--dark-text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: white; transform: translateX(4px); }

.footer-contact-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(26,86,219,0.15);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}

.footer-contact-icon svg { width: 16px; height: 16px; }

.footer-contact-label {
  font-size: var(--font-size-xs);
  color: var(--dark-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-contact-value {
  font-size: var(--font-size-sm);
  color: var(--dark-text);
  transition: var(--transition-fast);
}

a.footer-contact-value:hover { color: var(--primary-light); }

.footer-bottom {
  padding: var(--spacing-lg) 0;
  border-top: 1px solid var(--dark-border);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-copyright {
  font-size: var(--font-size-sm);
  color: var(--dark-text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-legal a {
  font-size: var(--font-size-sm);
  color: var(--dark-text-muted);
}

.footer-legal a:hover { color: white; }

/* ================================================================
   PAGE HERO (Inner Pages)
   ================================================================ */

.page-hero {
  background: var(--gradient-hero);
  padding: calc(var(--nav-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 32px 32px;
}

.page-hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.3) 0%, transparent 65%);
  border-radius: 50%;
  top: -100px;
  right: 10%;
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--spacing-md);
}

.breadcrumb a,
.breadcrumb span {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: var(--transition-fast);
}

.breadcrumb a:hover { color: rgba(255,255,255,0.9); }

.breadcrumb svg { width: 14px; height: 14px; color: rgba(255,255,255,0.3); }

.breadcrumb-current { color: rgba(255,255,255,0.9) !important; }

.page-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  color: white;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.03em;
}

.page-hero-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.7;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */

/* Mission / Vision / Values */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.mvv-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-2xl);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mvv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.mvv-card:nth-child(1)::after { background: linear-gradient(90deg, #1a56db, #06b6d4); }
.mvv-card:nth-child(2)::after { background: linear-gradient(90deg, #4f46e5, #7c3aed); }
.mvv-card:nth-child(3)::after { background: linear-gradient(90deg, #0d9488, #06b6d4); }

.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }

.mvv-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-lg);
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvv-icon-1 { background: linear-gradient(135deg, #1a56db, #06b6d4); color: white; box-shadow: 0 8px 20px rgba(26,86,219,0.30); }
.mvv-icon-2 { background: linear-gradient(135deg, #4f46e5, #7c3aed); color: white; box-shadow: 0 8px 20px rgba(124,58,237,0.30); }
.mvv-icon-3 { background: linear-gradient(135deg, #0d9488, #06b6d4); color: white; box-shadow: 0 8px 20px rgba(6,182,212,0.30); }

.mvv-icon svg { width: 28px; height: 28px; }

.mvv-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: var(--spacing-md);
}

.mvv-text {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.75;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

.team-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
}
.team-card:nth-child(1)::before { background: linear-gradient(90deg, #1a56db, #06b6d4); }
.team-card:nth-child(2)::before { background: linear-gradient(90deg, #4f46e5, #7c3aed); }
.team-card:nth-child(3)::before { background: linear-gradient(90deg, #0d9488, #06b6d4); }
.team-card:nth-child(4)::before { background: linear-gradient(90deg, #e11d48, #f59e0b); }

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: white;
}

.team-avatar-1 { background: linear-gradient(135deg, #1a56db, #06b6d4); box-shadow: 0 6px 18px rgba(26,86,219,0.35); }
.team-avatar-2 { background: linear-gradient(135deg, #4f46e5, #7c3aed); box-shadow: 0 6px 18px rgba(124,58,237,0.35); }
.team-avatar-3 { background: linear-gradient(135deg, #0d9488, #06b6d4); box-shadow: 0 6px 18px rgba(6,182,212,0.35); }
.team-avatar-4 { background: linear-gradient(135deg, #e11d48, #f59e0b); box-shadow: 0 6px 18px rgba(245,158,11,0.35); }

.team-name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.team-role {
  font-size: var(--font-size-sm);
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.team-bio {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Timeline */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #1a56db, #4f46e5, #7c3aed, #0d9488);
  opacity: 0.5;
}

.timeline-item {
  position: relative;
  padding: 0 0 var(--spacing-2xl) 72px;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--font-size-sm);
  box-shadow: var(--shadow-primary);
  z-index: 1;
  border: 3px solid white;
}

.timeline-item:nth-child(1) .timeline-dot { background: linear-gradient(135deg, #1a56db, #06b6d4); }
.timeline-item:nth-child(2) .timeline-dot { background: linear-gradient(135deg, #4f46e5, #7c3aed); }
.timeline-item:nth-child(3) .timeline-dot { background: linear-gradient(135deg, #0d9488, #10b981); }
.timeline-item:nth-child(4) .timeline-dot { background: linear-gradient(135deg, #e11d48, #f59e0b); }
.timeline-item:nth-child(5) .timeline-dot { background: linear-gradient(135deg, #7c3aed, #1a56db); }

.timeline-year {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: var(--spacing-sm);
}

.timeline-text {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Certifications */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 720px;
  margin: 0 auto;
}

.cert-badge {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.cert-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.cert-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-sm);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.cert-name {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--heading-color);
  text-align: center;
  line-height: 1.3;
}

/* ================================================================
   SERVICES PAGE
   ================================================================ */

/* Services Nav */
.services-nav {
  background: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: var(--nav-height);
  z-index: calc(var(--z-sticky) - 1);
  box-shadow: var(--shadow-sm);
}

.services-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.services-nav-inner::-webkit-scrollbar { display: none; }

.services-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: var(--transition-fast);
  text-decoration: none;
}

.services-nav-link:hover,
.services-nav-link.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.services-nav-link svg { width: 16px; height: 16px; }

/* Service Detail Section */
.service-detail {
  padding: var(--spacing-5xl) 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detail:last-of-type { border-bottom: none; }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--spacing-4xl);
  align-items: center;
}

.service-detail-inner.reverse {
  grid-template-columns: 480px 1fr;
}
.service-detail-inner.reverse > * { direction: ltr; }

.service-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-lg);
}

.badge-cloud    { background: rgba(6, 182, 212, 0.1);  color: var(--accent-dark); border: 1px solid rgba(6,182,212,0.2); }
.badge-appdev   { background: rgba(26,86,219, 0.1);    color: var(--primary-color); border: 1px solid var(--primary-200); }
.badge-devops   { background: rgba(79,70,229,0.1);     color: var(--secondary-color); border: 1px solid rgba(79,70,229,0.2); }
.badge-managed  { background: rgba(16,185,129,0.1);    color: var(--success); border: 1px solid rgba(16,185,129,0.2); }
.badge-consult  { background: rgba(245,158,11,0.1);    color: #b45309; border: 1px solid rgba(245,158,11,0.2); }

.service-detail-title {
  font-size: clamp(1.75rem, 3vw, var(--font-size-4xl));
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: var(--spacing-md);
  line-height: 1.15;
}

.service-detail-desc {
  font-size: var(--font-size-base);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-color);
}

.service-feature-item::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--gradient-primary);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary-color);
}

.cloud-providers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  font-size: var(--font-size-sm);
  font-weight: 700;
  background: var(--surface-color);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.provider-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.badge-aws    { color: #ff9900; border-color: rgba(255,153,0,0.3); }
.badge-azure  { color: #0078d4; border-color: rgba(0,120,212,0.3); }
.badge-gcp    { color: #4285f4; border-color: rgba(66,133,244,0.3); }

.provider-badge svg { width: 20px; height: 20px; }

/* Service Visual Card */
.service-visual {
  background: var(--gradient-hero);
  border-radius: var(--border-radius-xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.07) 1.5px, transparent 0);
  background-size: 28px 28px;
}

.service-visual-icon {
  width: 120px;
  height: 120px;
  color: rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}

.service-visual-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius-md);
  padding: 12px 16px;
  z-index: 2;
}

.service-visual-card-1 { top: 24px; left: 24px; }
.service-visual-card-2 { bottom: 24px; right: 24px; }

.svc-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.svc-value {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-top: 2px;
}

/* Tech Stack */
.tech-stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background: var(--surface-color);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-color);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.tech-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-200);
  color: var(--primary-color);
}

.tech-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-lg);
  position: relative;
}

.process-step {
  text-align: center;
  padding: var(--spacing-xl);
  position: relative;
}

.process-step-num {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-family: var(--font-display);
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: white;
  box-shadow: var(--shadow-primary);
  position: relative;
  z-index: 1;
  border: 3px solid white;
}

.process-step:nth-child(1) .process-step-num { background: linear-gradient(135deg, #1a56db, #06b6d4); box-shadow: 0 6px 18px rgba(6,182,212,0.30); }
.process-step:nth-child(2) .process-step-num { background: linear-gradient(135deg, #4f46e5, #7c3aed); box-shadow: 0 6px 18px rgba(124,58,237,0.30); }
.process-step:nth-child(3) .process-step-num { background: linear-gradient(135deg, #0d9488, #10b981); box-shadow: 0 6px 18px rgba(16,185,129,0.30); }
.process-step:nth-child(4) .process-step-num { background: linear-gradient(135deg, #e11d48, #f59e0b); box-shadow: 0 6px 18px rgba(245,158,11,0.30); }
.process-step:nth-child(5) .process-step-num { background: linear-gradient(135deg, #7c3aed, #1a56db); box-shadow: 0 6px 18px rgba(124,58,237,0.30); }

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  opacity: 0.3;
}

.process-step-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.process-step-desc {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.contact-info-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-2xl);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.contact-info-card:nth-child(1)::after { background: linear-gradient(90deg, #1a56db, #06b6d4); }
.contact-info-card:nth-child(2)::after { background: linear-gradient(90deg, #4f46e5, #7c3aed); }
.contact-info-card:nth-child(3)::after { background: linear-gradient(90deg, #0d9488, #10b981); }

.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }

.contact-info-icon {
  width: 68px;
  height: 68px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 20px rgba(26,86,219,0.28);
}

.contact-info-card:nth-child(1) .contact-info-icon { background: linear-gradient(135deg, #1a56db, #06b6d4); box-shadow: 0 8px 20px rgba(6,182,212,0.28); }
.contact-info-card:nth-child(2) .contact-info-icon { background: linear-gradient(135deg, #4f46e5, #7c3aed); box-shadow: 0 8px 20px rgba(124,58,237,0.28); }
.contact-info-card:nth-child(3) .contact-info-icon { background: linear-gradient(135deg, #0d9488, #10b981); box-shadow: 0 8px 20px rgba(16,185,129,0.28); }

.contact-info-icon svg { width: 28px; height: 28px; }

.contact-info-label {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-sm);
}

.contact-info-value {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
  line-height: 1.4;
}

.contact-info-sub {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* Contact Form & Map Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-card);
}

.form-title {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: var(--spacing-sm);
}

.form-subtitle {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-bottom: var(--spacing-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.form-label .required { color: var(--error); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  color: var(--heading-color);
  background: var(--surface-color);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.form-control.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px var(--error-light);
}

.form-control::placeholder { color: var(--text-light); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-error {
  display: none;
  font-size: var(--font-size-xs);
  color: var(--error);
  margin-top: 4px;
  font-weight: 500;
}

.form-error.visible { display: block; }

.form-success {
  display: none;
  background: var(--success-light);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  text-align: center;
  margin-top: var(--spacing-md);
}

.form-success.visible { display: block; }

.form-success p {
  color: var(--success);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

/* Map */
.map-container {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-header {
  padding: var(--spacing-xl);
  border-bottom: 1px solid var(--border-color);
  background: var(--surface-alt);
}

.map-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.map-address {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.map-address svg { width: 16px; height: 16px; margin-top: 2px; color: var(--primary-color); flex-shrink: 0; }

.map-iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.faq-item {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-xs);
}

.faq-question {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.faq-question::before {
  content: 'Q';
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 24px;
  text-align: center;
}

.faq-answer {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: 1.75;
  padding-left: calc(24px + var(--spacing-sm));
}

/* ================================================================
   BACK TO TOP
   ================================================================ */

.back-to-top {
  position: fixed;
  bottom: 160px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: var(--z-overlay);
  color: white;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-primary-lg); }
.back-to-top svg { width: 20px; height: 20px; }

/* ================================================================
   FLOATING ACTION BUTTONS – WhatsApp & Call
   ================================================================ */

.fab-stack {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: var(--z-overlay);
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  position: relative;
}

.fab:hover {
  transform: scale(1.12);
}

/* WhatsApp */
.fab-whatsapp {
  background: #25d366;
}
.fab-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.fab-whatsapp svg { width: 26px; height: 26px; color: #fff; }

/* Call */
.fab-call {
  background: linear-gradient(135deg, #ff6b35 0%, #e8183c 100%);
}
.fab-call:hover {
  box-shadow: 0 8px 28px rgba(232,24,60,0.55);
}
.fab-call svg { width: 22px; height: 22px; color: #fff; }

/* Tooltip labels */
.fab::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  background: var(--heading-color);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-50%) translateX(4px);
}

.fab:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Pulse ring on WhatsApp */
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: fabPulse 2.4s ease-out infinite;
}

@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 480px) {
  .fab-stack { bottom: 20px; right: 16px; gap: 10px; }
  .fab       { width: 46px; height: 46px; }
  .fab::after { display: none; }
}

/* ================================================================
   RESPONSIVE – COMPONENTS
   ================================================================ */

@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .hero-content     { max-width: 100%; text-align: center; }
  .hero-badge       { justify-content: center; }
  .hero-subtitle    { max-width: 100%; }
  .hero-title       { font-size: clamp(2rem, 5vw, 3rem); }
  .hero-cta-group   { justify-content: center; }
  .hero-stats       { grid-template-columns: repeat(4, auto); justify-content: center; margin: 0 auto; }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-inner      { grid-template-columns: 1fr; }
  .about-visual     { max-width: 500px; margin: 0 auto; }
  .why-us-grid      { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .cert-grid        { grid-template-columns: repeat(3, 1fr); }
  .stats-row        { grid-template-columns: repeat(2, 1fr); }
  .process-grid     { grid-template-columns: repeat(3, 1fr); }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail-inner.reverse { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: var(--spacing-2xl); }
  .contact-layout   { grid-template-columns: 1fr; }
  .service-detail   { padding: var(--spacing-3xl) 0; }
  .cta-section      { padding: var(--spacing-3xl) 0; }
  .footer-main      { padding: var(--spacing-2xl) 0 var(--spacing-xl); }
  .page-hero        { padding-bottom: var(--spacing-2xl); }
}

@media (max-width: 768px) {
  .hamburger                { display: flex; }
  .navbar-nav, .navbar-cta  { display: none; }
  .hero                     { height: auto; min-height: 100vh; padding-bottom: var(--spacing-2xl); }
  .hero-title               { font-size: clamp(1.85rem, 7vw, 2.5rem); }
  .hero-inner               { padding: var(--spacing-xl) 0; }
  .hero-stats               { grid-template-columns: 1fr 1fr; gap: 0; row-gap: 20px; width: 100%; }
  .hero-stat-item           { text-align: center; padding-right: 0; margin-right: 0; border-right: none; }
  .hero-stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.10); }
  .hero-stat-item:nth-child(2)    { border-right: none; padding-right: 0; margin-right: 0; }
  .hero-stat-item:nth-child(3)    { border-right: 1px solid rgba(255,255,255,0.10); }
  .hero-cta-group           { flex-direction: row; gap: 10px; }
  .trusted-logos            { gap: var(--spacing-xl); }
  .services-grid            { grid-template-columns: 1fr; }
  .testimonials-grid        { grid-template-columns: 1fr; }
  .case-studies-grid        { grid-template-columns: 1fr; }
  .mvv-grid                 { grid-template-columns: 1fr; }
  .team-grid                { grid-template-columns: 1fr 1fr; }
  .cert-grid                { grid-template-columns: repeat(3, 1fr); }
  .process-grid             { grid-template-columns: repeat(2, 1fr); }
  .process-step::after      { display: none; }
  .faq-grid                 { grid-template-columns: 1fr; }
  .contact-info-grid        { grid-template-columns: 1fr; }
  .footer-grid              { grid-template-columns: 1fr; gap: var(--spacing-xl); }
  .footer-bottom-inner      { flex-direction: column; text-align: center; }
  .about-features           { grid-template-columns: 1fr; }
  .form-row                 { grid-template-columns: 1fr; }
  .about-visual             { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 100%; }
  .about-visual-main        { grid-column: 1 / -1; }
  .about-stat-card          { position: static; }
  .about-stat-card-1        { bottom: auto; right: auto; }
  .about-stat-card-2        { top: auto; left: auto; }
  .service-detail           { padding: var(--spacing-2xl) 0; }
  .service-visual           { aspect-ratio: 16/9; max-height: 300px; }
  .service-visual-card      { display: none; }
  .cta-section              { padding: var(--spacing-2xl) 0; }
  .footer-main              { padding: var(--spacing-xl) 0 var(--spacing-md); }
  .hero-cta-divider         { display: none; }
  .page-hero h1             { font-size: clamp(1.75rem, 6.5vw, 2.5rem); }
  .page-hero-subtitle       { font-size: var(--font-size-base); }
  .map-iframe               { height: 300px; }
}

@media (max-width: 480px) {
  .team-grid                { grid-template-columns: 1fr; }
  .hero-badge               { font-size: var(--font-size-xs); padding: 5px 12px; }
  .hero-title               { font-size: clamp(1.7rem, 8.5vw, 2.1rem); }
  .hero-cta-group           { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta-group .btn      { width: 100%; justify-content: center; }
  .hero-stats               { grid-template-columns: 1fr 1fr; row-gap: 16px; column-gap: 0; width: 100%; }
  .hero-stat-item           { text-align: center; padding-right: 0; margin-right: 0; border-right: none; }
  .hero-stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.10); }
  .hero-stat-item:nth-child(3)    { border-right: 1px solid rgba(255,255,255,0.10); }
  .stats-row                { grid-template-columns: 1fr 1fr; }
  .process-grid             { grid-template-columns: 1fr; }
  .cert-grid                { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .back-to-top              { right: 16px; }
  .service-detail           { padding: var(--spacing-xl) 0; }
  .cta-section              { padding: var(--spacing-xl) 0; }
  .footer-main              { padding: var(--spacing-xl) 0 var(--spacing-md); }
  .stat-box-num             { font-size: var(--font-size-3xl); }
  .stat-box                 { padding: var(--spacing-lg) var(--spacing-md); }
  .services-nav-link        { padding: 10px 12px; font-size: 0.72rem; }
  .service-visual           { aspect-ratio: auto; height: 220px; max-height: 220px; }
  .service-visual-card      { display: none; }
  .service-visual-icon      { width: 80px; height: 80px; }
  .map-iframe               { height: 240px; }
  .contact-form             { padding: var(--spacing-lg); }
  .about-stat-card          { padding: 12px 14px; }
  .about-stat-num           { font-size: var(--font-size-2xl); }
  .timeline-dot             { width: 40px; height: 40px; font-size: 0.72rem; }
  .timeline::before         { left: 19px; }
  .timeline-item            { padding-left: 58px; }
  .hero-cta-divider         { display: none; }
  .about-visual             { max-width: 100%; }
  .why-card                 { padding: var(--spacing-lg); gap: var(--spacing-md); }
  .why-card-icon            { width: 48px; height: 48px; flex-shrink: 0; }
  .page-hero                { padding-bottom: var(--spacing-xl); }
  .footer-social-link       { width: 36px; height: 36px; }
  .hero                     { height: auto; min-height: 560px; }
  .hero-inner               { padding: var(--spacing-lg) 0; }
  .hero-subtitle            { font-size: var(--font-size-sm); }
}
