:root {
  --green: #166534;
  --green-mid: #16a34a;
  --green-light: #22c55e;
  --green-pale: #dcfce7;
  --green-xlight: #f0fdf4;
  --text: #111827;
  --text-2: #374151;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #f9fafb;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1.15rem; color: var(--green);
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  font-family: 'Instrument Serif', serif;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.4rem 0.85rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-2);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--green-xlight); color: var(--green);
}
.nav-cta {
  background: var(--green); color: #fff !important;
  border-radius: 8px; padding: 0.4rem 1.1rem !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: #14532d !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: 0.3s;
}
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.6rem 0.75rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500; color: var(--text-2);
}
.mobile-menu a:hover { background: var(--green-xlight); color: var(--green); }

/* HERO */
.hero {
  background: linear-gradient(160deg, var(--green-xlight) 0%, #fff 60%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-pale); color: var(--green);
  border-radius: 99px; padding: 0.3rem 1rem; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 1.5rem; letter-spacing: 0.02em;
}
.hero-badge::before { content: '●'; font-size: 0.55rem; }
.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.18; color: var(--text);
  max-width: 700px; margin: 0 auto 1.25rem;
}
.hero h1 em { color: var(--green-mid); font-style: italic; }
.hero p {
  font-size: 1.1rem; color: var(--muted);
  max-width: 540px; margin: 0 auto 2rem;
}
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--green); color: #fff;
  border: none; border-radius: 10px;
  padding: 0.75rem 1.75rem; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.15s, transform 0.1s;
  font-family: inherit; display: inline-block;
}
.btn-primary:hover { background: #14532d; }
.btn-primary:active { transform: scale(0.98); }
.btn-outline {
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green-mid); border-radius: 10px;
  padding: 0.75rem 1.75rem; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.15s;
  font-family: inherit; display: inline-block;
}
.btn-outline:hover { background: var(--green-xlight); }

/* CARDS GRID */
.section { padding: 4rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.75rem;
}
.section h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2; margin-bottom: 1rem;
}
.section > p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin-bottom: 2.5rem; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green-xlight);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
}
.card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

/* HOW IT WORKS */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;
  counter-reset: steps;
}
.step { padding: 1.5rem; background: var(--surface); border-radius: var(--radius); position: relative; }
.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.5rem; color: var(--green-pale); line-height: 1;
  margin-bottom: 0.5rem; font-weight: 400;
}
.step h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.step p { font-size: 0.87rem; color: var(--muted); }

/* SERVICES PAGE */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  padding: 3rem 0; border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-visual {
  background: var(--green-xlight);
  border-radius: var(--radius); padding: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; min-height: 220px;
}
.service-text h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem; margin-bottom: 0.75rem; line-height: 1.25;
}
.service-text p { color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.service-text ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.service-text ul li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.92rem; color: var(--text-2);
}
.service-text ul li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }

/* BLOG PAGE */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.blog-thumb {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 1.25rem; }
.blog-tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.5rem;
}
.blog-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-body p { font-size: 0.87rem; color: var(--muted); line-height: 1.55; }
.blog-meta { font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; display: flex; gap: 1rem; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h3 {
  font-family: 'Instrument Serif', serif; font-size: 1.6rem; margin-bottom: 1rem;
}
.contact-info p { color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1rem; background: var(--surface);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  font-size: 0.9rem;
}
.contact-item-icon { font-size: 1.25rem; }
.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-2); }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.65rem 0.85rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit;
  color: var(--text); background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green-mid);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none; background: var(--green-xlight); border: 1px solid var(--green-pale);
  border-radius: var(--radius-sm); padding: 1rem;
  text-align: center; color: var(--green); font-weight: 600;
}

/* LEGAL PAGES */
.legal-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  color: #fff; padding: 3.5rem 1.5rem 3rem;
  text-align: center;
}
.legal-header h1 {
  font-family: 'Instrument Serif', serif; font-size: 2.2rem; margin-bottom: 0.5rem;
}
.legal-header p { opacity: 0.85; font-size: 0.95rem; }
.legal-tabs {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0 1.5rem; display: flex; gap: 0.25rem; overflow-x: auto;
  max-width: 100%;
}
.legal-tab {
  padding: 0.85rem 1.1rem; font-size: 0.88rem; font-weight: 600;
  color: var(--muted); white-space: nowrap;
  border-bottom: 2.5px solid transparent; transition: color 0.15s, border-color 0.15s;
}
.legal-tab:hover { color: var(--green); }
.legal-tab.active { color: var(--green); border-color: var(--green); }
.legal-content { max-width: 760px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.legal-content .meta-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  margin-bottom: 1.75rem; font-size: 0.88rem; color: var(--muted);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem;
}
.meta-box strong { color: var(--text-2); }
.legal-section { margin-bottom: 1.5rem; }
.legal-section h2 {
  font-size: 1.05rem; font-weight: 600; color: var(--green);
  margin-bottom: 0.65rem; padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--green-pale);
}
.legal-section p { font-size: 0.92rem; color: var(--text-2); margin-bottom: 0.65rem; line-height: 1.7; }
.legal-section ul { padding-left: 1.25rem; margin-bottom: 0.65rem; }
.legal-section ul li { font-size: 0.92rem; color: var(--text-2); margin-bottom: 0.3rem; line-height: 1.65; }

/* FOOTER */
footer {
  background: var(--text); color: #9ca3af;
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid #374151;
  margin-bottom: 1.5rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.87rem; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.88rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.87rem; color: #9ca3af;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: #9ca3af; }
.footer-bottom a:hover { color: var(--green-light); }

/* STAT ROW */
.stats {
  background: var(--green); color: #fff;
  padding: 3rem 1.5rem;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.stat-val {
  font-family: 'Instrument Serif', serif;
  font-size: 2.5rem; margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.88rem; opacity: 0.8; }

/* TESTIMONIAL */
.testimonials { background: var(--surface); padding: 4rem 1.5rem; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.testimonial-quote { font-size: 0.95rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.author-name { font-size: 0.88rem; font-weight: 600; }
.author-role { font-size: 0.8rem; color: var(--muted); }

/* CTA SECTION */
.cta-section {
  padding: 5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--green-xlight), #fff);
}
.cta-section h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.cta-section p { color: var(--muted); max-width: 500px; margin: 0 auto 2rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero { padding: 3.5rem 1rem 3rem; }
}
