/* =====================================================
   legal-about.css
   Shared styles for: about.html + legal.html
   Theme: matches main.css / header-footer.css exactly
   Font: Inter / Segoe UI (same as site)
   Colors: green #16a34a / #22c55e, white cards, light bg
   ===================================================== */

/* =====================================================
   NAVBAR — centered for full-width layout
   (these pages have no 3-column page-wrapper)
   ===================================================== */
.navbar {
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   HERO BANNER
   ===================================================== */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #22c55e, #16a34a, #15803d);
  padding: 64px 24px 80px;
  text-align: center;
}

/* subtle dot-grid overlay */
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

/* wave bottom — blends into body background */
.lp-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(135deg, #eef2f7, #f8fafc);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.lp-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.lp-hero__title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.lp-hero__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =====================================================
   TABS  (Privacy / Terms switcher)
   ===================================================== */
.legal-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 36px 24px 0;
  flex-wrap: wrap;
}

.legal-tab-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  padding: 10px 26px;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-tab-btn:hover {
  color: #16a34a;
  border-color: #22c55e;
  background: #f0fdf4;
}

.legal-tab-btn.active {
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

/* =====================================================
   LEGAL CONTENT PANELS
   ===================================================== */
.legal-panel {
  display: none;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 72px;
  animation: fadeUp 0.3s ease both;
}

.legal-panel.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px 14px;
  margin-bottom: 28px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.legal-panel h2 {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin: 36px 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f3f4f6;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-panel h2:first-of-type {
  margin-top: 0;
}

.legal-panel h2 .sec-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 6px;
  padding: 3px 8px;
}

.legal-panel p {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-panel a {
  color: #16a34a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-panel a:hover {
  color: #15803d;
}

.legal-panel ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-panel ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: #374151;
  line-height: 1.65;
}

.legal-panel ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
}

.legal-highlight {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1.5px solid #bbf7d0;
  border-left: 4px solid #22c55e;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 22px 0;
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
}

.legal-highlight strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #15803d;
  margin-bottom: 6px;
}

.legal-contact-box {
  margin-top: 48px;
  background: linear-gradient(135deg, #22c55e, #16a34a, #15803d);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  color: #fff;
}

.legal-contact-box h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-contact-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}

.legal-contact-box a {
  display: inline-block;
  background: #fff;
  color: #16a34a;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.legal-contact-box a:hover {
  background: #f0fdf4;
  transform: translateY(-1px);
}

/* =====================================================
   ABOUT – MISSION QUOTE
   ===================================================== */
.about-mission {
  max-width: 640px;
  margin: 52px auto 0;
  padding: 0 24px;
  text-align: center;
}

.about-mission__quote {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: italic;
  font-weight: 600;
  color: #111827;
  line-height: 1.65;
  margin-bottom: 10px;
}

.about-mission__source {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

/* Ornament divider */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 360px;
  margin: 36px auto;
  padding: 0 24px;
}

.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, transparent, #22c55e, transparent);
}

.ornament__icon {
  font-size: 16px;
  color: #22c55e;
  flex-shrink: 0;
}

/* =====================================================
   ABOUT – PROFILE CARD
   ===================================================== */
.about-profile {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-profile-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  padding: 36px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 640px) {
  .about-profile-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
    gap: 24px;
  }
  .about-profile-card__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-creds {
    justify-content: center;
  }
}

.about-profile__img-wrap {
  position: relative;
  width: 160px;
  height: 160px;
}

.about-profile__img-wrap::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    #22c55e 0deg,
    #16a34a 90deg,
    #bbf7d0 180deg,
    #22c55e 360deg
  );
  animation: spin 10s linear infinite;
  z-index: 0;
}

.about-profile__img-wrap::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.about-profile__img {
  position: relative;
  z-index: 2;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 4px auto 0;
}

.about-profile__name {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}

.about-profile__role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.1);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.about-profile__bio {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 10px;
}

.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.about-cred {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 999px;
  padding: 5px 12px;
}

/* =====================================================
   ABOUT – VALUES GRID  (mirrors article-card style)
   ===================================================== */
.about-values {
  max-width: 900px;
  margin: 56px auto 0;
  padding: 0 24px;
}

.about-values__title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  letter-spacing: -0.4px;
  margin-bottom: 28px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.about-value-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 24px 20px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.about-value-card__icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}

.about-value-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.about-value-card__text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
}

/* =====================================================
   ABOUT – TIMELINE
   ===================================================== */
.about-story {
  max-width: 680px;
  margin: 56px auto 0;
  padding: 0 24px;
}

.about-story__title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}

.about-timeline {
  position: relative;
  padding-left: 30px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #22c55e, #bbf7d0);
  border-radius: 2px;
}

.about-tl-item {
  position: relative;
  margin-bottom: 32px;
}

.about-tl-item:last-child {
  margin-bottom: 0;
}

.about-tl-item__dot {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c55e;
  border: 3px solid #f8fafc;
  box-shadow: 0 0 0 2px #22c55e;
}

.about-tl-item__year {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 4px;
}

.about-tl-item__title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.about-tl-item__text {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.65;
}

/* =====================================================
   ABOUT – SOCIAL / CONNECT
   ===================================================== */
.about-social {
  max-width: 900px;
  margin: 56px auto 72px;
  padding: 0 24px;
  text-align: center;
}

.about-social__title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.about-social__sub {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.about-social__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.about-social__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  transition: all 0.22s ease;
}

.about-social__link--email {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}
.about-social__link--email:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

.about-social__link--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.about-social__link--whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.about-social__link--linkedin {
  background: #0a66c2;
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.3);
}
.about-social__link--linkedin:hover {
  background: #084d91;
  transform: translateY(-2px);
}
