/* ============================================================
   SKILLPEOPLEHIRE — PREMIUM ZOHAR-STYLE DESIGN SYSTEM
   Matches reference screenshot layout exactly
   ============================================================ */

/* ---- RESET ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1C2B3A;
  --navy-deep: #0F1B27;
  --navy-mid:  #243447;
  --green:     #6BBF2B;
  --green-dk:  #4A9418;
  --green-lt:  #d4edbb;
  --green-xl:  #f0f9e8;
  --orange:    #F97316;
  --pink:      #EC4899;
  --white:     #ffffff;
  --off:       #F8F9FA;
  --gray-100:  #F3F4F6;
  --gray-200:  #E5E7EB;
  --gray-400:  #9CA3AF;
  --gray-500:  #6B7280;
  --gray-700:  #374151;
  --gray-800:  #1F2937;
  --gray-900:  #111827;
  --font:      'Inter', system-ui, sans-serif;
  --r:         8px;
  --r-lg:      14px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ---- CONTAINER ------------------------------------------- */
.c { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* ---- TOPBAR ---------------------------------------------- */
.topbar {
  background: var(--navy-deep);
  padding: .5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.topbar .c { display: flex; justify-content: space-between; align-items: center; }
.topbar-left, .topbar-right { display: flex; gap: 1.5rem; align-items: center; }
.topbar a { color: rgba(255,255,255,.5); display: flex; align-items: center; gap: .35rem; }
.topbar a:hover { color: #fff; }
@media (max-width: 767px) { .topbar { display: none; } }

/* ---- NAVIGATION ------------------------------------------ */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.nav-inner { display: flex; align-items: center; padding: .875rem 0; gap: 1rem; }
.nav-logo  { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }
.nav-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green), var(--navy));
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: .875rem;
  box-shadow: 0 2px 8px rgba(107,191,43,.4);
}
.nav-logo-text { font-weight: 800; font-size: 1.125rem; color: var(--navy); letter-spacing: -.02em; }
.nav-menu { display: flex; gap: .125rem; margin: 0 auto; }
.nav-menu a {
  padding: .5rem .75rem; border-radius: 6px;
  font-size: .875rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--gray-700);
  transition: color .15s, background .15s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--green); background: var(--green-xl); }
.nav-right { display: flex; align-items: center; gap: .875rem; flex-shrink: 0; }
.nav-socials { display: flex; gap: .5rem; }
.nav-socials a {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
  transition: background .15s, color .15s;
}
.nav-socials a:hover { background: var(--green); color: #fff; }
.nav-cta {
  padding: .5rem 1.25rem; background: var(--green); color: #fff;
  border-radius: var(--r); font-size: .875rem; font-weight: 700;
  letter-spacing: .02em; transition: background .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(107,191,43,.35);
}
.nav-cta:hover { background: var(--green-dk); transform: translateY(-1px); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem; margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; }
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu   { display: none; }
  .nav-right  { display: none; }
}
.nav-menu.open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--gray-200);
  padding: 1rem 2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  z-index: 199;
}

/* ---- HERO ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 540px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 60%, #1a3d25 100%);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 75% 40%, rgba(107,191,43,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(30,60,40,.4) 0%, transparent 60%);
  pointer-events: none;
}
/* Geometric accent lines */
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='600' height='540' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='540' x2='600' y2='0' stroke='rgba(107,191,43,.06)' stroke-width='1'/%3E%3Cline x1='100' y1='540' x2='600' y2='50' stroke='rgba(107,191,43,.04)' stroke-width='1'/%3E%3Cline x1='200' y1='540' x2='600' y2='100' stroke='rgba(107,191,43,.03)' stroke-width='1'/%3E%3C/svg%3E") no-repeat right top;
  pointer-events: none;
}
.hero-body { position: relative; z-index: 1; padding: 5rem 0 4rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(107,191,43,.18); border: 1px solid rgba(107,191,43,.35);
  color: #b8f07a; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem 1rem; border-radius: 20px; margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff; font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: 1.25rem; max-width: 700px;
  text-shadow: 0 2px 32px rgba(0,0,0,.25);
}
.hero h1 em { font-style: normal; color: #b8f07a; }
.hero-sub {
  color: rgba(255,255,255,.65); font-size: 1.0625rem;
  max-width: 500px; margin-bottom: 2.25rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-contact-strip {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.07);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.125rem 0;
}
.hero-contact-strip .c {
  display: flex; gap: 2rem; flex-wrap: wrap; align-items: center;
}
.hcs-item {
  display: flex; align-items: center; gap: .625rem;
  color: rgba(255,255,255,.6); font-size: .875rem;
}
.hcs-item svg { color: var(--green); flex-shrink: 0; }
.hcs-item a { color: rgba(255,255,255,.6); }
.hcs-item a:hover { color: #fff; }

/* ---- THREE COLUMN FEATURES ------------------------------- */
.three-col {
  padding: 4.5rem 0;
  background: var(--white);
}
.three-col .c { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
@media (max-width: 767px) { .three-col .c { grid-template-columns: 1fr; gap: 2rem; } }
.tcol-item { display: flex; flex-direction: column; gap: .875rem; }
.tcol-item__label {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green);
}
.tcol-item h3 { font-size: 1.375rem; font-weight: 700; color: var(--navy); }
.tcol-item p  { color: var(--gray-500); font-size: .9375rem; line-height: 1.7; }
.tcol-divider { width: 3px; height: 100%; background: var(--gray-200); display: none; }
@media (min-width: 768px) {
  .three-col .c {
    position: relative;
  }
  .three-col .c > :not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 0; bottom: 0;
    width: 1px;
    background: var(--gray-200);
  }
}

/* ---- SHAPING SECTION (split) ----------------------------- */
.shaping {
  padding: 5rem 0;
  background: var(--off);
}
.shaping .c {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start;
}
@media (max-width: 767px) { .shaping .c { grid-template-columns: 1fr; gap: 2rem; } }
.shaping-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: .5rem; }
.shaping h2 {
  font-size: clamp(2rem, 4vw, 2.875rem); font-weight: 900;
  color: var(--navy); letter-spacing: -.025em; line-height: 1.15;
}
.shaping-right { display: flex; flex-direction: column; gap: 1.25rem; }
.shaping-right p { font-size: 1rem; color: var(--gray-500); line-height: 1.75; }
.shaping-right .btn-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--green); font-weight: 700; font-size: .9375rem;
  padding: .625rem 0; border-bottom: 2px solid var(--green);
  width: fit-content; transition: gap .2s;
}
.shaping-right .btn-link:hover { gap: .875rem; }

/* ---- THREE ICONS SECTION --------------------------------- */
.icons-section { padding: 4.5rem 0; background: var(--white); }
.icons-section .c { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
@media (max-width: 767px) { .icons-section .c { grid-template-columns: 1fr; } }
.icon-feature { display: flex; flex-direction: column; gap: .875rem; }
.icon-feature__img {
  width: 100%; height: 200px; border-radius: var(--r-lg);
  background: var(--gray-100); overflow: hidden; position: relative;
}
.icon-feature__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.icon-feature__label {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green);
}
.icon-feature h4 { font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.icon-feature p  { font-size: .9375rem; color: var(--gray-500); line-height: 1.7; }

/* ---- STATS BAR ------------------------------------------- */
.stats-bar {
  background: var(--navy-deep);
  padding: 3.5rem 0;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(107,191,43,.08) 0%, transparent 60%);
  pointer-events: none;
}
.stats-bar .c {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
@media (max-width: 639px) { .stats-bar .c { grid-template-columns: 1fr 1fr; } }
.stat-b {
  text-align: center; padding: 1rem;
  border-left: 1px solid rgba(255,255,255,.06);
}
.stat-b:first-child { border-left: none; }
@media (max-width: 639px) { .stat-b:nth-child(2n+1) { border-left: none; } }
.stat-b__num {
  display: block;
  font-size: clamp(2.25rem, 4vw, 3.25rem); font-weight: 900;
  color: #fff; letter-spacing: -.04em; line-height: 1;
  margin-bottom: .5rem;
}
.stat-b__num span { color: var(--green); }
.stat-b__label { display: block; font-size: .8rem; color: rgba(255,255,255,.45); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

/* ---- AREAS WE SERVE (phone mockup center) ---------------- */
.areas {
  padding: 5rem 0;
  background: var(--off);
  overflow: hidden;
}
.areas .c { display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .areas .c { grid-template-columns: 1fr; } }
.areas-header { text-align: center; max-width: 580px; margin: 0 auto 3.5rem; }
.areas-header .section-label { color: var(--green); }
.areas-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); margin-top: .5rem; }
.areas-header p  { margin-top: .75rem; color: var(--gray-500); }

.areas-left, .areas-right { display: flex; flex-direction: column; gap: 2rem; }
.area-card { display: flex; gap: 1rem; align-items: flex-start; }
.area-card__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-xl); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.area-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.area-card p  { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

/* Phone mockup */
.phone-mockup {
  width: 200px; flex-shrink: 0;
  position: relative; margin: 0 auto;
}
.phone-mockup__outer {
  width: 200px; height: 400px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.1);
  position: relative;
}
.phone-mockup__outer::before {
  content: '';
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 12px; background: #111;
  border-radius: 0 0 10px 10px; z-index: 2;
}
.phone-mockup__screen {
  width: 100%; height: 100%;
  border-radius: 28px; overflow: hidden;
  background: linear-gradient(160deg, var(--orange) 0%, var(--pink) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.phone-mockup__logo {
  font-size: 4rem; font-weight: 900; color: rgba(255,255,255,.9);
  text-shadow: 0 4px 16px rgba(0,0,0,.2);
  z-index: 1;
}

/* ---- TESTIMONIAL ----------------------------------------- */
.testimonial-section { padding: 5rem 0; background: var(--white); }
.testimonial-section .c { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 767px) { .testimonial-section .c { grid-template-columns: 1fr; } }
.testimonial-img {
  height: 480px; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(160deg, #e8e8e8 0%, #c8c8c8 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.testimonial-img-placeholder {
  font-size: 5rem; color: var(--gray-400);
}
.testimonial-body { display: flex; flex-direction: column; gap: 1.5rem; }
.testimonial-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.testimonial-body h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1.2; }
.testimonial-quote {
  font-size: 1rem; color: var(--gray-500); line-height: 1.8;
  border-left: 3px solid var(--green-lt); padding-left: 1.25rem;
  font-style: italic;
}
.testimonial-cite { display: flex; align-items: center; gap: 1rem; }
.testimonial-cite__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .875rem; flex-shrink: 0;
}
.testimonial-cite__name  { font-weight: 700; color: var(--navy); font-size: .9375rem; }
.testimonial-cite__role  { font-size: .8125rem; color: var(--gray-500); }

/* ---- TEAM SECTION ---------------------------------------- */
.team-section { padding: 5rem 0; background: var(--off); }
.team-section .c { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .team-section .c { grid-template-columns: 1fr; } }
.team-intro { display: flex; flex-direction: column; gap: 1.25rem; }
.team-intro h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1.2; }
.team-intro p  { color: var(--gray-500); line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 639px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card { display: flex; flex-direction: column; gap: .625rem; }
.team-card__img {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden; position: relative;
  background: linear-gradient(160deg, #e2e2e2 0%, #cacaca 100%);
  display: flex; align-items: center; justify-content: center;
  filter: grayscale(100%);
  transition: filter .3s;
}
.team-card__img:hover { filter: grayscale(0%); }
.team-card__avatar-placeholder {
  font-size: 3.5rem; color: #aaa;
}
.team-card h4 { font-size: .9375rem; font-weight: 700; color: var(--navy); }
.team-card__role { font-size: .8rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

/* ---- LOGOS / PARTNERS ------------------------------------ */
.logos-section { padding: 3rem 0; background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.logos-section .c { display: flex; gap: 2.5rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.logo-pill {
  padding: .625rem 1.5rem; border: 1.5px solid var(--gray-200);
  border-radius: 40px; color: var(--gray-400); font-size: .8125rem;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.logo-pill:hover { border-color: var(--green-lt); color: var(--navy); }

/* ---- PORTFOLIO / OUR WORK -------------------------------- */
.portfolio { padding: 5rem 0; background: var(--off); }
.portfolio .c > .section-header { margin-bottom: 3rem; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 767px) { .portfolio-grid { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 900px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
.portfolio-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--gray-200); position: relative;
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .25s, box-shadow .25s;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.portfolio-card__bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.portfolio-card__overlay {
  position: relative; z-index: 1;
  background: linear-gradient(0deg, rgba(15,27,39,.88) 0%, transparent 100%);
  padding: 1.5rem;
}
.portfolio-card__tag { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(107,191,43,.9); margin-bottom: .4rem; }
.portfolio-card__title { font-size: 1rem; font-weight: 700; color: #fff; }

/* ---- NEWSLETTER FOOTER ----------------------------------- */
.newsletter-bar { background: var(--navy); padding: 3rem 0; }
.newsletter-bar .c { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.newsletter-bar h3 { color: #fff; font-size: 1.25rem; font-weight: 700; }
.newsletter-bar p  { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: .25rem; }
.newsletter-form { display: flex; gap: 0; flex: 1; max-width: 420px; }
.newsletter-form input {
  flex: 1; padding: .75rem 1rem; background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15); border-right: none;
  border-radius: var(--r) 0 0 var(--r); color: #fff;
  font-size: .9375rem; font-family: var(--font); outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form input:focus { border-color: rgba(107,191,43,.5); }
.newsletter-form button {
  padding: .75rem 1.25rem;
  background: var(--green); color: #fff;
  border: none; border-radius: 0 var(--r) var(--r) 0;
  font-weight: 700; font-size: .875rem; white-space: nowrap;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--green-dk); }

/* ---- SITE FOOTER ----------------------------------------- */
.site-footer { background: var(--navy-deep); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 550px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .nav-logo-text { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.4); margin-top: .875rem; font-size: .9rem; line-height: 1.75; max-width: 260px; }
.footer-socials { display: flex; gap: .5rem; margin-top: 1.25rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .7rem; font-weight: 800;
  transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--green); color: #fff; border-color: var(--green); }

.footer-col h5 { color: #fff; font-size: .8125rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: .625rem; }
.footer-col a { color: rgba(255,255,255,.45); font-size: .9rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-contact-list { display: flex; flex-direction: column; gap: .875rem; }
.footer-contact-list li { display: flex; gap: .625rem; align-items: flex-start; color: rgba(255,255,255,.45); font-size: .9rem; }
.footer-contact-list svg { color: rgba(107,191,43,.7); flex-shrink: 0; margin-top: .15rem; }
.footer-contact-list a { color: rgba(255,255,255,.45); }
.footer-contact-list a:hover { color: #fff; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { color: rgba(255,255,255,.25); font-size: .8125rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.25); font-size: .8125rem; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ---- SHARED COMPONENTS ----------------------------------- */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green); margin-bottom: .625rem;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--green); border-radius: 2px; }
.section-header { text-align: left; }
.section-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); margin-top: .375rem; letter-spacing: -.02em; }
.section-header p  { color: var(--gray-500); margin-top: .75rem; max-width: 560px; line-height: 1.75; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.625rem;
  background: var(--green); color: #fff; border-radius: var(--r);
  font-weight: 700; font-size: .9375rem; border: 2px solid var(--green);
  box-shadow: 0 2px 12px rgba(107,191,43,.3);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover { background: var(--green-dk); border-color: var(--green-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(107,191,43,.4); color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.625rem; background: transparent; color: var(--navy);
  border: 2px solid var(--navy); border-radius: var(--r);
  font-weight: 700; font-size: .9375rem;
  transition: all .2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.625rem; background: rgba(255,255,255,.1);
  color: #fff; border: 2px solid rgba(255,255,255,.35);
  border-radius: var(--r); font-weight: 700; font-size: .9375rem;
  transition: all .2s; backdrop-filter: blur(4px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.625rem; background: #fff; color: var(--green);
  border: 2px solid #fff; border-radius: var(--r);
  font-weight: 700; font-size: .9375rem; transition: all .2s;
}
.btn-white:hover { background: var(--green-xl); color: var(--green-dk); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
[hidden] { display: none !important; }

/* ============================================================
   ADDITIONAL SECTIONS — hero typography, editorial band,
   areas layout, portfolio header, stat sub-label, stars
   ============================================================ */

/* Hero split typography — DEPRECATED, replaced by hero-h1__line* in aether.css */
/* These classes are no longer used in the HTML */
.hero-word-1  { display: none; }
.hero-word-em { display: none; }
.hero-word-2  { display: none; }
.hero-tagline { display: none; }
/* hero h1 is now .hero-h1 — controlled entirely by aether.css + inner-pages.css */
.hero h1 { color: #fff; }

/* Three column icon */
.tcol-icon {
  width: 52px; height: 52px;
  background: var(--green-xl);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  margin-bottom: .25rem;
}
.three-col .c {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.three-col .c .tcol-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--gray-200);
}
.three-col .c .tcol-item:last-child { border-right: none; }
@media (max-width: 767px) {
  .three-col .c { grid-template-columns: 1fr; }
  .three-col .c .tcol-item { border-right: none; border-bottom: 1px solid var(--gray-200); padding: 2rem 0; }
  .three-col .c .tcol-item:last-child { border-bottom: none; }
}
.tcol-item__label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: .375rem; }
.tcol-item h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: .625rem; }
.tcol-item p  { color: var(--gray-500); font-size: .9375rem; line-height: 1.7; }

/* Shaping section fix */
.shaping .c { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; padding: 5rem 0; }
@media (max-width: 900px) { .shaping .c { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; } }
.shaping { padding: 0; background: var(--off); }
.shaping-left .shaping-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; }
.shaping-left h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 900; color: var(--navy); letter-spacing: -.03em; line-height: 1.05; }
.shaping-right { display: flex; flex-direction: column; gap: 1.125rem; padding-top: .5rem; }
.shaping-right p { font-size: 1rem; color: var(--gray-500); line-height: 1.8; }
.btn-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--green); font-weight: 700; font-size: .9375rem;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--green-lt);
  width: fit-content;
  transition: gap .2s, border-color .2s;
  margin-top: .5rem;
}
.btn-link:hover { gap: .875rem; border-color: var(--green); }

/* Icons section */
.icons-section { padding: 5rem 0; background: var(--white); }
.icons-section .c { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
@media (max-width: 767px) { .icons-section .c { grid-template-columns: 1fr; } }
.icon-feature__img { width: 100%; height: 220px; border-radius: var(--r-lg); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.icon-feature__img-placeholder { display: flex; align-items: center; justify-content: center; }
.icon-feature__label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-top: 1.25rem; margin-bottom: .25rem; }
.icon-feature h4 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.icon-feature p  { font-size: .9375rem; color: var(--gray-500); line-height: 1.7; }

/* Editorial quote band */
.editorial-band { position: relative; overflow: hidden; }
.editorial-band__inner {
  min-height: 280px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.editorial-band__inner::before {
  content: '"';
  position: absolute; top: -60px; left: 5%;
  font-size: 28rem; font-family: Georgia, serif;
  color: rgba(107,191,43,.04); line-height: 1; pointer-events: none;
  font-weight: 900;
}
.editorial-band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(107,191,43,.08) 0%, transparent 60%);
  pointer-events: none;
}
.editorial-band__content {
  position: relative; z-index: 1;
  text-align: center; max-width: 720px;
  padding: 4rem 2rem;
}
.editorial-band__content blockquote {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,.85);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.editorial-band__content cite {
  font-size: .875rem;
  color: rgba(107,191,43,.8);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
}

/* Stats bar sub */
.stat-b__sub { display: block; font-size: .75rem; color: rgba(255,255,255,.3); margin-top: .25rem; }

/* Areas section complete rework */
.areas { padding: 5rem 0; background: var(--off); }
.areas-full { width: 100%; }
.areas-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.areas-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); margin-top: .375rem; letter-spacing: -.02em; }
.areas-header p  { margin-top: .75rem; color: var(--gray-500); line-height: 1.75; }

.areas-three-col { display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) {
  .areas-three-col { grid-template-columns: 1fr; }
  .areas-phone { order: -1; }
}

.areas-left, .areas-right { display: flex; flex-direction: column; gap: 2.5rem; }
.area-card { display: flex; gap: 1.125rem; align-items: flex-start; }
.area-card__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green-xl); border-radius: 50%;
  border: 2px solid var(--green-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.area-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .375rem; }
.area-card p  { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }
.areas-right .area-card { flex-direction: row-reverse; text-align: right; }
@media (max-width: 900px) { .areas-right .area-card { flex-direction: row; text-align: left; } }

.areas-phone { display: flex; justify-content: center; }

/* Phone mockup refined */
.phone-mockup { width: 200px; }
.phone-mockup__outer {
  width: 200px; height: 400px;
  background: #111;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 32px 80px rgba(0,0,0,.4),
    0 8px 24px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(255,255,255,.06);
  position: relative;
}
.phone-mockup__outer::before {
  content: '';
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 14px;
  background: #000;
  border-radius: 0 0 12px 12px; z-index: 3;
}
.phone-mockup__screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  background: linear-gradient(160deg, var(--orange) 0%, var(--pink) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; position: relative; overflow: hidden;
}
.phone-mockup__screen::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
}
.phone-mockup__logo {
  font-size: 2.5rem; font-weight: 900;
  color: rgba(255,255,255,.95);
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
  position: relative; z-index: 1;
  letter-spacing: -.04em;
}
.phone-mockup__tagline {
  font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .12em;
  position: relative; z-index: 1;
}

/* Testimonial stars */
.testimonial-stars { color: var(--orange); font-size: .9375rem; margin-top: .25rem; letter-spacing: .1em; }

/* Team card fix */
.team-card__img {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #e8e8e8, #d0d0d0);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; filter: grayscale(80%);
  transition: filter .3s;
}
.team-card__img:hover { filter: grayscale(0%); }
.team-card__avatar-placeholder { color: #bbb; }
.team-card h4 { font-size: .9375rem; font-weight: 700; color: var(--navy); margin-top: .75rem; }
.team-card__role { font-size: .8rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

/* Portfolio header */
.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem; gap: 1.5rem; flex-wrap: wrap;
}
.portfolio-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); margin-top: .375rem; letter-spacing: -.02em; }
.portfolio-header p  { color: var(--gray-500); margin-top: .5rem; max-width: 420px; font-size: .9375rem; }

/* Portfolio card sub */
.portfolio-card__sub { font-size: .8125rem; color: rgba(255,255,255,.55); margin-top: .375rem; line-height: 1.5; }
.portfolio-card__overlay a, .portfolio-card .read-link {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .8rem; font-weight: 700; color: rgba(107,191,43,.85);
  text-transform: uppercase; letter-spacing: .06em; margin-top: .625rem;
  transition: color .2s;
}
.portfolio-card:hover .read-link { color: var(--green); }

/* Newsletter bar */
.newsletter-bar { background: var(--navy); padding: 4rem 0; }
.newsletter-bar .c { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 767px) { .newsletter-bar .c { grid-template-columns: 1fr; gap: 2rem; } }
.newsletter-text h3 { font-size: 1.625rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.newsletter-text p  { color: rgba(255,255,255,.45); margin-top: .5rem; font-size: .9375rem; line-height: 1.7; }
.newsletter-form { display: flex; border-radius: var(--r); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.newsletter-form input {
  flex: 1; padding: .875rem 1.125rem;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-right: none; border-radius: var(--r) 0 0 var(--r);
  color: #fff; font-size: .9375rem; font-family: var(--font); outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form input:focus { background: rgba(255,255,255,.1); border-color: rgba(107,191,43,.4); }
.newsletter-form button {
  padding: .875rem 1.5rem; background: var(--green); color: #fff;
  border: none; font-weight: 700; font-size: .875rem; white-space: nowrap;
  border-radius: 0 var(--r) var(--r) 0; cursor: pointer;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--green-dk); }

/* Footer brand col */
.footer-brand-col p { color: rgba(255,255,255,.4); margin-top: 0; font-size: .9rem; line-height: 1.75; max-width: 260px; }

/* Responsive mobile */
@media (max-width: 640px) {
  .hero-body { padding: 3.5rem 0 2.5rem; }
  /* hero-word-* no longer used */
  .stats-bar .c { grid-template-columns: 1fr 1fr; }
  .stat-b:nth-child(2n+1) { border-left: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .logos-section .c { gap: .875rem; }
}

/* Scroll reveal placeholder (no JS needed, just sets base) */
.hero-body > * { animation: fadeUp .6s ease both; }
.hero-body > *:nth-child(1) { animation-delay: .1s; }
.hero-body > *:nth-child(2) { animation-delay: .2s; }
.hero-body > *:nth-child(3) { animation-delay: .3s; }
.hero-body > *:nth-child(4) { animation-delay: .4s; }
.hero-body > *:nth-child(5) { animation-delay: .5s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
