@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --green: #2D7D3A;
  --green-dark: #1e5a28;
  --green-light: #3a9e4a;
  --yellow: #F5C400;
  --dark: #111111;
  --gray: #444444;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }

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

/* ── HEADER ── */
header {
  background: var(--dark);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
  border-bottom: 3px solid var(--green);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo span { color: var(--green-light); }

nav { display: flex; gap: 2rem; align-items: center; }

nav a {
  color: #ccc;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

nav a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--green-light) !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 5% 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--green);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.12;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 span { color: var(--green-light); }

.hero p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }

.btn-phone {
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-phone:hover { background: var(--white); color: var(--dark); }

.hero-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-top: 4px solid var(--green);
  border-radius: 8px;
  padding: 2rem;
}

.hero-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-card ul li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #ccc;
  font-size: 0.95rem;
}

.hero-card ul li::before {
  content: '✓';
  background: var(--green);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--green);
  padding: 1rem 5%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── SECTIONS ── */
section { padding: 70px 5%; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ── SERVICES ── */
.services { background: var(--light-gray); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.8rem;
  border-bottom: 4px solid var(--green);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--green);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--gray); font-size: 0.95rem; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 60px 5%;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.cta-band h2 span { color: var(--green-light); }

.cta-band p {
  color: #aaa;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-band .btn-primary { font-size: 1.2rem; padding: 1.1rem 2.5rem; }

/* ── AREAS ── */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.area-tag {
  background: var(--light-gray);
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 3rem 5% 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.footer-brand .logo { font-size: 1.4rem; margin-bottom: 0.8rem; }

.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

footer ul li a { font-size: 0.9rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--green-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a { color: #aaa; }
.footer-bottom a:hover { color: var(--white); }

/* ── MOBILE ── */
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; }

@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark); padding: 1.5rem 5%; gap: 1.2rem; border-bottom: 2px solid var(--green); }
  .hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero::before { display: none; }
  .trust-bar { gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 60px 5%;
  text-align: center;
  border-bottom: 4px solid var(--green);
}

.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 0.8rem; }
.page-hero h1 span { color: var(--green-light); }
.page-hero p { color: #bbb; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── CONTENT ── */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { font-size: 2rem; margin: 2rem 0 0.8rem; }
.content-block p { color: var(--gray); margin-bottom: 1rem; }
.content-block ul { margin: 1rem 0 1.5rem 1.5rem; color: var(--gray); }
.content-block ul li { margin-bottom: 0.5rem; }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { width: 100%; font-size: 1.1rem; padding: 1rem; border-radius: 5px; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  background: var(--green);
  border-radius: 8px;
  padding: 3rem;
  color: var(--white);
  text-align: center;
}

.about-visual .big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--yellow);
}

.about-visual p { font-size: 1rem; opacity: 0.9; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}
