/* ============================================================
   RGTC Corporate Theme — Custom Component Styles
   ============================================================ */

:root {
  --green: #19a84a;
  --green-dark: #148a3e;
  --green-darker: #0d6b2e;
  --green-light: #e6f7ed;
  --green-50: #f0faf4;
  --amber: #f29f05;
  --amber-hover: #d98e04;
  --dark: #1a1a1a;
  --dark2: #383838;
  --dark3: #555555;
  --dark4: #888888;
  --light-bg: #f9f9f9;
  --white: #ffffff;
  --line: #e5e5e5;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
img { display: block; max-width: 100%; }

/* ── NAV ── */
.rgtc-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  background: transparent;
  z-index: 200;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.rgtc-nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
  border-bottom-color: var(--line);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.rgtc-nav.scrolled .nav-logo img { filter: none; }

.nav-links {
  display: flex; align-items: center; gap: 40px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 800;
  color: var(--white);
  transition: color 0.3s;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.rgtc-nav.scrolled .nav-links a { color: var(--dark2); }
.nav-links a:hover { color: var(--amber); }

.nav-cta {
  background: var(--white);
  color: var(--dark2) !important;
  padding: 12px 28px;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s, color 0.25s;
}
.rgtc-nav.scrolled .nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  z-index: 210;
  background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s;
}
.rgtc-nav.scrolled .nav-hamburger span { background: var(--dark2); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  top: 0; right: 0;
  width: 58%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-photo-overlay {
  position: absolute;
  top: 0; right: 0;
  width: 58%; height: 100%;
  background: rgba(50,50,50,0.30);
  z-index: 1;
}
.hero-green {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--green);
  clip-path: polygon(0 0, 60% 0, 43% 100%, 0 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: calc(var(--nav-h) + 60px) clamp(24px, 5vw, 80px) 80px;
  max-width: 810px;
  width: 48%;
}
.hero-headline {
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.15s var(--ease) forwards;
}
.hero-headline strong {
  font-family: var(--font-heading);
  font-weight: 700;
  display: inline;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 62ch;
  opacity: 0; animation: fadeUp 0.8s 0.35s var(--ease) forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--amber);
  color: var(--white);
  padding: 15px 36px;
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  opacity: 0; animation: fadeUp 0.8s 0.5s var(--ease) forwards;
  text-decoration: none;
}
.hero-cta:hover {
  background: var(--amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(242,159,5,0.3);
  color: var(--white);
}

/* ── VALUE METRICS STRIP ── */
.metrics-strip {
  background: var(--light-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px clamp(24px, 5vw, 80px);
  display: flex; align-items: center;
  justify-content: center;
  gap: 48px;
}
.metric {
  display: flex; align-items: center; gap: 14px;
}
.metric-num {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.metric-num span {
  font-size: 0.65em; font-weight: 700;
}
.metric-text {
  font-family: var(--font-body);
  font-size: 0.8rem; color: var(--dark2);
  font-weight: 400; line-height: 1.4;
  letter-spacing: -0.02em;
}
.metric-divider {
  width: 1px; height: 40px;
  background: var(--line);
  flex-shrink: 0;
}

/* ── SECTION SHARED ── */
.section-label {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.section-label-line {
  width: 28px; height: 3px; background: var(--green); border-radius: 2px;
}
.section-label-text {
  font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark); margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem; color: var(--dark3);
  line-height: 1.7; max-width: 540px;
  font-weight: 400; margin-bottom: 56px;
}

/* ── SERVICES ── */
.services-section {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--white);
}
.sn-hero-card {
  background: linear-gradient(135deg, #0a3d1f 0%, var(--green-dark) 100%);
  border-radius: 14px;
  padding: 48px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 32px;
  margin-bottom: 24px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.sn-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.sn-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6dcc7c;
  box-shadow: 0 0 6px #6dcc7c;
}
.sn-title {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 700;
  color: var(--white); line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.sn-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  line-height: 1.65; max-width: 480px;
}
.sn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.02em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  background: var(--amber);
  color: var(--white);
  text-decoration: none;
}
.sn-cta:hover {
  background: var(--amber-hover);
  transform: translateX(3px);
  box-shadow: 0 6px 24px rgba(242,159,5,0.3);
  color: var(--white);
}
.sn-cta svg { width: 16px; height: 16px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  background: var(--white);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: default;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #6dcc7c);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(25,168,74,0.1);
}
.service-card:hover::after { transform: scaleX(1); }

.sc-icon {
  width: 44px; height: 44px;
  background: var(--green-50);
  border: 1px solid rgba(25,168,74,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .sc-icon {
  background: var(--green-light);
  transform: scale(1.08);
}
.sc-name {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.sc-desc {
  font-size: 0.85rem; color: var(--dark4);
  line-height: 1.6; font-weight: 400;
}

/* ── TRUST & AUTHORITY ── */
.trust-section {
  padding: 140px clamp(24px, 5vw, 80px);
  background: #111111;
  position: relative; overflow: hidden;
}
.trust-section::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(25,168,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.trust-inner {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto; text-align: center;
}
.trust-section .section-label { justify-content: center; }
.trust-section .section-title {
  color: var(--white);
  margin-bottom: 32px;
}
.trust-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 32px;
  font-weight: 400;
}
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 89px;
  margin: 89px auto;
  flex-wrap: wrap;
}
.trust-badge-img {
  height: 160px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
  transition: transform 0.4s var(--ease);
}
.trust-badge-img:hover {
  transform: scale(1.06);
}
.trust-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.trust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 44px 36px;
  text-align: left;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.trust-card:hover {
  border-color: rgba(25,168,74,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.trust-card-title {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.trust-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  font-weight: 400;
}

/* ── WHY RGTC ── */
.why-section {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--light-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-layout {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: 80px; align-items: start;
}
.why-sticky {
  position: sticky; top: calc(var(--nav-h) + 32px);
}
.why-highlight {
  margin-top: 32px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  border-left: 4px solid var(--green);
}
.why-highlight-title {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.why-highlight-sub {
  font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 700;
  color: var(--green);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.why-highlight-desc {
  font-size: 0.88rem; color: var(--dark3);
  line-height: 1.65; font-weight: 400;
}
.pillar-list { display: flex; flex-direction: column; gap: 0; }
.pillar {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.pillar:first-child { padding-top: 0; }
.pillar:last-child { border-bottom: none; }
.pillar.visible { opacity: 1; transform: none; }
.pillar-num {
  font-family: var(--font-heading);
  font-size: 0.7rem; font-weight: 800;
  color: var(--green);
  letter-spacing: 0.08em;
  padding-top: 5px; width: 32px;
}
.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.pillar-body {
  font-size: 0.88rem; color: var(--dark3);
  line-height: 1.7; font-weight: 400;
  margin-bottom: 10px;
}
.pillar-tag {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  background: var(--green-50);
  border: 1px solid rgba(25,168,74,0.2);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.7rem; font-weight: 700;
  color: var(--green-dark); letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── ENGAGEMENT MODELS ── */
.engagement-section {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.engagement-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.engagement-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.3s;
}
.engagement-card.visible { opacity: 1; transform: none; }
.engagement-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 8px 32px rgba(25,168,74,0.12);
}
.featured-tag {
  position: absolute; top: -13px; left: 28px;
  background: var(--green); color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.eng-icon { font-size: 1.6rem; margin-bottom: 20px; }
.eng-name {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.eng-desc {
  font-size: 0.85rem; color: var(--dark4);
  line-height: 1.65; margin-bottom: 20px;
}
.eng-points {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin: 0; padding: 0;
}
.eng-points li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--dark3); font-weight: 500;
}
.eng-points li::before {
  content: '✓';
  color: var(--green); font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}

/* ── CONTACT FORM SECTION ── */
.contact-section {
  padding: 100px clamp(24px, 5vw, 80px);
  background: linear-gradient(160deg, #062a16 0%, #0a3d1f 30%, #0e4a26 55%, #0d3f22 80%, #071e10 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(25,168,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-section::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(109,204,124,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.contact-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-section .section-label-line { background: #6dcc7c; }
.contact-section .section-label-text { color: #6dcc7c; }
.contact-section .section-title { color: var(--white); }
.contact-intro {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.form-group label .required { color: var(--amber); }
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dark4);
  font-weight: 400;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(25,168,74,0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--white);
  padding: 12px 28px;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  align-self: flex-start;
}
.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.form-privacy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 4px;
}
.form-privacy a {
  color: #6dcc7c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-info-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 32px;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.contact-divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}
.contact-detail { margin-bottom: 16px; }
.contact-detail:last-of-type { margin-bottom: 0; }
.contact-detail-label {
  font-family: var(--font-heading);
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark4);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.88rem;
  color: var(--dark2);
  line-height: 1.5;
}
.contact-detail-link {
  font-size: 0.88rem;
  color: var(--green-dark);
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.contact-detail-link:hover { color: var(--green); }
.contact-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}
.contact-trust-item { padding: 12px 0; }
.contact-trust-num {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.contact-trust-num span { font-size: 0.65em; }
.contact-trust-label {
  font-size: 0.68rem;
  color: var(--dark4);
  font-weight: 500;
  line-height: 1.3;
}

/* ── FOOTER ── */
.rgtc-footer {
  background: #0a1f10;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px clamp(24px, 5vw, 80px) 40px;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-col { max-width: 320px; }
.footer-logo-block {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-block a { display: inline-flex; }
.footer-logo-block img {
  height: 36px; width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.footer-logo-block a:hover img { opacity: 0.75; }
.footer-tagline {
  font-size: 0.84rem; color: rgba(255,255,255,0.38);
  line-height: 1.65; max-width: 280px; font-weight: 400;
}
.footer-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.28);
  line-height: 1.7; margin-top: 16px; max-width: 300px;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer-links {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px;
  margin: 0; padding: 0;
}
.footer-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.35);
  transition: color 0.2s; font-weight: 400;
  text-decoration: none;
}
.footer-links a:hover { color: var(--green); }
.footer-contact-list li {
  display: flex; align-items: center; gap: 8px;
}
.footer-contact-list li:nth-child(2) { margin-top: 8px; }
.footer-contact-list svg {
  color: rgba(255,255,255,0.25); flex-shrink: 0;
}
.footer-contact-list span {
  font-size: 0.85rem; color: rgba(255,255,255,0.35);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 0.78rem; color: rgba(255,255,255,0.2);
}
.footer-back-top {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
  transition: color 0.2s; text-decoration: none;
  font-weight: 500;
}
.footer-back-top:hover { color: var(--green); }
.footer-back-top svg { transition: transform 0.2s; }
.footer-back-top:hover svg { transform: translateY(-2px); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── REVEAL HELPER ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */

@media (max-width: 1280px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 1100px) {
  .hero-content { width: 58%; }
  .hero-green { clip-path: polygon(0 0, 65% 0, 50% 100%, 0 100%); }
  .services-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: repeat(2, 1fr); }
  .sn-hero-card { grid-template-columns: 1fr; }
  .trust-badges { gap: 32px; }
  .trust-badge-img { height: 130px; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-sticky { position: static; }
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-card { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero-content { width: 72%; }
  .hero-green { clip-path: polygon(0 0, 78% 0, 62% 100%, 0 100%); }
  .metrics-strip { gap: 24px; }
  .trust-metrics { grid-template-columns: 1fr; }
  .trust-badges { gap: 20px; }
  .trust-badge-img { height: 110px; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-green { clip-path: none; width: 100%; height: 100%; }
  .hero-photo { width: 100%; height: 100%; opacity: 0.15; }
  .hero-photo-overlay { width: 100%; height: 100%; }
  .hero-content {
    width: 100%; max-width: 100%;
    padding: calc(var(--nav-h) + 40px) 24px 60px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--line);
    z-index: 199;
  }
  .rgtc-nav.nav-open .nav-links { display: flex; }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a {
    display: block;
    color: var(--dark2) !important;
    padding: 14px 24px;
    font-size: 0.95rem !important;
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    background: var(--amber) !important;
    color: var(--white) !important;
    margin: 12px 24px 0;
    text-align: center;
    justify-content: center;
  }
  .nav-hamburger { display: flex; }
  .rgtc-nav.nav-open .nav-hamburger span { background: var(--dark2); }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .metrics-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
    padding: 24px clamp(16px, 5vw, 40px);
  }
  .metric { justify-content: flex-start; }
  .metric-divider { display: none; }
  .services-grid,
  .engagement-grid,
  .trust-metrics { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; align-items: center; gap: 16px; margin: 48px auto; }
  .trust-badge-img { height: 90px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .metrics-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }
  .metric { gap: 12px; }
  .trust-badge-img { height: 80px; }
}

/* ── WP ADMIN BAR OFFSET ── */
.admin-bar .rgtc-nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .rgtc-nav {
    top: 46px;
  }
}
