/* ============================================
   EFFECTIT AB — SHARED DESIGN SYSTEM
   Premium Swedish B2B Digital Consultancy
   ============================================ */

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

/* ============ DESIGN TOKENS ============ */
:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-deeper: #1E3A8A;
  --blue-light: #EFF6FF;
  --blue-100: #DBEAFE;
  --navy: #0F1F48;
  --navy-mid: #0D1A3D;
  --navy-dark: #070E28;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F9FAFB;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #374151;
  --gray-900: #0F172A;
  --green: #059669;
  --green-light: #ECFDF5;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.18);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 999px;

  --transition: 200ms ease;
  --transition-slow: 350ms ease;

  --container: 1240px;
  --container-narrow: 780px;
}

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

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); letter-spacing: -0.01em; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { line-height: 1.75; }
.lead { font-size: 1.15rem; line-height: 1.75; color: var(--gray-500); font-weight: 400; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.78rem; }
.text-lg { font-size: 1.15rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-muted { color: var(--gray-400); }
.text-secondary { color: var(--gray-500); }
.text-white { color: var(--white); }
.text-blue { color: var(--blue); }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--navy); }
.section-dark-deeper { background: var(--navy-dark); }
.section-blue { background: var(--blue); }
.section-gray { background: var(--gray-100); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.items-center { align-items: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ============ SECTION HEADERS ============ */
.section-header { margin-bottom: 56px; }
.section-header.text-center { text-align: center; }
.section-header .eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; line-height: 1.75; max-width: 640px; }
.section-header.text-center p { margin: 0 auto; }
.section-header--light .eyebrow { color: rgba(255,255,255,0.65); }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.65); }

/* ============ LOGO ============ */
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  display: inline-flex;
  align-items: center;
}
.logo span { color: var(--blue); }
.logo-white { color: var(--white); }
.logo-white span { color: #60A5FA; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 12px 40px rgba(37,99,235,0.28);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--white);
  color: var(--gray-900);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding: 10px 0;
}
.btn-ghost:hover { opacity: 0.75; }
.btn-ghost svg { transition: transform var(--transition); }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============ BADGE / TAG ============ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--blue-light);
  color: var(--blue-deeper);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: var(--font-heading);
}
.badge-green { background: var(--green-light); color: var(--green); }
.badge-dark { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gray-900); background: var(--gray-100); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.dropdown-link:hover { background: var(--off-white); }
.dropdown-link-icon {
  width: 34px;
  height: 34px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.dropdown-link-icon svg { width: 16px; height: 16px; }
.dropdown-link-text { flex: 1; }
.dropdown-link-text strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-900); margin-bottom: 2px; }
.dropdown-link-text span { font-size: 0.78rem; color: var(--gray-500); line-height: 1.4; }

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

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============ HERO ============ */
.hero {
  background: var(--navy);
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: #93C5FD;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: #60A5FA; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero h1 .accent { color: #60A5FA; }
.hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-stat .label { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Hero visual panel */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 24px;
  backdrop-filter: blur(8px);
}
.hero-card h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.process-mini { display: flex; flex-direction: column; gap: 10px; }
.process-mini-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.process-mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.process-mini-dot.done { background: #34D399; }

/* ============ TRUST LOGOS ============ */
.trust-section { padding: 48px 0; border-bottom: 1px solid var(--gray-200); }
.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  text-align: center;
}
.logo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-item {
  height: 28px;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: opacity var(--transition);
}
.logo-item:hover { opacity: 0.6; }

/* ============ VALUE CARDS ============ */
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #60A5FA);
  opacity: 0;
  transition: opacity var(--transition);
}
.value-card:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.value-card:hover::before { opacity: 1; }
.value-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.value-card-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ============ SERVICE CARDS ============ */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon { background: var(--blue); color: var(--white); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.service-card .btn-ghost { margin-top: auto; font-size: 0.875rem; }

/* ============ PROCESS STEPS ============ */
.process-section {}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #93C5FD);
  opacity: 0.3;
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 20px;
  position: relative;
}
.step-number.dark {
  background: rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.3);
  color: #93C5FD;
}
.process-step h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--gray-900); }
.process-step p { font-size: 0.85rem; color: var(--gray-500); }
.process-step h4.white { color: var(--white); }
.process-step p.white { color: rgba(255,255,255,0.55); }

/* ============ CASE / PROJECT CARDS ============ */
.case-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
}
.case-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: transparent;
}
.case-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.case-card-image .image-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(37,99,235,0.3) 0%, transparent 60%),
                    radial-gradient(circle at 70% 70%, rgba(96,165,250,0.2) 0%, transparent 50%);
}
.case-card-image .case-icon { color: rgba(255,255,255,0.25); }
.case-card-image .case-icon svg { width: 56px; height: 56px; }
.case-card-body { padding: 28px; }
.case-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.case-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.case-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.case-outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}
.case-outcome svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all var(--transition-slow);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; font-size: 1.4rem; color: var(--blue); font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #60A5FA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--gray-900); }
.author-role { font-size: 0.8rem; color: var(--gray-500); }

/* ============ TEAM CARDS ============ */
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  transition: all var(--transition-slow);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
  transform: translateY(-2px);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 auto 16px;
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 100%);
  border-radius: var(--radius-2xl);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-banner .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-900);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); color: var(--blue); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ============ INDUSTRY CARDS ============ */
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-slow);
  text-decoration: none;
  display: block;
}
.industry-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.industry-card-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93C5FD;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.industry-card-icon svg { width: 24px; height: 24px; }
.industry-card:hover .industry-card-icon { background: var(--blue); color: var(--white); }
.industry-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.industry-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }

/* ============ FEATURE LIST ============ */
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.feature-check {
  width: 20px;
  height: 20px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-check svg { width: 12px; height: 12px; color: var(--green); }
.feature-list.white .feature-item { color: rgba(255,255,255,0.8); }
.feature-list.white .feature-check { background: rgba(52,211,153,0.15); }
.feature-list.white .feature-check svg { color: #34D399; }

/* ============ TWO-COLUMN CONTENT ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reversed .two-col-visual { order: -1; }

/* ============ HIGHLIGHT BOX ============ */
.highlight-box {
  background: var(--blue-light);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.highlight-box h3 { color: var(--blue-deeper); margin-bottom: 12px; }
.highlight-box p { color: var(--blue-deeper); font-size: 0.9rem; opacity: 0.8; }

/* ============ PAGE HERO (Inner pages) ============ */
.page-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 50%;
  height: 130%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(2rem, 4.5vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; }
.page-hero .hero-ctas { margin-top: 36px; }
.page-hero-narrow { max-width: 700px; }

/* ============ CONTACT FORM ============ */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label,
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select,
.form-input {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
.form-group textarea,
.form-textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-input::placeholder { color: var(--gray-400); }

/* ============ STATS ROW ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.stat-item {
  background: var(--white);
  padding: 32px;
  text-align: center;
}
.stat-item:first-child { border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.stat-item:last-child { border-radius: 0 var(--radius-xl) var(--radius-xl) 0; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.85rem; color: var(--gray-500); }
.stats-row.dark .stat-item { background: rgba(255,255,255,0.05); }
.stats-row.dark .stat-number { color: #93C5FD; }
.stats-row.dark .stat-label { color: rgba(255,255,255,0.5); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
}
.footer-main {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr;
  gap: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin: 16px 0 24px;
  max-width: 260px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ============ PAGE-SPECIFIC COMPONENTS ============ */

/* Two col with image placeholder */
.visual-block {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 100%);
  border-radius: var(--radius-2xl);
  padding: 48px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.visual-block::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.3) 0%, transparent 65%);
}
.visual-block-content { position: relative; z-index: 1; color: var(--white); text-align: center; }
.visual-block-content svg { width: 64px; height: 64px; color: rgba(255,255,255,0.2); margin-bottom: 16px; }
.visual-block-content h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.visual-block-content p { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

/* Workshop highlight */
.workshop-card {
  background: linear-gradient(135deg, #0F1F48 0%, #1E3A8A 100%);
  border-radius: var(--radius-2xl);
  padding: 48px;
  color: var(--white);
}
.workshop-card h3 { color: var(--white); margin-bottom: 12px; }
.workshop-card p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }

/* Deliverable list */
.deliverable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.deliverable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.deliverable-item svg { width: 16px; height: 16px; color: #60A5FA; flex-shrink: 0; }

/* ============ UTILITIES ============ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.hidden { display: none !important; }
.divider { height: 1px; background: var(--gray-200); margin: 0; }

/* Scroll animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat-item:first-child { border-radius: var(--radius-xl) 0 0 0; }
  .stats-row .stat-item:last-child { border-radius: 0 0 var(--radius-xl) 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 600px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reversed .two-col-visual { order: 0; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .cta-banner { padding: 48px 28px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .nav-list, .nav-actions { display: none; }
  .menu-toggle { display: flex; }
  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .page-hero { padding: 56px 0 48px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.9rem; }
  .section-header { margin-bottom: 36px; }
}
