@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --green-900: #1a3d2b;
  --green-800: #1e4d33;
  --green-700: #2d6a4f;
  --green-600: #3a8a64;
  --green-500: #52b788;
  --green-100: #d8f3dc;
  --green-50: #f0faf3;
  --orange: #e8630a;
  --orange-light: #f4a261;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: var(--white); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--orange); color: white; font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.05rem; letter-spacing: 0.04em;
  padding: 0.9rem 2rem; border-radius: 6px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; text-transform: uppercase;
  text-decoration: none;
}
.btn-primary:hover { background: #d4550a; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: white; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.03em;
  padding: 0.85rem 1.75rem; border-radius: 6px; border: 2px solid white; cursor: pointer;
  transition: background 0.2s; text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--green-900); margin-bottom: 0.75rem; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.65; }
.text-center { text-align: center; }

/* FAQ */
details.faq-item { border: 1px solid var(--gray-200); border-radius: 8px; overflow: hidden; margin-bottom: 0.75rem; }
details.faq-item summary { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.25rem; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--gray-900); list-style: none; background: var(--white); transition: background 0.15s; }
details.faq-item summary:hover { background: var(--gray-50); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--green-700); flex-shrink: 0; margin-left: 1rem; }
details.faq-item[open] summary::after { content: '−'; }
details.faq-item .faq-answer { padding: 0 1.25rem 1.25rem; color: var(--gray-600); font-size: 0.975rem; line-height: 1.7; border-top: 1px solid var(--gray-100); background: var(--gray-50); }

/* Form */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--gray-700); }
.form-label .required { color: var(--orange); }
.form-input, .form-textarea { width: 100%; padding: 0.8rem 1rem; border: 2px solid var(--gray-200); border-radius: 6px; font-size: 0.975rem; font-family: 'Inter', sans-serif; color: var(--gray-900); background: white; transition: border-color 0.2s; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--green-600); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-checkbox-label { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.875rem; color: var(--gray-600); line-height: 1.55; cursor: pointer; }
.form-checkbox-label input[type="checkbox"] { margin-top: 0.15rem; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--green-700); }
.form-checkbox-label a { color: var(--green-700); font-weight: 600; text-decoration: underline; }

/* Image placeholder */
.img-placeholder { width: 100%; background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 50%, #81c784 100%); border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--green-900); font-weight: 600; font-size: 0.9rem; text-align: center; padding: 1rem; position: relative; overflow: hidden; }
.img-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.15) 10px, rgba(255,255,255,0.15) 20px); }
.img-placeholder .img-icon { font-size: 2.5rem; position: relative; }
.img-placeholder .img-label { position: relative; font-size: 0.8rem; background: rgba(255,255,255,0.7); padding: 0.25rem 0.6rem; border-radius: 4px; }

/* Reviews */
.review-card { background: white; border: 1px solid var(--gray-200); border-radius: 12px; padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.review-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.review-text { color: var(--gray-700); font-size: 0.975rem; line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--gray-900); }
.review-date { font-size: 0.8rem; color: var(--gray-400); }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.25rem; align-items: center; font-size: 0.85rem; color: var(--gray-400); padding: 0.75rem 0; }
.breadcrumb a { color: var(--green-700); }
.breadcrumb-sep { color: var(--gray-300); }

/* Trust badges */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.trust-badge { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.25rem 1rem; background: white; border: 1px solid var(--green-100); border-radius: 10px; gap: 0.5rem; }
.trust-badge .badge-icon { font-size: 1.75rem; }
.trust-badge .badge-label { font-weight: 700; font-size: 0.85rem; color: var(--green-900); }

/* Benefits */
.benefit-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0.65rem; }
.benefit-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.975rem; color: var(--gray-700); }
.benefit-list li::before { content: '✓'; color: var(--green-600); font-weight: 800; flex-shrink: 0; margin-top: 0.05rem; }

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
