/* ==========================================================================
   Vishal Sharma — Portfolio Design System
   Matches PotentFolio Elementor kit: dark near-black bg, lime accent,
   yellow/pink secondary accents, Raleway display type.
   ========================================================================== */

:root {
  --dark: #1D1D1F;
  --dark-2: #26344F;
  --lime: #9FE970;
  --lime-dark: #173300;
  --yellow: #FCD363;
  --yellow-light: #FFF5DB;
  --pink: #FC367E;
  --green-light: #E1FFCE;
  --light-bg: #F2F5F9;
  --light-2: #E2E8F4;
  --white: #FFFFFF;
  --text-muted: #929AA8;
  --text-body: #5B6270;
  --ink: #26344F;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-card: 0 20px 45px -20px rgba(20, 22, 26, 0.25);
  --shadow-soft: 0 10px 30px -12px rgba(20, 22, 26, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(159, 233, 112, 0.25);
}

h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(40px, 6vw, 78px); }
h2 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 700; }
h3 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; }

p { line-height: 1.7; color: var(--text-body); margin: 0; }
.lede { font-size: 18px; color: var(--text-muted); }

.text-on-dark p { color: rgba(255,255,255,0.65); }
.text-on-dark h1, .text-on-dark h2, .text-on-dark h3 { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }

.btn-lime { background: var(--lime); color: var(--lime-dark); }
.btn-lime:hover { background: #8fe157; }

.btn-outline { background: transparent; color: var(--ink); border-color: rgba(20,22,26,0.15); }
.btn-outline:hover { border-color: var(--ink); }

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

.btn-sm { padding: 11px 22px; font-size: 13px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20,22,26,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo .divider { width: 1px; height: 18px; background: rgba(20,22,26,0.2); }
.logo .accent { color: var(--ink); background: var(--yellow); padding: 2px 8px; border-radius: 6px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a.active { color: var(--lime-dark); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 2px;
  background: var(--lime);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-search {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(20,22,26,0.15); background: transparent;
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: all .2s ease;
}
.nav-search:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.nav-social {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(20,22,26,0.15); background: transparent;
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: all .2s ease;
}
.nav-social:hover { background: #0A66C2; color: var(--white); border-color: #0A66C2; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 74px; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 20px;
    box-shadow: var(--shadow-soft); transform: translateY(-130%); opacity: 0; transition: all .3s ease; pointer-events: none; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(20,22,26,0.06); }
  .nav-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
}
@media (max-width: 480px) {
  .logo { font-size: 17px; }
  .nav-search, .nav-social { display: none; }
  .nav { padding-left: 16px; padding-right: 16px; }
  .nav-cta { gap: 10px; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--light-bg);
  padding: 48px 0 64px;
}
.hero .wrap {
  max-width: none;
  padding: 0 clamp(14px, 1.5vw, 28px);
}
@media (max-width: 700px) {
  .hero .wrap { padding: 0 14px; }
}
.hero-outer {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.hero-card {
  flex: 1;
  min-width: 0;
  background: var(--ink);
  border-radius: 40px;
  padding: 56px 48px 88px;
  position: relative;
  overflow: hidden;
}

.hero-heading { position: relative; text-align: center; margin-bottom: 40px; }
.hero-kicker { display: block; color: rgba(255,255,255,0.65); font-weight: 600; margin-bottom: 6px; }
.hero-title { color: var(--white); font-size: clamp(38px, 5.5vw, 68px); line-height: 1.05; }

.hero-columns {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 32px;
  align-items: center;
}
.hero-col p { color: var(--white); font-size: 14.5px; text-align: center; }
.hero-col-left { display: flex; flex-direction: column; align-items: center; }

.role-pills { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; width: 100%; max-width: 260px; }
.role-pill {
  background: var(--white); color: var(--ink); border-radius: var(--radius-pill);
  padding: 11px 20px; font-size: 13.5px; font-weight: 700; text-align: center;
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/3.5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #2b2f36, #1D1D1F);
  position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-name-chip {
  position: absolute;
  right: -10px;
  top: 56%;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 8px 18px 8px 8px;
  box-shadow: var(--shadow-card);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hero-name-chip .avatar {
  width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
}

.hero-actions-pill {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px;
  display: flex;
  gap: 10px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

.hero-stat-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
  width: 260px;
  flex-shrink: 0;
}
.stat-card {
  border-radius: var(--radius-md);
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.stat-num {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.1;
}
.stat-label { font-size: 13.5px; font-weight: 600; margin-top: 6px; }

.stat-yellow { background: var(--yellow); }
.stat-yellow .stat-num, .stat-yellow .stat-label { color: var(--ink); }

.stat-lime { background: var(--lime); }
.stat-lime .stat-num, .stat-lime .stat-label { color: var(--lime-dark); }

.stat-navy { background: var(--dark-2); }
.stat-navy .stat-num { color: var(--white); }
.stat-navy .stat-label { color: rgba(255,255,255,0.7); }

@media (max-width: 1100px) {
  .hero-outer { flex-direction: column; }
  /* flex:1 on a column-direction flex parent resolves flex-basis to 0%; when the
     parent's height is content-driven (not fixed), some browsers compute that
     basis before the content-based grow pass runs, and overflow:hidden below
     then clips whatever "doesn't fit" instead of showing an overflow. Force a
     content-based basis so the card is always sized to its actual content. */
  .hero-card { flex: 1 1 auto; width: 100%; overflow: visible; }
  .hero-stat-cards { flex-direction: row; width: auto; }
}
@media (max-width: 900px) {
  /* Flexbox instead of Grid for the stacked mobile order — predictable
     content-based stacking (left col -> photo -> right col) with no
     dependency on 1fr track-sizing against an auto-height ancestor. */
  .hero-columns { display: flex; flex-direction: column; align-items: center; gap: 32px; }
  .hero-col p { max-width: 480px; margin: 0 auto; }
  .hero-photo-wrap { flex-direction: column; align-items: center; width: 100%; }
  .hero-photo { margin: 0 auto; }
  .hero-actions-pill { position: static; transform: none; margin: 32px auto 0; width: auto; max-width: 100%; flex-wrap: wrap; justify-content: center; row-gap: 10px; }
  .hero-name-chip { position: static; margin: 16px auto 0; width: fit-content; max-width: 100%; }
  .hero-card { padding-bottom: 56px; }
}
@media (max-width: 640px) {
  .hero-stat-cards { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-card { padding-left: 24px; padding-right: 24px; }
  .hero-actions-pill { padding: 8px; }
  .hero-actions-pill .btn { padding: 12px 20px; font-size: 13.5px; }
  .role-pills { max-width: 100%; }
}


/* ---------- Marquee (brands / roles) ---------- */
.marquee-wrap { overflow: hidden; padding: 28px 0; border-bottom: 1px solid rgba(20,22,26,0.06); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scroll 28s linear infinite; }
.marquee-track span { font-weight: 700; font-size: 15px; color: var(--text-muted); white-space: nowrap; display: flex; align-items: center; gap: 10px;}
.marquee-track span::before { content: "\2726"; color: var(--lime-dark); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Badges strip ---------- */
.badge-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -44px;
  position: relative;
  z-index: 5;
}
@media (max-width: 860px) { .badge-strip { grid-template-columns: repeat(2, 1fr); margin-top: 24px; } }
.badge-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.badge-card .ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.badge-card h4 { font-size: 15px; }
.badge-card p { font-size: 13px; margin: 0; }
.badge-card.c1 .ico { background: var(--yellow-light); }
.badge-card.c2 .ico { background: var(--green-light); }
.badge-card.c3 .ico { background: var(--light-2); }
.badge-card.c4 .ico { background: #FFE3ED; }

/* ---------- Reusable content grids (replaces inline grid-template-columns) ---------- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: flex-start; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 640px) { .skills-grid { grid-template-columns: 1fr; gap: 28px; } }

.track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .track-grid { grid-template-columns: 1fr; gap: 28px; } }

.about-grid > *, .skills-grid > *, .track-grid > *, .case-stats > *, .case-shots > *,
.card-grid > *, .portfolio-grid > *, .link-grid > *, .testi-grid > *, .footer-grid > * {
  min-width: 0;
}

/* ---------- Section headers ---------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head h2 { max-width: 560px; }
.section-head p { max-width: 420px; }

/* ---------- Cards: services / skills ---------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

.service-card {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card .ico { width: 48px; height: 48px; border-radius: 14px; background: rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px;}
.service-card h4 { margin-bottom: 8px; }
.service-card p { font-size: 14px; }
.service-card.yellow { background: var(--yellow-light); }
.service-card.green { background: var(--green-light); }
.service-card.blue { background: var(--light-2); }
.service-card.dark { background: var(--ink); }
.service-card.dark h4, .service-card.dark p { color: var(--white); }
.service-card.dark p { color: rgba(255,255,255,0.6); }
.service-card.dark .ico { background: rgba(255,255,255,0.1); }

/* ---------- Pills (skills) ---------- */
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(20,22,26,0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
}

/* ---------- What I Do rows ---------- */
.do-list { border-top: 1px solid rgba(20,22,26,0.08); margin-top: 20px; }
.do-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid rgba(20,22,26,0.08);
  cursor: pointer;
}
.do-row h4 { font-size: 17px; }
.do-row .num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--light-bg); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--text-muted); flex-shrink: 0;
}
.do-row.active .num { background: var(--lime); color: var(--lime-dark); }
.do-row p { font-size: 14px; margin-top: 8px; max-width: 640px; display: none; }
.do-row.active p { display: block; }

/* ---------- Stat dots (Track record) ---------- */
.dot-list { display: flex; flex-direction: column; gap: 0; }
.dot-row { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(20,22,26,0.06); }
.dot-row .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }

/* ---------- Portfolio ---------- */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab {
  padding: 11px 22px; border-radius: var(--radius-pill);
  border: 1.5px solid rgba(20,22,26,0.12); font-weight: 700; font-size: 14px;
  background: var(--white); color: var(--text-body); transition: all .2s ease;
}
.filter-tab.active, .filter-tab:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) { .portfolio-grid { grid-template-columns: 1fr; } }

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-bg);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .3s ease;
}
.project-card:hover { box-shadow: var(--shadow-card); }
.project-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--light-bg);
  overflow: hidden;
}
/* object-fit:contain (not cover) so the full dashboard screenshot is always
   visible — cover was center-cropping ~8% off each side, slicing off the
   leftmost stat card and the rightmost date labels on wide screenshots. */
.project-thumb img { width: 100%; height: 100%; object-fit: contain; opacity: 1; padding: 10px; box-sizing: border-box; }
.project-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--ink); color: var(--white);
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
  box-shadow: var(--shadow-soft);
}
.project-body { padding: 22px 24px 26px; display: flex; justify-content: space-between; align-items: flex-end; gap: 14px;}
.project-body h4 { margin-bottom: 6px; }
.project-body p { font-size: 13px; }
.project-arrow {
  width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px;
  transition: transform .3s ease, background .3s ease;
}
.project-card:hover .project-arrow { background: var(--lime); color: var(--lime-dark); transform: rotate(45deg); }

/* ---------- External link grid (additional projects) ---------- */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: background .25s ease, color .25s ease;
}
.link-card span:first-child { min-width: 0; overflow-wrap: anywhere; }
.link-card .project-arrow { width: 32px; height: 32px; font-size: 15px; }
.link-card:hover { background: var(--ink); color: var(--white); }
.link-card:hover .project-arrow { background: var(--lime); color: var(--lime-dark); }

/* ---------- Case study detail block ---------- */
.case-study {
  border-radius: var(--radius-lg);
  background: var(--light-bg);
  padding: clamp(24px, 4vw, 48px);
  margin-bottom: 32px;
  scroll-margin-top: 100px;
}
.case-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.case-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.case-meta span { font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-pill); background: var(--white); color: var(--text-body); }
.case-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 28px 0; }
@media (max-width: 760px) { .case-stats { grid-template-columns: repeat(2, 1fr); } }
.case-stats.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .case-stats.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .case-stats.cols-3 { grid-template-columns: 1fr; } }
.case-stat { background: var(--white); border-radius: var(--radius-md); padding: 18px; }
.case-stat .num { font-size: 24px; font-weight: 800; }
.case-stat .num.up { color: #1f9d55; }
.case-stat .num.down { color: #d1435b; }
.case-stat .label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.case-shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px;}
@media (max-width: 760px) { .case-shots { grid-template-columns: 1fr; } }
.case-shots.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .case-shots.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .case-shots.cols-3 { grid-template-columns: 1fr; } }
.case-shot { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); background: var(--white); }
.case-shot .cap { font-size: 12px; font-weight: 700; padding: 12px 16px; color: var(--text-muted); }
.case-shot img { width: 100%; display: block; }

.gmb-card { display: flex; gap: 16px; align-items: center; background: var(--white); border-radius: var(--radius-md); padding: 16px; }
.gmb-card .stars { color: var(--yellow); font-size: 14px; }
.gmb-card h5 { margin: 0 0 4px; font-size: 15px; }
.gmb-card p { font-size: 12px; margin: 0; }

/* ---------- Process / timeline ---------- */
.process-panel {
  background: var(--white); border: 1px solid rgba(20,22,26,0.08);
  border-radius: var(--radius-lg); padding: clamp(24px,4vw,48px);
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 860px) { .process-panel { grid-template-columns: 1fr; } }
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.process-step { border-radius: var(--radius-md); padding: 22px; }
.process-step .step-num { font-size: 34px; font-weight: 800; opacity: 0.35; }
.process-step h4 { margin: 6px 0 6px; font-size: 16px; }
.process-step p { font-size: 13px; }
.process-step.p1 { background: var(--yellow-light); }
.process-step.p2 { background: var(--green-light); }
.process-step.p3 { background: var(--light-2); }
.process-step.p4 { background: var(--light-bg); }

/* ---------- Timeline (experience) ---------- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: rgba(20,22,26,0.1); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -32px; top: 4px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--lime); border: 3px solid var(--white); box-shadow: 0 0 0 2px rgba(159,233,112,0.4);
}
.timeline-item .when { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.timeline-item h4 { margin: 6px 0 4px; }
.timeline-item .org { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; display:block; }
.timeline-item ul { display: flex; flex-direction: column; gap: 6px; }
.timeline-item li { font-size: 14px; color: var(--text-body); padding-left: 18px; position: relative; }
.timeline-item li::before { content: "\2192"; position: absolute; left: 0; color: var(--lime-dark); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--light-2); border-radius: var(--radius-lg); padding: 26px; }
.testi-card .stars { color: var(--yellow); font-size: 14px; margin: 10px 0 14px; }
.testi-card p { font-size: 14px; color: var(--text-body); }
.testi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.testi-head h5 { margin: 0; font-size: 15px; }
.testi-head span { font-size: 12px; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(159,233,112,0.14), transparent 60%);
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 32px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-contact-row { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 36px; position: relative; }
.cta-contact-row div { text-align: left; }
.cta-contact-row .lbl { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }
.cta-contact-row .val { color: var(--white); font-weight: 700; font-size: 14px; margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--white); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); transition: all .2s ease;
}
.footer-social a:hover { background: #0A66C2; color: #fff; border-color: #0A66C2; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all .2s ease;}
.social-row a:hover { background: var(--lime); color: var(--lime-dark); border-color: var(--lime); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--dark-2);
  background: linear-gradient(135deg, #26344E, #1D1D1F);
  border-radius: 0 0 40px 40px;
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero .crumb { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 14px; }
.page-hero .crumb a { color: var(--lime); }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4.5vw, 48px); }

/* ---------- Contact form ---------- */
.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 860px) { .contact-panel { grid-template-columns: 1fr; } }
.contact-panel > * { min-width: 0; }
.form-card { background: var(--light-bg); border-radius: var(--radius-lg); padding: clamp(24px,4vw,40px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field {
  width: 100%; padding: 15px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(20,22,26,0.1); font-family: inherit; font-size: 14px; background: var(--white);
}
.form-field:focus { outline: 2px solid var(--lime); border-color: transparent; }
textarea.form-field { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; margin-top: 14px; color: var(--text-muted); }
.form-note.success { color: #1f9d55; font-weight: 700; }

.contact-info-card { background: var(--ink); border-radius: var(--radius-lg); padding: clamp(24px,4vw,40px); color: var(--white); }
.contact-info-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-info-row:last-child { border: none; }
.contact-info-row .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--lime); color: var(--lime-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px;}
.contact-info-row .lbl { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info-row .val { font-weight: 700; margin-top: 2px; overflow-wrap: anywhere; }
.contact-info-row > div:last-child { min-width: 0; }

/* Focus visibility */
a:focus-visible, button:focus-visible, .form-field:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
