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

:root {
  --green-900: #1a3a1a;
  --green-800: #1e4d2b;
  --green-700: #2d6a3f;
  --green-600: #3d8b53;
  --green-500: #4caf50;
  --green-100: #e8f5e9;
  --green-50: #f1f8f1;
  --earth-900: #3e2723;
  --earth-700: #5d4037;
  --earth-100: #efebe9;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* TOP BAR */
.top-bar {
  background: var(--green-800);
  color: var(--white);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  position: relative;
}
.top-bar-brand {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.top-bar-phone {
  position: absolute;
  right: 20px;
  display: inline-block;
  background: var(--white);
  color: var(--green-800);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 8px 20px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}
.top-bar-phone:hover {
  background: var(--amber-400);
  transform: scale(1.03);
}
.sub-bar {
  background: var(--green-900);
  color: rgba(255,255,255,0.8);
  padding: 6px 20px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  background: #000;
  color: var(--white);
  padding: 50px 20px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.4;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span {
  color: var(--green-500);
}
.hero .subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

/* FORM */
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  min-height: 580px;
}
.form-card h2 {
  color: var(--gray-900);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
  text-align: center;
}
.form-card .form-sub {
  color: var(--gray-600);
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 20px;
}
.form-card label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 4px;
  margin-top: 12px;
}
.form-card input, .form-card select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--gray-50);
}
.form-card input:focus, .form-card select:focus {
  outline: none;
  border-color: var(--green-600);
  background: var(--white);
}
.form-card button {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  background: var(--green-600);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.form-card button:hover { background: var(--green-700); }
.form-stars {
  text-align: center;
  margin-bottom: 6px;
  color: var(--amber-500);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* TRUST BAR */
.trust-bar {
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
  padding: 24px 20px;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-800);
}
.trust-item .trust-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-alt {
  background: var(--gray-50);
}
.section-alt .section {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 650px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-600);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--green-800);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
}

/* WHY GREENPINE */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
}
.why-check {
  width: 28px;
  height: 28px;
  background: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check svg { width: 14px; height: 14px; color: white; }
.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--gray-900);
}
.why-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
}
.review-stars {
  color: var(--amber-500);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}
.review-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-900);
}
.review-source {
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: 14px;
}
.step-number {
  width: 40px;
  height: 40px;
  background: var(--green-600);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.process-step p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* AREAS */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.area-tag {
  background: var(--green-100);
  color: var(--green-800);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* FAQ */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.faq-q {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 8px;
  cursor: pointer;
}
.faq-a {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* CTA BANNER */
.cta-banner {
  background: var(--green-800);
  color: var(--white);
  padding: 50px 20px;
  text-align: center;
}
.cta-banner h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-banner p {
  opacity: 0.9;
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.cta-btn {
  display: inline-block;
  background: var(--green-500);
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.2s;
}
.cta-btn:hover { background: var(--green-600); }
.cta-phone {
  display: block;
  margin-top: 14px;
  font-size: 1.2rem;
  font-weight: 700;
}
.cta-phone a { color: var(--white); text-decoration: none; }

/* FOOTER */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 24px 20px;
  text-align: center;
  font-size: 0.8rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .top-bar { flex-direction: column; gap: 8px; text-align: center; }
  .top-bar-brand { font-size: 1.05rem; }
  .top-bar-phone { position: static; font-size: 0.95rem; padding: 6px 16px; }
  .sub-bar { font-size: 0.72rem; padding: 6px 12px; }
  .hero { padding: 30px 16px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 0.78rem; padding: 5px 10px; }
  .form-card { min-height: 500px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .section-title { font-size: 1.4rem; }
  .cta-banner h2 { font-size: 1.4rem; }
}
