/* styles.css - Mobile First, No Filter Brand */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* ---------- TYPOGRAPHY ---------- */
h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h1 .block {
  display: block;
  font-weight: 700;
  color: #222;
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

h2 .light {
  font-weight: 400;
  color: #555;
}

.subhead {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.large-text {
  font-size: 1.25rem;
  font-weight: 400;
  border-left: 4px solid #ce202a;  /* Primary red accent */
  padding-left: 1.25rem;
  background: #f9f9f9;
  padding: 1rem 1.25rem;
  border-radius: 0 12px 12px 0;
}

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-secondary {
  display: inline-block;
  background: #ce202a;  /* Primary red */
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 12px rgba(206, 32, 42, 0.2);  /* Red-tinted shadow */
}

.btn-primary:hover, .btn-secondary:hover {
  background: #a51922;  /* Darker red on hover */
}

.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}

/* ---------- HERO ---------- */
.hero {
  background: #ffffff;
  padding-top: 1rem;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: #040404;  /* Secondary near-black */
  color: white;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1rem 0;
}

.stat-item {
  font-size: 0.875rem;
  font-weight: 400;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  line-height: 1.2;
  color: #ce202a;  /* Primary red for numbers */
}

/* ---------- PROBLEM / SOLUTION ---------- */
.problem-solution {
  background: #f4f4f4;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: #ce202a;  /* Primary red border on hover (desktop only) */
}

.service-icon {
  font-size: 1.75rem;
}

/* ---------- WHY CHOOSE (BENEFITS) ---------- */
.why-choose {
  background: #fafafa;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item {
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.5rem;
}

.benefit-item::before {
  content: "✓";
  color: #ce202a;  /* Primary red checkmarks */
  font-weight: 700;
  margin-right: 0.5rem;
}

.benefit-desc {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #555;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: #ffffff;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card {
  background: #f4f4f4;
  padding: 1.5rem;
  border-radius: 20px;
  border-left: 6px solid #ce202a;  /* Primary red accent */
}

.quote {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: #222;
}

.author {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

/* ---------- PROCESS (HOW WE WORK) ---------- */
.process {
  background: #f0f0f0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #ddd;
}

.step-num {
  background: #ce202a;  /* Primary red background */
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---------- LEAD FORM ---------- */
.lead-form {
  background: #ffffff;
}

.lead-form h2 {
  margin-bottom: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 1rem;
  background: white;
  transition: border 0.2s, box-shadow 0.2s;
}

input:focus, select:focus {
  outline: none;
  border-color: #ce202a;  /* Primary red focus */
  box-shadow: 0 0 0 3px rgba(206, 32, 42, 0.1);
}

select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23ce202a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');  /* Red arrow */
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1rem;
}

.btn-secondary {
  background: #040404;  /* Secondary near-black for secondary button */
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
  background: #1a1a1a;  /* Lighter black on hover */
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: #555;
  margin-top: 0.5rem;
}

/* ---------- FOOTER / CONTACT ---------- */
.contact-info {
  background: #040404;  /* Secondary near-black */
  color: #eee;
  text-align: center;
  font-size: 0.9375rem;
  border-top: 4px solid #ce202a;  /* Primary red top border */
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-details div:first-child {
  color: #ce202a;  /* Primary red email for emphasis */
  font-weight: 500;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.7;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}

/* ---------- UTILS / TOUCH FRIENDLY ---------- */
a, button, input, select, .service-card, .step {
  -webkit-tap-highlight-color: transparent;
}

/* ---------- tiny adjustments for very small screens ---------- */
@media (max-width: 360px) {
  h1 { font-size: 1.75rem; }
  .stat-number { font-size: 1.25rem; }
  .stat-item { font-size: 0.75rem; }
  .benefit-item { font-size: 1.1rem; }
}