/* ================================================================
   Ingenium Solutions — Design System
   Palette: forest green #0a3526 | warm beige #d4cfc0 | white #fff
   Fonts: Space Grotesk (headings) + Inter (body)
   ================================================================ */

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

:root {
  /* Brand green */
  --green:       #0a3526;
  --green-2:     #0d4530;
  --green-dim:   rgba(10, 53, 38, 0.08);
  --green-mid:   rgba(10, 53, 38, 0.15);

  /* Content backgrounds */
  --beige:       #d4cfc0;
  --beige-2:     #cac4b4;
  --beige-card:  #e2ddd4;

  /* Surfaces */
  --white:       #ffffff;
  --card:        #ffffff;

  /* Borders */
  --border:      #b8b3a4;
  --border-2:    #a8a294;

  /* Accent (same as brand green) */
  --accent:      var(--green);

  /* Text on light backgrounds */
  --text:        #111210;
  --text-muted:  #52504a;
  --text-faint:  #9c9a90;

  /* Text on dark-green backgrounds */
  --on-green:         #ffffff;
  --on-green-muted:   rgba(255,255,255,0.62);
  --on-green-faint:   rgba(255,255,255,0.32);

  /* Fonts */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --nav-h:     68px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, button, select { font-family: inherit; }

/* ================================================================
   LAYOUT
   ================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section    { padding: 100px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 140px 0; }

/* ================================================================
   TYPOGRAPHY HELPERS
   ================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

/* On light (beige) backgrounds */
.label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
}

/* On dark-green backgrounds */
.label--light {
  color: var(--on-green-muted);
}

.section-header            { margin-bottom: 56px; }
.section-header .label     { margin-bottom: 16px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--text);
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 580px;
}
.section-header--center            { text-align: center; }
.section-header--center p          { margin: 0 auto; }

/* ================================================================
   NAVBAR  — forest green
   ================================================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.navbar .container {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand-group { display: flex; align-items: center; gap: 16px; }
.nav-logo img { height: 80px; width: auto; }
.nav-seanz-logo { height: 50px; width: auto; opacity: 0.85; border-left: 1px solid rgba(255,255,255,0.25); padding-left: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--on-green-muted);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--on-green); background: rgba(255,255,255,0.1); }
.nav-links a.active {
  color: var(--on-green);
  background: rgba(255,255,255,0.16);
  border-radius: 8px;
}

.nav-cta {
  background: #ffffff !important;
  color: var(--green) !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 9px !important;
  padding: 7px 18px !important;
  transition: background 0.2s, opacity 0.2s !important;
}
.nav-cta:hover {
  background: var(--beige) !important;
}
.nav-cta.active {
  background: #ffffff !important;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-green);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--green);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 20px 28px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--on-green-muted);
  padding: 13px 16px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--on-green); background: rgba(255,255,255,0.1); }

.nav-mobile .nav-cta {
  margin-top: 8px;
  text-align: center;
  background: #ffffff !important;
  border: none !important;
  color: var(--green) !important;
  border-radius: 10px !important;
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: all 0.2s var(--ease);
}

/* Primary: green bg, white text — on beige pages */
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,53,38,0.25);
}

/* Primary on green background: white btn, green text */
.btn-primary--invert {
  background: #fff;
  color: var(--green);
}
.btn-primary--invert:hover {
  background: #f0ebe0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Outline on beige */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover { background: rgba(10,53,38,0.06); border-color: var(--green); color: var(--green); }

/* Outline on green bg */
.btn-outline--invert {
  background: transparent;
  color: var(--on-green);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline--invert:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }

.btn-ghost {
  background: transparent;
  color: var(--green);
  padding: 0;
  font-size: 0.9rem;
  gap: 6px;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-lg { padding: 17px 34px; font-size: 1rem; }

/* ================================================================
   HERO  — green background, white text
   ================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 100px;
  background: var(--green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

/* Green-tinted overlay over the photo */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 53, 38, 0.96) 0%,
    rgba(10, 53, 38, 0.82) 50%,
    rgba(10, 53, 38, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--on-green);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--on-green);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: normal;
  color: rgba(255,255,255,0.5);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--on-green-muted);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--on-green-faint);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ================================================================
   PAGE HERO  — green, full-width
   ================================================================ */

.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 80px;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

/* Subtle texture on green */
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .label   { margin-bottom: 16px; color: var(--on-green-muted); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--on-green);
  margin-bottom: 20px;
}
.page-hero p {
  font-family: var(--font-body);
  color: var(--on-green-muted);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
}

/* ================================================================
   SECTION BACKGROUNDS
   ================================================================ */

/* Default body bg is --beige. For alternating sections: */
.section--alt {
  background: var(--beige-2);
}

/* For the stats bar / narrow accent rows */
.section--green {
  background: var(--green);
}

/* ================================================================
   CARDS  — white on beige
   ================================================================ */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(10,53,38,0.15);
}

.card-img-wrap {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  aspect-ratio: 4/3;
}

.card-img-wrap img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.card:hover .card-img-wrap img { transform: scale(1.04); }

.card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.card-body .label  { margin-bottom: 8px; }

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.card-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
}

/* ================================================================
   SERVICE CARDS  — white on beige
   ================================================================ */

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10,53,38,0.12);
}

.service-icon {
  width: 56px; height: 56px;
  background: var(--green-dim);
  border: 1px solid rgba(10,53,38,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  overflow: hidden;
}
.service-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.service-card ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-card ul li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.service-card ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--green);
  font-size: 1rem;
  line-height: 1.4;
}

/* ================================================================
   FEATURE SPLIT  — two-column layout
   ================================================================ */

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-split.reverse > :first-child { order: 2; }
.feature-split.reverse > :last-child  { order: 1; }

.feature-img-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  aspect-ratio: 1;
  box-shadow: 0 4px 24px rgba(10,53,38,0.06);
}

.feature-img-wrap img {
  max-height: 340px;
  object-fit: contain;
}

.feature-text .label   { margin-bottom: 14px; }
.feature-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text);
}
.feature-text p {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 24px 0 32px;
}

.why-center {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.why-center .label { margin-bottom: 14px; }
.why-center h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text);
}
.why-center p {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.why-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 36px;
  text-align: left;
}
.why-checklist .feature-check {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .why-checklist { grid-template-columns: 1fr; }
}

.feature-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.925rem;
  color: var(--text-muted);
}

.check-icon {
  width: 20px; height: 20px;
  background: var(--green-dim);
  border: 1px solid rgba(10,53,38,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green);
  font-size: 0.7rem;
}

/* ================================================================
   SPEC TABLE
   ================================================================ */

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }

.spec-table td {
  padding: 13px 0;
  font-size: 0.9rem;
}

.spec-table td:first-child {
  color: var(--text-muted);
  width: 45%;
}

.spec-table td:last-child { font-weight: 500; color: var(--text); }

/* ================================================================
   3D MODEL STACK SWITCHER
   ================================================================ */
.stack-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.stack-btn span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}
.stack-btn:hover { border-color: var(--green); }
.stack-btn--active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.stack-btn--active span { color: rgba(255,255,255,0.7); }

/* ================================================================
   INSTALLATION GALLERY
   ================================================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  background: var(--beige-card);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,53,38,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-caption span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

/* ================================================================
   TEAM CARDS
   ================================================================ */

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: grid;
  grid-template-columns: 340px 1fr;
}

.team-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(10,53,38,0.15);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 380px;
}

.team-body { padding: 44px; background: var(--white); }

.team-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--text);
}

.team-bio {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 36px;
}

.team-contacts { display: flex; flex-direction: column; gap: 11px; }

.team-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.team-contact-row .icon {
  width: 32px; height: 32px;
  background: var(--green-dim);
  border: 1px solid rgba(10,53,38,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--green);
}

.team-contact-row a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.team-contact-row a:hover { color: var(--green); }

/* ================================================================
   CTA SECTION  — green background
   ================================================================ */

.cta-section {
  background: var(--green);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cta-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-section .cta-text { flex: 1; min-width: 280px; }

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--on-green);
  position: relative;
}

.cta-section p {
  font-family: var(--font-body);
  color: var(--on-green-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
  max-width: 520px;
  line-height: 1.8;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  flex-shrink: 0;
}

/* ================================================================
   STATS BAR  — green background
   ================================================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-item {
  background: var(--green);
  padding: 32px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--on-green);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--on-green-muted);
  font-weight: 500;
}

/* ================================================================
   FOOTER  — green background
   ================================================================ */

.footer {
  background: var(--green);
  padding: 64px 0 32px;
}

.footer .container {
  max-width: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}

.footer-brand img { height: 140px; margin-bottom: 20px; }

.footer-brand p {
  color: var(--on-green-muted);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--on-green);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--on-green-muted);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--on-green-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--on-green); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-green-faint);
  margin-bottom: 3px;
}

.footer-contact-item dd,
.footer-contact-item dd a {
  font-size: 0.875rem;
  color: var(--on-green-muted);
  transition: color 0.2s;
}
.footer-contact-item dd a:hover { color: var(--on-green); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--on-green-faint);
}

/* ================================================================
   CONTACT  — forms on beige
   ================================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--text);
}

.contact-info > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 44px;
}

.contact-items { display: flex; flex-direction: column; gap: 26px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-icon {
  width: 44px; height: 44px;
  background: var(--green-dim);
  border: 1px solid rgba(10,53,38,0.2);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--green);
}

.contact-item dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.contact-item dd,
.contact-item dd a {
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
}
.contact-item dd a:hover { color: var(--green); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.contact-form > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-faint); }

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
}

.form-textarea { resize: vertical; min-height: 130px; }

/* ================================================================
   PRODUCT HERO PAGES
   ================================================================ */

.product-hero-wrap {
  padding: calc(var(--nav-h) + 64px) 0 80px;
  background: var(--green);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-hero-img {
  background: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  box-shadow: 0 32px 96px rgba(0,0,0,0.28), 0 8px 28px rgba(0,0,0,0.14);
  overflow: hidden;
}

.product-hero-img img {
  max-height: 520px;
  width: 100%;
  object-fit: contain;
  transform: scale(1.75);
}

/* Text inside green product hero */
.product-hero-wrap .label { color: var(--on-green-muted); }
.product-hero-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--on-green);
}
.product-hero-wrap p  { color: var(--on-green-muted); }

.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--on-green);
  letter-spacing: -0.03em;
  margin-top: 24px;
  line-height: 1;
}

.product-price-note {
  font-size: 0.84rem;
  color: var(--on-green-muted);
  margin-bottom: 32px;
  margin-top: 6px;
}

/* ================================================================
   DIVIDER
   ================================================================ */

.divider { height: 1px; background: var(--border); }

/* ================================================================
   BADGE
   ================================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--on-green);
}

/* ================================================================
   CLIENTS
   ================================================================ */

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.client-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex: 1 1 180px;
  max-width: 220px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.client-tile:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px var(--green-dim);
}

.client-logo {
  max-width: 120px;
  max-height: 56px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.2s var(--ease);
}

.client-tile:hover .client-logo {
  filter: grayscale(0) opacity(1);
}

.client-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1100px) {
  .feature-split { gap: 52px; }
  .team-card { grid-template-columns: 280px 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.2fr; gap: 40px; }
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .feature-split, .product-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse > :first-child { order: 0; }
  .feature-split.reverse > :last-child  { order: 0; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { aspect-ratio: 16/9; min-height: unset; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 72px 0; }
  .section--lg { padding: 80px 0; }
  .section--sm { padding: 48px 0; }
  .section-header { margin-bottom: 40px; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 56px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-wrap: wrap; justify-content: center; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 28px; }
  .team-body { padding: 28px; }
  .btn-lg { padding: 14px 26px; }
}

/* ================================================================
   SEANZ ACCREDITATION
   ================================================================ */

.seanz-section {
  background: #0a1512;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.seanz-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93,191,138,0.3), transparent);
}

.seanz-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93,191,138,0.3), transparent);
}

.seanz-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.seanz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(93,191,138,0.12);
  border: 1px solid rgba(93,191,138,0.3);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5DBF8A;
  margin-bottom: 24px;
}

.seanz-eyebrow-dot {
  width: 6px; height: 6px;
  background: #5DBF8A;
  border-radius: 50%;
  animation: ies-pulse 2s infinite;
}

.seanz-title {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 24px;
}

.seanz-title em { font-style: italic; color: #5DBF8A; }

.seanz-desc {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

.seanz-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seanz-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.seanz-point-check {
  width: 20px; height: 20px;
  background: rgba(93,191,138,0.12);
  border: 1.5px solid rgba(93,191,138,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #5DBF8A;
  font-size: 0.7rem;
  font-weight: 700;
}

.seanz-logo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 300px;
}

.seanz-logo-card img {
  width: 220px;
  height: auto;
  display: block;
}

.seanz-member-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* Light-background variant used on services page */
.seanz-accred-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.seanz-accred-logo img {
  width: 160px;
  height: auto;
  filter: grayscale(0) opacity(1);
}

/* Footer SEANZ badge */
.footer-accred {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-accred-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.footer-seanz-logo {
  width: 110px;
  height: auto;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-seanz-logo:hover { opacity: 0.85; }

@media (max-width: 900px) {
  .seanz-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .seanz-logo-card {
    min-width: unset;
    max-width: 340px;
    margin: 0 auto;
    padding: 40px;
  }
  .seanz-accred-strip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ================================================================
   RESPONSIVE GRID UTILITIES
   ================================================================ */

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

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
