/* ============================================================
   LokaLinc — Global Styles · Glass Theme · #10b981
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f0fdf8;
  color: #1f2937;
  line-height: 1.6;
}

:root {
  --green:        #10b981;
  --green-dark:   #059669;
  --green-light:  #ecfdf5;
  --green-xlight: #f0fdf8;
  --text:         #1f2937;
  --muted:        #6b7280;
  --white:        #ffffff;
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow-sm:    0 4px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.09);
  --shadow-lg:    0 16px 40px rgba(0,0,0,0.12);
  --glass-bg:     rgba(255,255,255,0.65);
  --glass-border: rgba(255,255,255,0.5);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 36px 0; }
.text-center { text-align: center; }

/* ── Typography ── */
.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px; margin-bottom: 8px;
}
.section-title {
  font-size: 30px; font-weight: 800;
  line-height: 1.18; color: var(--text); margin-bottom: 8px;
}
.section-title span { color: var(--green); }
.section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 540px; line-height: 1.55;
}
.text-center .section-sub { margin: 0 auto; }

/* ── Glass card ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

/* ── Card ── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(16,185,129,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,185,129,0.35); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green-light); transform: translateY(-1px); }

/* ── App badges ── */
.app-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.app-badges a { display: inline-block; border-radius: var(--radius-sm); transition: transform 0.2s, box-shadow 0.2s; }
.app-badges a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,185,129,0.3); }
.app-badges img { height: 44px; width: auto; display: block; }

/* ── Inner page hero ── */
/* padding-top accounts for the fixed header height */
.page-hero {
  background: linear-gradient(135deg, var(--green-light) 0%, #f0fdf8 100%);
  padding: 110px 0 40px;
  border-bottom: 1px solid rgba(16,185,129,0.1);
}
.page-hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.page-hero p { color: var(--muted); font-size: 16px; }

/* ── Inner page content ── */
.page-content { padding: 48px 0 80px; }
.page-card {
  background: white; padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(16,185,129,0.08);
  line-height: 1.8;
}
.page-card h2 { font-size: 20px; color: var(--green); margin-top: 32px; margin-bottom: 10px; }
.page-card h3 { font-size: 16px; margin-top: 20px; margin-bottom: 8px; }
.page-card p { margin-bottom: 12px; }
.page-card ul { padding-left: 20px; margin-bottom: 12px; }
.page-card li { margin-bottom: 6px; }
.page-card a { color: var(--green); text-decoration: none; }
.page-card a:hover { text-decoration: underline; }
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 32px; padding: 12px 20px;
  background: var(--green); color: white !important;
  border-radius: var(--radius-md); font-weight: 600;
  text-decoration: none !important; font-size: 15px;
  transition: background 0.2s, transform 0.2s;
}
.back-btn:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .section-title { font-size: 26px; }
}
@media (max-width: 768px) {
  section { padding: 30px 0; }
  .page-card { padding: 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 21px; }
}
