/* ===== BASE RESET & VARIABLES ===== */
:root {
  --primary: #16753a;
  --primary-dark: #0f5a2b;
  --primary-light: #e6f7ed;
  --primary-rgb: 22, 117, 58;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fef3c7;
  --bg: #f4f7f5;
  --surface: #ffffff;
  --text: #1a2e23;
  --text-muted: #5f7268;
  --border: #dce5df;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
  --max-width: 1140px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

::selection {
  background: rgba(var(--primary-rgb), 0.15);
}

/* ===== DISCLOSURE BAR ===== */
.disclosure-bar {
  background: linear-gradient(90deg, #fffbeb, #fef3c7);
  color: #92400e;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #fcd34d;
}

.disclosure-bar a {
  color: #92400e;
  text-decoration: underline;
  font-weight: 600;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.site-header:hover {
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), #22c55e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 600;
}

.header-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
}

.nav-toggle:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.main-content {
  min-width: 0;
}

.sidebar {
  position: sticky;
  top: 92px;
}

/* ===== HERO ===== */
.hero {
  padding: 52px 0 36px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 680px;
  letter-spacing: -0.5px;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 28px;
  line-height: 1.75;
}

.hero-image-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 28px 0;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e6f7ed 0%, #a7f3d0 40%, #6ee7b7 70%, #34d399 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.3) 100%);
}

.hero-image-placeholder i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.hero-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: -18px;
  margin-bottom: 28px;
  padding-left: 2px;
}

/* ===== ARTICLE CONTENT ===== */
.article-body h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 16px;
  padding-top: 8px;
  letter-spacing: -0.3px;
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 12px;
}

.article-body p {
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.85;
  font-size: 0.95rem;
}

.article-body ul,
.article-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== CHECKLIST ===== */
.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.checklist li {
  padding: 10px 0 10px 40px;
  position: relative;
  line-height: 1.7;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.15rem;
  top: 10px;
}

/* ===== CARDS / GRID ===== */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 28px 0;
}

.benefit-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #22c55e);
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-light), #d1fae5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.benefit-card h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.comparison-table thead th {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table tbody tr {
  transition: background var(--transition);
}

.comparison-table tbody tr:hover {
  background: var(--primary-light);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== STEPS ===== */
.steps {
  margin: 28px 0;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: -12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(var(--primary-rgb), 0.1));
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #22c55e);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== FORM CARD (SIDEBAR) ===== */
.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.form-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.form-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.form-card-header h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
}

.form-card-header p {
  font-size: 0.85rem;
  opacity: 0.9;
  position: relative;
}

.form-card-body {
  padding: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: 0.1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  background: #fff;
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a3b5a9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.55;
}

.form-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
  color: #fff;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  color: #fff;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn i {
  font-size: 0.85em;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0f5a2b 50%, #064e3b 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  letter-spacing: -0.3px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 28px;
  font-size: 1.05rem;
  position: relative;
}

.cta-section .btn-accent {
  font-size: 1.05rem;
  padding: 16px 40px;
  position: relative;
}

/* ===== TRUST BADGES ===== */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-badge .icon,
.trust-badge i {
  color: var(--primary);
  font-size: 1rem;
}

/* ===== FAQ ===== */
.faq-list {
  margin: 28px 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--surface);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: "\f068";
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 28px 0;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: "\201c";
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 3.5rem;
  color: rgba(var(--primary-rgb), 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #162b1e 0%, #0f1f15 100%);
  color: #b0c4b6;
  padding: 56px 0 28px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand .logo-icon {
  background: linear-gradient(135deg, var(--primary), #22c55e);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: #7a9482;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #7a9482;
  font-size: 0.88rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #536b5a;
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: #536b5a;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: #fff;
}

/* ===== DISCLOSURE (inline) ===== */
.disclosure-inline {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 24px;
  margin: 28px 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.disclosure-inline strong {
  color: var(--primary-dark);
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0f5a2b 50%, #064e3b 100%);
  color: #fff;
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  letter-spacing: -0.3px;
}

.page-header p {
  opacity: 0.9;
  font-size: 1.05rem;
  position: relative;
}

.page-body {
  max-width: 800px;
  margin: 48px auto;
  padding: 0 24px;
}

.page-body h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 32px 0 14px;
  color: var(--text);
  letter-spacing: -0.2px;
}

.page-body h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 22px 0 10px;
}

.page-body p {
  margin-bottom: 16px;
  line-height: 1.85;
  color: var(--text);
  font-size: 0.95rem;
}

.page-body ul {
  margin: 14px 0;
  padding-left: 24px;
}

.page-body li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.page-body .last-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin: 28px 0;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-light), #d1fae5);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.contact-info-card h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), #22c55e);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.2);
}

.contact-item-text strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-item-text span,
.contact-item-text a {
  font-size: 0.92rem;
  color: var(--text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.55rem;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 14px;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .comparison-table {
    font-size: 0.82rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 14px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 31, 21, 0.96);
  backdrop-filter: blur(12px);
  color: #b0c4b6;
  padding: 18px 28px;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  font-size: 0.85rem;
  margin: 0;
}

.cookie-banner a {
  color: var(--accent);
  font-weight: 600;
}

.cookie-btn {
  background: linear-gradient(135deg, var(--primary), #22c55e);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
}

.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.4);
}

/* ===== SECTION HELPERS ===== */
.section-title {
  text-align: center;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FORM VALIDATION & SUBMIT ANIMATION ===== */
.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
  animation: headShake 0.4s ease;
}

@keyframes headShake {
  0% { transform: translateX(0); }
  15% { transform: translateX(-4px); }
  30% { transform: translateX(4px); }
  45% { transform: translateX(-3px); }
  60% { transform: translateX(2px); }
  75% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: headShake 0.4s ease;
}

.form-fields {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-success {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

button[type="submit"]:disabled {
  cursor: not-allowed;
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e6f7ed 0%, #d1fae5 40%, #a7f3d0 70%, #6ee7b7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: var(--shadow);
  border: 2px dashed rgba(var(--primary-rgb), 0.2);
}

.img-placeholder.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.img-placeholder.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.img-placeholder.ratio-3-2 {
  aspect-ratio: 3 / 2;
}

.img-placeholder.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

.img-placeholder.ratio-21-9 {
  aspect-ratio: 21 / 9;
}

.img-placeholder .img-ph-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  opacity: 0.5;
}

.img-placeholder .img-ph-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
  opacity: 0.7;
}

.img-placeholder .img-ph-size {
  font-size: 0.72rem;
  opacity: 0.45;
  margin-top: 4px;
}

/* Real image inside placeholder */
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.img-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
  padding-left: 2px;
}

/* Gallery grid for image placeholders */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.img-gallery .img-placeholder {
  aspect-ratio: 4 / 3;
}

/* Inline image with text wrap */
.img-inline {
  margin: 24px 0;
}

.img-inline.float-right {
  float: right;
  margin: 0 0 20px 28px;
  width: 45%;
}

.img-inline.float-left {
  float: left;
  margin: 0 28px 20px 0;
  width: 45%;
}

.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 640px) {
  .img-inline.float-right,
  .img-inline.float-left {
    float: none;
    width: 100%;
    margin: 20px 0;
  }
}
