/* =========================================
   Tech Revive Recycling — Global Styles
   ========================================= */

:root {
  --green:       #2ecc71;
  --green-dark:  #1a9e52;
  --green-light: #d4f5e2;
  --navy:        #0d1b2a;
  --navy-mid:    #162336;
  --slate:       #3d5166;
  --smoke:       #f4f7f6;
  --white:       #ffffff;
  --text:        #243447;
  --text-muted:  #607d8b;
  --border:      #e0eae4;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:  10px;
  --shadow:  0 4px 24px rgba(13,27,42,.08);
  --shadow-lg: 0 12px 40px rgba(13,27,42,.14);
  --transition: .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h5 { font-size: .8rem; letter-spacing: .15em; font-weight: 600; }

/* ── BUTTONS ────────────────────────────── */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-secondary:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover { background: var(--green-dark); color: #fff; }

/* ── HEADER ─────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.logo h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}
.logo h2 span { color: var(--green); }

nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

nav ul li a {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
nav ul li a:hover { color: var(--white); background: rgba(255,255,255,.08); }
nav ul li a.active { color: var(--green); }

.quote-btn {
  background: var(--green) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
}
.quote-btn:hover { background: var(--green-dark) !important; color: #fff !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ── SECTION HEADER ─────────────────────── */
.section-title { text-align: center; margin-bottom: 52px; }
.section-title h2 { margin-bottom: 14px; }
.section-title p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── HERO ────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1b3a2d 100%);
  padding: 90px 0 80px;
  overflow: hidden;
}

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

.hero-text h5 {
  color: var(--green);
  margin-bottom: 18px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 22px;
}
.hero-text h1 span { color: var(--green); }

.hero-text > p {
  color: rgba(255,255,255,.75);
  font-size: 1.08rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-features {
  display: flex;
  gap: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 30px;
}
.hero-features div h3 { color: var(--green); font-size: 1.6rem; margin-bottom: 2px; }
.hero-features div p  { color: rgba(255,255,255,.6); font-size: .82rem; }

.hero-image img {
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* ── SERVICES PREVIEW ───────────────────── */
.services-preview { padding: 90px 0; background: var(--white); }

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

.card {
  background: var(--smoke);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green);
}
.card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { color: var(--text-muted); font-size: .93rem; }
.card a.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: .88rem;
  transition: var(--transition);
}
.card a.read-more:hover { gap: 10px; }

/* ── WHY US ──────────────────────────────── */
.why-us { padding: 90px 0; background: var(--smoke); }

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

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-card h3 { margin-bottom: 12px; font-size: 1.05rem; }
.why-card p  { color: var(--text-muted); font-size: .93rem; }

/* ── STATS STRIP ─────────────────────────── */
.stats-strip {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat h3 { font-size: 2.4rem; color: var(--green); font-family: var(--font-head); font-weight: 800; }
.stat p  { color: rgba(255,255,255,.65); font-size: .9rem; margin-top: 4px; }

/* ── PROCESS ─────────────────────────────── */
.process { padding: 90px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--green-light);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid var(--green);
}
.step h4 { font-size: 1rem; margin-bottom: 8px; }
.step p  { font-size: .85rem; color: var(--text-muted); }

/* ── CTA BAND ────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1a9e52, #0d6b37);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,.8); margin-bottom: 30px; font-size: 1.05rem; }
.cta-band .btn-primary { background: #fff; color: var(--green-dark); border-color: #fff; }
.cta-band .btn-primary:hover { background: var(--green-light); }
.cta-band .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── TESTIMONIALS ────────────────────────── */
.testimonials { padding: 90px 0; background: var(--smoke); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { color: var(--text-muted); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--green-dark); font-family: var(--font-head);
}
.testimonial-author strong { display: block; font-size: .92rem; }
.testimonial-author span  { font-size: .8rem; color: var(--text-muted); }

/* ── PAGE HERO (inner pages) ─────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 70%);
  padding: 70px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── ABOUT PAGE ──────────────────────────── */
.about-intro { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.about-intro .about-grid > img { height: auto; object-fit: contain; background: var(--smoke); }
.about-text h2 { margin-bottom: 18px; }
.about-text p  { color: var(--text-muted); margin-bottom: 18px; }
.about-text ul { margin: 20px 0 28px; }
.about-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: .95rem;
}
.about-text ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

.values-section { padding: 90px 0; background: var(--smoke); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
}
.value-icon { font-size: 2.6rem; margin-bottom: 18px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p  { color: var(--text-muted); font-size: .93rem; }

.team-section { padding: 90px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--smoke);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card img { width: 100%; height: 240px; object-fit: cover; }
.team-card-body { padding: 24px 20px; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { color: var(--green-dark); font-size: .85rem; font-weight: 600; margin-bottom: 10px; }
.team-card p { color: var(--text-muted); font-size: .88rem; }

/* ── SERVICES PAGE ───────────────────────── */
.services-full { padding: 90px 0; }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 380px; object-fit: cover; }
.service-content h3 { font-size: 1.6rem; margin-bottom: 14px; }
.service-content p  { color: var(--text-muted); margin-bottom: 18px; }
.service-features { margin: 18px 0 26px; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .93rem;
  color: var(--text-muted);
}
.service-features li::before { content: '→'; color: var(--green); flex-shrink: 0; }

/* ── INDUSTRIES PAGE ─────────────────────── */
.industries-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 90px 0;
}
.industry-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.industry-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.industry-card img { width: 100%; height: 200px; object-fit: cover; }
.industry-card-body { padding: 26px 22px; }
.industry-card .tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.industry-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.industry-card p  { color: var(--text-muted); font-size: .9rem; }

/* ── RESOURCES PAGE ──────────────────────── */
.resources-section { padding: 90px 0; }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.resource-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.resource-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.resource-card img { width: 100%; height: 180px; object-fit: cover; }
.resource-card-body { padding: 24px 22px; }
.resource-card .tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.resource-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.resource-card p  { color: var(--text-muted); font-size: .88rem; }
.resource-card .meta { font-size: .78rem; color: var(--text-muted); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }

/* ── CONTACT PAGE ────────────────────────── */
.contact-section { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 16px; }
.contact-info p  { color: var(--text-muted); margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-item .ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; margin-bottom: 3px; }
.contact-item span   { color: var(--text-muted); font-size: .9rem; }

/* FORM */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 36px;
  box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: 28px; font-size: 1.4rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--smoke);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,204,113,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── QUOTE PAGE ──────────────────────────── */
.quote-section { padding: 90px 0; background: var(--smoke); }
.quote-wrapper { max-width: 760px; margin: 0 auto; }
.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px 44px;
  box-shadow: var(--shadow-lg);
}
.quote-card h3 { margin-bottom: 32px; font-size: 1.4rem; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--smoke);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
  font-size: .9rem;
  font-weight: 500;
}
.checkbox-item:has(input:checked) {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green-dark);
}
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--green); }

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 70px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand h2 { font-family: var(--font-head); font-size: 1.3rem; color: #fff; margin-bottom: 14px; }
.footer-brand h2 span { color: var(--green); }
.footer-brand p { font-size: .9rem; line-height: 1.8; }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--green); }
.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  background: rgba(46,204,113,.15);
  border: 1px solid rgba(46,204,113,.3);
  color: var(--green);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .08em;
}

/* ── ALERTS / TOAST ──────────────────────── */
.alert-success {
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 16px 22px;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 20px;
  display: none;
}
.alert-error { background: #fff1f2; border-color: #e11d48; color: #9f1239; }
.form-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
button:disabled { cursor: wait; opacity: .7; transform: none !important; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .services-grid,
  .why-grid,
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 16px 24px 24px; border-top: 1px solid rgba(255,255,255,.1); }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 4px; }
  nav ul li a { display: block; padding: 10px 14px; }

  .hero-grid    { grid-template-columns: 1fr; }
  .hero-image   { display: none; }
  .hero-features { gap: 20px; }
  .about-grid,
  .service-block,
  .contact-grid { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .service-block img { height: 240px; }
  .form-row     { grid-template-columns: 1fr; }
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .industries-grid-full > *,
  .resources-grid { grid-template-columns: 1fr 1fr; }

  .quote-card   { padding: 32px 24px; }
}

@media (max-width: 560px) {
  .services-grid,
  .why-grid,
  .stats-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .resources-grid { grid-template-columns: 1fr; }
  .industries-grid-full { grid-template-columns: 1fr; }
  .industries-grid-full { padding: 60px 0; }
  .hero { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.9rem; }
}

/* =========================================
   2026 visual system refresh
   ========================================= */
:root {
  --green: #7ee787;
  --green-dark: #087f5b;
  --green-light: #e9fbef;
  --navy: #07140f;
  --navy-mid: #0d251c;
  --slate: #314b41;
  --smoke: #f4f7f5;
  --text: #11241d;
  --text-muted: #5b6e66;
  --border: #dce6e1;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(7, 20, 15, .07);
  --shadow-lg: 0 24px 70px rgba(7, 20, 15, .14);
  --transition: .22s cubic-bezier(.2,.8,.2,1);
}

body {
  overflow-x: hidden;
  background: #fff;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 10%, rgba(126,231,135,.09), transparent 26%);
}

::selection { background: var(--green); color: var(--navy); }

a, button, input, select, textarea, summary { outline-offset: 4px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(8,127,91,.4); }

.container { max-width: 1240px; padding-left: 32px; padding-right: 32px; }

h1, h2, h3, h4, h5 { letter-spacing: -.025em; }
h1 { font-size: clamp(2.7rem, 5.8vw, 5rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.08; }
h3 { line-height: 1.25; }

.header {
  background: rgba(7,20,15,.92);
  border-bottom-color: rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header .container { height: 78px; }
.logo a { display: inline-flex; align-items: center; gap: 11px; }
.logo a::before {
  content: 'T';
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px 11px 11px 3px;
  background: var(--green);
  color: var(--navy);
  font: 800 1rem/1 var(--font-head);
  box-shadow: 0 8px 22px rgba(126,231,135,.22);
}
.logo h2 { font-size: 1.12rem; letter-spacing: -.02em; }
.logo h2 span { display: block; font-size: .62rem; letter-spacing: .19em; text-transform: uppercase; margin-top: 2px; }

nav ul { gap: 2px; }
nav ul li a { padding: 9px 11px; font-size: .84rem; }
nav ul li a.active:not(.quote-btn) { background: rgba(126,231,135,.1); }
.quote-btn { margin-left: 8px; padding: 10px 17px !important; border-radius: 999px !important; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 100px 0 86px;
  background:
    radial-gradient(circle at 76% 48%, rgba(126,231,135,.15), transparent 31%),
    linear-gradient(125deg, #07140f 0%, #0b2118 58%, #123b29 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, #000 60%);
}
.hero-grid { position: relative; grid-template-columns: 1.08fr .92fr; gap: 74px; }
.hero-text h5 { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 25px; font-size: .72rem; }
.hero-text h5::before { content: ''; width: 30px; height: 1px; background: var(--green); }
.hero-text h1 { max-width: 720px; }
.hero-text h1 { font-size: clamp(2.7rem, 4.5vw, 4.25rem); }
.hero-text h1 span { color: #b7f7bd; }
.hero-text > p { max-width: 620px; font-size: 1.1rem; line-height: 1.8; }
.hero-image { position: relative; }
.hero-image::before {
  content: 'SECURE CHAIN OF CUSTODY';
  position: absolute;
  z-index: 2;
  left: -26px;
  bottom: 28px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(7,20,15,.82);
  backdrop-filter: blur(12px);
  color: #fff;
  font: 700 .69rem/1 var(--font-head);
  letter-spacing: .12em;
}
.hero-image img { height: 520px; border-radius: 28px 28px 28px 7px; border: 1px solid rgba(255,255,255,.12); }
.hero-features { gap: 0; justify-content: space-between; max-width: 590px; }
.hero-features > div { padding-right: 22px; }
.hero-features div h3 { font-size: 1.25rem; }

.btn-primary, .btn-secondary, .btn-outline { min-height: 48px; border-radius: 999px; padding: 12px 24px; justify-content: center; }
.btn-primary { box-shadow: 0 10px 26px rgba(8,127,91,.18); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(8,127,91,.25); }
.btn-secondary:hover, .btn-outline:hover { transform: translateY(-2px); }

.section-title { max-width: 720px; margin: 0 auto 54px; }
.section-title h2 { margin-bottom: 16px; }
.section-title h2::after { content: ''; display: block; width: 42px; height: 4px; margin: 20px auto 0; border-radius: 99px; background: var(--green-dark); }
.section-title p { line-height: 1.8; }

.services-preview, .process, .testimonials, .about-intro, .values-section,
.team-section, .services-full, .resources-section, .contact-section { padding-top: 110px; padding-bottom: 110px; }
.services-preview { background: linear-gradient(#fff, #fbfdfc); }
.services-grid { gap: 18px; }
.card, .why-card, .value-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(7,20,15,.02);
}
.card::after, .value-card::after { content: ''; position: absolute; inset: auto 0 0; height: 3px; background: var(--green-dark); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.card:hover::after, .value-card:hover::after { transform: scaleX(1); }
.card:hover, .why-card:hover, .value-card:hover { transform: translateY(-7px); border-color: rgba(8,127,91,.35); }
.card .icon, .value-icon, .ci-icon {
  width: 48px;
  height: 48px;
  display: grid !important;
  place-items: center;
  border-radius: 13px !important;
  background: var(--green-light) !important;
  font-size: 1.35rem !important;
}
.card h3 { font-size: 1.06rem; }

.stats-strip { padding: 54px 0; background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.stat { position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,.12); }
.stat h3 { color: var(--green); font-size: clamp(1.7rem,3vw,2.5rem); }

.why-us { padding: 110px 0; background: #eef5f1; }
.why-grid { gap: 18px; }
.why-card { padding: 30px; border-color: transparent; }
.why-card h3 { font-size: 1.02rem; }

.process-steps { gap: 28px; }
.process-steps::before { top: 31px; height: 1px; background: #c5ddd0; }
.step-num { width: 64px; height: 64px; border: 0; background: var(--navy); box-shadow: 0 0 0 7px #fff, 0 0 0 8px #c5ddd0; }

.testimonial-card { border-radius: 18px; padding: 34px; box-shadow: var(--shadow); }
.testimonial-card p { font-size: .95rem; line-height: 1.8; }
.testimonial-card h3 { margin: 10px 0 12px; }
.client-type { color: var(--green-dark); font: 700 .72rem/1 var(--font-head); letter-spacing: .14em; }

.founder-profile {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.founder-profile > img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center top; }
.founder-copy { display: flex; flex-direction: column; justify-content: center; padding: 48px; }
.founder-label { color: var(--green-dark); font: 700 .72rem/1 var(--font-head); letter-spacing: .14em; }
.founder-copy h3 { margin: 12px 0 18px; font-size: 2rem; }
.founder-copy p { margin-bottom: 18px; color: var(--text-muted); line-height: 1.8; }
.founder-copy .btn-outline { align-self: flex-start; margin-top: 8px; }

.cta-band { position: relative; overflow: hidden; padding: 86px 0; background: var(--green-dark); }
.cta-band::before { content: ''; position: absolute; width: 460px; height: 460px; border: 80px solid rgba(255,255,255,.055); border-radius: 50%; right: -110px; top: -190px; }
.cta-band .container { position: relative; }
.cta-band h2 { font-size: clamp(2rem,4vw,3.2rem); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 96px;
  background: radial-gradient(circle at 80% 20%, rgba(126,231,135,.15), transparent 28%), linear-gradient(125deg, var(--navy), #123b29);
}
.page-hero::after { content: ''; position: absolute; width: 340px; height: 340px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; top: -180px; right: 8%; }
.page-hero h1 { font-size: clamp(2.5rem,5vw,4.4rem); }
.breadcrumb { text-transform: uppercase; letter-spacing: .13em; font-size: .68rem; }

.about-grid, .service-block { gap: 80px; }
.about-grid img, .service-block img { border-radius: 24px 24px 24px 6px; }
.about-text p, .service-content p { line-height: 1.85; }
.values-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card, .industry-card, .resource-card { border-radius: 18px; background: #fff; }
.team-card img, .industry-card img, .resource-card img { transition: transform .5s ease; }
.team-card:hover img, .industry-card:hover img, .resource-card:hover img { transform: scale(1.035); }
.team-card-body, .industry-card-body, .resource-card-body { position: relative; background: #fff; }

.service-block { margin-bottom: 110px; scroll-margin-top: 110px; }
.service-block:last-child { margin-bottom: 0; }
.service-block img { height: 430px; }
.service-content h3 { font-size: 1.85rem; }
.service-features li { padding: 7px 0; border-bottom: 1px solid #edf1ef; }

.industries-grid-full, .resources-grid { gap: 22px; }
.industry-card, .resource-card { box-shadow: 0 8px 30px rgba(7,20,15,.05); }
.industry-card .tag, .resource-card .tag { letter-spacing: .06em; text-transform: uppercase; }

.contact-grid { grid-template-columns: .85fr 1.35fr; gap: 72px; align-items: start; }
.contact-info { position: sticky; top: 110px; }
.form-card, .quote-card { border: 0; border-radius: 24px; box-shadow: 0 20px 60px rgba(7,20,15,.09); }
.form-card { padding: 46px; }
.form-group input, .form-group select, .form-group textarea {
  min-height: 50px;
  border-color: #d6e1dc;
  border-radius: 11px;
  background: #f8faf9;
}
.form-group textarea { min-height: 140px; }
.quote-section { padding: 100px 0; }
.quote-card { padding: 54px; }
.quote-card h3 { color: var(--navy); }
.checkbox-item { border-radius: 999px; background: #f7faf8; }
.alert-success { border-radius: 12px; }

details { transition: box-shadow .2s ease, border-color .2s ease; }
details[open] { border-color: rgba(8,127,91,.4) !important; box-shadow: var(--shadow); }
details summary::-webkit-details-marker { display: none; }
details[open] summary span { transform: rotate(45deg); }
details summary span { transition: transform .2s ease; }

.footer { padding-top: 76px; background: #06100c; }
.footer-grid { gap: 54px; }
.footer-brand h2 { font-size: 1.15rem; }
.footer-col h4 { color: var(--green); text-transform: uppercase; font-size: .72rem; letter-spacing: .14em; }
.footer-col ul li a { display: inline-block; padding: 2px 0; }
.badge { border-radius: 999px; padding: 6px 11px; }

.legal-content { padding: 96px 0; background: var(--smoke); }
.legal-card { max-width: 850px; margin: 0 auto; padding: 54px; border: 1px solid var(--border); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.legal-card h2 { margin: 38px 0 12px; font-size: 1.45rem; }
.legal-card p { color: var(--text-muted); line-height: 1.85; }
.legal-card a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.legal-card .legal-updated { margin-bottom: 40px; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 1100px) {
  .container { padding-left: 26px; padding-right: 26px; }
  nav ul li a { padding-left: 7px; padding-right: 7px; }
  .hero-grid { gap: 42px; }
  .hero-image img { height: 450px; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; z-index: 2; }
  nav { display: none; position: absolute; top: 78px; left: 0; right: 0; max-height: calc(100vh - 78px); overflow-y: auto; background: rgba(7,20,15,.98); padding: 18px 26px 28px; border-top: 1px solid rgba(255,255,255,.1); box-shadow: 0 24px 50px rgba(0,0,0,.3); }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: stretch; }
  nav ul li a { display: block; padding: 12px 14px; }
  .quote-btn { margin: 8px 0 0; text-align: center; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid, .about-grid, .service-block, .contact-grid { grid-template-columns: 1fr; }
  .hero-image { display: block; }
  .hero-image img { height: 340px; }
  .hero-image::before { left: 20px; }
  .about-grid, .service-block { gap: 42px; }
  .contact-info { position: static; }
  .industries-grid-full, .resources-grid, .testimonials-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-profile { grid-template-columns: 1fr; }
  .founder-profile > img { min-height: auto; }
  .service-block.reverse { direction: ltr; }
}

@media (max-width: 640px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .header .container { height: 70px; }
  nav { top: 70px; }
  .hero { padding: 72px 0 64px; }
  .hero-text > p { font-size: 1rem; }
  .hero-image { display: none; }
  .hero-buttons { display: grid; grid-template-columns: 1fr; }
  .hero-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
  .hero-features > div { padding-right: 8px; }
  .hero-features div h3 { font-size: 1rem; }
  .hero-features div p { font-size: .68rem; line-height: 1.35; }
  .services-preview, .process, .testimonials, .about-intro, .values-section,
  .team-section, .services-full, .resources-section, .contact-section { padding-top: 76px; padding-bottom: 76px; }
  .page-hero { padding: 64px 0 68px; }
  .services-grid, .why-grid, .values-grid, .industries-grid-full, .resources-grid,
  .testimonials-grid, .team-grid, .stats-grid { grid-template-columns: 1fr; }
  .stat:not(:last-child)::after { display: none; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .step { display: grid; grid-template-columns: 54px 1fr; column-gap: 18px; text-align: left; }
  .step-num { grid-row: 1 / 3; width: 54px; height: 54px; margin: 0; }
  .service-block { margin-bottom: 80px; }
  .service-block img { height: 260px; }
  .form-card, .quote-card { padding: 28px 22px; }
  .founder-copy { padding: 28px 22px; }
  .legal-content { padding: 64px 0; }
  .legal-card { padding: 30px 22px; }
  .footer-grid { gap: 32px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
