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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f4f6;
  color: #111827;
  line-height: 1.5;
}

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

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

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

/* Header / Nav (regular pages) */
.site-header {
  background: #111827;
  color: #f9fafb;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-title {
  display: flex;
  flex-direction: column;
}

.nav-title-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.nav-title-sub {
  font-size: 0.7rem;
  color: #d1d5db;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: #e5e7eb;
}

.nav-links a:hover {
  text-decoration: underline;
}

.nav-phone {
  font-weight: 600;
  white-space: nowrap;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #3b7a2a;
  color: #f9fafb;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  background: #28521e;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.55);
}

.btn-secondary {
  background: transparent;
  color: #3b7a2a;
  border: 1px solid #3b7a2a;
}

.btn-secondary:hover {
  background: #3b7a2a;
  color: #f9fafb;
}

.btn-outline-light {
  background: transparent;
  color: #f9fafb;
  border: 1px solid #e5e7eb;
}

.btn-outline-light:hover {
  background: #f9fafb;
  color: #111827;
}

/* Hero */
.hero {
  padding: 3rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #e5e7eb;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 32rem;
  margin-bottom: 1.2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.hero-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.hero-card {
  background: #111827;
  color: #f9fafb;
  border-radius: 1.1rem;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 16px 40px rgba(15,23,42,0.6);
}

.hero-card-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.85rem;
  color: #d1d5db;
  margin-bottom: 0.9rem;
}

.hero-card-list {
  list-style: none;
  font-size: 0.83rem;
}

.hero-card-list li {
  margin-bottom: 0.35rem;
}

/* Sections */
section {
  padding: 2.7rem 0;
}

.section-header {
  margin-bottom: 1.8rem;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
}

/* Features / Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.step-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
  border: 1px solid #e5e7eb;
}

.step-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.step-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.step-body {
  font-size: 0.86rem;
  color: #4b5563;
}

/* Situations list */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

/* About page */
.about-intro {
  max-width: 700px;
  font-size: 0.97rem;
  color: #4b5563;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.about-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.3rem;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Form */
.form-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
  border: 1px solid #e5e7eb;
}

form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.2rem;
}

form input,
form textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.55rem;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #3b7a2a;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.16);
}

.form-helper {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: -0.4rem;
  margin-bottom: 0.7rem;
}

/* Landing layout */
.landing-layout {
  padding: 2.7rem 0;
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.landing-aside {
  font-size: 0.88rem;
  color: #4b5563;
}

.checklist {
  list-style: none;
  margin-top: 0.8rem;
}

.checklist li {
  margin-bottom: 0.4rem;
}

/* PPC landing header */
.ppc-header {
  background: #111827;
  color: #f9fafb;
  padding: 0.8rem 0;
}

.ppc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ppc-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ppc-logo img {
  height: 36px;
}

.ppc-phone {
  text-align: right;
  font-size: 0.85rem;
}

.ppc-phone a {
  color: #f9fafb;
  font-weight: 600;
}

/* PPC main */
.ppc-main {
  padding: 2.2rem 0 2.8rem;
}

.ppc-hero-title {
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  margin-bottom: 0.6rem;
}

.ppc-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #e5e7eb;
}

.guarantee-box {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  font-size: 0.82rem;
  color: #166534;
}

/* Footer */
footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.3rem 0 1.6rem;
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .site-header-inner,
  .ppc-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-grid,
  .about-grid,
  .landing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .site-header-inner,
  .ppc-header-inner {
    gap: 0.5rem;
  }

  .hero {
    padding-top: 2.1rem;
  }
}
/* POP Enhancements */
.hero-with-logo {
  background: radial-gradient(circle at top left, rgba(59,122,42,0.16), transparent 55%),
              linear-gradient(135deg, #f9fafb, #e5efe3);
  border-bottom: 1px solid #d1d5db;
}

.hero-card-pop {
  box-shadow: 0 20px 45px rgba(15,23,42,0.25);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-card-pop:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(15,23,42,0.35);
}

.hero-logo-wrap {
  margin-bottom: 0.9rem;
}

.hero-logo-img {
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(15,23,42,0.35));
}

.nav-logo-img {
  height: 64px;
}

/* Slightly bolder section titles */
.section-title {
  letter-spacing: 0.02em;
}

/* Step cards hover */
.step-card {
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.14);
  border-color: #cbd5e1;
}

@media (max-width: 600px) {
  .nav-logo-img {
    height: 52px;
  }
  .hero-logo-img {
    max-width: 220px;
  }
}
