
/* ============================================================
   DESIGN SYSTEM — WHITE BG, #FF936B + #2C90CE, SORA FONT
   ============================================================ */
:root {
  --orange: #FF936B;
  --orange-dark: #e87248;
  --blue: #2C90CE;
  --blue-dark: #1f6fa3;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --light-gray: #F0F3F8;
  --border: #E4E9F2;
  --text-dark: #0F1C2E;
  --text-mid: #3D5166;
  --text-light: #7A8FA6;
  --gradient: linear-gradient(135deg, #FF936B 0%, #2C90CE 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(255,147,107,0.08) 0%, rgba(44,144,206,0.08) 100%);
  --shadow-sm: 0 2px 12px rgba(15,28,46,0.07);
  --shadow-md: 0 8px 32px rgba(15,28,46,0.10);
  --shadow-lg: 0 20px 60px rgba(15,28,46,0.13);
  --r: 14px;
  --r-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===================== TYPOGRAPHY ===================== */
h1 { font-size: clamp(38px, 5.5vw, 68px); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 17px; font-weight: 600; }
p { color: var(--text-mid); line-height: 1.75; }

/* ===================== UTILITIES ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section--gray { background: var(--off-white); }
.section--light { background: var(--light-gray); }
.section--gradient { background: var(--gradient-subtle); }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }

.text-center { text-align: center; }
.text-center .label { justify-content: center; }
.text-center .label::before { display: none; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px; font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer; border: none;
  transition: all 0.25s ease; text-decoration: none;
}

.btn-orange {
  background: var(--orange); color: #fff;
  box-shadow: 0 6px 24px rgba(255,147,107,0.38);
}
.btn-orange:hover { background: var(--orange-dark); box-shadow: 0 10px 32px rgba(255,147,107,0.48); transform: translateY(-2px); }

.btn-blue {
  background: var(--blue); color: #fff;
  box-shadow: 0 6px 24px rgba(44,144,206,0.35);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

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

.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: var(--text-dark);
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; font-weight: 900;
}
.nav-logo-text span { color: var(--orange); }
.nav-logo-text em { color: var(--blue); font-style: normal; }

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: var(--text-dark);
  transition: all 0.2s;
}
.nav-link:hover { color: var(--orange); background: rgba(255,147,107,0.06); }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 8px;
  min-width: 320px; opacity: 0; visibility: hidden;
  transition: all 0.22s ease; pointer-events: none;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: all; }

.nav-dropdown-header {
  padding: 10px 12px 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light); border-bottom: 1px solid var(--border); margin-bottom: 6px;
}

.nav-dropdown-item {
  display: block; padding: 10px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-dark);
  transition: all 0.15s;
}
.nav-dropdown-item:hover { background: rgba(255,147,107,0.07); color: var(--orange); }
.nav-dropdown-item small { display: block; font-size: 11px; font-weight: 400; color: var(--text-light); margin-top: 1px; }

.nav-dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.nav-cta { margin-left: 12px; }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ===================== HERO ===================== */
.hero {
  padding: 140px 0 0;
  background: var(--white);
  position: relative; overflow: hidden;
}

.hero-bg-shape {
  position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: linear-gradient(160deg, rgba(44,144,206,0.06) 0%, rgba(255,147,107,0.06) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,147,107,0.10); border: 1px solid rgba(255,147,107,0.25);
  color: var(--orange); border-radius: 50px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
.hero-badge::before { content: '⚡'; }

.hero-title { color: var(--text-dark); margin-bottom: 20px; }
.hero-title span { color: var(--orange); }

.hero-sub { font-size: 17px; color: var(--text-mid); margin-bottom: 36px; max-width: 490px; }

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

.hero-stats { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat-num { font-size: 32px; font-weight: 800; color: var(--text-dark); }
.stat-num span { color: var(--orange); }
.stat-label { font-size: 12px; color: var(--text-light); font-weight: 500; margin-top: 2px; }

.hero-img-wrap { position: relative; padding-bottom: 60px; }

.hero-img {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}

.hero-badge-float {
  position: absolute;
  background: #fff; border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge-float-1 { bottom: 30px; left: -20px; }
.hero-badge-float-2 { top: 30px; right: -20px; }

.hbf-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.hbf-num { font-size: 20px; font-weight: 800; color: var(--text-dark); }
.hbf-txt { font-size: 11px; color: var(--text-light); font-weight: 500; }

/* ===================== TRUST LOGOS ===================== */
.trust-section {
  background: var(--light-gray); padding: 40px 0; border-top: 1px solid var(--border);
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center;
}
.trust-label { font-size: 13px; font-weight: 600; color: var(--text-light); letter-spacing: 0.5px; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.trust-logo {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}
.trust-logo-icon { font-size: 18px; }

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

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 30px;
  transition: all 0.3s ease; cursor: pointer; position: relative;
  overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(44,144,206,0.2); }
.service-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--gradient-subtle); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
}
.service-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--text-dark); }
.service-card p { font-size: 14px; }
.service-card .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--orange);
  margin-top: 18px; opacity: 0; transition: opacity 0.2s;
}
.service-card:hover .read-more { opacity: 1; }

/* ===================== WHY CHOOSE US ===================== */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.why-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 1; object-fit: cover; }

.why-list { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.why-item { display: flex; gap: 16px; }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.why-icon--orange { background: rgba(255,147,107,0.12); }
.why-icon--blue { background: rgba(44,144,206,0.12); }
.why-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.why-item p { font-size: 13px; }

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

.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
  background: #fff; border: 3px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: var(--text-dark);
  transition: all 0.3s; position: relative;
}
.process-step:hover .step-circle { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 6px 24px rgba(255,147,107,0.3); }
.process-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13px; }

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--gradient); padding: 60px 0;
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-item .num { font-size: 48px; font-weight: 800; line-height: 1; }
.stat-item .unit { font-size: 24px; font-weight: 800; opacity: 0.7; }
.stat-item .lbl { font-size: 14px; font-weight: 400; margin-top: 8px; opacity: 0.85; }

/* ===================== EXPERTISE METRICS ===================== */
.metrics-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.metrics-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); width: 100%; }
.metrics-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.metric-bar-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.metric-bar-item h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; display: flex; justify-content: space-between; }
.metric-bar-item h4 span { color: var(--orange); font-weight: 700; }
.bar-track { height: 8px; background: var(--light-gray); border-radius: 50px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gradient); border-radius: 50px; transition: width 1s ease; }

/* ===================== INDUSTRIES ===================== */
.industries-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; justify-content: center; }
.ind-tag {
  padding: 12px 22px; border-radius: 50px;
  border: 1.5px solid var(--border); font-size: 14px; font-weight: 500; color: var(--text-mid);
  background: #fff; cursor: pointer; transition: all 0.22s;
}
.ind-tag:hover, .ind-tag.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: linear-gradient(135deg, #1a3550 0%, #0f2236 100%);
  padding: 100px 0; text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.70); font-size: 17px; max-width: 560px; margin: 0 auto 36px; }

/* ===================== CERTIFICATIONS / RATINGS ===================== */
.ratings-bar { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.ratings-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.rating-chip { display: flex; align-items: center; gap: 10px; padding: 10px 20px; background: #fff; border: 1px solid var(--border); border-radius: 50px; box-shadow: var(--shadow-sm); }
.rating-chip .rc-icon { font-size: 22px; }
.rating-chip .rc-name { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.rating-chip .rc-stars { font-size: 11px; color: #f5a623; letter-spacing: 1px; }

/* ===================== FOOTER ===================== */
footer {
  background: #0f1c2e; color: #fff;
  padding: 80px 0 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--orange); }

.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 20px; color: rgba(255,255,255,0.9); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  color: rgba(255,255,255,0.6); transition: all 0.2s; cursor: pointer;
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon { width: 38px; height: 38px; background: var(--gradient); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 16px; }
.footer-logo-text { font-size: 18px; font-weight: 800; }
.footer-logo-text span { color: var(--orange); }
.footer-logo-text em { color: var(--blue); font-style: normal; }

/* ===================== PAGE ROUTER ===================== */
.page { display: none; }
.page.active { display: block; }

/* ===================== INNER PAGE HERO ===================== */
.inner-hero {
  background: linear-gradient(135deg, #0f1c2e 0%, #1a3550 100%);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,147,107,0.12) 0%, transparent 70%);
}
.inner-hero::after {
  content: ''; position: absolute; left: -80px; bottom: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,144,206,0.12) 0%, transparent 70%);
}
.inner-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }

.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }

.inner-hero h1 { color: #fff; margin-bottom: 16px; }
.inner-hero p { color: rgba(255,255,255,0.70); font-size: 18px; max-width: 600px; margin-bottom: 32px; }

/* ===================== FEATURE GRID ===================== */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 28px; display: flex; gap: 18px;
  transition: all 0.25s;
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: rgba(44,144,206,0.25); transform: translateY(-3px); }
.fc-num {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
}
.feature-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.feature-card p { font-size: 13px; }

/* ===================== ABOUT PAGE SPECIFICS ===================== */
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.mv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 40px 36px;
}
.mv-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.mv-card--orange { border-top: 4px solid var(--orange); }
.mv-card--blue { border-top: 4px solid var(--blue); }
.mv-card p { font-size: 15px; line-height: 1.8; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-wrap h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.form-wrap > p { font-size: 14px; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Sora', sans-serif; font-size: 14px; color: var(--text-dark);
  background: var(--white); outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(44,144,206,0.10); }
.form-input::placeholder { color: var(--text-light); }
textarea.form-input { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info h2 { font-size: 32px; font-weight: 700; margin-bottom: 14px; }
.contact-info > p { font-size: 15px; margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px;
}
.cc-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gradient-subtle); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cc-label { font-size: 12px; color: var(--text-light); font-weight: 500; margin-bottom: 3px; }
.cc-val { font-size: 14px; font-weight: 600; color: var(--text-dark); }

/* ===================== BLOG ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: all 0.3s; cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img { width: 100%; height: 210px; object-fit: cover; }
.blog-card-img-placeholder { width: 100%; height: 210px; display: flex; align-items: center; justify-content: center; font-size: 52px; }
.blog-body { padding: 24px; }
.blog-tag { display: inline-block; background: rgba(255,147,107,0.10); border: 1px solid rgba(255,147,107,0.25); color: var(--orange); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.45; }
.blog-card p { font-size: 13px; }
.blog-meta { display: flex; justify-content: space-between; margin-top: 16px; font-size: 12px; color: var(--text-light); font-weight: 500; }

/* ===================== TEAM ===================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all 0.3s; }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar { width: 100%; height: 220px; object-fit: cover; background: var(--gradient-subtle); display: flex; align-items: center; justify-content: center; font-size: 56px; }
.team-body { padding: 20px 22px; }
.team-name { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.team-role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 13px; }

/* ===================== INDUSTRY CARDS ===================== */
.ind-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.ind-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 28px 22px; text-align: center;
  cursor: pointer; transition: all 0.25s;
}
.ind-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(255,147,107,0.12); transform: translateY(-4px); }
.ind-card .ic-icon { font-size: 40px; margin-bottom: 14px; }
.ind-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.ind-card p { font-size: 12px; }

/* ===================== RESPONSIVE ===================== */
@media(max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .metrics-wrap, .contact-grid, .mission-vision-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ind-cards { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
}

@media(max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 70px 0; }
  .nav-menu { display: none; }
  .nav-hamburger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-grid, .team-grid, .ind-cards { grid-template-columns: 1fr; }
  .industries-cloud .ind-tag { font-size: 13px; padding: 10px 16px; }
  .hero { padding-top: 100px; }
  .hero-inner { padding: 0 24px; }
  .inner-hero-inner { padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.1s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.2s ease both; }

/* Mobile nav open */
.nav-open { display:flex !important; flex-direction:column; position:fixed; top:76px;left:0;right:0; background:#fff; padding:16px 24px; z-index:999; border-bottom:1px solid var(--border); box-shadow:var(--shadow-lg); gap:4px; }
.nav-open .nav-dropdown { position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;padding:4px 0 4px 12px;min-width:unset; }
.tdp-logo-img { height:44px;width:auto;object-fit:contain; }
a.service-card { display:block;color:inherit; }
