
:root {
  --color-primary: #b91c1c;
  --color-accent: #f59e0b;
  --color-dark: #1a1a2e;
  --color-light: #f9fafb;
}

/* ── WolfPack Landing Page Styles ─────────────────────────────── */
/* Brand colors are injected as CSS custom properties by the build */

@import "tailwindcss";

/* ── Custom theme tokens ─────────────────────────────────────── */
@theme {
  --color-brand: var(--color-primary);
  --color-brand-accent: var(--color-accent);
  --color-brand-dark: var(--color-dark);
  --color-brand-light: var(--color-light);
}

/* ── Base resets ──────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Sticky header ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.site-header .phone-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-header .phone-link:hover {
  opacity: 0.85;
}

/* ── Hero section ────────────────────────────────────────────── */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.hero-text .eyebrow {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text .subheadline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 520px;
}

/* ── Hero form card ──────────────────────────────────────────── */
.hero-form-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hero-form-card .form-accent-bar {
  height: 5px;
  background: var(--color-primary);
}

.hero-form-card .form-body {
  padding: 2rem;
}

.hero-form-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
  text-align: center;
}

.hero-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-form-card .form-row.full {
  grid-template-columns: 1fr;
}

.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.hero-form-card .cta-button {
  width: 100%;
  padding: 1rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 0.5rem;
}

.hero-form-card .cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── Trust bar ───────────────────────────────────────────────── */
.trust-bar {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.trust-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item .number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust-item .label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

/* ── Section containers ──────────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-alt {
  background: var(--color-light);
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.section-subheading {
  font-size: 1.05rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
}

/* ── About section (text + image grid) ───────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid img {
  border-radius: 12px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text p {
  margin-bottom: 1rem;
  color: #374151;
  line-height: 1.7;
}

/* ── Checklist grid ──────────────────────────────────────────── */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: #374151;
}

.checklist-item .check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ── Service cards ───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a1a2e;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-card .card-cta {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.service-card .card-cta:hover {
  text-decoration: underline;
}

/* ── Why choose us / icon grid ───────────────────────────────── */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.icon-item {
  text-align: center;
}

.icon-item .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(27, 94, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.icon-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.icon-item p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
}

.review-card .stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-card .quote {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card .reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.review-card .reviewer-name {
  font-weight: 600;
  color: #1a1a2e;
}

/* ── Bottom CTA ──────────────────────────────────────────────── */
.bottom-cta {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}

.bottom-cta .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bottom-cta h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bottom-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.bottom-cta .cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #fff;
  color: var(--color-primary);
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.bottom-cta .cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #1a1a2e;
  color: #94a3b8;
  padding: 2rem 0;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer .logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-footer .footer-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-footer .phone-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.site-footer .copyright {
  font-size: 0.8rem;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.text-cta {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.text-cta:hover {
  text-decoration: underline;
}

/* ── Bulleted list (Template 2 & 3) ──────────────────────────── */
.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  margin: 1.5rem 0;
}

.two-col-list li {
  padding: 0.4rem 0;
  font-weight: 600;
  color: #374151;
  list-style: disc;
  margin-left: 1.25rem;
}

/* ── Long-form copy sections (Template 3) ────────────────────── */
.copy-section p {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.copy-section ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.copy-section ul li {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.copy-section .bold-lead {
  font-weight: 700;
  color: #1a1a2e;
}

/* ── Pull quote ──────────────────────────────────────────────── */
.pull-quote {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 2rem;
}

/* ── Phone button (Template 2 & 3 header) ────────────────────── */
.phone-button {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: opacity 0.2s;
}

.phone-button:hover {
  opacity: 0.9;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .icon-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .two-col-list {
    grid-template-columns: 1fr;
  }

  .hero-form-card .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .site-footer .footer-right {
    flex-direction: column;
    gap: 0.5rem;
  }

  .bottom-cta h2 {
    font-size: 1.75rem;
  }

  .pull-quote {
    font-size: 1.35rem;
  }
}
