/* ============================================================
   BERYTHUB — Global Styles
   ============================================================ */

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

:root {
  --red:      #D4212D;
  --red-dark: #b01b25;
  --black:    #0D0D0D;
  --dark:     #111827;
  --mid:      #6B7280;
  --light:    #F9FAFB;
  --border:   #E5E7EB;
  --white:    #FFFFFF;
  --radius:   6px;
  --shadow:   0 2px 16px rgba(0,0,0,0.08);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ─────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.125rem; font-weight: 600; }
p  { color: var(--mid); line-height: 1.7; }

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline-dark:hover { border-color: var(--dark); }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}
.nav-logo span { color: var(--white); }
.nav-logo-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(212,33,45,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,33,45,0.07) 0%, transparent 60%);
}

/* Network SVG canvas */
.hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,33,45,0.15);
  border: 1px solid rgba(212,33,45,0.3);
  color: #f87171;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 { color: var(--white); margin-bottom: 20px; font-size: clamp(2rem, 8vw, 3rem); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {}
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* Network visual (right side) */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-wrap {
  width: 420px;
  height: 420px;
  position: relative;
}

.network-wrap svg {
  width: 100%;
  height: 100%;
}

/* ── CLIENTS BAR ────────────────────────────────────────── */
.clients {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.clients-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}

.clients-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.client-logo {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #9CA3AF;
  text-transform: uppercase;
  transition: color var(--transition);
}
.client-logo:hover { color: var(--mid); }

/* ── SECTION HEADERS ────────────────────────────────────── */
.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1rem; }

.section-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.service-callout {
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: 10px;
}

.service-callout h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.service-callout p {
  max-width: 680px;
}

.service-callout .btn {
  flex-shrink: 0;
}

/* ── PILLARS (What We Do) ───────────────────────────────── */
.pillars { background: var(--light); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all var(--transition);
}

.pillar-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--red);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,33,45,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}

.pillar-card h3 { margin-bottom: 12px; }

.pillar-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-list li {
  font-size: 0.875rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── WHY BERYTHUB ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all var(--transition);
}

.why-item:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(212,33,45,0.08);
}

.why-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 12px;
}

.why-item h3 { margin-bottom: 8px; font-size: 1rem; }
.why-item p { font-size: 0.875rem; }

/* ── HOW WE WORK ────────────────────────────────────────── */
.how { background: var(--dark); }
.how .section-header h2,
.how .label { color: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.steps-zigzag::before {
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 84px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 84' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 C18 0 15 84 33.333 84 S48 0 66.666 0 S82 84 100 84' fill='none' stroke='rgba(255,255,255,0.16)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.steps-zigzag .step:nth-child(even) {
  padding-top: 84px;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ── MISSION ────────────────────────────────────────────── */
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-content h2 { margin-bottom: 20px; }
.mission-content p { margin-bottom: 32px; font-size: 1rem; }

.mission-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--light);
  border-radius: 8px;
  border-left: 3px solid var(--red);
}

.mission-point-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.mission-point h4 { font-size: 0.95rem; margin-bottom: 2px; }
.mission-point p { font-size: 0.85rem; }

.mission-visual {
  background: var(--dark);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-stat {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
}
.mission-stat:last-child { border-bottom: none; padding-bottom: 0; }

.mission-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.mission-stat-num span { color: var(--red); }
.mission-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--red);
  padding: 72px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner h2 { color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.75); margin-top: 8px; }

.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover { background: var(--light); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: var(--white); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
}

/* ── SERVICES PAGE ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(212,33,45,0.1);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212,33,45,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 1.4rem;
}

.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card > p { margin-bottom: 20px; font-size: 0.9rem; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--light);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offer-models .section-header {
  max-width: 760px;
  margin-bottom: 40px;
}

.offer-models .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.offer-models .offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin: 0 auto;
  gap: 24px;
}

.offer-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  background: var(--white);
  transition: all var(--transition);
}

.offer-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(212,33,45,0.08);
  transform: translateY(-2px);
}

.offer-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212,33,45,0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.offer-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.offer-card p {
  font-size: 0.875rem;
}

.offer-models .offer-card {
  padding: 0;
  min-height: 220px;
  border-width: 2px;
  overflow: hidden;
}

.offer-models .offer-card h3 {
  background: var(--dark);
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0;
  padding: 28px 34px;
}

.offer-models .offer-card p {
  font-size: 1rem;
  padding: 28px 34px 34px;
}

/* ── TALENT PAGE ────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(212,33,45,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 1rem;
}

.benefit-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.benefit-item p { font-size: 0.85rem; }

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.role-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: all var(--transition);
}

.role-card:hover {
  border-color: var(--red);
  background: var(--white);
}

.role-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.role-card p { font-size: 0.8rem; }

/* Apply form */
.apply-form-wrap {
  background: var(--light);
  border-radius: 16px;
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
}

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.founder-card {
  background: var(--dark);
  border-radius: 16px;
  padding: 48px;
  color: var(--white);
}

.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212,33,45,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.founder-name { font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.founder-title { font-size: 0.9rem; color: var(--red); margin-bottom: 16px; }
.founder-bio { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.value-card .value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h3 { margin-bottom: 8px; }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(212,33,45,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 1.1rem;
}

.contact-item h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--mid); }
.contact-item a:hover { color: var(--red); }

/* ── FORMS ──────────────────────────────────────────────── */
.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 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }

.form-group textarea { resize: vertical; min-height: 130px; }

.form-note {
  font-size: 0.8rem;
  color: var(--mid);
}

.g-recaptcha {
  margin-bottom: 8px;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212,33,45,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

.author-name { font-size: 0.875rem; font-weight: 600; }
.author-title { font-size: 0.775rem; color: var(--mid); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps::before { display: none; }
  .steps-zigzag .step:nth-child(even) { padding-top: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .pillars-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-models .offer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse { direction: ltr; }
  .roles-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-callout { flex-direction: column; align-items: flex-start; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats { gap: 20px; }
  .apply-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-models .offer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { justify-content: center; }
}
