/* ============================================================
   TEAL.WORKS — STATIC SITE STYLESHEET
   ============================================================ */

/* ── Fonts ── */
@font-face {
  font-family: 'Nohemi';
  src: url('../fonts/nohemi-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nohemi';
  src: url('../fonts/nohemi-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ── */
:root {
  --teal: #008080;
  --teal-light: #e6f4f4;
  --teal-mid: #006666;
  --bg: #ffffff;
  --stone: #f7f7f5;
  --dark: #15171a;
  --text: #3a3a3a;
  --muted: #8a8a8a;
  --border: #e8e8e8;
  --card-bg: #f9f9f9;

  --font-head: 'Nohemi', 'Georgia', serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-w: 1180px;
  --px: clamp(1.5rem, 5vw, 4rem);
  --nav-h: 100px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout helpers ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section {
  padding: clamp(4rem, 8vw, 7rem) var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 3px;
  transition: all 0.25s var(--ease);
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
}
.btn-primary:hover {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,128,128,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  border: 2px solid var(--dark);
}
.btn-dark:hover {
  background: #2a2d32;
  border-color: #2a2d32;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #fff url('../images/strokes.svg') left center / auto auto no-repeat;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nav-inner {
  width: 100%;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 80px;
  width: 80px;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: var(--teal);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-contact-btn:hover { background: var(--teal-mid); }
.nav-contact-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { transform: scaleX(1); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--px) 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--teal); }

/* Page offset */
.page-body { padding-top: var(--nav-h); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem var(--px) 2.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img {
  height: 32px;
  width: auto;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.footer-logo p { font-size: 0.875rem; line-height: 1.6; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col p, .footer-col a {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════
   HOME — HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background-color: var(--stone);
  min-height: 592px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5rem) max(4vw, 20px);
  width: 50%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: none;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0;
  line-height: 1.1;
}
.hero-content .lead {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}
.hero-tag { display: none; }
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  min-height: 592px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Section 2: Your growth, expedited ── */
.home-second {
  background: #3a3a3a;
  color: #f7f7f5;
  text-align: center;
  padding: clamp(4rem, 7vw, 6rem) var(--px);
}
.home-second h2 {
  color: #fff;
  margin-bottom: 1.75rem;
}
.home-second p {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 1.25rem;
  color: rgba(247,247,245,0.85);
}

/* ── Section 3: Your needs, met ── */
.home-third {
  background: var(--teal);
  color: #f7f7f5;
  text-align: center;
  padding: clamp(4rem, 7vw, 6rem) var(--px);
}
.home-third h2 {
  color: #fff;
  margin-bottom: 3rem;
}
.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.needs-card {
  background: #f7f7f5;
  border-radius: 8px;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.needs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.needs-card img {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.25rem;
  display: block;
}
.needs-card h3 {
  color: #15171a;
  font-size: 1rem;
  margin: 0;
}
.home-third .needs-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 860px;
  margin: 0 auto 2.5rem;
  color: rgba(247,247,245,0.85);
}
.home-third .find-more {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2.25rem;
  background: #00729f;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s;
}
.home-third .find-more:hover { background: #005f85; }

/* ── Section 4: The Teal advantage ── */
.home-fourth {
  padding: clamp(4rem, 7vw, 6rem) var(--px);
  background: #fff;
}
.home-fourth-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  align-items: center;
}
.home-fourth .adv-content { flex: 1; }
.home-fourth .adv-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  max-width: 480px;
}
.home-fourth .adv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.home-fourth h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 2rem;
}
.adv-list {
  list-style: none;
}
.adv-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}
.adv-list li:first-child { border-top: 1px solid var(--border); }
.adv-list strong { color: var(--dark); }

/* ── Section 5: Our unique collective ── */
.home-fifth {
  background: #00729f;
  color: #f7f7f5;
  padding: clamp(4rem, 7vw, 6rem) var(--px);
}
.home-fifth-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  align-items: center;
}
.home-fifth .coll-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  max-width: 480px;
}
.home-fifth .coll-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.home-fifth .coll-content { flex: 1; }
.home-fifth h2 { color: #fff; margin-bottom: 1.5rem; }
.home-fifth p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(247,247,245,0.85);
}

/* ══════════════════════════════════════════════════════════
   SOLUTIONS PAGE
   ══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  color: #fff;
  padding: clamp(5rem, 10vw, 8rem) var(--px) clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,128,128,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.page-hero-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--teal);
}
.page-hero h1 { color: #fff; max-width: 700px; margin-bottom: 1.5rem; }
.page-hero .lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.75;
}

/* Work with us cards */
.work-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.work-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  transition: all 0.3s var(--ease);
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.work-card-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--teal);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.work-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.work-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* Solution detail sections */
.solution-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.solution-detail:last-of-type { border-bottom: 1px solid var(--border); }
.solution-icon {
  width: 80px;
  height: 80px;
}
.solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.solution-detail h3 { margin-bottom: 1rem; }
.solution-detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.solution-detail li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.solution-detail li::before {
  content: '→';
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* Solutions CTA bar */
.cta-bar {
  background: var(--teal);
  color: #fff;
  padding: 4rem var(--px);
  text-align: center;
}
.cta-bar h2 { color: #fff; margin-bottom: 1rem; }
.cta-bar p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.btn-white {
  background: #fff;
  color: var(--teal);
  border: 2px solid #fff;
  font-weight: 600;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   TEAM PAGE
   ══════════════════════════════════════════════════════════ */
.team-hero-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}
.team-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.team-intro {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}
.team-member {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.team-member:first-of-type {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}
.team-member-photo {
  flex-shrink: 0;
}
.team-member-photo img {
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  padding: 2rem;
  box-sizing: border-box;
  background: var(--stone);
}
.team-member-info {
  flex: 1;
  padding-top: 0.5rem;
}
.team-member-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.3rem;
  color: var(--dark);
}
.team-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.team-member-info p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

/* ══════════════════════════════════════════════════════════
   JOIN TEAL PAGE
   ══════════════════════════════════════════════════════════ */
.join-hero-img-wrap {
  width: 100%;
  overflow: hidden;
}
.join-hero-img-wrap img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.join-body {
  max-width: 700px;
}
.join-body a {
  color: var(--teal);
  text-decoration: underline;
}
.join-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.join-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-intro h1 { margin-bottom: 0.75rem; }
.contact-intro .lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 3rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--teal); }
.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--dark);
  transition: all 0.2s;
}
.contact-social a:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}
.contact-social svg { width: 16px; height: 16px; fill: currentColor; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,128,128,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.25rem 0;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--teal);
  margin-top: 2px;
  cursor: pointer;
}
.form-check label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
}
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   SUCCESS PAGE
   ══════════════════════════════════════════════════════════ */
.success-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem var(--px);
}
.success-inner { max-width: 520px; }
.success-icon {
  width: 72px; height: 72px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--teal);
}
.success-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.success-inner h1 { margin-bottom: 1rem; }
.success-inner p { font-size: 1.1rem; color: var(--text); margin-bottom: 2.5rem; }

/* ══════════════════════════════════════════════════════════
   PRIVACY PAGE
   ══════════════════════════════════════════════════════════ */
.privacy-content section.first-section{
  padding-top: 0;
}
.privacy-content section{
  padding-top: 70px;
}
.privacy-content a {
  color: var(--teal);
  text-decoration: underline;
}
.privacy-content h1{
  margin-bottom: 2.5rem;
}
.privacy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.privacy-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.privacy-content p { font-size: 0.95rem; margin-bottom: 0.85rem; }
.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-content li { font-size: 0.95rem; margin-bottom: 0.4rem; }
.privacy-content strong { color: var(--dark); }
.privacy-updated {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════════════════════════
   SOLUTIONS PAGE
   ══════════════════════════════════════════════════════════ */
.solutions-hero-img-wrap {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}
.solutions-hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.solutions-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
.solutions-work-card {
  margin: 0;
}
.solutions-work-card img {
  width: 100%;
  height: auto;
  display: block;
}
.solutions-work-card figcaption {
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 0.75rem;
  line-height: 1.6;
}
.solutions-accent-bar {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 2.5rem var(--px);
  margin: 0 calc(-1 * var(--px)) 3rem;
}
.solutions-accent-bar h2 {
  color: #fff;
  margin: 0;
}
.solutions-content-section {
  padding: 2.5rem 0;
}
.solutions-headings {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.solutions-headings img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.solutions-headings h3 {
  margin: 0;
}
.solutions-content-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
}
.solutions-content-section li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.65;
}
.solutions-content-section hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.solutions-banner {
  margin: 2rem 0 0;
}
.solutions-banner img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
}
.solutions-banner figcaption {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.95rem;
  background: var(--stone);
  color: var(--dark);
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .work-cards { grid-template-columns: repeat(2, 1fr); }
  .solutions-work-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { max-height: none; }
  .home-fourth-inner { flex-direction: column; gap: 3rem; }
  .home-fourth .adv-image { max-width: 100%; }
  .home-fifth-inner { flex-direction: column; gap: 3rem; }
  .home-fifth .coll-image { max-width: 100%; }
  .solution-detail { grid-template-columns: 1fr 2fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-contact-btn { display: none; }

  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero-content {
    width: 100%;
    padding: 3rem max(4vw, 16px) 2.5rem;
  }
  .hero-image {
    position: static;
    width: 100%;
    height: 280px;
    min-height: 280px;
    order: -1;
  }

  .needs-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .work-cards { grid-template-columns: 1fr; }
  .solutions-work-grid { grid-template-columns: repeat(2, 1fr); }

  .team-member {
    flex-direction: column;
    gap: 1.5rem;
  }
  .team-member-photo img {
    width: 100%;
    min-width: unset;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .solution-detail { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .join-hero { height: 360px; }
  .join-ctas { flex-direction: column; }
  .join-ctas .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .needs-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
}
