/* ============================================================
   S.K Marketing Private Limited — style.css
   Palette: Emerald Green (#064e3b) + White + Slate (#1e293b)
   Style: Centered hero, bold card grid, clean corporate premium
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ============================================================ */

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

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

:root {
  --emerald:       #064e3b;
  --emerald-mid:   #065f46;
  --emerald-light: #10b981;
  --emerald-pale:  #d1fae5;
  --slate:         #1e293b;
  --slate-mid:     #334155;
  --slate-light:   #64748b;
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --warm-grey:     #f1f5f9;
  --accent:        #f59e0b;
  --accent-light:  #fef3c7;
  --border:        #e2e8f0;
  --text-dark:     #0f172a;
  --text-body:     #475569;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 20px 48px rgba(6,78,59,0.15);
  --radius:        10px;
  --radius-lg:     18px;
  --radius-xl:     28px;
  --transition:    0.28s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Utility ── */
.container  { max-width: 1180px; margin: 0 auto; padding: 0 1.75rem; }
.section    { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-emerald{ color: var(--emerald); }
.text-accent { color: var(--accent); }
.bg-emerald  { background: var(--emerald); }
.bg-slate    { background: var(--slate); }
.bg-off      { background: var(--off-white); }
.bg-warm     { background: var(--warm-grey); }

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--emerald-pale);
  color: var(--emerald);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.tag-pill.white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.tag-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.divider-line {
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--emerald-light), var(--emerald));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider-line.center { margin: 1rem auto 1.5rem; }
.divider-line.white  { background: rgba(255,255,255,0.5); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-emerald {
  background: var(--emerald);
  color: var(--white);
}
.btn-emerald:hover { background: var(--emerald-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,78,59,0.35); }
.btn-white {
  background: var(--white);
  color: var(--emerald);
}
.btn-white:hover { background: var(--emerald-pale); transform: translateY(-2px); }
.btn-outline-emerald {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}
.btn-outline-emerald:hover { background: var(--emerald); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.8rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.75rem;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-svg { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  color: var(--slate-mid);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 7px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--emerald);
  background: var(--emerald-pale);
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-light);
}
.nav-phone-label span { color: var(--emerald); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 2px; transition: var(--transition); }

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, var(--emerald) 0%, var(--emerald-mid) 55%, #0a7a55 100%);
  padding: 7rem 0 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-content {
  text-align: center;
  padding: 4rem 1.75rem 3rem;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
.hero h1 span {
  background: linear-gradient(135deg, #6ee7b7, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-item { text-align: center; }
.hero-trust-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #6ee7b7;
  line-height: 1;
}
.hero-trust-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }

.hero-image-strip {
  width: 100%;
  position: relative;
  background: var(--emerald-mid);
}
.hero-image-strip img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
}
.hero-image-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--emerald-mid), transparent);
  z-index: 1;
  pointer-events: none;
}

/* ── Ticker / Marquee ── */
.ticker {
  background: var(--accent);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 28s linear infinite;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-sep { color: var(--emerald); }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--emerald-light); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap {
  width: 50px; height: 50px;
  background: var(--emerald-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.6rem; }
.service-card p  { font-size: 0.875rem; color: var(--text-body); line-height: 1.65; margin-bottom: 1rem; }
.service-link { font-size: 0.8rem; font-weight: 700; color: var(--emerald); display: inline-flex; align-items: center; gap: 0.3rem; }
.service-link:hover { gap: 0.6rem; }

/* ── Feature Strip (3-col) ── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-strip-item {
  padding: 2rem 1.75rem;
  border-right: 1.5px solid var(--border);
  transition: var(--transition);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:hover { background: var(--emerald-pale); }
.feature-strip-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.feature-strip-item h4 { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.4rem; }
.feature-strip-item p  { font-size: 0.8rem; color: var(--text-body); line-height: 1.6; }

/* ── Two-col split ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  position: relative;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.split-badge-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
}
.split-badge-label { font-size: 0.72rem; color: var(--text-body); margin-top: 0.2rem; }

.check-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.check-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-body);
}
.check-icon {
  width: 20px; height: 20px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.65rem;
  color: var(--white);
  font-weight: 700;
}

/* ── Process Timeline ── */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.process-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.process-item:last-child { padding-bottom: 0; }
.process-item::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--emerald-light), var(--border));
}
.process-item:last-child::before { display: none; }
.process-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.process-num {
  width: 52px; height: 52px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(6,78,59,0.35);
}
.process-body { padding-top: 0.75rem; }
.process-body h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.process-body p  { font-size: 0.875rem; color: var(--text-body); line-height: 1.7; }

/* ── Portfolio ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--warm-grey);
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-card-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card-bg { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,78,59,0.95) 0%, transparent 55%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #6ee7b7; margin-bottom: 0.35rem; }
.portfolio-title { font-size: 1rem; color: var(--white); font-weight: 700; margin-bottom: 0.4rem; }
.portfolio-result { font-size: 0.78rem; color: rgba(255,255,255,0.75); }

/* ── Testimonials ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--emerald-light); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
.testimonial-text { font-size: 0.875rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); }
.testimonial-company { font-size: 0.72rem; color: var(--slate-light); }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--emerald-light); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 1.4rem; }
.blog-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--emerald); margin-bottom: 0.5rem; }
.blog-card-body h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-body p  { font-size: 0.83rem; color: var(--text-body); line-height: 1.6; margin-bottom: 0.9rem; }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--slate-light); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq-item.open { border-color: var(--emerald-light); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  gap: 1rem;
}
.faq-icon {
  width: 26px; height: 26px;
  background: var(--warm-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--slate-mid);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--emerald); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 1.4rem 1.1rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--emerald-light); box-shadow: var(--shadow-sm); }
.contact-card-icon {
  width: 38px; height: 38px;
  background: var(--emerald-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-card-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 0.25rem; }
.contact-card-value { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.contact-card-sub   { font-size: 0.78rem; color: var(--text-body); margin-top: 0.15rem; }

.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--text-dark); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(6,78,59,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  background: var(--emerald-pale);
  border: 1px solid var(--emerald-light);
  color: var(--emerald);
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 0.75rem;
}

/* ── Hours ── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.1); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.55rem 0; font-size: 0.83rem; }
.hours-table td:first-child { color: rgba(255,255,255,0.75); }
.hours-table td:last-child { text-align: right; color: #6ee7b7; font-weight: 700; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--emerald-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-mid));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.team-card h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.team-role { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--emerald); margin-bottom: 0.7rem; }
.team-card p { font-size: 0.83rem; color: var(--text-body); line-height: 1.6; }

/* ── Values ── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--emerald); background: var(--emerald-pale); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 0.9rem; }
.value-card h4 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.82rem; color: var(--text-body); line-height: 1.6; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-mid) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.9rem; }
.cta-banner p  { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Policy Pages ── */
.policy-hero {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-mid) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}
.policy-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.policy-hero p  { color: rgba(255,255,255,0.7); }
.policy-body { max-width: 780px; margin: 0 auto; padding: 4rem 1.75rem; }
.policy-body h2 { font-size: 1.3rem; color: var(--text-dark); margin: 2.5rem 0 0.6rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--emerald-pale); }
.policy-body h3 { font-size: 1rem; color: var(--text-dark); margin: 1.5rem 0 0.4rem; }
.policy-body p  { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; margin-bottom: 0.9rem; }
.policy-body ul { margin: 0.6rem 0 0.9rem 1.5rem; }
.policy-body ul li { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 0.35rem; list-style: disc; }
.policy-body a  { color: var(--emerald); text-decoration: underline; }
.policy-updated { background: var(--emerald-pale); border-left: 3px solid var(--emerald); padding: 0.7rem 1rem; border-radius: 0 8px 8px 0; font-size: 0.83rem; color: var(--emerald); margin-bottom: 2rem; font-weight: 600; }

/* ── Filter Tabs ── */
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-tab {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--text-body);
  background: transparent;
  transition: var(--transition);
}
.filter-tab:hover, .filter-tab.active { background: var(--emerald); color: var(--white); border-color: var(--emerald); }

/* ── Page Hero (inner) ── */
.page-hero {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-mid) 100%);
  padding: 8rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.bg-off::after { background: var(--off-white); }
.page-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 580px; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1.25rem; font-size: 0.78rem; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: #6ee7b7; }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: #6ee7b7; }

/* ── Footer ── */
.footer {
  background: var(--slate);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.83rem; line-height: 1.7; margin: 0.9rem 0 1.4rem; max-width: 260px; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--emerald); color: var(--white); border-color: var(--emerald); }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6ee7b7; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: #6ee7b7; padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.65rem; align-items: flex-start; margin-bottom: 0.7rem; }
.footer-contact-item svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 3px; fill: #6ee7b7; }
.footer-contact-item span { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: #6ee7b7; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-grid.reverse { direction: ltr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip-item { border-right: none; border-bottom: 1.5px solid var(--border); }
  .feature-strip-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0.2rem;
    z-index: 999;
  }
  .hero-trust { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
