/* ============================================================
   BizGen — Global Stylesheet
   Font: Poppins | Navy: #071A44 | Orange: #FF9600
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,700;1,800&display=swap');

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

/* --- Variables --- */
:root {
  --navy:        #071A44;
  --orange:      #FF9600;
  --footer:      #062B67;
  --light:       #F7F7F7;
  --icon-bg:     #F2F3F6;
  --border:      #D6D6D6;
  --white:       #FFFFFF;
  --nav-h:       72px;
  --max-w:       1180px;
  --pad:         32px;

  /* Legacy aliases (used by inner pages via inline styles) */
  --bg:          #FFFFFF;
  --bg-alt:      #F7F7F7;
  --surface:     #F2F3F6;
  --text:        #071A44;
  --text-sec:    #071A44;
  --text-muted:  rgba(7, 26, 68, 0.45);
  --accent:      #FF9600;
  --accent-dark: #e08500;
  --border-light: #E8E8E8;
  --sec-pad:     80px;
}

/* --- Base --- */
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

/* --- Headings --- */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-style: italic;
  color: var(--navy);
  line-height: 1.2;
}
h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); }
p  { font-family: 'Poppins', sans-serif; color: var(--navy); }

/* --- Typography helpers --- */
.section-label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Legacy .label used on inner pages */
.label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--orange);
}

.accent      { color: var(--orange); }
.body-text   { font-size: 13px; font-weight: 400; line-height: 1.8; color: var(--navy); }

.text-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.text-link:hover { color: var(--orange); }
.text-link .arrow { color: var(--orange); }

.learn-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 18px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn--primary { background-color: var(--orange); color: var(--white); }
.btn--primary:hover { opacity: 0.88; }

.btn--outline { background-color: var(--white); color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background-color: var(--navy); color: var(--white); }

.btn--cta-primary { background-color: var(--orange); color: var(--white); border-radius: 4px; }
.btn--cta-primary:hover { opacity: 0.88; }

.btn--cta-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 4px;
}
.btn--cta-secondary:hover { background-color: rgba(255,255,255,0.12); }

.btn--wa {
  background-color: var(--navy);
  color: var(--white);
  width: 100%;
  padding: 16px 24px;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
}
.btn--wa:hover { background-color: var(--orange); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background-color: var(--white);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 14px rgba(7,26,68,0.08); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo { display: flex; align-items: center; }
.nav__logo-img { width: 150px; height: auto; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background-color: var(--orange);
}

.nav__actions { display: flex; align-items: center; }

.nav__login {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background-color: var(--white);
  border: 1px solid #EEF0F4;
  border-radius: 6px;
  padding: 8px 14px;
  transition: background-color 0.2s;
}
.nav__login:hover { background-color: #F5F6FA; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background-color: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background-color: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile a { font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.nav__mobile a.active { color: var(--orange); }

/* ============================================================
   Hero — Homepage
   ============================================================ */
.hero {
  padding-top: var(--nav-h);
  background-color: var(--white);
  overflow: hidden;
  position: relative;
}

.hero__bg-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 390px;
  height: 390px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.hero__bg-mark img { width: 100%; height: 100%; object-fit: contain; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 520px; }

.hero__title {
  font-size: 56px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 16px;
}
.hero__sub {
  font-size: 34px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero__body {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 28px;
  max-width: 400px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__image { position: relative; }
.hero__img {
  width: 100%;
  max-width: 760px;
  height: 520px;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

/* --- Hero — Inner pages --- */
.hero--inner {
  min-height: auto;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 64px;
  background-color: var(--light);
  overflow: visible;
}
.hero--inner .hero__title  { font-size: 42px; text-align: left; margin-bottom: 12px; }
.hero--inner .hero__subtitle {
  font-size: 15px; font-weight: 400; font-style: normal;
  line-height: 1.7; color: var(--navy); max-width: 540px;
}
.hero__label {
  display: block;
  font-size: 14px; font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* ============================================================
   Section: Who We Are
   ============================================================ */
.who-we-are { background-color: var(--light); padding: 80px 0; }
.who-we-are__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.who-we-are__content .section-heading { font-size: 36px; margin-bottom: 20px; }
.who-we-are__content .body-text       { margin-bottom: 24px; }
.who-we-are__img {
  width: 100%; height: 300px;
  object-fit: cover;
  border-radius: 24px;
}

/* ============================================================
   Section: Services Grid
   ============================================================ */
.services-section { background-color: var(--white); padding: 80px 0; }
.services-section__header { text-align: center; margin-bottom: 48px; }
.services-section__header .section-heading { font-size: 30px; line-height: 1.25; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.service-card {
  padding: 28px 16px;
  border-right: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:last-child { border-right: none; }
.service-card__icon { width: 54px; height: 54px; margin: 0 auto 16px; }
.service-card__icon img { width: 54px; height: 54px; object-fit: contain; }
.service-card__title {
  font-size: 13px; font-weight: 700; font-style: normal;
  color: var(--navy); margin-bottom: 10px; line-height: 1.3;
}
.service-card__body {
  font-size: 12px; font-weight: 400; line-height: 1.6;
  color: var(--navy); margin-bottom: 14px; flex: 1;
}

/* ============================================================
   Section: Built to Scale
   ============================================================ */
.built-to-scale { background-color: var(--light); padding: 80px 0; }
.built-to-scale__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.built-to-scale__image img {
  width: 100%; max-width: 660px; height: 335px;
  object-fit: cover; border-radius: 8px;
}
.built-to-scale__content .section-heading { margin-bottom: 20px; }
.built-to-scale__content .body-text       { margin-bottom: 24px; }

/* ============================================================
   Section: How It Works
   ============================================================ */
.how-it-works { background-color: var(--white); padding: 80px 0; }
.how-it-works__label { text-align: center; margin-bottom: 56px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
/* Dashed connector line at badge centre (28px / 2 = 14px from top) */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 12.5%;
  right: 12.5%;
  border-top: 2px dashed #A9A9A9;
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step__badge {
  width: 28px; height: 28px;
  background-color: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 6px var(--white); /* hides dashed line behind badge */
}
.step__circle {
  width: 70px; height: 70px;
  background-color: var(--icon-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step__circle img { width: 62px; height: 62px; object-fit: contain; }
.step__title {
  font-size: 14px; font-weight: 700; font-style: normal;
  color: var(--navy); margin-bottom: 10px;
}
.step__body { font-size: 13px; font-weight: 400; line-height: 1.6; color: var(--navy); }

/* ============================================================
   Section: Why BizGen
   ============================================================ */
.why-bizgen { background-color: var(--light); padding: 80px 0; }
.why-bizgen__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.why-bizgen__collage {
  width: 100%; max-width: 400px; height: 250px;
  object-fit: cover; border-radius: 12px;
}
.why-bizgen__content .section-label   { margin-bottom: 8px; }
.why-bizgen__content .section-heading { margin-bottom: 28px; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit  { display: flex; flex-direction: column; gap: 10px; }
.benefit__check { width: 22px; height: 22px; flex-shrink: 0; object-fit: contain; }
.benefit__title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.benefit__body  { font-size: 13px; font-weight: 400; line-height: 1.6; color: var(--navy); }

/* ============================================================
   Section: Who We Work With
   ============================================================ */
.who-we-work-with { background-color: var(--white); padding: 80px 0; }
.who-we-work-with__heading {
  text-align: center;
  font-size: 16px; font-weight: 800; font-style: normal;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 48px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}
.industry__icon { width: 55px; height: 55px; margin: 0 auto 12px; }
.industry__icon img { width: 55px; height: 55px; object-fit: contain; }
.industry__label { font-size: 13px; font-weight: 600; color: var(--navy); }

/* ============================================================
   Section: CTA Banner
   ============================================================ */
.cta-section { padding: 40px 0; background-color: var(--white); }
.cta-banner {
  background-color: var(--footer);
  border-radius: 14px;
  padding: 35px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner__text { flex: 1; }
.cta-banner__heading {
  font-size: 30px; font-weight: 800; font-style: italic;
  color: var(--white); margin-bottom: 8px; line-height: 1.2;
}
.cta-banner__body {
  font-size: 13px; font-weight: 400; font-style: italic;
  line-height: 1.6; color: rgba(255,255,255,0.85);
}
.cta-banner__actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background-color: var(--footer); padding: 55px 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}
.footer__logo   { width: 150px; height: auto; margin-bottom: 20px; }
.footer__desc   { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: border-color 0.2s;
}
.footer__social-link:hover { border-color: var(--white); }
.footer__col-heading { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer__col-links   { display: flex; flex-direction: column; gap: 10px; }
.footer__col-links li a,
.footer__col-links li span {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer__col-links li a:hover { color: var(--white); }
.footer__col-links--contact li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.75);
}
.footer__col-links--contact svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.75); }

/* ============================================================
   Inner Pages — Shared Utilities
   ============================================================ */
.section-header           { margin-bottom: 3rem; }
.section-header .label    { display: block; margin-bottom: 0.75rem; }
.section-header h2        { font-size: 2rem; font-weight: 800; font-style: italic; color: var(--navy); }
.divider { width: 48px; height: 3px; background-color: var(--orange); margin-bottom: 1.5rem; }

/* CTA strip (about / services / contact pages) */
.cta-strip { background-color: var(--footer); padding: 70px 0; }
.cta-strip .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-strip h2 { color: var(--white); font-size: 1.8rem; max-width: 520px; }
.cta-strip .btn--primary { background-color: var(--orange); color: var(--white); flex-shrink: 0; }
.cta-strip .btn--primary:hover { opacity: 0.88; }

/* ============================================================
   About Page
   ============================================================ */
.about-story {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: 5rem; align-items: start; padding: 80px 0;
}
.about-story__sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }
.about-story__body p { font-size: 15px; line-height: 1.8; margin-bottom: 1.25rem; }

.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background-color: var(--border);
}
.mv-card { background-color: var(--white); padding: 3rem; }
.mv-card .label { display: block; margin-bottom: 1rem; }
.mv-card h3 { font-size: 1.5rem; margin-bottom: 1.25rem; }
.mv-card p  { font-size: 14px; line-height: 1.7; }

.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.value-card { padding: 2.5rem 2rem; border-right: 1px solid var(--border); }
.value-card:last-child { border-right: none; }
.value-card__num {
  font-size: 2.5rem; font-weight: 800; font-style: italic;
  color: var(--icon-bg); line-height: 1; margin-bottom: 1.25rem;
}
.value-card h4 {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.value-card p { font-size: 13px; line-height: 1.7; }

/* ============================================================
   Services Detail Page
   ============================================================ */
.service-detail { padding: 80px 0; border-bottom: 1px solid var(--border); }
.service-detail:last-of-type { border-bottom: none; }
.sd-inner {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: 5rem; align-items: start;
}
.sd-meta { position: sticky; top: calc(var(--nav-h) + 2rem); }
.sd-num  {
  font-size: 5rem; font-weight: 800; font-style: italic;
  color: var(--icon-bg); line-height: 1; margin-bottom: 1rem;
}
.sd-body h3 { font-size: 1.5rem; margin-bottom: 1.25rem; }
.sd-body p  { font-size: 14px; line-height: 1.7; margin-bottom: 1.25rem; }
.sd-list    { margin-top: 2rem; border: 1px solid var(--border); }
.sd-list li {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 400; color: var(--navy);
}
.sd-list li:last-child { border-bottom: none; }
.sd-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background-color: var(--orange); flex-shrink: 0;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 6rem; align-items: start; padding: 80px 0;
}
.contact-info { position: sticky; top: calc(var(--nav-h) + 2rem); }
.contact-info h2    { font-size: 2rem; margin-bottom: 1.5rem; }
.contact-info > p   { font-size: 14px; line-height: 1.7; margin-bottom: 2rem; }

.c-details { display: flex; flex-direction: column; gap: 1.25rem; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid var(--border); }
.c-detail-item { display: flex; flex-direction: column; gap: 0.25rem; }
.c-detail-item .label { font-size: 12px; color: var(--text-muted); }
.c-detail-item a, .c-detail-item span { font-size: 14px; color: var(--navy); transition: color 0.2s; }
.c-detail-item a:hover { color: var(--orange); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group   { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 400; color: var(--navy);
  background-color: transparent;
  border: 1px solid var(--border);
  padding: 12px 16px; outline: none; width: 100%;
  border-radius: 4px; -webkit-appearance: none; appearance: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(7,26,68,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23071A44' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px; cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group input.error,
.form-group textarea.error,
.form-group select.error { border-color: #c0392b; }
.form-err       { font-size: 12px; color: #c0392b; display: none; }
.form-err.show  { display: block; }

/* ============================================================
   Scroll Animations
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }

/* ============================================================
   Responsive — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero__title { font-size: 46px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(3) { border-right: none; }
  .service-card { border-bottom: 1px solid var(--border); }
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) { border-bottom: none; }

  .industries-grid { grid-template-columns: repeat(3, 1fr); }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-right: none; }
  .value-card:nth-child(1),
  .value-card:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ============================================================
   Responsive — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; --pad: 20px; }

  /* Nav */
  .nav__links    { display: none; }
  .nav__actions  { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile   { display: flex; }

  /* Hero */
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__bg-mark { display: none; }
  .hero__title { font-size: 38px; }
  .hero__sub   { font-size: 22px; }
  .hero__img   { height: 260px; -webkit-mask-image: none; mask-image: none; }
  .hero--inner .hero__title { font-size: 30px; }

  /* Who We Are */
  .who-we-are__inner { grid-template-columns: 1fr; }
  .who-we-are__img   { height: 220px; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr 1fr; border-radius: 4px; }
  .service-card:nth-child(odd)  { border-right: 1px solid var(--border); }
  .service-card:nth-child(even) { border-right: none; }
  .service-card { border-bottom: 1px solid var(--border); }
  .service-card:nth-child(5),
  .service-card:nth-child(6) { border-bottom: none; }

  /* Built to Scale */
  .built-to-scale__inner { grid-template-columns: 1fr; }
  .built-to-scale__image img { height: 240px; max-width: 100%; }

  /* How It Works */
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-grid::before { display: none; }

  /* Why BizGen */
  .why-bizgen__inner { grid-template-columns: 1fr; }
  .why-bizgen__collage { max-width: 100%; height: 220px; }
  .benefits { grid-template-columns: 1fr 1fr; }

  /* Who We Work With */
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* CTA Banner */
  .cta-banner { padding: 28px 24px; flex-direction: column; align-items: flex-start; border-radius: 10px; }
  .cta-banner__heading { font-size: 22px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  /* About */
  .about-story { grid-template-columns: 1fr; gap: 2.5rem; padding: 48px 0; }
  .about-story__sticky { position: static; }
  .mv-grid   { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card  { border-right: none; border-bottom: 1px solid var(--border); }
  .value-card:last-child { border-bottom: none; }

  /* Services detail */
  .sd-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sd-meta  { position: static; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 48px 0; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA strip */
  .cta-strip .container { flex-direction: column; align-items: flex-start; }
}
