/* =============================================================
   GREEN POWER CORPORATION — Main Stylesheet
   gpcpak.com  |  Emerald & Gold theme
   ============================================================= */

/* 1 ── Custom Properties ──────────────────────────────────── */
:root {
  --emerald-deep:   #0C2E22;
  --emerald-deep-2: #0E3327;
  --emerald:        #1E9E6A;
  --emerald-bright: #4FBF8B;
  --gold:           #C2A04A;
  --gold-light:     #DFC07A;
  --light-bg:       #F4FAF6;
  --card:           #FFFFFF;
  --card-border:    #D6E7DD;
  --text-dark:      #163A2C;
  --text-muted:     #5C7568;
  --nav-h:          72px;
  --radius:         10px;
  --radius-lg:      16px;
  --shadow-sm:      0 1px 4px rgba(0,0,0,.08);
  --shadow:         0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:      0 12px 48px rgba(0,0,0,.15);
  --font-head:      'Space Grotesk', system-ui, sans-serif;
  --font-body:      'DM Sans', system-ui, sans-serif;
  --max-w:          1200px;
  --gap:            clamp(24px, 4vw, 48px);
}

/* 2 ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--light-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* 3 ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.gold-underline {
  position: relative;
  display: inline;
  color: var(--emerald-bright);
}
.gold-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* 4 ── Layout Utilities ───────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.section-dark  { background: var(--emerald-deep); color: var(--light-bg); }
.section-dark-2{ background: var(--emerald-deep-2); color: var(--light-bg); }
.section-light { background: var(--light-bg); color: var(--text-dark); }
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.section-header { margin-bottom: clamp(32px, 5vw, 56px); }
.section-header p { color: var(--text-muted); margin-top: 12px; }
.section-dark .section-header p,
.section-dark-2 .section-header p { color: rgba(244,250,246,.65); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

/* 5 ── Navigation ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--emerald-deep);
  border-bottom: 1px solid rgba(79,191,139,.12);
  transition: padding .3s, box-shadow .3s;
}
.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  border-bottom-color: transparent;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-size: clamp(.82rem, 1.4vw, 1.05rem);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.1;
}
.logo-green, .logo-corp { color: #F4FAF6; }
.logo-power { color: var(--emerald-bright); }
.logo-tag {
  font-size: .62rem;
  letter-spacing: .07em;
  color: rgba(244,250,246,.45);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 500;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: rgba(244,250,246,.8);
  font-size: .875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(79,191,139,.12); }

/* Services dropdown */
.has-dropdown { position: relative; }
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dropdown-arrow {
  width: 10px; height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s;
  flex-shrink: 0;
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown.open .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--emerald-deep-2);
  border: 1px solid rgba(79,191,139,.18);
  border-radius: var(--radius);
  min-width: 230px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: .85rem;
  color: rgba(244,250,246,.8);
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: rgba(79,191,139,.15); color: #fff; }

/* Quote CTA in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--emerald-deep) !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 6px;
  margin-left: 8px;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: 6px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(79,191,139,.12); }
.hamburger span {
  width: 22px; height: 2px;
  background: #F4FAF6;
  border-radius: 2px;
  display: block;
  transition: transform .3s, opacity .3s;
}
body.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 99;
}
body.nav-open .nav-overlay { display: block; }

/* 6 ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  transition: all .2s;
  cursor: pointer;
  letter-spacing: .01em;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--emerald-deep);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(194,160,74,.3); }
.btn-outline {
  background: transparent;
  color: #F4FAF6;
  border-color: rgba(244,250,246,.45);
}
.btn-outline:hover { border-color: #F4FAF6; background: rgba(244,250,246,.08); }
.btn-emerald {
  background: var(--emerald);
  color: #fff;
  border-color: var(--emerald);
}
.btn-emerald:hover { background: #18875a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,158,106,.3); }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

/* 7 ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: min(100dvh, 700px);
  background: var(--emerald-deep);
  background-image: url('../assets/hero-bg.svg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,46,34,.92) 0%, rgba(12,46,34,.7) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 40px);
  width: 100%;
}
.hero-content { max-width: 760px; }
.hero h1 { color: #F4FAF6; margin-bottom: 20px; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(244,250,246,.75);
  margin-bottom: 36px;
  max-width: 60ch;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Service page hero (shorter) */
.hero-service {
  min-height: 54vh;
  background: var(--emerald-deep);
  background-image: url('../assets/hero-bg.svg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
}
.hero-service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,46,34,.75) 0%, rgba(12,46,34,.95) 100%);
}
.hero-service .hero-inner { padding: 40px clamp(16px, 4vw, 40px) clamp(40px, 6vw, 64px); }
.hero-service { position: relative; overflow: hidden; }

/* 8 ── Credibility Strip ──────────────────────────────────── */
.cred-strip {
  background: var(--emerald-deep-2);
  border-top: 1px solid rgba(79,191,139,.15);
  border-bottom: 1px solid rgba(79,191,139,.15);
  padding: 28px 0;
}
.cred-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.cred-label {
  font-size: .85rem;
  color: rgba(244,250,246,.6);
  font-style: italic;
  flex: 0 0 auto;
}
.stat-cards { display: flex; flex-wrap: wrap; gap: 12px 32px; }
.stat-card { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--emerald-bright);
  line-height: 1;
}
.stat-lbl {
  font-size: .72rem;
  color: rgba(244,250,246,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 3px;
}
.stat-sep { width: 1px; background: rgba(79,191,139,.2); align-self: stretch; }

/* 9 ── Service Cards ──────────────────────────────────────── */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon img { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.05rem; }
.service-card p { font-size: .875rem; color: var(--text-muted); flex: 1; }
.service-card-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--emerald);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.service-card:hover .service-card-link { gap: 8px; }

/* 10 ── Projects Grid ─────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(79,191,139,.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.project-card:hover { transform: translateY(-4px); border-color: var(--emerald-bright); }
.project-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(30,158,106,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-card-img img { width: 100%; height: 100%; object-fit: cover; }
.project-card-body { padding: 20px; }
.sector-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(194,160,74,.12);
  border: 1px solid rgba(194,160,74,.25);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.project-card h3 {
  font-size: .95rem;
  color: #F4FAF6;
  margin-bottom: 4px;
}
.project-card p { font-size: .82rem; color: rgba(244,250,246,.55); }

/* Light-bg variant for projects page */
.projects-grid.light .project-card {
  background: var(--card);
  border-color: var(--card-border);
}
.projects-grid.light .project-card h3 { color: var(--text-dark); }
.projects-grid.light .project-card p  { color: var(--text-muted); }

/* 11 ── How It Works ──────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), rgba(79,191,139,.2));
}
.step { text-align: center; padding: 16px; }
.step-num {
  width: 56px; height: 56px;
  background: var(--emerald);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1rem; color: #F4FAF6; margin-bottom: 8px; }
.step p { font-size: .83rem; color: rgba(244,250,246,.6); }

/* 12a ── Calculator CTA Band ─────────────────────────────── */
.calc-cta-band {
  background: var(--light-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: clamp(48px, 6vw, 80px) 0;
}
.calc-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.calc-cta-text h2 { margin-bottom: 14px; }
.calc-cta-text p  { color: var(--text-muted); margin-bottom: 20px; }
.calc-cta-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-cta-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-dark);
}
.calc-cta-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--emerald);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}
.calc-cta-action {
  text-align: center;
  flex-shrink: 0;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.calc-cta-note {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 22ch;
  line-height: 1.4;
}
.nav-link-calc { color: var(--emerald-bright) !important; font-weight: 600 !important; }

/* 12 ── CTA Band ──────────────────────────────────────────── */
.cta-band {
  background: var(--emerald-deep);
  border-top: 1px solid rgba(79,191,139,.15);
  border-bottom: 1px solid rgba(79,191,139,.15);
  padding: clamp(48px, 6vw, 72px) 0;
  text-align: center;
}
.cta-band h2 { color: #F4FAF6; margin-bottom: 12px; }
.cta-band p  { color: rgba(244,250,246,.65); margin: 0 auto 32px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  border: 2px solid #25D366;
}
.wa-btn:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-2px); }
.wa-icon { width: 20px; height: 20px; fill: currentColor; }

/* 13 ── Local Contracting Block ───────────────────────────── */
.contracting-block {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.contracting-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.chip {
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  background: var(--light-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  color: var(--text-dark);
}

/* 14 ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--emerald-deep);
  border-top: 1px solid rgba(79,191,139,.15);
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-desc {
  font-size: .85rem;
  color: rgba(244,250,246,.55);
  line-height: 1.7;
  max-width: 32ch;
}
.footer-contacts { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.footer-contacts a {
  font-size: .82rem;
  color: rgba(244,250,246,.65);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.footer-contacts a:hover { color: var(--emerald-bright); }
.footer-contact-icon { width: 14px; height: 14px; flex-shrink: 0; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .83rem;
  color: rgba(244,250,246,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--emerald-bright); }
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(79,191,139,.1);
  padding: 20px clamp(16px, 4vw, 40px);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .75rem; color: rgba(244,250,246,.35); }
.footer-std {
  font-size: .72rem;
  color: rgba(244,250,246,.35);
  letter-spacing: .04em;
}

/* 15 ── Cards (feature, highlight) ───────────────────────── */
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(79,191,139,.14);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.feature-card h3 { color: #F4FAF6; margin-bottom: 8px; }
.feature-card p  { font-size: .875rem; color: rgba(244,250,246,.6); }

.highlight-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.highlight-card h3 { color: var(--text-dark); margin-bottom: 8px; }
.highlight-card p  { font-size: .875rem; color: var(--text-muted); }

/* Check lists */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9rem;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--emerald);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13 4L6.5 11 3 7.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .83rem; font-weight: 600; color: var(--text-dark); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--card);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(30,158,106,.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field.hidden { display: none; }

/* Contact info blocks */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(79,191,139,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-val { font-size: .95rem; color: var(--text-dark); }
.contact-info-val a { color: var(--emerald); font-weight: 500; }
.contact-info-val a:hover { text-decoration: underline; }

/* 16 ── Service Page Specific ─────────────────────────────── */
.deliverable-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.deliverable-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.del-dot {
  width: 8px; height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.deliverable-item p { font-size: .875rem; color: var(--text-muted); margin: 4px 0 0; }
.deliverable-item h4 { font-size: .9rem; }

.std-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.std-badge {
  background: rgba(30,158,106,.1);
  border: 1px solid rgba(30,158,106,.25);
  color: var(--emerald);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: .04em;
}

/* Turnaround table */
.turnaround-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.turnaround-table th,
.turnaround-table td {
  padding: 11px 16px;
  text-align: left;
  font-size: .875rem;
  border-bottom: 1px solid var(--card-border);
}
.turnaround-table th {
  font-weight: 700;
  color: var(--text-dark);
  background: var(--light-bg);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.turnaround-table td { color: var(--text-muted); }
.turnaround-table tr:last-child td { border-bottom: none; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: .78rem;
  color: rgba(244,250,246,.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(244,250,246,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--emerald-bright); }
.breadcrumb span { opacity: .4; }

/* Section intro (service pages) */
.section-intro-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}

/* 17 ── Animations ─────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* 18 ── Media Queries ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps  { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .section-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 88vw);
    height: 100dvh;
    background: var(--emerald-deep);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: calc(var(--nav-h) + 16px) 20px 40px;
    overflow-y: auto;
    border-left: 1px solid rgba(79,191,139,.15);
    transition: right .3s cubic-bezier(.4,0,.2,1);
    z-index: 100;
  }
  body.nav-open .nav-links { right: 0; }
  .nav-link { width: 100%; padding: 10px 14px; }
  .nav-cta { width: 100%; justify-content: center; margin-left: 0; margin-top: 8px; }
  .has-dropdown .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius);
    padding: 4px 0 4px 12px;
    margin-top: 4px;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-trigger { justify-content: space-between; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contracting-block { grid-template-columns: 1fr; }
  .deliverable-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .service-cards { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps  { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cred-strip-inner { flex-direction: column; align-items: flex-start; }
  .stat-cards { gap: 12px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .field-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .calc-cta-inner { grid-template-columns: 1fr; }
  .calc-cta-action { text-align: left; }
  .calc-cta-note { max-width: none; }
}

/* Utility */
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-2  { margin-bottom: 8px; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.hidden { display: none; }
