/* ============================================================
   R.K Marketing Private Limited — style.css
   Palette: Deep Teal (#0d4f4f) + Amber (#e8a020) + Off-White (#f8f6f0)
   Style: Bold typographic, diagonal sections, full-width hero
   Fonts: Syne (headings) + Inter (body)
   ============================================================ */

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

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

:root {
  --teal:         #0d4f4f;
  --teal-deep:    #083838;
  --teal-mid:     #165f5f;
  --teal-light:   #2a8080;
  --teal-pale:    #e0f0f0;
  --amber:        #e8a020;
  --amber-deep:   #c07a10;
  --amber-light:  #f5c060;
  --amber-pale:   #fef5e0;
  --offwhite:     #f8f6f0;
  --offwhite-dk:  #ede9df;
  --dark:         #111418;
  --dark-mid:     #1e2428;
  --dark-lt:      #3a4048;
  --text-dark:    #111418;
  --text-body:    #4a5260;
  --text-light:   #8a9098;
  --border:       #e2ddd5;
  --border-dk:    #c8c0b0;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(13,79,79,0.08);
  --shadow-md:    0 8px 32px rgba(13,79,79,0.14);
  --shadow-lg:    0 24px 64px rgba(13,79,79,0.2);
  --radius:       6px;
  --radius-lg:    14px;
  --radius-xl:    22px;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--offwhite);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: 'Syne', sans-serif;
  color: var(--text-dark);
  line-height: 1.1;
  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 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }
.text-center { text-align: center; }
.bg-teal    { background: var(--teal); }
.bg-dark    { background: var(--dark); }
.bg-offwhite{ background: var(--offwhite); }
.bg-white   { background: var(--white); }

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber);
}
.section-label.light { color: var(--amber-light); }
.section-label.light::after { background: var(--amber-light); }

/* ── Accent Line ── */
.accent-line { width: 48px; height: 3px; background: var(--amber); border-radius: 2px; margin: 1.2rem 0; }
.accent-line.center { margin: 1.2rem auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-amber { background: var(--amber); color: var(--dark); }
.btn-amber:hover { background: var(--amber-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,0.4); }
.btn-teal  { background: var(--teal); color: var(--white); }
.btn-teal:hover  { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(13,79,79,0.35); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: var(--amber); color: var(--amber); }
.btn-outline-teal  { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline-teal:hover  { background: var(--teal); color: var(--white); }
.btn-lg { padding: 1.05rem 2.5rem; font-size: 0.9rem; }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.78rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.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.1rem;
}
.nav-links a {
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.4rem 0.9rem;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}
.nav-phone:hover { background: rgba(232,160,32,0.15); border-color: var(--amber); color: var(--amber); }
.nav-phone-icon { color: var(--amber); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── Hero — Full-width dark with image right ── */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(13,79,79,0.6) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(232,160,32,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 4rem;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.75rem;
  width: fit-content;
}
.hero-tag::before { content: '●'; font-size: 0.5rem; }
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 .highlight {
  color: var(--amber);
  position: relative;
}
.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2.5rem;
}
.hero-metric {
  padding-right: 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  margin-right: 2.5rem;
}
.hero-metric:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-metric-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-metric-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); line-height: 1.4; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 3rem 3rem 3rem 0;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-xl);
}

/* ── Amber Ticker ── */
.ticker {
  background: var(--teal);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 35s linear infinite;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-sep { color: var(--amber); font-size: 0.8rem; }

/* ── Stats Band ── */
.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-band-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.stat-band-item:last-child { border-right: none; }
.stat-band-item:hover { background: var(--teal-pale); }
.stat-band-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-band-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.stat-band-item p  { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

/* ── Services — Tabbed Card Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.83rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1rem; }
.service-link { font-size: 0.78rem; font-weight: 700; color: var(--teal); letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.3rem; transition: var(--transition); }
.service-card:hover .service-link { color: var(--amber-deep); gap: 0.6rem; }

/* ── Two-col split ── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.split-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--amber);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.split-badge-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--dark); line-height: 1; }
.split-badge-label { font-size: 0.7rem; font-weight: 700; color: rgba(17,20,24,0.65); margin-top: 0.2rem; }

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

/* ── Process — Diagonal Steps ── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: var(--transition);
}
.process-step:first-child { border-top: 1px solid var(--border); }
.process-step:hover { background: var(--white); padding-left: 1.5rem; padding-right: 1.5rem; margin: 0 -1.5rem; border-radius: var(--radius-lg); border-color: transparent; box-shadow: var(--shadow-sm); }
.process-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal-pale);
  line-height: 1;
  transition: var(--transition);
}
.process-step:hover .process-step-num { color: var(--amber); }
.process-step h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.875rem; color: var(--text-body); line-height: 1.75; }
.process-step-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.85rem; }
.process-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* ── Portfolio ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.portfolio-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.portfolio-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.portfolio-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.portfolio-card:hover::after { transform: scaleX(1); }
.portfolio-icon-wrap {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.portfolio-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); }
.portfolio-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.portfolio-card p  { font-size: 0.83rem; color: var(--text-body); line-height: 1.65; flex: 1; }
.portfolio-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber-pale);
  color: var(--amber-deep);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-sm); }
.t-stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.85rem; }
.t-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; font-style: italic; margin-bottom: 1.25rem; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 42px; height: 42px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.t-name { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); }
.t-role { font-size: 0.75rem; color: var(--text-light); }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-top {
  background: var(--teal);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.blog-date { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--amber); line-height: 1; }
.blog-date-sub { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-top: 0.1rem; }
.blog-cat-badge {
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--amber);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card p  { font-size: 0.82rem; color: var(--text-body); line-height: 1.65; flex: 1; }
.blog-read { font-size: 0.72rem; color: var(--text-light); margin-top: 0.75rem; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  gap: 1rem;
  transition: var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--teal);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--teal); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.25rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 42px; height: 42px;
  background: var(--teal-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.contact-info-sub   { font-size: 0.8rem; color: var(--text-body); margin-top: 0.1rem; }

.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.72rem; font-weight: 700; color: var(--text-dark); letter-spacing: 0.06em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--offwhite);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13,79,79,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: var(--teal-pale); border: 1px solid var(--teal-light); color: var(--teal); padding: 0.9rem; border-radius: var(--radius); 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.08); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.5rem 0; font-size: 0.82rem; }
.hours-table td:first-child { color: rgba(255,255,255,0.5); }
.hours-table td:last-child { text-align: right; color: var(--amber); font-weight: 600; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.team-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-sm); }
.team-avatar {
  width: 68px; height: 68px;
  background: var(--teal);
  border-radius: 50%;
  margin: 0 auto 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.team-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; height: 2.8rem; display: flex; align-items: center; justify-content: center; text-align: center; width: 100%; }
.team-role { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-deep); margin-bottom: 0.75rem; height: 2rem; display: flex; align-items: center; justify-content: center; text-align: center; width: 100%; }
.team-card p { font-size: 0.83rem; color: var(--text-body); line-height: 1.65; }

/* ── Values ── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.value-card {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.value-card:hover { background: var(--teal-mid); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--teal);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,160,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Policy ── */
.policy-hero { background: var(--dark); padding: 8.5rem 0 4.5rem; text-align: center; }
.policy-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.policy-hero p  { color: rgba(255,255,255,0.55); }
.policy-body { max-width: 780px; margin: 0 auto; padding: 4rem 2rem; }
.policy-body h2 { font-size: 1.3rem; color: var(--text-dark); margin: 2.5rem 0 0.6rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.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(--teal); text-decoration: underline; }
.policy-updated { background: var(--teal-pale); border-left: 3px solid var(--teal); padding: 0.75rem 1rem; border-radius: 0 6px 6px 0; font-size: 0.83rem; color: var(--teal); margin-bottom: 2rem; font-weight: 600; }

/* ── Page Hero ── */
.page-hero {
  background: var(--dark);
  padding: 8.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(13,79,79,0.5) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; position: relative; }
.page-hero p  { color: rgba(255,255,255,0.6); max-width: 560px; position: relative; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1.5rem; font-size: 0.78rem; position: relative; }
.breadcrumb a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: rgba(255,255,255,0.2); }
.breadcrumb strong { color: var(--amber); }

/* ── 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.25rem;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--border-dk);
  color: var(--text-body);
  background: transparent;
  transition: var(--transition);
}
.filter-tab:hover, .filter-tab.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ── Footer ── */
.footer { background: var(--dark-mid); color: rgba(255,255,255,0.55); padding: 5.5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { font-size: 0.83rem; line-height: 1.75; margin: 1rem 0 1.5rem; max-width: 260px; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--amber); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.8rem; }
.footer-contact-icon { font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; color: var(--amber); }
.footer-contact-item span { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.25); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--amber); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { padding: 2rem; min-height: 320px; }
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-grid.reverse { direction: ltr; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@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(--dark);
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-md);
    gap: 0.2rem;
    z-index: 999;
  }
  .hero-content { padding: 3.5rem 1.75rem; }
  .hero-metrics { flex-wrap: wrap; gap: 1.5rem; }
  .hero-metric { border-right: none; padding-right: 0; margin-right: 0; }
  .stats-band-inner { grid-template-columns: 1fr; }
  .stat-band-item { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
