/* =========================================
   CSS Variables & Reset
   ========================================= */
:root {
  --navy-900: #0f172a;
  --navy-800: #1a2332;
  --navy-700: #1e3a5f;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --amber-400: #f59e0b;
  --amber-300: #fbbf24;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #1e293b;
  --white: #ffffff;
  --section-pad: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1d4ed8, var(--blue-400));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  letter-spacing: 0;
}

.logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.logo-text span {
  color: var(--blue-400);
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
  letter-spacing: 0.5px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-400);
  transition: width 0.3s;
}

.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.nav a.active {
  color: var(--white);
}

.nav a.active::after {
  width: 100%;
}

.header-cta {
  padding: 12px 28px;
  font-size: 14px;
  background: linear-gradient(135deg, var(--blue-600), #1d4ed8);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  letter-spacing: 0.5px;
}

.header-cta:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(59, 130, 246, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 13px;
  color: var(--blue-400);
  margin-bottom: 24px;
}

.hero-badge i {
  font-size: 10px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .highlight-gold {
  background: linear-gradient(135deg, var(--amber-300), #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat .num .plus {
  color: var(--blue-400);
  font-size: 28px;
}

.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  z-index: 2;
  pointer-events: none;
}

.hero-float {
  position: absolute;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.hero-float-1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.hero-float-2 {
  top: 45%;
  right: 2%;
  animation-delay: 2s;
}

.hero-float-3 {
  top: 72%;
  right: 8%;
  animation-delay: 4s;
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy-900);
}

.hero-float-icon.blue { background: var(--blue-400); }
.hero-float-icon.amber { background: var(--amber-400); }
.hero-float-icon.green { background: #34d399; }

.hero-float-text {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.hero-float-text small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

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

/* =========================================
   Page Hero (Inner Pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(37,99,235,0.12), transparent 60%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto;
}

/* =========================================
   Generic Sections
   ========================================= */
.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--gray-50);
}

/* =========================================
   Services Section (Homepage Cards)
   ========================================= */
.services {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-icon.blue { background: #dbeafe; color: var(--blue-600); }
.service-icon.green { background: #d1fae5; color: #059669; }
.service-icon.amber { background: #fef3c7; color: #d97706; }
.service-icon.purple { background: #ede9fe; color: #7c3aed; }
.service-icon.rose { background: #ffe4e6; color: #e11d48; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  transition: gap 0.3s;
}

.service-card:hover .service-link { gap: 10px; }

/* =========================================
   Why Us Section
   ========================================= */
.whyus {
  padding: var(--section-pad) 0;
  background: var(--navy-900);
  color: var(--white);
}

.whyus .section-tag { color: var(--blue-400); }
.whyus .section-title { color: var(--white); }
.whyus .section-sub { color: rgba(255,255,255,0.5); }

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

.whyus-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s;
}

.whyus-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

.whyus-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.whyus-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.whyus-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* =========================================
   Tech Platform Section
   ========================================= */
.platform {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.platform-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 20px;
}

.platform-text p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 32px;
}

.platform-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.platform-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: 10px;
}

.platform-feature i {
  color: var(--blue-600);
  font-size: 16px;
  margin-top: 2px;
}

.platform-feature div {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.platform-feature small {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 400;
  margin-top: 2px;
}

.platform-visual {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 20px;
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.platform-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(37, 99, 235, 0.15), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.08), transparent 50%);
}

.platform-flow {
  position: relative;
  z-index: 1;
}

.platform-flow-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 44px;
  width: 2px;
  height: 28px;
  background: rgba(255,255,255,0.1);
}

.flow-step .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.flow-step .dot.active { background: var(--blue-600); color: white; }
.flow-step .dot { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }

.flow-step .text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.flow-step .text strong {
  color: var(--white);
  font-weight: 600;
}

/* =========================================
   Clients Section
   ========================================= */
.clients {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  height: 80px;
  transition: all 0.3s;
  cursor: default;
}

.client-logo:hover {
  border-color: var(--blue-400);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.7;
  transition: all 0.3s;
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.client-logo span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.12), transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
}

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

.footer-brand .logo-text { margin-bottom: 16px; }
.footer-brand .logo-text span { color: var(--blue-400); }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 300px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--blue-400); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--blue-400);
  font-size: 14px;
  margin-top: 4px;
  width: 16px;
}

.footer-contact-item div {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--blue-400); }

/* =========================================
   Mobile Menu Overlay
   ========================================= */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--white); }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================================
   Page: About - Timeline
   ========================================= */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-600);
  border: 3px solid var(--gray-50);
  z-index: 1;
}

.timeline-year {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 6px;
}

.timeline-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* =========================================
   Page: About - Values Grid
   ========================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

/* =========================================
   Page: About - Team Grid
   ========================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 24px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  font-weight: 700;
}

.team-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 13px;
  color: var(--blue-600);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* =========================================
   Page: About - Cert Grid
   ========================================= */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.cert-card {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.cert-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.cert-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.cert-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cert-card p {
  font-size: 12px;
  color: var(--gray-400);
}

/* =========================================
   Page: Services - Service Detail
   ========================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--gray-200);
}

.service-detail:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-detail-info {
  padding-right: 20px;
}

.service-detail-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.service-detail-info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 20px;
}

.service-detail-list {
  display: grid;
  gap: 10px;
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: 8px;
  font-size: 13px;
  color: var(--gray-700);
}

.service-detail-list li i {
  color: var(--blue-600);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-visual {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(37,99,235,0.15), transparent 60%);
  z-index: 1;
}

.service-visual > * {
  position: relative;
  z-index: 2;
}

.service-visual .big-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.service-visual h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-visual p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.service-flow {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.service-flow-step {
  text-align: center;
  padding: 16px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}

.service-flow-step .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin: 0 auto 8px;
}

.service-flow-step span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* =========================================
   Page: Contact - Contact Grid
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: grid;
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: 12px;
  transition: all 0.3s;
}

.contact-card:hover {
  background: var(--gray-100);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-card a {
  color: var(--blue-600);
  transition: color 0.2s;
}

.contact-card a:hover {
  color: #1d4ed8;
}

/* =========================================
   Page: Contact - Form
   ========================================= */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px;
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-900);
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.submit-btn {
  padding: 14px 32px;
  background: var(--blue-600);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

.submit-btn i {
  margin-right: 8px;
}

/* =========================================
   Page: Contact - Map
   ========================================= */
.map-section {
  padding: 0 0 var(--section-pad);
}

.map-container {
  background: var(--gray-100);
  border-radius: 16px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray-400);
}

.map-container i {
  font-size: 40px;
}

/* =========================================
   NEW: Testimonials Section
   ========================================= */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--navy-900);
  color: var(--white);
}

.testimonials .section-tag {
  color: var(--blue-400);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-sub {
  color: rgba(255,255,255,0.5);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--amber-400);
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-company {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* =========================================
   NEW: FAQ Section
   ========================================= */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--blue-400);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--navy-900);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s;
  gap: 16px;
}

.faq-question:hover {
  color: var(--blue-600);
}

.faq-question i {
  font-size: 14px;
  color: var(--blue-600);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* =========================================
   NEW: Industry News Section
   ========================================= */
.news-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
  border-color: transparent;
}

.news-image {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.news-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(37,99,235,0.1), transparent 60%);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body {
  padding: 24px;
}

.news-date {
  font-size: 12px;
  color: var(--blue-600);
  font-weight: 600;
  margin-bottom: 8px;
}

.news-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-body p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.news-card:hover .news-link {
  gap: 10px;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
  .hero-visual, .hero-float { display: none; }
  .hero-content { max-width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-content { grid-template-columns: 1fr; }
  .client-logos { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .platform-features { grid-template-columns: 1fr; }
  .client-logos { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
  .hero-stat .num { font-size: 26px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Inner pages responsive */
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-info { padding-right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* New sections responsive */
  .news-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
\n\n/* ===== FAQ Accordion ===== */\n.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: var(--blue-400); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--navy-900); text-align: left;
  transition: all 0.3s;
}
.faq-question i { font-size: 14px; color: var(--gray-400); transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--blue-600); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 200px; padding: 0 24px 18px;
}
.faq-answer p { font-size: 14px; color: var(--gray-500); line-height: 1.8; }\n\n/* ===== FAQ Accordion ===== */\n.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: var(--blue-400); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--navy-900); text-align: left;
  transition: all 0.3s;
}
.faq-question i { font-size: 14px; color: var(--gray-400); transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--blue-600); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 200px; padding: 0 24px 18px;
}
.faq-answer p { font-size: 14px; color: var(--gray-500); line-height: 1.8; }