@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
  --iris: #5B4BFF;
  --iris-light: rgba(91, 75, 255, 0.08);
  --iris-medium: rgba(91, 75, 255, 0.15);
  --encre: #0B0D12;
  --corail: #FF5C38;
  --corail-hover: #E84E2D;
  --success: #16A06A;
  --text: #0B0D12;
  --text-muted: #62677A;
  --bg: #FBFAF7;
  --bg-card: #FFFFFF;
  --border: rgba(11, 13, 18, 0.08);
  --border-strong: rgba(11, 13, 18, 0.15);
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(11,13,18,0.04);
  --shadow-md: 0 4px 16px rgba(11,13,18,0.06);
  --shadow-lg: 0 8px 32px rgba(11,13,18,0.08);
  --transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
}

/* ── 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.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}
button { cursor: pointer; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
.subtitle { font-size: clamp(1.125rem, 2vw, 1.375rem); color: var(--text-muted); line-height: 1.5; }
.overline {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--iris);
}

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header .overline { margin-bottom: 1rem; display: block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header .subtitle { max-width: 540px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--corail);
  color: #fff;
  box-shadow: 0 1px 2px rgba(255,92,56,0.2);
}
.btn-primary:hover { background: var(--corail-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,92,56,0.3); }
.btn-secondary {
  background: var(--encre);
  color: #fff;
}
.btn-secondary:hover { background: #1a1d26; transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--encre); background: rgba(11,13,18,0.03); }
.btn-ghost {
  color: var(--text);
  padding: 0.875rem 1rem;
}
.btn-ghost:hover { color: var(--iris); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251,250,247,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--iris);
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--iris);
  border-radius: 1px;
}
.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--transition);
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav .btn { margin-top: 1.5rem; text-align: center; }

/* ── Hero ── */
.hero {
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(91,75,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 760px; margin: 0 auto; }
.hero .overline { margin-bottom: 1.5rem; display: inline-block; }
.hero h1 { margin-bottom: 1.5rem; }
.hero .subtitle { font-size: clamp(1.125rem, 2vw, 1.25rem); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.hero-stat .value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--text); }
.hero-stat .label { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--iris-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--iris);
}
.card-icon svg { width: 24px; height: 24px; stroke-width: 1.7; }
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--text-muted); font-size: 0.9375rem; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── Feature section ── */
.features-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.feature-item:hover { background: rgba(91,75,255,0.04); }
.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(22,160,106,0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-check svg { width: 14px; height: 14px; }

/* ── Process / Steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: var(--border-strong);
}
.step { text-align: center; position: relative; }
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--iris-light);
  color: var(--iris);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: 0.75rem; }
.step p { color: var(--text-muted); font-size: 0.9375rem; max-width: 280px; margin: 0 auto; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars { color: var(--corail); margin-bottom: 1rem; display: flex; gap: 2px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial blockquote { font-size: 0.9375rem; line-height: 1.6; color: var(--text); margin-bottom: 1.5rem; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--iris-light);
  color: var(--iris);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}
.testimonial-info .name { font-weight: 600; font-size: 0.9375rem; }
.testimonial-info .role { font-size: 0.8125rem; color: var(--text-muted); }

/* ── FAQ Accordion ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-strong); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--encre);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(91,75,255,0.15), transparent 50%);
  pointer-events: none;
}
.cta-banner * { position: relative; }
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.125rem; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { font-size: 1rem; padding: 1rem 2rem; }

/* ── Footer ── */
.footer {
  background: var(--encre);
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 0.9375rem; padding: 0.375rem 0; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { transition: color var(--transition); }
.footer-legal a:hover { color: #fff; }

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--iris); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }

/* ── Sector Showcases ── */
.sector-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.sector-showcase:last-of-type { border-bottom: none; }
.sector-showcase.reverse { direction: rtl; }
.sector-showcase.reverse > * { direction: ltr; }
.sector-label {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  background: var(--iris-light);
  color: var(--iris);
  margin-bottom: 1.25rem;
}
.sector-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1rem; }
.sector-content > p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.65; }
.sector-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.sector-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.sector-features li svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

/* Sector image */
.sector-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  transition: all 0.4s ease;
  aspect-ratio: 4 / 3;
}
.sector-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sector-showcase:hover .sector-img { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(11,13,18,0.12); }
.sector-showcase:hover .sector-img img { transform: scale(1.03); }

/* Sector mini cards (dark section) */
.sector-mini-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.sector-mini-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }
.sector-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(91,75,255,0.15);
  color: var(--iris);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.sector-mini-icon svg { width: 22px; height: 22px; }
.sector-mini-thumb {
  width: 100%;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.sector-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sector-mini-card:hover .sector-mini-thumb img { transform: scale(1.05); }
.sector-mini-card h4 { color: #fff; margin-bottom: 0.5rem; }
.sector-mini-card p { color: rgba(255,255,255,0.5); font-size: 0.875rem; }

/* ── Marquee / Trust bar ── */
.trust-bar {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-item svg { width: 20px; height: 20px; color: var(--iris); }

/* Sector image grid (index page) */
.sector-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.sector-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  display: block;
}
.sector-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sector-image-card:hover img { transform: scale(1.06); }
.sector-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,13,18,0.85) 0%, rgba(11,13,18,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s ease;
}
.sector-image-card:hover .sector-image-overlay { background: linear-gradient(to top, rgba(91,75,255,0.8) 0%, rgba(11,13,18,0.3) 50%, transparent 100%); }
.sector-image-overlay h4 {
  color: #fff;
  font-size: 1.125rem;
  margin: 0 0 0.25rem;
}
.sector-image-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .sector-image-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
  .sector-image-grid { grid-template-columns: 1fr; }
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--text) 0%, var(--iris) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glow effect for hero ── */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
  pointer-events: none;
}
.hero-glow-1 { background: var(--iris); top: -200px; right: -100px; }
.hero-glow-2 { background: var(--corail); bottom: -200px; left: -100px; opacity: 0.04; }

/* ── Page Header ── */
.page-header {
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
}
.page-header .overline { margin-bottom: 1rem; display: block; }
.page-header h1 { margin-bottom: 1rem; }
.page-header .subtitle { max-width: 560px; margin: 0 auto; }

/* ── Legal Pages ── */
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.legal-content h3 { font-size: 1.125rem; margin: 2rem 0 0.75rem; }
.legal-content p { color: var(--text-muted); margin-bottom: 1rem; }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--text-muted); margin-bottom: 0.5rem; }

/* ── Thank You Page ── */
.thankyou {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 0 6rem;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(22,160,106,0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.thankyou-icon svg { width: 40px; height: 40px; }
.thankyou h1 { margin-bottom: 1rem; font-size: 2rem; }
.thankyou p { color: var(--text-muted); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Process Page Detail ── */
.process-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.process-detail.reverse { direction: rtl; }
.process-detail.reverse > * { direction: ltr; }
.process-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--iris-light);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.process-visual {
  border-radius: var(--radius-xl);
  height: 320px;
  overflow: hidden;
}
.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.process-detail:hover .process-visual img { transform: scale(1.04); }

/* ── Values Grid ── */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.value-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--iris); box-shadow: var(--shadow-md); }
.value-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--iris);
  margin-bottom: 0.75rem;
}
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.8125rem; color: var(--text-muted); }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--iris-light);
  color: var(--iris);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cards-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-detail { grid-template-columns: 1fr; gap: 2rem; }
  .process-detail.reverse { direction: ltr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .sector-showcase { grid-template-columns: 1fr; gap: 2rem; }
  .sector-showcase.reverse { direction: ltr; }
  .sector-visual { order: -1; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav { display: none; }
  .header-cta .btn { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 8rem 0 4rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .cards-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cta-banner { padding: 3rem 1.5rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .page-header { padding: 7rem 0 3rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
}
