/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 52vh;
  display: flex; align-items: flex-end;
  padding: 140px 6vw 60px;
  position: relative; overflow: hidden;
  background: var(--ink);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 80% 30%, rgba(0,198,162,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(255,107,53,.09) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-content { position: relative; z-index: 1; max-width: 780px; }
.page-hero-content .section-tag { color: var(--accent); }
.page-hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--white);
  margin-top: .6rem;
}
.page-hero-content p {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin-top: 1.2rem; max-width: 540px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 500;
  color: rgba(255,255,255,.35); margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ── PAGE SECTION DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 6vw;
}

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
}

/* ── ICON BOX ── */
.icon-box {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 1.4rem;
  background: rgba(0,198,162,.10);
}
.icon-box.dark { background: rgba(0,198,162,.12); }

/* ── STAT BAND ── */
.stat-band {
  background: var(--ink); padding: 60px 6vw;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.stat-band-item { text-align: center; }
.stat-band-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.03em;
}
.stat-band-num span { color: var(--accent); }
.stat-band-label { font-size: .82rem; color: rgba(255,255,255,.4); margin-top: 6px; letter-spacing: .06em; text-transform: uppercase; }

/* ── HIGHLIGHT CARD ── */
.highlight-card {
  background: var(--white); border-radius: 22px;
  padding: 36px 32px; border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.highlight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.highlight-card .icon-box { margin-bottom: 1.2rem; }
.highlight-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--ink);
  margin-bottom: .6rem;
}
.highlight-card p { font-size: .88rem; line-height: 1.7; color: var(--muted); }

.highlight-card.dark-card {
  background: var(--ink); border: 1px solid rgba(255,255,255,.08);
}
.highlight-card.dark-card h3 { color: var(--white); }
.highlight-card.dark-card p { color: rgba(255,255,255,.45); }

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.card-grid.two-wide { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

/* ── PROCESS TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 3.5rem auto 0; }
.timeline-item {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 2rem; position: relative;
}
.timeline-item:not(:last-child)::before {
  content: ''; position: absolute;
  left: 29px; top: 60px; bottom: -20px; width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-dot {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800;
  color: var(--accent); flex-shrink: 0; position: relative; z-index: 1;
}
.timeline-body { padding: 12px 0 40px; }
.timeline-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  margin-bottom: .5rem;
}
.timeline-body p { font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,.5); }

/* Dark section timeline variant */
.timeline.light .timeline-dot { background: var(--white); border-color: var(--accent); color: var(--accent); }
.timeline.light .timeline-body h3 { color: var(--ink); }
.timeline.light .timeline-body p { color: var(--muted); }
.timeline.light .timeline-item:not(:last-child)::before { background: linear-gradient(to bottom, var(--accent), var(--border)); }

/* ── TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 3rem; }
.compare-table th {
  font-family: 'Syne', sans-serif;
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 16px 20px; background: var(--ink); color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.06);
  text-align: left;
}
.compare-table th:first-child { color: var(--white); }
.compare-table td {
  padding: 16px 20px; font-size: .88rem;
  border: 1px solid var(--border); background: var(--white);
  color: var(--ink);
}
.compare-table tr:hover td { background: #f9f9f7; }
.compare-table td .tick { color: var(--accent); font-weight: 700; }
.compare-table td .cross { color: #d1d5db; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.2rem; }
.form-group label {
  font-size: .82rem; font-weight: 600;
  color: var(--ink); letter-spacing: .03em;
}
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem; color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,198,162,.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit {
  background: var(--ink); color: var(--white);
  padding: 15px 36px; border-radius: 50px;
  font-size: .95rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
  font-family: 'DM Sans', sans-serif;
}
.form-submit:hover { background: var(--accent); color: var(--ink); transform: translateY(-2px); }

/* ── CONTACT INFO ITEMS ── */
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(0,198,162,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-text h4 {
  font-family: 'Syne', sans-serif;
  font-size: .92rem; font-weight: 700; color: var(--ink); margin-bottom: .25rem;
}
.contact-info-text p, .contact-info-text a {
  font-size: .88rem; color: var(--muted);
  line-height: 1.6; text-decoration: none;
}
.contact-info-text a:hover { color: var(--accent); }

/* ── TEAM CARD ── */
.team-card {
  background: var(--white); border-radius: 20px;
  padding: 32px 28px; border: 1px solid var(--border);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800;
  color: var(--white); margin: 0 auto 1.2rem;
}
.team-avatar.a1 { background: linear-gradient(135deg, var(--accent), #008b72); }
.team-avatar.a2 { background: linear-gradient(135deg, var(--accent2), #c94f20); }
.team-avatar.a3 { background: linear-gradient(135deg, #6366f1, #4338ca); }
.team-avatar.a4 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .3rem;
}
.team-role { font-size: .82rem; color: var(--accent); font-weight: 600; margin-bottom: .8rem; }
.team-bio { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── WORK / PORTFOLIO FILTER TABS ── */
.filter-tabs {
  display: flex; gap: .6rem; flex-wrap: wrap;
  justify-content: center; margin: 2.5rem 0;
}
.filter-tab {
  padding: 9px 22px; border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  border: 1.5px solid var(--border);
  cursor: pointer; transition: .2s;
  background: var(--white); color: var(--ink);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}

/* ── VALUE PILL LIST ── */
.value-list { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.5rem; }
.value-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; font-weight: 500; color: var(--ink);
}
.value-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,198,162,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; flex-shrink: 0; font-weight: 700;
}

/* ── RESPONSIVE PAGE ADJUSTMENTS ── */
@media (max-width: 640px) {
  .page-hero { padding: 120px 6vw 50px; min-height: 44vh; }
  .page-hero-content h1 { font-size: 2rem; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .filter-tabs { justify-content: flex-start; }
}
