:root {
  --green: #0a7d3b;
  --gold: #d4a11e;
  --dark: #0b0f0d;
  --gray: #6b7280;
  --light: #f7f7f7;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo {
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--green);
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111827;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a.active {
  color: var(--green);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--green);
  color: white !important;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.nav-cta:hover {
  background: #086431;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.6rem;
}

/* Mobile Nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  font-weight: 700;
  padding: 8px 0;
}

.mobile-menu a.nav-cta {
  text-align: center;
}

.mobile-menu.show {
  display: flex;
}

/* Hero */
.hero {
  padding: 80px 0 50px;
  background: linear-gradient(to right, rgba(10, 125, 59, 0.08), rgba(212, 161, 30, 0.06));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 950;
  margin-bottom: 15px;
}

.hero p {
  color: #1f2937;
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-primary:hover {
  background: #075b2c;
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.hero-card {
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hero-card ul {
  list-style: none;
  margin-top: 10px;
}

.hero-card ul li {
  margin-bottom: 10px;
  font-weight: 700;
  color: #111827;
}

.hero-card ul li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 950;
}

/* Trust Bar */
.trust-bar {
  margin-top: 40px;
  padding: 15px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  text-align: center;
}

.trust-bar span {
  font-weight: 800;
  color: #111827;
  font-size: 0.95rem;
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.1rem;
  font-weight: 950;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--gray);
  max-width: 750px;
  margin: auto;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: white;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--gray);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.badge-green {
  background: rgba(10, 125, 59, 0.12);
  color: var(--green);
}

.badge-gold {
  background: rgba(212, 161, 30, 0.14);
  color: #9a740f;
}

/* How it Works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: var(--shadow);
}

.step h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.step span {
  display: inline-block;
  font-weight: 950;
  color: var(--green);
  margin-bottom: 10px;
}

/* Testimonials */
.testimonial {
  font-style: italic;
  color: #111827;
  margin-bottom: 10px;
}

.client {
  font-weight: 950;
  color: var(--green);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(to right, var(--green), #064d26);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 950;
  margin-bottom: 10px;
}

.cta-banner p {
  max-width: 750px;
  margin: auto;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* Page Header */
.page-header {
  background: linear-gradient(to right, rgba(10, 125, 59, 0.12), rgba(212, 161, 30, 0.08));
  padding: 70px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.7rem;
  font-weight: 950;
  margin-bottom: 10px;
}

.page-header p {
  max-width: 800px;
  margin: auto;
  color: #374151;
}

/* Content */
.content {
  max-width: 950px;
  margin: auto;
  font-size: 1.05rem;
  color: #111827;
}

.content h2 {
  margin-top: 35px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  color: var(--green);
}

.content h3 {
  margin-top: 25px;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.content li {
  margin-bottom: 10px;
}

/* Contact Form */
.form {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: 800;
  display: block;
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  outline: none;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Template Store Tools */
.store-tools {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.store-tools input,
.store-tools select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 360px;
}

/* Pricing */
.price {
  font-size: 1.3rem;
  font-weight: 950;
  margin-top: 10px;
  margin-bottom: 12px;
  color: var(--green);
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0px);
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  padding: 12px 15px;
  border-radius: 14px;
  background: var(--green);
  color: white;
  font-weight: 900;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: none;
  z-index: 9999;
}

#backToTop:hover {
  background: #064d26;
}

/* Footer */
footer {
  background: #0b0f0d;
  color: white;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 20px;
}

footer h3 {
  margin-bottom: 10px;
}

footer a {
  color: #d1d5db;
  display: block;
  margin-bottom: 8px;
}

footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 25px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}