/* =============================================================
   PalsPay Design System — Bakolapay-style Clean Minimal Fintech
   Colors: White bg + Forest Green #1a3d2b primary + Lime #a3e635 accent
   Typography: Fraunces (display) + Inter (body)
   ============================================================= */

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

html { scroll-behavior: smooth; }

body {
  background: #ffffff;
  color: #1a1a2e;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── Container ── */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 640px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 3rem; padding-right: 3rem; max-width: 1200px; }
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.1;
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #1a3d2b 0%, #40916c 50%, #a3e635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1a3d2b;
  background: rgba(163,230,53,0.18);
  border: 1px solid rgba(163,230,53,0.4);
}
.section-label-dark {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #a3e635;
  background: rgba(163,230,53,0.12);
  border: 1px solid rgba(163,230,53,0.25);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
  background: #1a3d2b;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  font-family: 'Inter', system-ui, sans-serif;
}
.btn-primary:hover {
  background: #22502f;
  box-shadow: 0 6px 24px rgba(26,61,43,0.25);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a3d2b;
  background: transparent;
  border: 1.5px solid #d1d5db;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Inter', system-ui, sans-serif;
}
.btn-ghost:hover {
  border-color: #1a3d2b;
  background: rgba(26,61,43,0.04);
}

.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a3d2b;
  background: #a3e635;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  font-family: 'Inter', system-ui, sans-serif;
}
.btn-lime:hover {
  background: #bef264;
  box-shadow: 0 6px 24px rgba(163,230,53,0.35);
  transform: translateY(-1px);
}

/* ── Cards ── */
.feature-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 1rem;
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(26,61,43,0.08);
  transform: translateY(-2px);
}

.integration-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-align: center;
}
.integration-card:hover {
  border-color: rgba(26,61,43,0.25);
  box-shadow: 0 4px 16px rgba(26,61,43,0.06);
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 1rem;
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* ── Icon box ── */
.icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,61,43,0.08);
  flex-shrink: 0;
}
.icon-box svg { color: #1a3d2b; }

/* ── Scroll animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s;
}
.navbar.scrolled { border-bottom-color: #e9ecef; }
.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.navbar .logo-icon {
  width: 1.75rem; height: 1.75rem;
  border-radius: 0.375rem;
  background: #1a3d2b;
  display: flex; align-items: center; justify-content: center;
}
.navbar .logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #1a3d2b;
}
.navbar .nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
@media (min-width: 1024px) {
  .navbar .nav-links { display: flex; }
}
.navbar .nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.navbar .nav-links a:hover { color: #1a3d2b; }
.navbar .nav-cta { display: none; }
@media (min-width: 1024px) { .navbar .nav-cta { display: flex; } }
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a3d2b;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.mobile-menu {
  display: none;
  border-top: 1px solid #e9ecef;
  padding: 1rem 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.625rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
  text-decoration: none;
  border-radius: 0.5rem;
}
.mobile-menu a:hover { color: #1a3d2b; }
.mobile-menu .mobile-cta {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ── Hero ── */
.hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
  text-align: center;
  background: #ffffff;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  background: #f1f3f5;
  border: 1px solid #e9ecef;
  color: #6c757d;
}
.pulse-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: #1a1a2e;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}
.hero p.subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
}
.dashboard-wrap {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}
.dashboard-frame {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e9ecef;
  box-shadow: 0 32px 80px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.04);
}
.dashboard-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}
.dot-red   { width: 0.75rem; height: 0.75rem; border-radius: 50%; background: #ff5f57; }
.dot-yellow{ width: 0.75rem; height: 0.75rem; border-radius: 50%; background: #febc2e; }
.dot-green { width: 0.75rem; height: 0.75rem; border-radius: 50%; background: #28c840; }
.dashboard-url {
  flex: 1;
  margin: 0 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e9ecef;
  color: #9ca3af;
}
.dashboard-frame img { width: 100%; height: auto; display: block; }
.float-badge {
  position: absolute;
  display: none;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  background: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
@media (min-width: 768px) { .float-badge { display: flex; } }
.float-badge.right { right: -1rem; top: 25%; }
.float-badge.left  { left: -1rem; bottom: 33%; }
.badge-icon {
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #dcfce7;
}
.badge-title { font-size: 0.75rem; font-weight: 600; color: #1a1a2e; }
.badge-sub   { font-size: 0.75rem; color: #9ca3af; }

/* ── Trusted By ── */
.trusted-by {
  padding: 2.5rem 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}
.trusted-by-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 2.5rem;
}
.trusted-by-inner span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ced4da;
  font-family: 'Fraunces', Georgia, serif;
}

/* ── Section generic ── */
.section-light { padding: 6rem 0; background: #f8f9fa; }
.section-white { padding: 6rem 0; background: #ffffff; }
.section-dark  { padding: 6rem 0; background: #0f1a14; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-weight: 900;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.section-header h2.light { color: #ffffff; }
.section-header p { font-size: 1rem; color: #6c757d; }
.section-header p.light { color: rgba(255,255,255,0.55); }

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* ── Platform (dark) section ── */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .platform-grid { grid-template-columns: 1fr 1fr; }
}
.platform-text h2 {
  font-weight: 900;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.platform-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.platform-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  list-style: none;
  margin-bottom: 2rem;
}
.platform-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.check-lime { color: #a3e635; flex-shrink: 0; margin-top: 0.1rem; }
.analytics-panel {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.analytics-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.live-dot {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.live-dot span.dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%; background: #4ade80;
  animation: pulse 2s infinite;
}
.analytics-panel img { width: 100%; height: auto; display: block; }
.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.stat-cell {
  padding: 0.75rem 1rem;
  background: #0f1a14;
}
.stat-cell .val {
  font-weight: 700;
  font-size: 0.875rem;
  color: #ffffff;
  font-family: 'Fraunces', Georgia, serif;
}
.stat-cell .val.lime { color: #a3e635; }
.stat-cell .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ── Stars ── */
.stars { display: flex; gap: 0.125rem; margin-bottom: 1rem; }
.stars svg { color: #f59e0b; }

/* ── Testimonial author ── */
.author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f3f5;
  margin-top: 1.25rem;
}
.avatar {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: #1a3d2b;
  color: #a3e635;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 600; color: #1a1a2e; font-family: 'Fraunces', Georgia, serif; }
.author-role { font-size: 0.75rem; color: #9ca3af; }

/* ── Company logos row ── */
.company-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .company-row { grid-template-columns: repeat(4, 1fr); } }
.company-pill {
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e9ecef;
}
.company-pill .name { font-weight: 700; font-size: 0.875rem; color: #1a1a2e; font-family: 'Fraunces', Georgia, serif; }
.company-pill .type { font-size: 0.75rem; color: #adb5bd; }

/* ── Integrations custom CTA box ── */
.integration-cta {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  background: #0f1a14;
  margin-top: 2rem;
}
.integration-cta h3 { font-size: 1.25rem; font-weight: 700; color: #ffffff; margin-bottom: 0.5rem; font-family: 'Fraunces', Georgia, serif; }
.integration-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover, .faq-q.open { background: #f8f9fa; }
.faq-q span {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1a1a2e;
  padding-right: 1rem;
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #9ca3af;
}
.faq-chevron.open { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  background: #f8f9fa;
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.7;
}
.faq-a.open { display: block; }
.faq-footer { text-align: center; margin-top: 2rem; }
.faq-footer p { font-size: 0.875rem; color: #9ca3af; margin-bottom: 0.75rem; }

/* ── Security badges ── */
.cert-status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: rgba(163,230,53,0.15);
  color: #1a3d2b;
  border: 1px solid rgba(163,230,53,0.35);
}
.compliance-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.compliance-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  background: #ffffff;
  border: 1px solid #e9ecef;
  color: #374151;
}

/* ── CTA Banner ── */
.cta-banner { padding: 6rem 0; background: #0f1a14; text-align: center; }
.cta-banner h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.cta-banner .btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* ── Footer ── */
.footer { background: #0f1a14; }
.footer-inner {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; align-items: flex-start; justify-content: space-between; }
}
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-logo-icon {
  width: 1.75rem; height: 1.75rem;
  border-radius: 0.375rem;
  background: #1a3d2b;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #ffffff;
}
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 1rem; max-width: 22rem; }
.footer-company { font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.8; }
.footer-company strong { color: rgba(255,255,255,0.5); }
.footer-company a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-company a:hover { color: rgba(255,255,255,0.7); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) { .footer-links { justify-content: flex-end; } }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #ffffff; }
.footer-sep { color: rgba(255,255,255,0.2); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0; }
.footer-copy {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ── Legal pages ── */
.legal-nav {
  background: #0f1a14;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-nav .inner {
  display: flex; align-items: center; justify-content: space-between; height: 4rem;
}
.legal-nav .logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.legal-nav .logo-icon {
  width: 1.75rem; height: 1.75rem; border-radius: 0.375rem;
  background: #1a3d2b; display: flex; align-items: center; justify-content: center;
}
.legal-nav .logo-text { font-family: 'Fraunces', Georgia, serif; font-weight: 900; font-size: 1.1rem; color: #ffffff; }
.legal-nav .back-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s;
}
.legal-nav .back-link:hover { color: #ffffff; }
.legal-hero {
  background: #0f1a14;
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}
.legal-hero h1 { font-weight: 900; font-size: clamp(2rem,4vw,3rem); color: #ffffff; margin-bottom: 0.75rem; }
.legal-hero p { font-size: 0.875rem; color: rgba(255,255,255,0.45); }
.legal-content { padding: 4rem 0; background: #f8f9fa; }
.legal-card {
  max-width: 48rem;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
@media (min-width: 768px) { .legal-card { padding: 3rem; } }
.legal-intro { font-size: 1rem; color: #374151; line-height: 1.7; margin-bottom: 2rem; }
.legal-section { margin-bottom: 2rem; }
.legal-section h2 {
  font-weight: 800;
  font-size: 1.15rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  font-family: 'Fraunces', Georgia, serif;
}
.legal-section p, .legal-section li { font-size: 0.875rem; color: #374151; line-height: 1.7; }
.legal-section ul { list-style: none; padding: 0; }
.legal-section ul li { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.legal-section ul li::before { content: "•"; color: #1a3d2b; font-weight: 700; flex-shrink: 0; }
.legal-section p + p { margin-top: 0.75rem; }
.company-card {
  border-radius: 0.75rem;
  padding: 1.25rem;
  background: #f0f7f0;
  border: 1px solid #d1e7d1;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #374151;
}
.company-card strong { color: #1a3d2b; font-weight: 700; }
.company-card a { color: #1a3d2b; font-weight: 600; text-decoration: none; }
.company-card a:hover { text-decoration: underline; }
.legal-footer {
  background: #0f1a14;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}
.legal-footer .inner {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
@media (min-width: 640px) {
  .legal-footer .inner { flex-direction: row; justify-content: space-between; }
}
.legal-footer .copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.legal-footer .links { display: flex; gap: 1.25rem; }
.legal-footer .links a {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.legal-footer .links a:hover { color: #ffffff; }

/* ── Contact page ── */
.contact-hero {
  background: #0f1a14;
  padding: 7rem 0 4rem;
  text-align: center;
}
.contact-hero h1 { font-weight: 900; font-size: clamp(2.2rem,4.5vw,3.5rem); color: #ffffff; margin-bottom: 1rem; }
.contact-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto; line-height: 1.7; }
.contact-body { padding: 5rem 0; background: #f8f9fa; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}
.contact-info h2 {
  font-weight: 900;
  font-size: 1.6rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  font-family: 'Fraunces', Georgia, serif;
}
.contact-info p { font-size: 0.9rem; color: #6c757d; line-height: 1.7; margin-bottom: 1.75rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.625rem;
  background: rgba(26,61,43,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: #1a3d2b; }
.contact-detail-title { font-size: 0.8rem; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-detail-val { font-size: 0.9rem; color: #1a1a2e; font-weight: 500; }
.contact-detail-val a { color: #1a3d2b; text-decoration: none; }
.contact-detail-val a:hover { text-decoration: underline; }
.contact-form-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
@media (min-width: 640px) { .contact-form-card { padding: 2.5rem; } }
.contact-form-card h3 {
  font-weight: 800;
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  font-family: 'Fraunces', Georgia, serif;
}
.contact-form-card .sub { font-size: 0.875rem; color: #6c757d; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.field label { font-size: 0.8rem; font-weight: 600; color: #374151; }
.field input, .field textarea, .field select {
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  border: 1.5px solid #e9ecef;
  font-size: 0.875rem;
  color: #1a1a2e;
  background: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: #1a3d2b;
  box-shadow: 0 0 0 3px rgba(26,61,43,0.08);
}
.field textarea { resize: vertical; min-height: 7rem; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.success-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: #dcfce7;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.success-icon svg { color: #16a34a; }
.form-success h4 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.5rem; font-family: 'Fraunces', Georgia, serif; }
.form-success p { font-size: 0.875rem; color: #6c757d; }
.form-error-msg {
  display: none;
  font-size: 0.8rem;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  margin-top: 0.75rem;
}
.form-error-msg.show { display: block; }

/* ── Utility ── */
.text-center { text-align: center; }
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
