@charset "UTF-8";
:root {
  --orange: #f16700;
  --orange-dark: #c85200;
  --orange-light: #fff5ec;
  --dark: #262626;
  --mid: #555555;
  --light: #888888;
  --border: #e8e8e8;
  --bg: #f9f9f9;
  --white: #ffffff;
}

.hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
}

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

.sec-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
/* Hero body — Inter 16px #555 exactly like homepage */
.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* Hero right — track record card */
.track-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  /* THE shadow from homepage */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
  padding: 26px 22px;
}

.track-card-ttl {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.sc {
  padding: 14px 8px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sc:nth-child(2n) {
  border-right: none;
}

.sc:nth-last-child(-n+2) {
  border-bottom: none;
}

.sc-n {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.sc-l {
  font-size: 11px;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.3;
}

.zero-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.zr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 7px;
  padding: 8px 11px;
}

.zr svg {
  width: 13px;
  height: 13px;
  fill: #16a34a;
  flex-shrink: 0;
}

/* ═══════════════════════════
   SECTION STRUCTURE
   Matches homepage: full-width text blocks,
   image+text splits, orange check lists
═══════════════════════════ */
.section-grey {
  background: var(--bg);
}

/* Section heading — Poppins 800, left-aligned, matches homepage */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  border: 1px solid rgba(241, 103, 0, 0.22);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

h2.sh-center {
  text-align: center;
}

p.sp {
  font-size: 16px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.75;
}

p.sp + p.sp {
  margin-top: 14px;
}

/* 2-col split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.split-wide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* ─── Bullet list — homepage orange check circles ─── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.6;
}

.ch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

/* ─── NOT list — red X / green check ─── */
.not-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.nl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  /* THE shadow */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s;
}

.nl-item:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.11);
}

.nl-ico {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nl-ico.red {
  background: #fef2f2;
}

.nl-ico.red svg {
  fill: #ef4444;
}

.nl-ico.green {
  background: #f0fdf4;
}

.nl-ico.green svg {
  fill: #16a34a;
}

.nl-ico svg {
  width: 15px;
  height: 15px;
}

.nl-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.nl-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.5;
}

/* ─── Founder quote ─── */
.quote-block {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
  margin: 22px 0;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.75;
}

/* ─── Stats band ─── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  /* THE shadow */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-top: 44px;
}

.sb-cell {
  padding: 28px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.15s;
}

.sb-cell:last-child {
  border-right: none;
}

.sb-cell:hover {
  background: var(--orange-light);
}

.sb-n {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 7px;
}

.sb-l {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.35;
}

/* ─── 3-col diff cards ─── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  /* THE shadow */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.diff-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.di {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.di svg {
  width: 22px;
  height: 22px;
  fill: var(--orange);
}

.diff-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.diff-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

.diff-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 11px;
  font-size: 11px;
  font-weight: 700;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 3px 9px;
  border-radius: 100px;
}

.diff-pill svg {
  width: 10px;
  height: 10px;
  fill: #16a34a;
}

/* ─── Standards table ─── */
.std-table {
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.str {
  display: grid;
  grid-template-columns: 175px 1fr;
  border-bottom: 1px solid var(--border);
}

.str:last-child {
  border-bottom: none;
}

.str-k {
  background: var(--bg);
  padding: 14px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  border-right: 1px solid var(--border);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

.str-v {
  padding: 14px 16px;
  background: var(--white);
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
}

/* ─── Category cards ─── */
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 13px 15px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.cat-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.11);
  border-color: rgba(241, 103, 0, 0.25);
}

.cat-ico {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--orange-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-ico svg {
  width: 17px;
  height: 17px;
  fill: var(--orange);
}

.cat-n {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.cat-s {
  font-size: 12px;
  color: var(--mid);
  margin-top: 2px;
  line-height: 1.35;
}

/* ─── Geo tags ─── */
.geo-ttl {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 10px;
}

.geo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.geo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px 7px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.geo-tag:hover {
  border-color: rgba(241, 103, 0, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.geo-tag .flag {
  width: 28px;
  height: 18px;
  border-radius: 3px;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.geo-tag.worldwide {
  background: var(--orange-light);
  border-color: rgba(241, 103, 0, 0.3);
  color: var(--orange);
}

/* ─── Promise grid ─── */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.promise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 15px 14px;
  transition: box-shadow 0.2s;
}

.promise-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.11);
}

.p-num {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}

.p-txt {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

/* ═══════════════════════════
   CTA BAND — orange, exact homepage bottom CTA
═══════════════════════════ */
.cta-band {
  background: var(--orange);
  padding: 64px 32px;
  text-align: center;
}

.cta-band h2 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-sub {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Center utility */
.center {
  text-align: center;
}

.center .sh {
  margin-bottom: 12px;
}

.center-sub {
  max-width: 620px;
  margin: 0 auto;
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1024px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-band {
    grid-template-columns: repeat(3, 1fr);
  }
  .sb-cell:nth-child(3) {
    border-right: none;
  }
  .sb-cell:nth-child(n+4) {
    border-top: 1px solid var(--border);
  }
}
@media (max-width: 900px) {
  .hero-inner,
  .split,
  .split-wide {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .track-card {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 30px;
  }
  h2.sh {
    font-size: 24px;
  }
  .section {
    padding: 52px 0;
  }
}
@media (max-width: 600px) {
  .wrap,
  .hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .sb-cell:nth-child(2n) {
    border-right: none;
  }
  .sb-cell:nth-child(3) {
    border-right: 1px solid var(--border);
  }
  .sb-cell:nth-child(n+3) {
    border-top: 1px solid var(--border);
  }
  .str {
    grid-template-columns: 1fr;
  }
  .str-k {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .hero {
    padding: 44px 0 40px;
  }
  .navbar {
    padding: 0 18px;
  }
  .cta-band {
    padding: 48px 18px;
  }
}/*# sourceMappingURL=about-page.css.map */