/* ============================================================
   NK Digital Solutions — merged design system
   Source 1: styles.css (shared across original static pages)
   Source 2: index.html inline <style> block (homepage overrides,
   concatenated last so it wins the cascade exactly as it did
   in the original static site where it was loaded after
   styles.css on the same page).
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --c-primary: #148bab;
  --c-primary-dark: #117a96;
  --c-dark: #000000;
  --c-light: #ffffff;
  --c-grey: #f4f6f8;
  --c-muted: #6b7280;
  --c-text: #1f2937;
  --radius: 8px;
  --transition: 0.2s ease;
  --max-w: 1200px;
  --section-pad: 80px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-light);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad) 0; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--c-muted);
  margin-bottom: 48px;
  max-width: 600px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-primary { background: var(--c-primary); color: var(--c-light); border-color: var(--c-primary); }
.btn-primary:hover { background: var(--c-primary-dark); border-color: var(--c-primary-dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--c-light); border-color: var(--c-light); }
.btn-outline-white:hover { background: var(--c-light); color: var(--c-dark); transform: translateY(-2px); }
.btn-dark { background: var(--c-dark); color: var(--c-light); border-color: var(--c-dark); }
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn-outline:hover { background: var(--c-primary); color: var(--c-light); transform: translateY(-2px); }

/* ── FADE-UP REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════
   1. NAVIGATION
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--c-light);
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow var(--transition), background var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.12); background: rgba(255,255,255,0.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 2px; font-size: 20px; font-weight: 800; }
.nav-logo .nk { color: var(--c-primary); }
.nav-logo .ds { color: var(--c-dark); font-size: 14px; font-weight: 600; letter-spacing: -0.3px; }
.nav-center { display: flex; align-items: center; gap: 28px; }
.nav-center > li > a {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-center > li > a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--c-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-center > li > a:hover { color: var(--c-primary); }
.nav-center > li > a:hover::after { transform: scaleX(1); }
/* Nav active state */
.nav-center > li > a.nav-active { color: var(--c-primary); }
.nav-center > li > a.nav-active::after { transform: scaleX(1); }

/* ── Mega Menu ── */
.nav-has-dropdown { position: static; }
.nav-chevron {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform var(--transition);
}
.nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Full-width mega panel — positions relative to fixed #navbar */
.nav-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e8e9ef;
  border-bottom: 1px solid #eef0f5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  padding: 36px 0 44px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  z-index: 999;
}
.nav-has-dropdown:hover .nav-mega-menu,
.nav-has-dropdown:focus-within .nav-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.mega-col {
  padding: 0 36px;
  border-right: 1px solid #eef0f5;
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; padding-right: 0; }
.mega-col-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.mega-col-icon {
  width: 38px; height: 38px;
  background: rgba(20,139,171,0.15);
  border: 1px solid rgba(20,139,171,0.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mega-col-icon svg { width: 18px; height: 18px; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
a.mega-col-title { font-size: 16px; font-weight: 700; color: var(--c-dark); transition: color 0.2s; }
a.mega-col-title:hover { color: var(--c-primary); }
a.mega-col-title::after { display: none !important; }
.mega-col-desc { font-size: 12px; color: var(--c-muted); line-height: 1.5; margin-bottom: 16px; padding-left: 50px; }
.mega-links { display: flex; flex-direction: column; gap: 0; padding-left: 50px; list-style: none; }
.mega-links li { display: block; }
.mega-links a {
  font-size: 13.5px; color: #4b5563;
  padding: 7px 0;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #f3f4f6;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}
.mega-links li:last-child a { border-bottom: none; }
.mega-links a::after { display: none !important; }
.mega-links a::before {
  content: ''; width: 4px; height: 4px;
  border-radius: 50%; background: var(--c-primary);
  flex-shrink: 0; opacity: 0;
  transition: opacity 0.2s;
}
.mega-links a:hover { color: var(--c-primary); padding-left: 6px; }
.mega-links a:hover::before { opacity: 1; }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 13px; color: var(--c-muted); font-weight: 600; }
.nav-cta { padding: 10px 20px; font-size: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--c-dark); transition: transform var(--transition), opacity var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; background: var(--c-light); border-top: 1px solid #e5e7eb; padding: 16px 24px 24px; gap: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 600; color: var(--c-text); padding: 10px 0; border-bottom: 1px solid #f3f4f6; }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--c-primary); }
.mobile-menu .btn { align-self: flex-start; margin-top: 12px; border-bottom: none !important; }
.mobile-services-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-muted); padding: 14px 0 4px; border-bottom: none !important; }
.mobile-services-sub { padding-left: 12px !important; font-size: 14px !important; color: var(--c-primary) !important; border-left: 2px solid rgba(20,139,171,0.3); }

/* ════════════════════════════════════════
   2. HOME HERO SECTION
════════════════════════════════════════ */
#home {
  min-height: 100vh;
  background: var(--c-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
#home::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,139,171,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,139,171,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove { 0% { transform: translate(0,0); } 100% { transform: translate(60px,60px); } }
#home::after {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(20,139,171,0.15) 0%, transparent 70%);
  animation: glowPulse 6s ease-in-out infinite alternate;
}
@keyframes glowPulse { 0% { opacity: 0.5; transform: scale(1); } 100% { opacity: 1; transform: scale(1.1); } }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(20,139,171,0.15); border: 1px solid rgba(20,139,171,0.3);
  border-radius: 50px; padding: 6px 16px; font-size: 13px; font-weight: 600;
  color: var(--c-primary); margin-bottom: 24px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--c-primary); border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-h1 { font-size: clamp(38px, 6vw, 64px); font-weight: 800; color: var(--c-light); line-height: 1.1; margin-bottom: 16px; letter-spacing: -1px; }
.hero-tagline { font-size: clamp(18px, 2.5vw, 22px); font-weight: 600; color: var(--c-primary); margin-bottom: 20px; }
.hero-para { font-size: 16px; color: #d1d5db; max-width: 560px; margin-bottom: 36px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.scroll-arrow { width: 24px; height: 24px; border-right: 2px solid rgba(255,255,255,0.3); border-bottom: 2px solid rgba(255,255,255,0.3); transform: rotate(45deg); animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }

/* ════════════════════════════════════════
   2b. INNER PAGE HERO
════════════════════════════════════════ */
.page-hero {
  background: var(--c-dark);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,139,171,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,139,171,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,139,171,0.1) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero-breadcrumb {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.45);
  margin-bottom: 16px; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 8px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--c-light); }
.page-hero-breadcrumb .bc-sep { color: rgba(255,255,255,0.2); }
.page-hero-breadcrumb .bc-current { color: var(--c-primary); }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--c-light); line-height: 1.1; margin-bottom: 16px; letter-spacing: -1px; }
.page-hero p { font-size: 18px; color: #d1d5db; max-width: 580px; line-height: 1.7; margin-bottom: 32px; }
.page-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ════════════════════════════════════════
   3. TRUST BAR
════════════════════════════════════════ */
#trust-bar { background: var(--c-grey); padding: 48px 0; border-bottom: 1px solid #e5e7eb; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
.stat-number { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--c-primary); line-height: 1; display: block; }
.stat-label { font-size: 14px; color: var(--c-muted); font-weight: 600; margin-top: 6px; display: block; }

/* ════════════════════════════════════════
   4. SERVICES OVERVIEW
════════════════════════════════════════ */
#services { background: var(--c-light); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-sub { margin: 0 auto; }
.services-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--c-light); border: 1px solid #e5e7eb; border-radius: 12px; padding: 36px 32px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(20,139,171,0.12); border-color: rgba(20,139,171,0.3); }
.service-icon { width: 56px; height: 56px; background: rgba(20,139,171,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 28px; height: 28px; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.service-card p { color: var(--c-muted); margin-bottom: 20px; font-size: 15px; }
.service-bullets { margin-bottom: 24px; }
.service-bullets li { font-size: 14px; color: var(--c-text); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.service-bullets li::before { content: ''; width: 6px; height: 6px; background: var(--c-primary); border-radius: 50%; flex-shrink: 0; }
.service-link { font-size: 14px; font-weight: 600; color: var(--c-primary); transition: gap var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ════════════════════════════════════════
   5. WHY CHOOSE US
════════════════════════════════════════ */
#why { background: var(--c-dark); }
#why .section-title { color: var(--c-light); text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px; }
.why-item { text-align: center; }
.why-icon { width: 64px; height: 64px; background: rgba(20,139,171,0.15); border: 1px solid rgba(20,139,171,0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.why-icon svg { width: 30px; height: 30px; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-item h3 { font-size: 20px; font-weight: 600; color: var(--c-light); margin-bottom: 12px; }
.why-item p { color: #9ca3af; font-size: 15px; line-height: 1.8; }
.why-strip { text-align: center; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); color: #6b7280; font-size: 15px; font-weight: 600; letter-spacing: 0.5px; }
.why-strip span { color: var(--c-primary); }

/* ════════════════════════════════════════
   6. SERVICES DEEP-DIVE (TABS)
════════════════════════════════════════ */
#services-detail { background: var(--c-grey); }
.tabs-header { text-align: center; margin-bottom: 40px; }
.tab-buttons { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn { padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 600; border: 2px solid #e5e7eb; background: var(--c-light); color: var(--c-muted); transition: all var(--transition); }
.tab-btn:hover { border-color: var(--c-primary); color: var(--c-primary); }
.tab-btn.active { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-light); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-content { background: var(--c-light); border-radius: 16px; padding: 48px; border: 1px solid #e5e7eb; }
.tab-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 40px; align-items: start; }
.tab-desc h3 { font-size: 26px; font-weight: 700; margin-bottom: 16px; }
.tab-desc p { color: var(--c-muted); line-height: 1.8; font-size: 15px; }
.tab-cta-box { background: var(--c-grey); border-radius: 12px; padding: 32px; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.tab-cta-box .tab-cta-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-muted); margin-bottom: 12px; }
.tab-cta-box p { font-size: 14px; color: var(--c-muted); line-height: 1.7; margin-bottom: 24px; }
.tab-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tab-service-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.tick { width: 20px; height: 20px; background: rgba(20,139,171,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tick svg { width: 10px; height: 10px; stroke: var(--c-primary); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* ════════════════════════════════════════
   7. OUR PROCESS
════════════════════════════════════════ */
#process { background: var(--c-light); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--c-primary) 0%, rgba(20,139,171,0.2) 100%); z-index: 0; }
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-number { width: 80px; height: 80px; border-radius: 50%; background: var(--c-light); border: 3px solid var(--c-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 24px; font-weight: 800; color: var(--c-primary); position: relative; z-index: 1; }
.step-icon { margin-bottom: 8px; }
.step-icon svg { width: 24px; height: 24px; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--c-muted); line-height: 1.7; }

/* ════════════════════════════════════════
   8. PORTFOLIO
════════════════════════════════════════ */
#our-work { background: var(--c-grey); }
.portfolio-header { text-align: center; margin-bottom: 40px; }
.filter-buttons { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 8px 22px; border-radius: 50px; font-size: 14px; font-weight: 600; border: 2px solid #e5e7eb; background: var(--c-light); color: var(--c-muted); transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-light); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item { border-radius: 12px; overflow: hidden; background: var(--c-light); border: 1px solid #e5e7eb; transition: transform var(--transition), box-shadow var(--transition); }
.portfolio-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.portfolio-item.hidden { display: none; }
.portfolio-img { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%); overflow: hidden; }
.portfolio-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #9ca3af; font-size: 13px; font-weight: 600; }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(20,139,171,0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span { color: var(--c-light); font-weight: 700; font-size: 15px; border: 2px solid var(--c-light); padding: 10px 24px; border-radius: 50px; }
.portfolio-info { padding: 20px; }
.portfolio-badge { display: inline-block; background: rgba(20,139,171,0.1); color: var(--c-primary); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; }
.portfolio-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.portfolio-info p { font-size: 13px; color: var(--c-muted); }
.portfolio-cta { text-align: center; margin-top: 40px; }

/* ════════════════════════════════════════
   9. TESTIMONIALS
════════════════════════════════════════ */
#testimonials { background: var(--c-grey); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--c-light); border-radius: 12px; padding: 32px; border: 1px solid #e5e7eb; transition: transform var(--transition), box-shadow var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.stars { color: var(--c-primary); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-size: 15px; color: var(--c-text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.author-name { font-weight: 700; font-size: 15px; }
.author-role { font-size: 13px; color: var(--c-muted); }

/* ════════════════════════════════════════
   10. CONTACT FORM
════════════════════════════════════════ */
#contact { background: var(--c-grey); }
.contact-header { text-align: center; margin-bottom: 56px; }
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; }
.contact-form-wrap { background: var(--c-light); border-radius: 16px; padding: 48px; border: 1px solid #e5e7eb; }
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--c-muted); font-size: 14px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--c-text); }
.form-group input,
.form-group select,
.form-group textarea { padding: 13px 16px; border: 2px solid #e5e7eb; border-radius: var(--radius); font-family: inherit; font-size: 15px; color: var(--c-text); background: var(--c-light); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--c-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.contact-info { background: var(--c-dark); border-radius: 16px; padding: 48px; color: var(--c-light); }
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.contact-info > p { color: #9ca3af; font-size: 14px; margin-bottom: 32px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(20,139,171,0.15); border: 1px solid rgba(20,139,171,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-text { display: flex; flex-direction: column; gap: 2px; }
.contact-item-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #6b7280; }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--c-light); line-height: 1.5; }
.map-placeholder { width: 100%; height: 220px; background: linear-gradient(135deg, #0f1a20 0%, #1a2a32 100%); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; margin-top: 24px; border: 1px solid rgba(255,255,255,0.06); }
.map-placeholder svg { width: 28px; height: 28px; stroke: var(--c-primary); fill: none; stroke-width: 1.5; }
.map-placeholder span { font-size: 13px; color: #9ca3af; font-weight: 600; }
.map-placeholder a { font-size: 13px; color: var(--c-primary); font-weight: 600; }

/* ════════════════════════════════════════
   11. FOOTER
════════════════════════════════════════ */
footer { background: var(--c-dark); color: #9ca3af; padding: 64px 0 32px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); gap: 48px; flex-wrap: wrap; }
.footer-brand { max-width: 300px; }
.footer-logo { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.footer-logo .nk { color: var(--c-primary); }
.footer-logo .ds { color: var(--c-light); }
.footer-tagline { font-size: 14px; color: #6b7280; line-height: 1.6; }
.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--c-light); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: #9ca3af; transition: color var(--transition); }
.footer-col a:hover { color: var(--c-primary); }
.footer-col address { font-style: normal; display: flex; flex-direction: column; gap: 10px; }
.footer-col address span { font-size: 14px; }
.footer-bottom { padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: #6b7280; }
.footer-copy a { color: #6b7280; transition: color var(--transition); }
.footer-copy a:hover { color: var(--c-primary); }
.social-icons { display: flex; gap: 12px; }
.social-icon { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background var(--transition), border-color var(--transition); }
.social-icon:hover { background: rgba(20,139,171,0.2); border-color: var(--c-primary); }
.social-icon svg { width: 16px; height: 16px; fill: #9ca3af; transition: fill var(--transition); }
.social-icon:hover svg { fill: var(--c-primary); }

/* ════════════════════════════════════════
   12. CTA BAND (shared across pages)
════════════════════════════════════════ */
.cta-band { background: var(--c-primary); padding: 80px 0; }
.cta-band-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--c-light); margin-bottom: 16px; line-height: 1.2; }
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   13. ABOUT PAGE
════════════════════════════════════════ */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-text h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.about-story-text p { color: var(--c-muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.about-story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-stat { background: var(--c-grey); border-radius: 12px; padding: 28px; text-align: center; }
.about-stat-number { font-size: clamp(32px, 4vw, 44px); font-weight: 800; color: var(--c-primary); line-height: 1; display: block; margin-bottom: 6px; }
.about-stat-label { font-size: 14px; color: var(--c-muted); font-weight: 600; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card { background: var(--c-grey); border-radius: 12px; padding: 32px; display: flex; gap: 20px; align-items: flex-start; }
.value-icon { width: 48px; height: 48px; background: rgba(20,139,171,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon svg { width: 24px; height: 24px; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-text h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.value-text p { font-size: 14px; color: var(--c-muted); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--c-light); border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.team-photo { width: 100%; aspect-ratio: 1/1; background: linear-gradient(135deg, #e5e7eb 0%, #c8d0da 100%); display: flex; align-items: center; justify-content: center; }
.team-photo-icon { width: 80px; height: 80px; background: rgba(20,139,171,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.team-photo-icon svg { width: 40px; height: 40px; stroke: var(--c-primary); fill: none; stroke-width: 1.5; }
.team-info { padding: 24px; }
.team-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--c-primary); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 14px; color: var(--c-muted); line-height: 1.6; }

/* ════════════════════════════════════════
   14. SERVICE PAGES
════════════════════════════════════════ */
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-detail-card { background: var(--c-grey); border-radius: 12px; padding: 28px; transition: transform var(--transition); }
.service-detail-card:hover { transform: translateY(-2px); }
.sdc-icon { width: 48px; height: 48px; background: rgba(20,139,171,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.sdc-icon svg { width: 24px; height: 24px; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-detail-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-detail-card p { font-size: 14px; color: var(--c-muted); line-height: 1.6; margin-bottom: 16px; }
.service-detail-card ul { list-style: none; }
.service-detail-card ul li { font-size: 14px; padding: 3px 0; color: var(--c-text); display: flex; align-items: center; gap: 8px; }
.service-detail-card ul li::before { content: ''; width: 5px; height: 5px; background: var(--c-primary); border-radius: 50%; flex-shrink: 0; }
/* Results bar */
.results-bar { background: var(--c-primary); padding: 56px 0; }
.results-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.rb-number { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--c-light); line-height: 1; display: block; margin-bottom: 6px; }
.rb-label { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 600; }
/* Intro split */
.service-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-bottom: 0; }
.service-intro-text h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.service-intro-text p { color: var(--c-muted); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.service-intro-bullets { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.service-intro-bullets li { font-size: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.service-intro-bullets li::before { content: ''; width: 8px; height: 8px; background: var(--c-primary); border-radius: 50%; flex-shrink: 0; }
.service-intro-box { background: var(--c-grey); border-radius: 16px; padding: 36px; border-left: 4px solid var(--c-primary); }
.service-intro-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-intro-box p { font-size: 15px; color: var(--c-muted); line-height: 1.7; margin-bottom: 20px; }

/* ════════════════════════════════════════
   15. FAQ ACCORDION
════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; text-align: left; background: var(--c-light); border: none; padding: 20px 24px; font-family: inherit; font-size: 16px; font-weight: 600; color: var(--c-text); display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; transition: background var(--transition), color var(--transition); }
.faq-question:hover { background: var(--c-grey); }
.faq-question.open { color: var(--c-primary); background: rgba(20,139,171,0.04); }
.faq-chevron { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--c-muted); line-height: 1.8; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-cards { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
  .tab-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr 1fr; }
  .results-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-intro-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 48px; }
  .nav-center, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-cta.desktop-only { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:last-child { grid-column: span 2; }
  .services-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-info { padding: 28px 20px; }
  .tab-content { padding: 24px 20px; }
  .tab-services-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .results-bar-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .about-story-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .page-hero-btns { flex-direction: column; }
  .page-hero-btns .btn { width: 100%; justify-content: center; }
  .results-bar-grid { grid-template-columns: 1fr; }
  .about-story-stats { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   IMAGES — shared utility styles
════════════════════════════════════════ */

/* Portfolio grid images */
.portfolio-img { position: relative; }
.portfolio-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.portfolio-item:hover .portfolio-img img { transform: scale(1.05); }

/* Service card visual (homepage cards) */
.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.service-card:hover .service-card-img { opacity: 0.32; }

/* Service intro section image (inner pages) */
.service-intro-img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Hero background image (inner page heroes) */
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: 0;
}

/* About story section image */
.about-img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

/* Team card photo */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ════════════════════════════════════════
   MOBILE IMPROVEMENTS (additional)
════════════════════════════════════════ */

/* Ensure all interactive elements meet 44px touch target */
.btn { min-height: 44px; }
.hamburger { min-width: 44px; min-height: 44px; justify-content: center; }
.mobile-menu a { min-height: 44px; display: flex; align-items: center; }
.faq-question { min-height: 56px; }
.filter-btn, .tab-btn { min-height: 44px; }

@media (max-width: 768px) {
  /* Better hero padding on mobile */
  .page-hero { padding: 100px 0 56px; }
  .page-hero h1 { letter-spacing: -0.5px; }
  .page-hero p { font-size: 16px; }

  /* Stat dividers — hide on mobile */
  .stat-item::before { display: none !important; }

  /* Service intro box */
  .service-intro-box { padding: 24px; }

  /* Results bar fix */
  .rb-number { font-size: clamp(28px, 7vw, 40px); }

  /* Better section headings on mobile */
  .section-title { letter-spacing: -0.5px; }

  /* Contact grid full width */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer columns stack */
  .footer-links { flex-direction: column; gap: 32px; }

  /* Breadcrumb wrapping */
  .page-hero-breadcrumb { flex-wrap: wrap; gap: 6px; }

  /* Process steps on mobile */
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
}

@media (max-width: 480px) {
  /* Tighter section padding on very small screens */
  :root { --section-pad: 40px; }

  /* Hero padding */
  .page-hero { padding: 90px 0 44px; }

  /* Full-width CTAs on small phones */
  .page-hero-btns { flex-direction: column; align-items: stretch; }
  .page-hero-btns .btn { width: 100%; justify-content: center; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .cta-band-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Smaller intro box padding */
  .service-intro-box { padding: 20px; }

  /* Better service detail cards on mobile */
  .service-detail-card { padding: 20px; }

  /* FAQ padding */
  .faq-question { padding: 16px 20px; }
  .faq-answer-inner { padding: 0 20px 16px; }

  /* Container horizontal padding */
  .container { padding: 0 16px; }
}

/* ============================================================
   Homepage-specific overrides (from index.html inline <style>)
   ============================================================ */

    /* ── CSS CUSTOM PROPERTIES ── */
    :root {
      --c-primary: #148bab;
      --c-primary-dark: #117a96;
      --c-dark: #000000;
      --c-light: #ffffff;
      --c-grey: #f4f6f8;
      --c-muted: #6b7280;
      --c-text: #1f2937;
      --radius: 8px;
      --transition: 0.2s ease;
      --max-w: 1200px;
      --section-pad: 80px;
    }

    /* ── RESET & BASE ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: var(--c-text);
      background: var(--c-light);
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; font-family: inherit; }

    /* ── UTILITY ── */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .section-pad { padding: var(--section-pad) 0; }
    .section-title {
      font-size: clamp(30px, 4.5vw, 50px);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 16px;
      letter-spacing: -1.5px;
    }
    .section-sub {
      font-size: 17px;
      color: var(--c-muted);
      margin-bottom: 48px;
      max-width: 580px;
      line-height: 1.65;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      border: 2px solid transparent;
      transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    }
    .btn-primary {
      background: var(--c-primary);
      color: var(--c-light);
      border-color: var(--c-primary);
    }
    .btn-primary:hover { background: var(--c-primary-dark); border-color: var(--c-primary-dark); transform: translateY(-2px); }
    .btn-outline-white {
      background: transparent;
      color: var(--c-light);
      border-color: var(--c-light);
    }
    .btn-outline-white:hover { background: var(--c-light); color: var(--c-dark); transform: translateY(-2px); }
    .btn-dark {
      background: var(--c-dark);
      color: var(--c-light);
      border-color: var(--c-dark);
    }
    .btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

    /* ── FADE-UP REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ════════════════════════════════════════
       1. NAVIGATION
    ════════════════════════════════════════ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--c-light);
      border-bottom: 1px solid #e5e7eb;
      transition: box-shadow var(--transition), background var(--transition);
    }
    #navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); background: rgba(255,255,255,0.97); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }
    .nav-logo { display: flex; align-items: center; gap: 2px; font-size: 20px; font-weight: 800; }
    .nav-logo .nk { color: var(--c-primary); }
    .nav-logo .ds { color: var(--c-dark); font-size: 14px; font-weight: 600; letter-spacing: -0.3px; }
    .nav-center { display: flex; align-items: center; gap: 32px; }
    .nav-center a {
      font-size: 14px;
      font-weight: 600;
      color: var(--c-text);
      transition: color var(--transition);
      position: relative;
    }
    .nav-center a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0; right: 0;
      height: 2px;
      background: var(--c-primary);
      transform: scaleX(0);
      transition: transform var(--transition);
    }
    .nav-center a:hover { color: var(--c-primary); }
    .nav-center a:hover::after { transform: scaleX(1); }
    .nav-right { display: flex; align-items: center; gap: 20px; }
    .nav-phone { font-size: 13px; color: var(--c-muted); font-weight: 600; }
    .nav-cta { padding: 10px 20px; font-size: 14px; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--c-dark);
      transition: transform var(--transition), opacity var(--transition);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--c-light);
      border-top: 1px solid #e5e7eb;
      padding: 16px 24px 24px;
      gap: 16px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 15px; font-weight: 600; color: var(--c-text); padding: 8px 0; border-bottom: 1px solid #f3f4f6; }
    .mobile-menu a:hover { color: var(--c-primary); }
    .mobile-menu .btn { align-self: flex-start; margin-top: 8px; }

    /* ════════════════════════════════════════
       2. HERO SECTION
    ════════════════════════════════════════ */
    #home {
      min-height: 100vh;
      background: #030a0e;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding-top: 70px;
    }
    /* Animated grid background */
    #home::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(20,139,171,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20,139,171,0.08) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridMove 20s linear infinite;
    }
    @keyframes gridMove {
      0% { transform: translate(0, 0); }
      100% { transform: translate(60px, 60px); }
    }
    /* Radial glow — centered */
    #home::after {
      content: '';
      position: absolute;
      top: -100px; left: 50%; transform: translateX(-50%);
      width: 900px; height: 900px;
      background: radial-gradient(circle, rgba(20,139,171,0.12) 0%, transparent 65%);
      animation: glowPulse 6s ease-in-out infinite alternate;
    }
    @keyframes glowPulse {
      0% { opacity: 0.5; transform: scale(1); }
      100% { opacity: 1; transform: scale(1.1); }
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 880px;
      margin: 0 auto;
      text-align: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(20,139,171,0.15);
      border: 1px solid rgba(20,139,171,0.3);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--c-primary);
      margin-bottom: 24px;
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      background: var(--c-primary);
      border-radius: 50%;
      animation: blink 1.5s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
    .hero-h1 {
      font-size: clamp(44px, 8vw, 88px);
      font-weight: 800;
      color: var(--c-light);
      line-height: 1.04;
      margin-bottom: 20px;
      letter-spacing: -3px;
    }
    .hero-tagline {
      font-size: clamp(16px, 2vw, 20px);
      font-weight: 600;
      color: var(--c-primary);
      margin-bottom: 18px;
      letter-spacing: -0.3px;
    }
    .hero-para {
      font-size: 17px;
      color: rgba(255,255,255,0.55);
      max-width: 520px;
      margin: 0 auto 40px;
      line-height: 1.75;
    }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.4);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .scroll-arrow {
      width: 24px; height: 24px;
      border-right: 2px solid rgba(255,255,255,0.3);
      border-bottom: 2px solid rgba(255,255,255,0.3);
      transform: rotate(45deg);
      animation: scrollBounce 2s ease-in-out infinite;
    }
    @keyframes scrollBounce {
      0%,100%{transform:rotate(45deg) translateY(0)}
      50%{transform:rotate(45deg) translateY(6px)}
    }

    /* ════════════════════════════════════════
       3. TRUST BAR
    ════════════════════════════════════════ */
    #trust-bar {
      background: var(--c-light);
      padding: 80px 0;
      border-bottom: 1px solid #f0f0f5;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      text-align: center;
    }
    .stat-item { position: relative; padding: 0 24px; }
    .stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 48px; width: 1px; background: #e8e8ec; }
    .stat-number {
      font-size: clamp(36px, 5vw, 62px);
      font-weight: 800;
      color: var(--c-dark);
      line-height: 1;
      display: block;
      letter-spacing: -2px;
    }
    .stat-label {
      font-size: 11px;
      color: var(--c-muted);
      font-weight: 700;
      margin-top: 8px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    /* ════════════════════════════════════════
       4. SERVICES OVERVIEW
    ════════════════════════════════════════ */
    #services { background: var(--c-grey); }
    .services-header { text-align: center; margin-bottom: 60px; }
    .services-header .section-sub { margin: 0 auto; }
    .services-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    /* Dark cinematic service cards */
    .service-card {
      background: #0a0a0e;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px;
      overflow: hidden;
      padding: 0;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 60px rgba(0,0,0,0.3);
      border-color: rgba(20,139,171,0.22);
    }
    .service-card-visual {
      height: 160px;
      background: linear-gradient(160deg, #060e14 0%, #0c2030 60%, #071a26 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .service-card-visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(20,139,171,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(20,139,171,0.05) 1px, transparent 1px); background-size: 28px 28px; z-index: 1; }
    .service-card-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(20,139,171,0.22) 0%, transparent 65%); z-index: 1; }
    .service-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2;
      transition: opacity 0.4s ease;
      z-index: 0;
    }
    .service-card:hover .service-card-img { opacity: 0.32; }
    .service-icon {
      width: 62px; height: 62px;
      background: rgba(20,139,171,0.18);
      border: 1px solid rgba(20,139,171,0.28);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      flex-shrink: 0;
    }
    .service-icon svg { width: 28px; height: 28px; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .service-card-body { padding: 28px 28px 32px; }
    .service-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; color: #fff; letter-spacing: -0.4px; }
    .service-card p { color: rgba(255,255,255,0.48); margin-bottom: 20px; font-size: 14px; line-height: 1.7; }
    .service-bullets { margin-bottom: 24px; }
    .service-bullets li {
      font-size: 13px;
      color: rgba(255,255,255,0.42);
      padding: 4px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .service-bullets li::before {
      content: '';
      width: 5px; height: 5px;
      background: var(--c-primary);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .service-link {
      font-size: 14px;
      font-weight: 600;
      color: var(--c-primary);
      transition: gap var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .service-link:hover { gap: 10px; }

    /* ════════════════════════════════════════
       5. WHY CHOOSE US
    ════════════════════════════════════════ */
    #why { background: #050505; }
    #why .section-title { color: var(--c-light); text-align: center; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 48px;
    }
    .why-item { text-align: center; padding: 44px 40px; border-right: 1px solid rgba(255,255,255,0.05); }
    .why-item:last-child { border-right: none; }
    .why-icon {
      width: 60px; height: 60px;
      background: rgba(20,139,171,0.12);
      border: 1px solid rgba(20,139,171,0.18);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 22px;
    }
    .why-icon svg { width: 28px; height: 28px; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .why-item h3 { font-size: 20px; font-weight: 700; color: var(--c-light); margin-bottom: 12px; letter-spacing: -0.3px; }
    .why-item p { color: rgba(255,255,255,0.42); font-size: 14px; line-height: 1.8; }
    .why-strip {
      text-align: center;
      margin-top: 0;
      padding: 32px 40px;
      border-top: 1px solid rgba(255,255,255,0.06);
      color: #6b7280;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    .why-strip span { color: var(--c-primary); }

    /* ════════════════════════════════════════
       6. SERVICES DEEP-DIVE (TABS)
    ════════════════════════════════════════ */
    #services-detail { background: var(--c-grey); }
    .tabs-header { text-align: center; margin-bottom: 40px; }
    .tab-buttons {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .tab-btn {
      padding: 12px 28px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      border: 2px solid #e5e7eb;
      background: var(--c-light);
      color: var(--c-muted);
      transition: all var(--transition);
    }
    .tab-btn:hover { border-color: var(--c-primary); color: var(--c-primary); }
    .tab-btn.active { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-light); }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }
    .tab-content {
      background: var(--c-light);
      border-radius: 16px;
      padding: 48px;
      border: 1px solid #e5e7eb;
    }
    .tab-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
    }
    .tab-desc h3 { font-size: 26px; font-weight: 700; margin-bottom: 16px; }
    .tab-desc p { color: var(--c-muted); line-height: 1.8; font-size: 15px; }
    .tab-price {
      background: var(--c-grey);
      border-radius: 12px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .tab-price-label { font-size: 13px; font-weight: 600; color: var(--c-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
    .tab-price-amount { font-size: 36px; font-weight: 800; color: var(--c-primary); margin-bottom: 4px; }
    .tab-price-note { font-size: 13px; color: var(--c-muted); margin-bottom: 20px; }
    .tab-services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .tab-service-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
    }
    .tick {
      width: 20px; height: 20px;
      background: rgba(20,139,171,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .tick svg { width: 10px; height: 10px; stroke: var(--c-primary); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

    /* ════════════════════════════════════════
       7. OUR PROCESS
    ════════════════════════════════════════ */
    #process { background: var(--c-light); }
    .process-header { text-align: center; margin-bottom: 64px; }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, var(--c-primary) 0%, rgba(20,139,171,0.2) 100%);
      z-index: 0;
    }
    .process-step {
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }
    .step-number {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: var(--c-light);
      border: 3px solid var(--c-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-size: 24px;
      font-weight: 800;
      color: var(--c-primary);
      position: relative;
      z-index: 1;
    }
    .step-icon { margin-bottom: 8px; }
    .step-icon svg { width: 24px; height: 24px; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .process-step p { font-size: 14px; color: var(--c-muted); line-height: 1.7; }

    /* ════════════════════════════════════════
       8. PORTFOLIO
    ════════════════════════════════════════ */
    #our-work { background: var(--c-grey); }
    .portfolio-header { text-align: center; margin-bottom: 40px; }
    .filter-buttons {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .filter-btn {
      padding: 8px 22px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      border: 2px solid #e5e7eb;
      background: var(--c-light);
      color: var(--c-muted);
      transition: all var(--transition);
    }
    .filter-btn:hover, .filter-btn.active { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-light); }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .portfolio-item { border-radius: 12px; overflow: hidden; background: var(--c-light); border: 1px solid #e5e7eb; transition: transform var(--transition), box-shadow var(--transition); }
    .portfolio-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
    .portfolio-item.hidden { display: none; }
    .portfolio-img {
      position: relative;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
      overflow: hidden;
    }
    .portfolio-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }
    .portfolio-item:hover .portfolio-img img { transform: scale(1.05); }
    .portfolio-placeholder {
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #9ca3af;
      font-size: 13px;
      font-weight: 600;
    }
    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: rgba(20,139,171,0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity var(--transition);
    }
    .portfolio-item:hover .portfolio-overlay { opacity: 1; }
    .portfolio-overlay span {
      color: var(--c-light);
      font-weight: 700;
      font-size: 15px;
      border: 2px solid var(--c-light);
      padding: 10px 24px;
      border-radius: 50px;
    }
    .portfolio-info { padding: 20px; }
    .portfolio-badge {
      display: inline-block;
      background: rgba(20,139,171,0.1);
      color: var(--c-primary);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 3px 10px;
      border-radius: 50px;
      margin-bottom: 10px;
    }
    .portfolio-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
    .portfolio-info p { font-size: 13px; color: var(--c-muted); }
    .portfolio-cta { text-align: center; margin-top: 40px; }

    /* ════════════════════════════════════════
       9. TESTIMONIALS
    ════════════════════════════════════════ */
    #testimonials { background: var(--c-light); }
    .testimonials-header { text-align: center; margin-bottom: 56px; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: #f7f8fc;
      border-radius: 20px;
      padding: 36px;
      border: 1px solid #eef0f5;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .testimonial-card::before { content: '\201C'; position: absolute; top: 16px; right: 24px; font-size: 80px; line-height: 1; color: rgba(20,139,171,0.08); font-family: Georgia, serif; font-weight: 900; pointer-events: none; }
    .testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(0,0,0,0.09); }
    .stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; }
    .testimonial-quote { font-size: 15px; color: var(--c-text); line-height: 1.85; margin-bottom: 24px; font-style: italic; }
    .testimonial-author { display: flex; flex-direction: column; gap: 2px; }
    .author-name { font-weight: 700; font-size: 15px; }
    .author-role { font-size: 13px; color: var(--c-muted); }

    /* ════════════════════════════════════════
       10. PRICING
    ════════════════════════════════════════ */
    #pricing { background: var(--c-light); }
    .pricing-header { text-align: center; margin-bottom: 56px; }
    .pricing-category { margin-bottom: 56px; }
    .pricing-category-title {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--c-primary);
      margin-bottom: 24px;
      text-align: center;
    }
    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .pricing-card {
      background: var(--c-light);
      border: 2px solid #e5e7eb;
      border-radius: 16px;
      padding: 32px;
      position: relative;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(20,139,171,0.1); }
    .pricing-card.popular { border-color: var(--c-primary); }
    .popular-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--c-primary);
      color: var(--c-light);
      font-size: 12px;
      font-weight: 700;
      padding: 4px 16px;
      border-radius: 50px;
      white-space: nowrap;
    }
    .pricing-tier { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-muted); margin-bottom: 8px; }
    .pricing-price { font-size: 36px; font-weight: 800; color: var(--c-dark); margin-bottom: 4px; line-height: 1; }
    .pricing-price span { font-size: 14px; font-weight: 400; color: var(--c-muted); }
    .pricing-desc { font-size: 14px; color: var(--c-muted); margin: 12px 0 20px; line-height: 1.6; }
    .pricing-features { list-style: none; margin-bottom: 28px; }
    .pricing-features li {
      font-size: 14px;
      padding: 7px 0;
      border-bottom: 1px solid #f3f4f6;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--c-text);
    }
    .pricing-features li:last-child { border-bottom: none; }
    .pricing-features li::before {
      content: '✓';
      color: var(--c-primary);
      font-weight: 700;
      flex-shrink: 0;
    }
    .pricing-card .btn { width: 100%; justify-content: center; }
    .pricing-note {
      text-align: center;
      font-size: 14px;
      color: var(--c-muted);
      margin-bottom: 40px;
    }
    .pricing-cta { text-align: center; }

    /* ════════════════════════════════════════
       11. CONTACT
    ════════════════════════════════════════ */
    #contact { background: var(--c-grey); }
    .contact-header { text-align: center; margin-bottom: 56px; }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 40px;
    }
    .contact-form-wrap {
      background: var(--c-light);
      border-radius: 16px;
      padding: 48px;
      border: 1px solid #e5e7eb;
    }
    .contact-form-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
    .contact-form-wrap p { color: var(--c-muted); font-size: 14px; margin-bottom: 28px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-group label { font-size: 14px; font-weight: 600; color: var(--c-text); }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 13px 16px;
      border: 2px solid #e5e7eb;
      border-radius: var(--radius);
      font-family: inherit;
      font-size: 15px;
      color: var(--c-text);
      background: var(--c-light);
      transition: border-color var(--transition);
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--c-primary); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
    .contact-info {
      background: var(--c-dark);
      border-radius: 16px;
      padding: 48px;
      color: var(--c-light);
    }
    .contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
    .contact-info > p { color: #9ca3af; font-size: 14px; margin-bottom: 32px; line-height: 1.7; }
    .contact-items { display: flex; flex-direction: column; gap: 24px; }
    .contact-item { display: flex; align-items: flex-start; gap: 16px; }
    .contact-item-icon {
      width: 44px; height: 44px;
      background: rgba(20,139,171,0.15);
      border: 1px solid rgba(20,139,171,0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-item-icon svg { width: 20px; height: 20px; stroke: var(--c-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .contact-item-text { display: flex; flex-direction: column; gap: 2px; }
    .contact-item-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #6b7280; }
    .contact-item-value { font-size: 15px; font-weight: 600; color: var(--c-light); line-height: 1.5; }

    /* ════════════════════════════════════════
       12. FOOTER
    ════════════════════════════════════════ */
    footer {
      background: var(--c-dark);
      color: #9ca3af;
      padding: 64px 0 32px;
    }
    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      gap: 48px;
      flex-wrap: wrap;
    }
    .footer-brand { max-width: 300px; }
    .footer-logo { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
    .footer-logo .nk { color: var(--c-primary); }
    .footer-logo .ds { color: var(--c-light); }
    .footer-tagline { font-size: 14px; color: #6b7280; line-height: 1.6; }
    .footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
    .footer-col h4 { font-size: 14px; font-weight: 700; color: var(--c-light); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: 14px; color: #9ca3af; transition: color var(--transition); }
    .footer-col a:hover { color: var(--c-primary); }
    .footer-col address { font-style: normal; display: flex; flex-direction: column; gap: 10px; }
    .footer-col address span { font-size: 14px; }
    .footer-bottom {
      padding-top: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-copy { font-size: 13px; color: #6b7280; }
    .footer-copy a { color: #6b7280; transition: color var(--transition); }
    .footer-copy a:hover { color: var(--c-primary); }
    .social-icons { display: flex; gap: 12px; }
    .social-icon {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition), border-color var(--transition);
    }
    .social-icon:hover { background: rgba(20,139,171,0.2); border-color: var(--c-primary); }
    .social-icon svg { width: 16px; height: 16px; fill: #9ca3af; transition: fill var(--transition); }
    .social-icon:hover svg { fill: var(--c-primary); }

    /* ════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .services-cards { grid-template-columns: 1fr 1fr; }
      .pricing-cards { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
      .process-steps::before { display: none; }
      .contact-grid { grid-template-columns: 1fr; }
      .contact-info { order: -1; }
      .tab-top { grid-template-columns: 1fr; gap: 24px; }
      .footer-top { flex-direction: column; }
    }
    @media (max-width: 768px) {
      :root { --section-pad: 48px; }
      .nav-center, .nav-phone { display: none; }
      .hamburger { display: flex; }
      .nav-cta.desktop-only { display: none; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid .stat-item:last-child { grid-column: span 2; }
      .services-cards { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 28px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .pricing-cards { grid-template-columns: 1fr; }
      .portfolio-grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .contact-form-wrap { padding: 28px 20px; }
      .contact-info { padding: 28px 20px; }
      .tab-content { padding: 24px 20px; }
      .tab-services-grid { grid-template-columns: 1fr; }
      .footer-links { flex-direction: column; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      .portfolio-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .hero-btns .btn { width: 100%; justify-content: center; }
    }

/* ============================================================
   2026 REDESIGN — shared header/footer + new homepage
   Appended after the original design system so its rules win the
   cascade (new fonts/colours/nav/footer everywhere); classes that
   don't collide with the block above (.page-hero, .service-detail-*,
   .cta-band, etc.) are untouched and still style the inner pages.
   ============================================================ */
:root {
  --ink: #07111f;
  --ink-2: #102136;
  --blue: #2367ff;
  --cyan: #2dd4bf;
  --violet: #8b5cf6;
  --paper: #f7f9fc;
  --white: #ffffff;
  --muted: #667085;
  --line: rgba(7, 17, 31, .10);
  --shadow: 0 20px 70px rgba(10, 30, 60, .12);
  --radius: 24px;
}

body { font-family: "DM Sans", sans-serif; overflow-x: hidden; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 0; }
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 10px; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.08; margin: 0; letter-spacing: -.04em; }
h1 { font-size: clamp(3.15rem, 7vw, 6.75rem); }
h2 { font-size: clamp(2.25rem, 4.7vw, 4.5rem); }
h3 { font-size: 1.3rem; letter-spacing: -.025em; }
.lead { color: #506174; font-size: clamp(1.05rem, 1.7vw, 1.28rem); max-width: 650px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 14px 35px rgba(35,103,255,.25); }
.btn-primary:hover { background: #1357ea; }
.btn-secondary { background: rgba(255,255,255,.72); border-color: var(--line); backdrop-filter: blur(10px); }
.btn-dark { background: var(--ink); color: white; }

/* ── Nav ── */
.nav-wrap { position: fixed; z-index: 50; top: 16px; left: 0; right: 0; }
.nav-wrap nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 14px 0 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(7,17,31,.08);
  box-shadow: 0 10px 40px rgba(5,20,40,.08);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  position: relative;
}
.nav-wrap .logo { display:flex; align-items:center; gap:12px; font-family:"Manrope"; font-weight:800; letter-spacing:-.04em; }
.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 8px 20px rgba(35,103,255,.25);
}
.nav-links { display:flex; gap:30px; align-items:center; font-size:.94rem; font-weight:600; }
.nav-links a:not(.btn):hover { color: var(--blue); }
.menu-btn { display:none; border:0; background:transparent; font-size:1.4rem; cursor: pointer; }

/* ── Hero ── */
.hero {
  min-height: 920px;
  padding: 185px 0 85px;
  position: relative;
  background:
    radial-gradient(circle at 10% 10%, rgba(45,212,191,.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(139,92,246,.16), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f4f7fb 100%);
  isolation: isolate;
}
.hero::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:.35;
  background-image: linear-gradient(rgba(7,17,31,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(7,17,31,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap:70px; align-items:center; }
.hero-copy h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--violet), #1da99a);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-copy .lead { margin-top:28px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:34px; }
.micro-proof { display:flex; align-items:center; gap:14px; margin-top:30px; color:#506174; font-size:.92rem; }
.avatars { display:flex; }
.avatar { width:35px; height:35px; border-radius:50%; border:3px solid white; margin-left:-8px; background:linear-gradient(135deg,#dbeafe,#ddd6fe); }
.avatar:first-child { margin-left:0; }
.hero .stars, .quote .stars, .review-side .stars { color:#ffb21a; letter-spacing:2px; }

.visual { min-height: 560px; position:relative; display:grid; place-items:center; }
.browser {
  width:min(100%, 555px);
  border:1px solid rgba(7,17,31,.12);
  background:rgba(255,255,255,.92);
  border-radius:24px;
  box-shadow: var(--shadow);
  overflow:hidden;
  transform: rotate(2deg);
}
.browser-top { height:44px; padding:0 16px; display:flex; align-items:center; gap:7px; border-bottom:1px solid var(--line); }
.browser .dot { width:9px; height:9px; border-radius:50%; background:#d7dce5; }
.browser-body { padding:22px; }
.mock-hero {
  height:205px;
  border-radius:18px;
  padding:28px;
  color:white;
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(45,212,191,.55), transparent 30%),
    linear-gradient(135deg,#0b1c35,#2f61e8 70%,#743dd8);
}
.mock-kicker { font-size:.62rem; text-transform:uppercase; letter-spacing:.12em; opacity:.7; }
.mock-title { font:800 2.25rem/1 "Manrope"; width:78%; margin-top:15px; letter-spacing:-.06em; }
.mock-btn { margin-top:22px; display:inline-block; padding:8px 14px; background:white; color:#16233a; border-radius:99px; font-size:.67rem; font-weight:700; }
.mock-row { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:14px; }
.mock-card { height:110px; border-radius:15px; border:1px solid var(--line); background:#fafbfe; padding:14px; }
.mock-icon { width:28px; height:28px; border-radius:9px; background:linear-gradient(135deg,#dbeafe,#ddd6fe); }
.mock-line { width:70%; height:7px; background:#dfe5ed; border-radius:5px; margin-top:14px; }
.mock-line.small { width:45%; margin-top:8px; }

.float-card {
  position:absolute;
  padding:16px 18px;
  border:1px solid rgba(7,17,31,.1);
  background:rgba(255,255,255,.88);
  border-radius:18px;
  box-shadow:0 16px 44px rgba(8,30,60,.12);
  backdrop-filter:blur(12px);
}
.float-card strong { display:block; font:800 1.25rem "Manrope"; }
.float-card small { color:var(--muted); }
.fc-1 { left:-15px; top:85px; }
.fc-2 { right:-15px; bottom:60px; }
.pulse { width:10px; height:10px; display:inline-block; border-radius:50%; background:#19ba8b; box-shadow:0 0 0 6px rgba(25,186,139,.12); margin-right:8px; }

/* ── Trust strip ── */
.trust { margin-top:-42px; position:relative; z-index:4; }
.trust-inner {
  display:grid;
  grid-template-columns:1.25fr repeat(4,1fr);
  gap:18px;
  align-items:center;
  padding:30px 34px;
  background:white;
  border-radius:22px;
  border:1px solid var(--line);
  box-shadow:0 20px 55px rgba(7,17,31,.08);
}
.trust-label { font-weight:700; }
.trust-name { color:#8b96a5; font:700 .9rem "Manrope"; text-align:center; letter-spacing:.08em; text-transform:uppercase; }

.redesign section { padding:115px 0; }
.section-head { display:flex; justify-content:space-between; gap:50px; align-items:end; margin-bottom:54px; }
.section-head .lead { max-width:470px; }

/* ── Services ── */
.services { background:white; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-grid .service-card {
  min-height:370px;
  border-radius:var(--radius);
  padding:30px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,#f9fbfe);
  transition:.3s ease;
  position:relative;
  overflow:hidden;
}
.service-grid .service-card:hover { transform:translateY(-8px); box-shadow:var(--shadow); border-color:transparent; }
.service-grid .service-icon { width:54px; height:54px; border-radius:16px; display:grid; place-items:center; font-size:1.35rem; background:#edf4ff; margin-bottom:70px; }
.service-grid .service-card:nth-child(2) .service-icon { background:#eeebff; }
.service-grid .service-card:nth-child(3) .service-icon { background:#e9fbf7; }
.service-grid .service-card p { color:var(--muted); margin-top:14px; }
.service-grid .service-link { position:absolute; bottom:28px; left:30px; font-weight:700; color:var(--blue); }

/* ── Work ── */
.work { background:var(--paper); }
.project-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:22px; }
.project {
  min-height:500px;
  border-radius:28px;
  overflow:hidden;
  padding:32px;
  position:relative;
  color:white;
  display:flex;
  align-items:flex-end;
  background:linear-gradient(145deg,#0a1730,#235ee8);
}
.project:nth-child(2) { background:linear-gradient(145deg,#2a113d,#9257dc); }
.project::before {
  content:"";
  position:absolute;
  width:68%;
  aspect-ratio:4/3;
  right:-9%;
  top:10%;
  border-radius:24px;
  transform:rotate(-5deg);
  background:rgba(255,255,255,.94);
  box-shadow:0 25px 50px rgba(0,0,0,.18);
}
.project::after {
  content:"";
  position:absolute;
  width:48%;
  aspect-ratio:4/3;
  right:18%;
  top:24%;
  border-radius:18px;
  transform:rotate(5deg);
  background:linear-gradient(135deg,rgba(45,212,191,.85),rgba(255,255,255,.9));
  box-shadow:0 20px 45px rgba(0,0,0,.18);
}
.project-content { position:relative; z-index:3; }
.project .tag { display:inline-flex; padding:7px 11px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.23); border-radius:999px; font-size:.72rem; font-weight:700; margin-bottom:14px; backdrop-filter:blur(8px); }
.project h3 { font-size:2rem; }
.project p { max-width:390px; color:rgba(255,255,255,.78); margin-top:10px; }

/* ── Process ── */
.process-grid { display:grid; grid-template-columns:.78fr 1.22fr; gap:80px; }
.process-grid .sticky { position:sticky; top:130px; align-self:start; }
.process-grid .steps { border-top:1px solid var(--line); }
.process-grid .step { display:grid; grid-template-columns:70px 1fr; gap:20px; padding:34px 0; border-bottom:1px solid var(--line); }
.process-grid .number { font:800 1rem "Manrope"; color:var(--blue); }
.process-grid .step p { color:var(--muted); margin-top:8px; }

/* ── Results / stats ── */
.results { background:var(--ink); color:white; }
.results .eyebrow { color:#6ee7d8; }
.results .lead { color:#aeb9c7; }
.results .stats { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:50px; }
.results .stat { padding:28px; border-radius:20px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); }
.results .stat strong { display:block; font:800 clamp(2.1rem,4vw,3.7rem) "Manrope"; letter-spacing:-.06em; }
.results .stat span { color:#aeb9c7; font-size:.9rem; }

/* ── Testimonial ── */
.testimonial-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:20px; }
.quote {
  min-height:390px;
  padding:42px;
  border-radius:28px;
  background:#f2f6ff;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.quote blockquote { margin:0; font:700 clamp(1.55rem,3vw,2.5rem)/1.28 "Manrope"; letter-spacing:-.04em; }
.quote .person { display:flex; align-items:center; gap:14px; margin-top:30px; }
.person-pic { width:50px; height:50px; border-radius:50%; background:linear-gradient(135deg,#bcd2ff,#d6c7ff); }
.review-side { border-radius:28px; padding:40px; color:white; background:linear-gradient(150deg,#2367ff,#6544ce); display:flex; flex-direction:column; justify-content:space-between; }
.review-side .big { font:800 5rem/1 "Manrope"; letter-spacing:-.07em; }
.review-side p { color:rgba(255,255,255,.78); }

/* ── CTA ── */
.redesign-cta { padding-top:30px; padding-bottom:100px; }
.cta-box {
  position:relative;
  overflow:hidden;
  border-radius:32px;
  padding:70px;
  color:white;
  background:
    radial-gradient(circle at 80% 20%,rgba(45,212,191,.32),transparent 25%),
    linear-gradient(135deg,#07111f,#173866 70%,#244ab0);
}
.cta-box h2 { max-width:800px; }
.cta-box p { margin-top:20px; color:#c5d0dc; max-width:620px; }
.cta-box .btn { margin-top:32px; background:white; color:var(--ink); }

/* ── Footer (new) ── */
footer[role="contentinfo"] { background: var(--white); color: var(--ink); padding:55px 0 30px; border-top:1px solid var(--line); }
.footer-grid { display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:45px; }
footer[role="contentinfo"] h4 { font-family:"Manrope"; margin:0 0 14px; }
footer[role="contentinfo"] a, footer[role="contentinfo"] p { display:block; color:var(--muted); margin:8px 0; }
.copyright { border-top:1px solid var(--line); margin-top:45px; padding-top:24px; display:flex; justify-content:space-between; color:var(--muted); font-size:.86rem; }
.copyright a { color: var(--muted); }
.copyright a:hover { color: var(--blue); }

@media (max-width: 900px) {
  .nav-links { display:none; }
  .menu-btn { display:block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: calc(100% + 12px);
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 55px rgba(7,17,31,.15);
  }
  .hero { min-height:auto; padding-top:145px; }
  .hero-grid, .project-grid, .process-grid, .testimonial-grid { grid-template-columns:1fr; }
  .hero-grid { gap:40px; }
  .visual { min-height:480px; }
  .trust-inner { grid-template-columns:repeat(2,1fr); }
  .trust-label { grid-column:1/-1; text-align:center; }
  .service-grid { grid-template-columns:1fr; }
  .section-head { align-items:start; flex-direction:column; gap:20px; }
  .results .stats { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .process-grid .sticky { position:static; }
}

@media (max-width: 600px) {
  .redesign .container { width:min(100% - 24px,1180px); }
  .nav-wrap nav { min-height:62px; }
  .nav-wrap { top:9px; }
  .hero { padding-top:125px; padding-bottom:60px; }
  .hero h1 { font-size:3.05rem; }
  .visual { min-height:390px; }
  .float-card { padding:12px 14px; }
  .fc-1 { top:30px; left:-2px; }
  .fc-2 { right:-2px; bottom:15px; }
  .mock-title { font-size:1.75rem; }
  .mock-row { grid-template-columns:1fr 1fr; }
  .mock-card:last-child { display:none; }
  .trust-inner { padding:24px; }
  .trust-name { font-size:.72rem; }
  .project { min-height:430px; }
  .results .stats { grid-template-columns:1fr 1fr; }
  .results .stat { padding:22px; }
  .cta-box { padding:45px 26px; }
  .footer-grid { grid-template-columns:1fr; }
  .copyright { flex-direction:column; gap:10px; }
}

/* ============================================================
   ABOUT PAGE (template-about.php)
   Scoped under .about-redesign — this page reuses class names from
   the homepage block above (.hero, .hero-grid, .process-grid,
   .stats-grid/.stat, .values-grid, .stars…) with different values,
   so everything here is namespaced to avoid overriding the
   homepage's own rules for the same class names.
   ============================================================ */
:root { --blue-dark: #1357ea; --teal: #2dd4bf; }
.btn-light { color: var(--ink); background: rgba(255,255,255,.92); border-color: rgba(255,255,255,.32); }

.about-redesign .hero {
  min-height: auto; /* neutralises the homepage's bare .hero{min-height:920px} */
  position: relative;
  isolation: isolate;
  padding: 190px 0 105px;
  background:
    radial-gradient(circle at 10% 15%, rgba(45,212,191,.16), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(139,92,246,.16), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f2f5fa 100%);
}
.about-redesign .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .3;
  background-image: linear-gradient(rgba(7,17,31,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(7,17,31,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
}
.about-redesign .hero-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:80px; align-items:center; }
.about-redesign .hero h1 { margin-top:20px; font-size:clamp(3rem,7vw,6.6rem); }
.about-redesign .hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--violet), #14a99a);
  background-clip: text;
  -webkit-background-clip: text;
}
.about-redesign .hero .lead { margin-top:28px; }
.about-redesign .hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:34px; }
.about-redesign .hero-visual { position:relative; min-height:540px; }
.about-redesign .main-visual {
  position: absolute;
  inset: 25px 0 0 40px;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(7,17,31,.06), rgba(7,17,31,.28)), url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1200&q=85") center/cover;
  box-shadow: 0 24px 70px rgba(12,32,67,.12);
}
.about-redesign .visual-card {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(7,17,31,.09);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 42px rgba(8,30,60,.12);
  backdrop-filter: blur(14px);
}
.about-redesign .visual-card strong { display:block; font:800 1.35rem "Manrope",sans-serif; letter-spacing:-.04em; }
.about-redesign .visual-card small { color:var(--muted); }
.about-redesign .card-one { top:0; left:0; }
.about-redesign .card-two { right:-15px; bottom:20px; }

.about-redesign section { padding:115px 0; }
.about-redesign .section-head { display:flex; justify-content:space-between; align-items:end; gap:50px; margin-bottom:55px; }
.about-redesign .section-head h2 { max-width:780px; margin-top:15px; font-size:clamp(2.3rem,5vw,4.7rem); }

.about-redesign .story-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.about-redesign .story-image {
  min-height: 590px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, transparent, rgba(7,17,31,.18)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1100&q=85") center/cover;
  box-shadow: 0 24px 70px rgba(12,32,67,.12);
}
.about-redesign .story-copy h2 { margin-top:15px; font-size:clamp(2.3rem,5vw,4.4rem); }
.about-redesign .story-copy p { margin-top:22px; color:var(--muted); font-size:1.05rem; }
.about-redesign .story-highlight { margin-top:28px; padding:24px; border-left:4px solid var(--blue); border-radius:0 18px 18px 0; background:var(--paper); font:700 1.2rem/1.45 "Manrope",sans-serif; }

.about-redesign .stats-section { color:#fff; background:var(--ink); }
.about-redesign .stats-section .eyebrow { color:#6ee7d8; }
.about-redesign .stats-section .lead { color:#b3becb; }
.about-redesign .stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:55px; text-align:left; }
.about-redesign .stats-grid .stat { padding:30px; border:1px solid rgba(255,255,255,.1); border-radius:22px; background:rgba(255,255,255,.05); }
.about-redesign .stats-grid .stat strong { display:block; font:800 clamp(2.2rem,4.5vw,4.2rem) "Manrope",sans-serif; letter-spacing:-.07em; }
.about-redesign .stats-grid .stat span { color:#b3becb; }

.about-redesign .difference { background:var(--paper); }
.about-redesign .difference-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.about-redesign .difference-card { min-height:320px; padding:32px; border:1px solid var(--line); border-radius:26px; background:#fff; transition:.3s ease; }
.about-redesign .difference-card:hover { transform:translateY(-8px); border-color:transparent; box-shadow:0 24px 70px rgba(12,32,67,.12); }
.about-redesign .difference-icon { width:58px; height:58px; display:grid; place-items:center; margin-bottom:75px; border-radius:17px; color:var(--blue); background:#eaf1ff; font-size:1.4rem; font-weight:800; }
.about-redesign .difference-card:nth-child(2) .difference-icon { color:var(--violet); background:#f0ebff; }
.about-redesign .difference-card:nth-child(3) .difference-icon { color:#0b9f8e; background:#e6faf6; }
.about-redesign .difference-card p { margin-top:14px; color:var(--muted); }

.about-redesign .values-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:80px; }
.about-redesign .values-intro { position:sticky; top:130px; align-self:start; }
.about-redesign .values-intro h2 { margin-top:15px; font-size:clamp(2.3rem,5vw,4.3rem); }
.about-redesign .value-list { border-top:1px solid var(--line); }
.about-redesign .value-item { display:grid; grid-template-columns:72px 1fr; gap:20px; padding:34px 0; border-bottom:1px solid var(--line); }
.about-redesign .value-number { color:var(--blue); font:800 1rem "Manrope",sans-serif; }
.about-redesign .value-item p { margin-top:8px; color:var(--muted); }

.about-redesign .process { background:var(--paper); }
.about-redesign .process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.about-redesign .process-step { text-align:left; position:static; padding:28px; border:1px solid var(--line); border-radius:22px; background:#fff; }
.about-redesign .process-step h3 { font-size:1.3rem; margin-bottom:0; }
.about-redesign .process-step .number { margin-bottom:60px; color:var(--blue); font:800 .9rem "Manrope",sans-serif; }
.about-redesign .process-step p { margin-top:12px; font-size:1rem; line-height:1.65; color:var(--muted); }
.about-redesign .industries-grid { display:flex; flex-wrap:wrap; gap:12px; }
.about-redesign .industry { padding:13px 18px; border:1px solid var(--line); border-radius:999px; background:#fff; font-weight:700; }

.about-redesign .testimonial { color:#fff; background: radial-gradient(circle at 80% 20%, rgba(45,212,191,.28), transparent 25%), linear-gradient(135deg,#07111f,#173866 70%,#244ab0); }
.about-redesign .testimonial-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:70px; align-items:center; }
.about-redesign blockquote { margin:0; font:700 clamp(1.7rem,3.5vw,3.2rem)/1.25 "Manrope",sans-serif; letter-spacing:-.04em; }
.about-redesign .testimonial-author { display:block; margin-top:28px; color:#c8d3de; }
.about-redesign .rating-card { padding:42px; border:1px solid rgba(255,255,255,.12); border-radius:28px; background:rgba(255,255,255,.08); backdrop-filter:blur(12px); }
.about-redesign .rating-card strong { display:block; font:800 5rem/1 "Manrope",sans-serif; letter-spacing:-.08em; }
.about-redesign .rating-card .stars { margin-top:10px; margin-bottom:0; font-size:1rem; color:#ffb21a; letter-spacing:4px; }
.about-redesign .rating-card p { margin-top:24px; color:#c8d3de; }

.about-redesign .cta { padding-top:35px; padding-bottom:100px; }

@media (max-width: 980px) {
  .about-redesign .hero-grid,
  .about-redesign .story-grid,
  .about-redesign .values-grid,
  .about-redesign .testimonial-grid { grid-template-columns:1fr; gap:50px; }
  .about-redesign .hero-visual { min-height:470px; }
  .about-redesign .section-head { align-items:start; flex-direction:column; gap:20px; }
  .about-redesign .stats-grid,
  .about-redesign .process-grid { grid-template-columns:repeat(2,1fr); }
  .about-redesign .difference-grid { grid-template-columns:1fr; }
  .about-redesign .values-intro { position:static; }
}
@media (max-width: 640px) {
  .about-redesign .hero { padding:130px 0 75px; }
  .about-redesign .hero h1 { font-size:3.1rem; }
  .about-redesign .hero-visual { min-height:370px; }
  .about-redesign .main-visual { inset:30px 5px 0 15px; }
  .about-redesign .visual-card { max-width:175px; padding:13px 15px; }
  .about-redesign .card-two { right:0; }
  .about-redesign section { padding:80px 0; }
  .about-redesign .story-image { min-height:430px; }
  .about-redesign .stats-grid,
  .about-redesign .process-grid { grid-template-columns:1fr 1fr; }
  .about-redesign .stats-grid .stat,
  .about-redesign .process-step { padding:22px; }
  .about-redesign .process-step .number { margin-bottom:35px; }
}
@media (max-width: 460px) {
  .about-redesign .stats-grid,
  .about-redesign .process-grid { grid-template-columns:1fr; }
  .about-redesign .hero-actions { align-items:stretch; flex-direction:column; }
  .about-redesign .hero-actions .btn { width:100%; }
}

/* ============================================================
   SITE-WIDE INNER-PAGE REFRESH
   These selectors (.page-hero, .service-intro-*, .service-detail-*,
   .cta-band, .results-bar, .faq-*, .portfolio-*, .contact-*, .form-*)
   already existed and are already used consistently across all 21
   service templates, the 3 service hubs, the portfolio page and the
   contact page — restyling them here brings the whole remaining site
   in line with the homepage/about redesign without rewriting every
   template's markup. Appended last so these declarations win over
   the originals for the properties they touch.
   ============================================================ */

/* ── Inner-page hero banner ── */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 190px 0 90px;
  background:
    radial-gradient(circle at 10% 15%, rgba(45,212,191,.16), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(139,92,246,.16), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f2f5fa 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .3;
  background-image: linear-gradient(rgba(7,17,31,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(7,17,31,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
}
.page-hero::after { content: none; }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.page-hero-breadcrumb a { color: var(--blue); transition: color .2s ease; }
.page-hero-breadcrumb a:hover { color: var(--blue-dark); }
.page-hero-breadcrumb .bc-sep { color: rgba(7,17,31,.22); }
.page-hero-breadcrumb .bc-current { color: var(--muted); font-weight: 600; }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); color: var(--ink); margin-bottom: 20px; }
.page-hero p { font-size: 1.1rem; color: var(--muted); max-width: 580px; line-height: 1.7; margin-bottom: 32px; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Service intro split (text + highlight box) ── */
.service-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.service-intro-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.service-intro-text p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 12px; }
.service-intro-bullets { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.service-intro-bullets li { font-size: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink); }
.service-intro-bullets li::before { content: ''; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
.service-intro-box { background: var(--paper); border-radius: var(--radius); padding: 36px; border-left: 4px solid var(--blue); }
.service-intro-box h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-intro-box p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

/* ── Service feature cards ── */
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: .3s ease; }
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; background: #fff; }
.sdc-icon { width: 52px; height: 52px; background: #eaf1ff; border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.sdc-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-detail-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-detail-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.service-detail-card ul { list-style: none; }
.service-detail-card ul li { font-size: 14px; padding: 3px 0; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.service-detail-card ul li::before { content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

/* ── Results bar (service hubs) ── */
.results-bar { background: var(--ink); padding: 60px 0; }
.results-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.rb-number { font: 800 clamp(1.9rem, 4vw, 3rem) "Manrope", sans-serif; color: #fff; line-height: 1; display: block; margin-bottom: 6px; letter-spacing: -.05em; }
.rb-label { font-size: 14px; color: #aeb9c7; font-weight: 600; }

/* ── CTA band ── */
.cta-band {
  padding: 80px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(45,212,191,.32), transparent 25%),
    linear-gradient(135deg, #07111f, #173866 70%, #244ab0);
}
.cta-band-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-band p { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 36px; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ accordion ── */
.faq-list { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-family: "Manrope", sans-serif; color: var(--ink); }
.faq-question:hover { background: var(--paper); }
.faq-question.open { color: var(--blue); background: #eaf1ff; }
.faq-chevron { stroke: currentColor; }
.faq-answer-inner { color: var(--muted); }

/* ── Portfolio grid ── */
.portfolio-item { border-radius: var(--radius); border-color: var(--line); }
.portfolio-item:hover { box-shadow: var(--shadow); }
.portfolio-overlay { background: rgba(35,103,255,.85); }
.portfolio-badge { background: #eaf1ff; color: var(--blue); }
.filter-btn.active, .filter-btn:hover { background: var(--blue); border-color: var(--blue); }

/* ── Contact form + info panel ── */
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; }
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-group label { color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea { border: 2px solid var(--line); border-radius: 14px; color: var(--ink); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-submit { min-height: 56px; }
.contact-info {
  background: linear-gradient(135deg, #07111f, #173866 70%, #244ab0);
  border-radius: var(--radius);
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-item-icon { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.16); }
.contact-item-icon svg { stroke: var(--teal); }
.contact-item-value { color: #fff; }

/* Re-assert the original responsive collapse for the properties this
   refresh redeclared unconditionally above (.page-hero padding,
   .service-intro-grid/.service-detail-grid/.results-bar-grid
   grid-template-columns) — must stay last in the file so it still
   wins the cascade at these breakpoints against the unconditional
   redeclarations further up. */
@media (max-width: 1024px) {
  .service-detail-grid { grid-template-columns: 1fr 1fr; }
  .results-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .service-intro-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 100px 0 56px; }
  .page-hero p { font-size: 16px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .results-bar-grid { grid-template-columns: 1fr 1fr; }
  .service-intro-box { padding: 24px; }
  .contact-form-wrap { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .page-hero { padding: 90px 0 44px; }
  .results-bar-grid { grid-template-columns: 1fr; }
  .service-intro-box { padding: 20px; }
  .service-detail-card { padding: 20px; }
}
