/* ============================================================
   TECH DELIVERY PARTNERS — DESIGN SYSTEM v4.0
   ============================================================ */
:root {
  --orange: #F97316;
  --orange-light: #FED7AA;
  --orange-dark: #C2410C;
  --blue: #1D4ED8;
  --blue-light: #DBEAFE;
  --blue-dark: #1E3A8A;
  --cyan: #0EA5E9;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --dark-3: #334155;
  --mid: #64748B;
  --light: #94A3B8;
  --border: #E2E8F0;
  --bg: #FFFFFF;
  --bg-2: #F8FAFC;
  --bg-3: #F1F5F9;
  --gradient: linear-gradient(135deg, #F97316 0%, #1D4ED8 100%);
  --gradient-soft: linear-gradient(135deg, rgba(249,115,22,0.08) 0%, rgba(29,78,216,0.08) 100%);
  --shadow-xs: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm: 0 4px 6px rgba(15,23,42,0.05), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-md: 0 10px 25px rgba(15,23,42,0.08), 0 4px 8px rgba(15,23,42,0.04);
  --shadow-lg: 0 20px 40px rgba(15,23,42,0.10), 0 8px 16px rgba(15,23,42,0.06);
  --shadow-xl: 0 32px 64px rgba(15,23,42,0.14);
  --r: 16px;
  --r-sm: 10px;
  --r-xs: 6px;
}

*, *::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(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===================== TYPOGRAPHY ===================== */
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; }
h2 { font-size: clamp(26px, 3.2vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -0.8px; }
h3 { font-size: clamp(17px, 1.8vw, 22px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.2px; }
p { color: var(--mid); line-height: 1.75; }

/* ===================== UTILITIES ===================== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
.section { padding: 96px 0; }
.section--gray { background: var(--bg-2); }
.section--dark { background: var(--dark); }
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.text-center .eyebrow::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: 6px;
  padding: 10px 22px; border-radius: 50px;
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none; white-space: nowrap; letter-spacing: -0.1px;
}
.btn svg { flex-shrink: 0; width: 13px; height: 13px; }

.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 8px 28px rgba(249,115,22,0.5); transform: translateY(-2px); }

.btn-dark { background: var(--dark); color: #fff; box-shadow: var(--shadow-md); }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--dark); background: var(--bg-3); transform: translateY(-2px); }

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

.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 4px 20px rgba(29,78,216,0.35); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

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

.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 48px;
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px;
}
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text span { color: var(--orange); }
.nav-logo-text em { color: var(--blue); font-style: normal; }
.tdp-logo-img { height: 40px; width: auto; object-fit: contain; }

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

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px; border-radius: var(--r-xs);
  font-size: 13.5px; font-weight: 500; color: var(--dark-3);
  transition: all 0.18s; cursor: pointer;
}
.nav-link:hover, .nav-item--open > .nav-link { color: var(--orange); background: rgba(249,115,22,0.06); }

.nav-link svg { transition: transform 0.2s; }
.nav-item--open > .nav-link svg { transform: rotate(180deg); }

/* Mega dropdown — JS-managed via .nav-item--open */
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--shadow-xl);
  padding: 10px; padding-top: 18px; min-width: 300px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s cubic-bezier(0.4,0,0.2,1), transform 0.18s cubic-bezier(0.4,0,0.2,1);
  transform: translateX(-50%) translateY(-6px);
  /* The padding-top acts as an invisible hover bridge so the mouse
     won't lose focus crossing the tiny gap between nav link and dropdown */
}
.nav-item--open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Invisible bridge — prevents gap between trigger and dropdown */
.nav-item::after {
  content: ''; position: absolute; top: 100%; left: -20px; right: -20px;
  height: 16px; background: transparent;
}

.nav-dropdown-section { padding: 8px 4px 4px; }
.nav-dropdown-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--light); padding: 0 8px 8px; display: block;
}
.nav-dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav-dropdown-grid.cols-1 { grid-template-columns: 1fr; }

.nav-dd-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 10px; border-radius: var(--r-xs);
  transition: background 0.15s; cursor: pointer;
}
.nav-dd-item:hover { background: var(--bg-2); }
.nav-dd-icon {
  width: 22px; height: 22px; border-radius: 5px; flex-shrink: 0;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.nav-dd-icon svg { width: 11px; height: 11px; color: var(--orange); }
.nav-dd-name { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.3; }
.nav-dd-desc { font-size: 11px; color: var(--light); margin-top: 1px; line-height: 1.3; }

.nav-divider { height: 1px; background: var(--border); margin: 8px 0; }

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

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

/* ===================== HERO ===================== */
.hero {
  padding: 140px 0 80px;
  background: var(--bg); position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(226,232,240,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,232,240,0.5) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-glow-1 {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -200px; left: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,0.10) 0%, transparent 65%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2);
  color: var(--orange); border-radius: 50px; padding: 6px 14px 6px 8px;
  font-size: 12px; font-weight: 600; margin-bottom: 24px;
}
.hero-badge-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: 10px;
  display: flex; align-items: center; justify-content: center;
}

.hero-title { color: var(--dark); margin-bottom: 24px; }
.hero-title .highlight {
  position: relative; display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub { font-size: 17px; line-height: 1.7; max-width: 500px; margin-bottom: 40px; }

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

/* Arrow button companion — dark rounded pill with icon */
.btn-arrow-dark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50px;
  background: var(--dark); color: #fff;
  border: none; cursor: pointer; flex-shrink: 0;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.btn-arrow-dark:hover { background: var(--dark-3); transform: translateY(-2px) translateX(3px); }
.btn-arrow-dark svg { width: 15px; height: 15px; }
.btn-arrow-dark svg { width: 18px; height: 18px; }

.hero-proof {
  display: flex; align-items: center; gap: 24px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-proof-avatars { display: flex; }
.hero-proof-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -10px; overflow: hidden;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; font-weight: 700;
}
.hero-proof-avatar:first-child { margin-left: 0; }
.hero-proof-text { font-size: 13px; color: var(--mid); }
.hero-proof-text strong { color: var(--dark); font-weight: 700; }

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

.hero-card-main {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-card-main img { width: 100%; height: 360px; object-fit: cover; display: block; }

.hero-float {
  position: absolute; background: #fff;
  border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.hero-float-1 { bottom: -24px; left: -24px; }
.hero-float-2 { top: 32px; right: -32px; }
.hero-float-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-icon svg { width: 17px; height: 17px; color: #fff; }
.hero-float-num { font-size: 20px; font-weight: 800; color: var(--dark); line-height: 1; }
.hero-float-lbl { font-size: 11px; color: var(--mid); font-weight: 500; margin-top: 2px; }

/* ===================== LOGO BAR ===================== */
.logobar {
  background: var(--bg-2); padding: 28px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.logobar-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center;
}
.logobar-label { font-size: 12px; font-weight: 600; color: var(--light); letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.logobar-logos { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.logobar-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: #fff; border: 1px solid var(--border);
  border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--dark-3);
  box-shadow: var(--shadow-xs);
}
.logobar-chip svg { width: 18px; height: 18px; flex-shrink: 0; }

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

.svc-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 28px;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden; display: block; color: inherit;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(249,115,22,0.15); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gradient-soft); border: 1px solid rgba(249,115,22,0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.svc-icon svg { width: 18px; height: 18px; color: var(--orange); }
.svc-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.svc-card p { font-size: 14px; line-height: 1.65; }
.svc-arrow {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--orange);
  margin-top: 18px; opacity: 0; transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ===================== WHY US ===================== */
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-wrap { position: relative; }
.why-img {
  border-radius: 20px; width: 100%;
  aspect-ratio: 1; object-fit: cover; box-shadow: var(--shadow-xl);
}
.why-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: #fff; border-radius: 16px;
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  text-align: center;
}
.why-badge-num { font-size: 36px; font-weight: 800; line-height: 1; }
.why-badge-txt { font-size: 12px; font-weight: 500; opacity: 0.85; margin-top: 4px; }

.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon-wrap {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2);
}
.why-icon-wrap svg { width: 17px; height: 17px; color: var(--orange); }
.why-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.why-item p { font-size: 13.5px; }

/* ===================== PROCESS ===================== */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px; position: relative;
}
.process-line {
  position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--blue) 100%);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 24px;
  background: var(--bg); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: var(--dark);
  transition: all 0.3s; box-shadow: var(--shadow-xs);
}
.process-step:hover .step-num {
  background: var(--orange); color: #fff; border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}
.process-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13px; }

/* ===================== STATS ===================== */
.stats-section {
  background: var(--dark); padding: 72px 0;
}
.stats-grid {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px;
  text-align: center;
}
.stat-num { font-size: 52px; font-weight: 800; color: #fff; line-height: 1; }
.stat-unit { font-size: 28px; color: var(--orange); font-weight: 800; }
.stat-lbl { font-size: 13px; color: var(--light); margin-top: 8px; font-weight: 500; }

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

.bar-list { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.bar-item {}
.bar-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.bar-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.bar-pct { font-size: 14px; font-weight: 700; color: var(--orange); }
.bar-track { height: 8px; background: var(--bg-3); border-radius: 50px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gradient); border-radius: 50px; }

/* ===================== INDUSTRIES ===================== */
.ind-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; justify-content: center; }
.ind-tag {
  padding: 10px 20px; border-radius: 50px; cursor: pointer;
  border: 1.5px solid var(--border); font-size: 14px; font-weight: 500; color: var(--mid);
  background: var(--bg); transition: all 0.2s;
}
.ind-tag:hover, .ind-tag.active {
  background: var(--orange); border-color: var(--orange); color: #fff;
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
  padding: 96px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 65%);
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; padding: 0 48px; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 17px; margin-bottom: 36px; }

/* ===================== RATINGS BAR ===================== */
.ratings-bar {
  background: var(--bg-2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 32px 0;
}
.ratings-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.rating-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 50px; box-shadow: var(--shadow-xs);
}
.rc-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.rc-stars { font-size: 11px; color: #F59E0B; letter-spacing: 1px; }
.rc-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.rc-icon svg { width: 18px; height: 18px; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark); color: rgba(255,255,255,0.85);
  padding: 80px 0 32px;
}
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 64px; }

.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark { width: 36px; height: 36px; border-radius: 9px; background: var(--gradient); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-mark svg { width: 18px; height: 18px; color: #fff; }
.footer-logo-text { font-size: 17px; font-weight: 800; color: #fff; }
.footer-logo-text span { color: var(--orange); }
.footer-logo-text em { color: var(--cyan); font-style: normal; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 280px; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--orange); }
.footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; }

.social-links { display: flex; gap: 8px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.social-link svg { width: 16px; height: 16px; }

.footer-col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); 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.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===================== INNER HERO ===================== */
.inner-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.inner-hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 60%;
  background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.1) 0%, transparent 70%);
}
.inner-hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.breadcrumb a { font-size: 13px; color: var(--orange); }
.breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.4); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); font-size: 11px; }
.inner-hero h1 { color: #fff; margin-bottom: 20px; }
.inner-hero p { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 620px; margin-bottom: 36px; }
.inner-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

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

/* ===================== ABOUT PAGE ===================== */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.mv-card {
  border-radius: var(--r); padding: 40px 36px;
  border: 1px solid var(--border);
}
.mv-card--orange { border-top: 4px solid var(--orange); background: rgba(249,115,22,0.02); }
.mv-card--blue { border-top: 4px solid var(--blue); background: rgba(29,78,216,0.02); }
.mv-card h3 { font-size: 22px; margin-bottom: 14px; color: var(--dark); }
.mv-card p { font-size: 15px; line-height: 1.8; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.team-card {
  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-img {
  width: 100%; height: 240px; object-fit: cover;
  background: var(--gradient-soft); 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(--dark); margin-bottom: 3px; }
.team-role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 13px; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 44px; box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-card > p { font-size: 14px; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'Sora', sans-serif; font-size: 14px;
  color: var(--dark); background: var(--bg); outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,0.08); }
.form-input::placeholder { color: var(--light); }
textarea.form-input { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-info-side {}
.contact-info-side h2 { font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.contact-info-side > p { font-size: 15px; margin-bottom: 28px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; gap: 14px; align-items: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px;
}
.cc-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--gradient-soft); border: 1px solid rgba(249,115,22,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cc-icon svg { width: 16px; height: 16px; color: var(--orange); }
.cc-label { font-size: 12px; color: var(--light); font-weight: 500; margin-bottom: 2px; }
.cc-val { font-size: 14px; font-weight: 600; color: var(--dark); }

/* ===================== BLOG ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: all 0.3s; display: block; color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-img-ph {
  width: 100%; height: 200px; background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.blog-body { padding: 22px; }
.blog-tag {
  display: inline-block; background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2); 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(--dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 13px; }
.blog-meta { display: flex; justify-content: space-between; margin-top: 14px; font-size: 12px; color: var(--light); font-weight: 500; padding-top: 14px; border-top: 1px solid var(--border); }

/* ===================== SERVICE PAGE SPECIFICS ===================== */
.service-hero-img {
  width: 100%; height: 440px; overflow: hidden; position: relative;
}
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-2));
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.fade-up { animation: fadeUp 0.65s cubic-bezier(0.4,0,0.2,1) both; }
.fade-up-2 { animation: fadeUp 0.65s 0.12s cubic-bezier(0.4,0,0.2,1) both; }
.fade-up-3 { animation: fadeUp 0.65s 0.24s cubic-bezier(0.4,0,0.2,1) both; }
.hero-float-1 { animation: float 4s ease-in-out infinite; }
.hero-float-2 { animation: float 4s 1s ease-in-out infinite; }

/* ===================== MOBILE NAV ===================== */
/* Hamburger open state */
.nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.nav-open {
  display: flex !important; flex-direction: column;
  position: fixed; top: 72px; left: 0; right: 0;
  background: #fff; padding: 16px 24px 24px; z-index: 999;
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
  gap: 4px; max-height: calc(100vh - 72px); overflow-y: auto;
}
.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; pointer-events: all;
}
.nav-open .nav-item--open .nav-dropdown {
  display: block;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .why-wrap, .expertise-wrap, .contact-grid, .mv-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 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, .hero-inner, .stats-grid, .footer-inner, .logobar-inner, .cta-inner, .ratings-inner, .inner-hero-inner { padding-left: 24px; padding-right: 24px; }
  .section { padding: 64px 0; }
  .nav-inner { padding: 0 24px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; min-height: unset; padding-bottom: 60px; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
}

/* ===================== SERVICE STATS BAR ===================== */
.service-stats-bar {
  background: var(--dark); padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.service-stat { padding: 8px 20px; }
.service-stat + .service-stat { border-left: 1px solid rgba(255,255,255,0.08); }
.service-stat-num {
  font-size: clamp(22px, 2.4vw, 32px); font-weight: 800; color: var(--orange);
  letter-spacing: -0.5px; line-height: 1;
}
.service-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }

@media (max-width: 768px) {
  .service-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-stat:nth-child(3) { border-left: none; }
  .service-stat { border-top: 1px solid rgba(255,255,255,0.08); }
  .service-stat:nth-child(1), .service-stat:nth-child(2) { border-top: none; }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===================== BTN ARROW DARK (hero companion button) ===================== */
.btn-arrow-dark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50px;
  background: var(--dark); color: #fff;
  border: none; cursor: pointer; flex-shrink: 0;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-md); text-decoration: none;
}
.btn-arrow-dark:hover { background: var(--dark-3); transform: translateY(-2px) translateX(3px); }
.btn-arrow-dark svg { width: 15px; height: 15px; }

/* ===================== HAMBURGER ANIMATE ===================== */
.nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ===================== TESTIMONIAL CARDS ===================== */
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 28px;
  transition: all 0.28s; position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(249,115,22,0.15); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 20px; right: 24px;
  font-size: 64px; color: var(--orange); opacity: 0.12;
  font-family: Georgia, serif; line-height: 1;
}

/* ===================== PREMIUM GRADIENT BORDER CARD ===================== */
.premium-card {
  background: var(--bg); border-radius: var(--r);
  padding: 32px; position: relative;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
              var(--gradient) border-box;
  border: 1.5px solid transparent;
  transition: all 0.25s;
}
.premium-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* ===================== SECTION HEADER REFINEMENTS ===================== */
.section-header { max-width: 640px; }
.section-header h2 { margin-bottom: 14px; }

/* ===================== RESPONSIVE GRID FIXES ===================== */
@media (max-width: 768px) {
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }
  .testimonial-card, [class*="testimonial"] { margin-bottom: 0; }
}

/* ===================== NAV DROPDOWN Z-INDEX FIX ===================== */
.nav-item { z-index: auto; }
.nav-item--open { z-index: 1001; }
