/* =========================================================
   TEKHNOLOGIA INNOVATIONS — Global Stylesheet
   Blue-accent, light/white theme, clean & professional
   Font: Plus Jakarta Sans (display) + Nunito (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ─────────────────────────────── */
:root {
  --blue-900: #0A1F44;
  --blue-800: #0D2B5E;
  --blue-700: #1040A0;
  --blue-600: #1252CC;
  --blue-500: #1A6BFF;
  --blue-400: #4D8FFF;
  --blue-300: #80AFFF;
  --blue-100: #E6EEFF;
  --blue-50:  #F0F5FF;

  --white:    #FFFFFF;
  --grey-50:  #F8FAFC;
  --grey-100: #F1F5F9;
  --grey-200: #E2E8F0;
  --grey-300: #CBD5E1;
  --grey-400: #94A3B8;
  --grey-600: #475569;
  --grey-800: #1E293B;
  --grey-900: #0F172A;

  --accent-teal:   #0ABFBC;
  --accent-green:  #10B981;
  --accent-orange: #F59E0B;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(18,82,204,0.10), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 10px 40px rgba(18,82,204,0.14), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 20px 60px rgba(18,82,204,0.18);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 100px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--blue-100); color: var(--blue-700); }

/* ── UTILITIES ──────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-bg { background: var(--grey-50); }
.section-blue { background: var(--blue-900); color: var(--white); }

.text-blue   { color: var(--blue-600); }
.text-center { text-align: center; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.badge::before { content: ''; width: 6px; height: 6px; background: var(--blue-500); border-radius: 50%; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--grey-900);
  margin-bottom: 16px;
}
.section-title span { color: var(--blue-600); }
.section-title.light { color: var(--white); }
.section-title.light span { color: var(--blue-300); }

.section-sub {
  font-size: 16px;
  color: var(--grey-600);
  line-height: 1.75;
  max-width: 600px;
}
.section-sub.center { margin: 0 auto; text-align: center; }
.section-sub.light { color: var(--blue-200, #BDD0FF); }

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

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(18,82,204,0.35);
}
.btn-primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18,82,204,0.4); }

.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border: 2px solid var(--blue-200);
}
.btn-outline:hover { background: var(--blue-50); border-color: var(--blue-400); }

.btn-white {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-lg { font-size: 16px; padding: 16px 32px; }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 10000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-200);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: var(--nav-height);
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(18,82,204,0.3);
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 2; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 800;
  color: var(--grey-900);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--blue-600); }

.nav-menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 600;
  color: var(--grey-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--blue-600); background: var(--blue-50); }
.nav-link svg { width: 12px; height: 12px; transition: var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 14px;
  font-size: 13.5px; font-weight: 600;
  color: var(--grey-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown a:hover { color: var(--blue-600); background: var(--blue-50); }

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

/* ── LOGO IMAGE ─────────────────────────────────── */
.nav-logo-img {
  height: 56px;          /* increased from 44px */
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.footer-logo-img {
  height: 72px;          /* increased from 56px */
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  /* white-filter for dark footer — remove if logo already has white variant */
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 0;
}

/* ── HAMBURGER ───────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  padding: 8px; cursor: pointer;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
}
.hamburger:hover { background: var(--grey-100); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--grey-800);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}
/* Animated X state */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE TOP OFFSET ────────────────────────────── */
.page-offset { padding-top: var(--nav-height); }

/* ── HERO (index.html) ──────────────────────────── */
.hero {
  background: linear-gradient(155deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-600) 100%);
  min-height: calc(100vh - var(--nav-height));
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue-300);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px; border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--accent-teal); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800; line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--blue-300); }

.hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 36px; max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: var(--white);
}
.hero-stat span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* Hero visual card */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 36px;
  width: 100%;
  max-width: 400px;
}
.hero-card-title {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: rgba(255,255,255,0.9); margin-bottom: 20px;
}
.service-pill {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 13px 16px; margin-bottom: 10px;
  transition: var(--transition);
}
.service-pill:last-child { margin-bottom: 0; }
.service-pill:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.pill-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.pill-icon.blue   { background: rgba(26,107,255,0.25); }
.pill-icon.teal   { background: rgba(10,191,188,0.25); }
.pill-icon.green  { background: rgba(16,185,129,0.25); }
.pill-icon.orange { background: rgba(245,158,11,0.25); }
.pill-label { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.85); }

/* ── ABOUT STRIP ────────────────────────────────── */
.about-strip {
  background: var(--blue-600);
  padding: 18px 0;
}
.strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9);
}
.strip-item svg { width: 18px; height: 18px; stroke: var(--blue-300); fill: none; stroke-width: 2; }

/* ── ABOUT SECTION ──────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-box {
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  border: 1px solid var(--blue-200);
}
.about-skills { display: flex; flex-direction: column; gap: 16px; }
.skill-row { display: flex; flex-direction: column; gap: 6px; }
.skill-label {
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 700; color: var(--grey-700, var(--grey-800));
}
.skill-bar { height: 8px; background: var(--grey-200); border-radius: 100px; overflow: hidden; }
.skill-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.about-float-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-float-badge strong { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--blue-600); }
.about-float-badge span   { font-size: 12px; color: var(--grey-600); }

.about-content .section-sub { margin-bottom: 28px; }
.about-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.about-point {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 18px;
  background: var(--grey-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue-400);
}
.about-point-icon { font-size: 20px; flex-shrink: 0; }
.about-point p { font-size: 14px; color: var(--grey-600); }
.about-point strong { display: block; font-size: 15px; color: var(--grey-900); margin-bottom: 2px; }

/* ── BENEFITS ────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.benefit-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.benefit-num {
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; color: var(--blue-500);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 3px 10px; border-radius: var(--radius-full);
  display: inline-block; margin-bottom: 16px;
}
.benefit-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--grey-900); }
.benefit-card p { font-size: 14px; color: var(--grey-600); line-height: 1.7; }

/* ── SERVICES ─────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; gap: 20px;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-300); }
.service-card-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.service-card-body h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--grey-900); margin-bottom: 8px;
}
.service-card-body p { font-size: 14px; color: var(--grey-600); line-height: 1.7; margin-bottom: 14px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  font-size: 11px; font-weight: 700;
  background: var(--blue-50); color: var(--blue-600);
  border: 1px solid var(--blue-100);
  padding: 3px 10px; border-radius: var(--radius-full);
}

/* ── TEAM CARDS ──────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.team-card-top {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: 36px 24px 20px;
}
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-300));
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  color: var(--white);
  margin: 0 auto 12px;
}
.team-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); }
.team-role { font-size: 12px; color: var(--blue-300); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.team-card-body { padding: 20px 24px; }
.team-bio { font-size: 13.5px; color: var(--grey-600); line-height: 1.65; margin-bottom: 14px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.team-tag { font-size: 11px; font-weight: 600; background: var(--blue-50); color: var(--blue-600); border: 1px solid var(--blue-100); padding: 3px 10px; border-radius: var(--radius-full); }

/* ── PRODUCTS ─────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-300); }
.product-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border-color: var(--blue-700);
  color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.product-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--blue-50); color: var(--blue-600);
  border: 1px solid var(--blue-100);
  padding: 3px 12px; border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.product-card.featured .product-tag { background: rgba(255,255,255,0.1); color: var(--blue-300); border-color: rgba(255,255,255,0.15); }
.product-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.product-card.featured h3 { font-size: 26px; color: var(--white); }
.product-card > p { font-size: 14px; color: var(--grey-600); line-height: 1.7; margin-bottom: 20px; }
.product-card.featured > .product-body > p { color: rgba(255,255,255,0.75); }
.product-features { display: flex; flex-direction: column; gap: 8px; }
.pf {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--grey-600);
}
.product-card.featured .pf { color: rgba(255,255,255,0.8); }
.pf::before { content: '✓'; color: var(--accent-green); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.product-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.pv-bar { display: flex; align-items: center; gap: 10px; }
.pv-label { font-size: 12px; color: rgba(255,255,255,0.6); width: 80px; flex-shrink: 0; }
.pv-track { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.pv-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--blue-400), var(--accent-teal)); }
.pv-pct { font-size: 12px; font-weight: 700; color: var(--blue-300); width: 36px; text-align: right; }

/* ── PRICING ──────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: var(--transition);
}
.pricing-card.popular {
  background: var(--blue-600);
  border-color: var(--blue-600);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
  color: var(--white);
}
.pricing-card:hover:not(.popular) { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 8px; }
.pricing-card.popular .pricing-label { color: var(--blue-200); }
.pricing-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.pricing-price { margin-bottom: 24px; }
.pricing-price strong { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--blue-600); }
.pricing-card.popular .pricing-price strong { color: var(--white); }
.pricing-price span { font-size: 14px; color: var(--grey-400); }
.pricing-card.popular .pricing-price span { color: rgba(255,255,255,0.65); }
.pricing-divider { height: 1px; background: var(--grey-200); margin-bottom: 24px; }
.pricing-card.popular .pricing-divider { background: rgba(255,255,255,0.2); }
.pricing-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pi { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--grey-600); }
.pricing-card.popular .pi { color: rgba(255,255,255,0.85); }
.pi::before { content: '●'; color: var(--blue-400); font-size: 7px; flex-shrink: 0; }
.pricing-card.popular .pi::before { color: var(--blue-200); }
.pricing-popular-tag {
  display: inline-block; margin-bottom: 12px;
  background: rgba(255,255,255,0.15); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: var(--radius-full);
}

/* ── RECRUITMENT STEPS ───────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.step-num {
  width: 40px; height: 40px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  margin-bottom: 16px;
}
.step-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--grey-600); line-height: 1.65; }
.step-time { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--blue-600); background: var(--blue-50); padding: 3px 10px; border-radius: var(--radius-full); }

/* ── FAQ ─────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--blue-300); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--grey-800);
  user-select: none;
}
.faq-q svg { width: 18px; height: 18px; stroke: var(--blue-500); fill: none; stroke-width: 2.5; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--grey-600); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.contact-info p { font-size: 15px; color: var(--grey-600); line-height: 1.75; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px;
  background: var(--grey-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
}
.cd-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.cd-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--grey-900); margin-bottom: 2px; }
.cd-text p { font-size: 13px; color: var(--grey-600); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--grey-700, var(--grey-800)); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px; color: var(--grey-800);
  outline: none; transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(18,82,204,0.08);
}

/* ── MAP EMBED ───────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-md);
  margin-top: 52px;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 360px; border: none; display: block; }

.map-label {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: calc(100% - 40px);
  flex-wrap: wrap;
}
.map-label-icon { font-size: 24px; flex-shrink: 0; }
.map-label > div { flex: 1; min-width: 0; }
.map-label strong { display: block; font-size: 13px; font-weight: 700; color: var(--grey-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.map-label span   { font-size: 11px; color: var(--grey-500, var(--grey-600)); display: block; margin-top: 2px; }
.map-directions-btn {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 700;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.map-directions-btn:hover { background: var(--blue-100); }

/* ── CTA BANNER ──────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-xl);
}
.cta-banner h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-banner p  { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 480px; }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: 64px 0 56px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.page-hero .breadcrumb a { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.4); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.page-hero p  { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 560px; line-height: 1.7; }

/* ── TESTIMONIAL ─────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.tq-text { font-size: 15px; color: var(--grey-700, var(--grey-800)); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.tq-author { display: flex; align-items: center; gap: 12px; }
.tq-avatar {
  width: 44px; height: 44px;
  background: var(--blue-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--blue-700);
}
.tq-name { font-weight: 700; font-size: 14px; }
.tq-company { font-size: 12px; color: var(--grey-400); }

/* ── JOBS ────────────────────────────────────────── */
.jobs-grid { display: flex; flex-direction: column; gap: 14px; }
.job-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 24px;
  transition: var(--transition);
}
.job-card:hover { border-color: var(--blue-300); box-shadow: var(--shadow-md); transform: translateX(4px); }
.job-dept {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--blue-50); color: var(--blue-600);
  border: 1px solid var(--blue-100);
  padding: 4px 12px; border-radius: var(--radius-full);
  white-space: nowrap;
}
.job-info { flex: 1; }
.job-info h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.job-meta span { font-size: 13px; color: var(--grey-600); }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: var(--grey-900); color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 300px 1fr; gap: 64px; margin-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo-wrap { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--grey-400); line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; margin-top: auto; }
.footer-social {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.footer-social svg { width: 18px; height: 18px; display: block; }
.footer-social.linkedin  { background: #0A66C2; }
.footer-social.twitter   { background: #000000; }
.footer-social.facebook  { background: #1877F2; }
.footer-social.youtube   { background: #FF0000; }
.footer-social.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.footer-social:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.35); opacity: 0.92; }
.footer-nav-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.footer-nav-col strong { font-size: 13px; font-weight: 700; color: var(--white); display: block; margin-bottom: 14px; }
.footer-nav-col a { display: block; font-size: 13px; color: var(--grey-400); margin-bottom: 9px; transition: var(--transition); }
.footer-nav-col a:hover { color: var(--blue-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--grey-400); }
.footer-bottom a { color: var(--grey-400); font-size: 13px; margin-left: 20px; transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ── PDF UPLOAD ───────────────────────────────────── */
.pdf-upload-area {
  border: 2px dashed var(--grey-300);
  border-radius: var(--radius-md);
  background: var(--grey-50);
  transition: var(--transition);
  overflow: hidden;
}
.pdf-upload-area:hover { border-color: var(--blue-400); background: var(--blue-50); }
.pdf-upload-area.drag-over { border-color: var(--blue-500); background: var(--blue-50); }

.pdf-upload-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  cursor: pointer;
}
.pdf-upload-icon { font-size: 32px; line-height: 1; flex-shrink: 0; }
.pdf-upload-text strong {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--grey-800);
  margin-bottom: 3px;
}
.pdf-upload-text span { font-size: 12px; color: var(--grey-400); }

.pdf-file-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--blue-50);
  border-top: 1px solid var(--blue-100);
}
.pdf-file-icon { font-size: 22px; }
.pdf-file-name {
  flex: 1;
  font-size: 13px; font-weight: 600;
  color: var(--blue-700);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pdf-remove-btn {
  width: 26px; height: 26px;
  background: rgba(18,82,204,0.1);
  border: none; border-radius: 50%;
  color: var(--blue-600);
  font-size: 12px; font-weight: 700;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.pdf-remove-btn:hover { background: rgba(239,68,68,0.12); color: #EF4444; }

.pdf-upload-hint {
  font-size: 11px;
  color: var(--grey-400);
  margin-top: 6px;
  padding-left: 2px;
}

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }

  /* Hide desktop nav links + CTA on mobile */
  .nav-menu { display: none !important; }
  .nav-cta  { display: none !important; }

  /* Show hamburger */
  .hamburger { display: flex !important; }

  /* ── MOBILE MENU OPEN STATE ──────────────────────── */
  .nav-menu.open {
    /* Override the display:none !important above */
    display: flex !important;
    flex-direction: column;
    gap: 0;

    /* Full screen below navbar */
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));

    background: var(--white);
    padding: 12px 16px 40px;
    border-top: 2px solid var(--blue-100);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;

    /* Stack above everything */
    z-index: 9999;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);

    /* Smooth slide-down */
    animation: mobileMenuIn 0.25s ease both;
  }

  @keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Each list item takes full width */
  .nav-menu.open > .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--grey-100);
  }
  .nav-menu.open > .nav-item:last-child {
    border-bottom: none;
  }

  /* Nav links — large tap targets */
  .nav-menu.open .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 12px;
    border-radius: 0;
    color: var(--grey-900);
    background: transparent;
  }
  .nav-menu.open .nav-link:hover,
  .nav-menu.open .nav-link.active {
    color: var(--blue-600);
    background: var(--blue-50);
    border-radius: var(--radius-sm);
  }

  /* Keep chevron but rotate it */
  .nav-menu.open .nav-link svg {
    display: block;
    width: 14px; height: 14px;
    stroke: var(--grey-400);
    transform: rotate(-90deg);
  }

  /* Dropdown — always visible inline on mobile */
  .nav-menu.open .dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none;
    border-radius: 0;
    min-width: 0;
    background: var(--grey-50);
    padding: 4px 0 8px 0;
    margin: 0 0 4px 12px;
    border-left: 3px solid var(--blue-200);
  }
  .nav-menu.open .dropdown a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    color: var(--grey-600);
    border-radius: 0;
  }
  .nav-menu.open .dropdown a:hover {
    color: var(--blue-600);
    background: rgba(18,82,204,0.06);
  }

  /* Get Started button at the bottom of menu */
  .nav-menu.open::after {
    content: 'Get Started →';
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0;
    padding: 14px;
    background: var(--blue-600);
    color: white;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
  }
}
