/* RapidReady Removal Website V3
   Clean, human-readable CSS for easy future editing. */

:root {
  --red: #d40000;
  --red-dark: #b80000;
  --black: #111111;
  --white: #ffffff;
  --light: #f6f6f6;
  --border: #e5e5e5;
  --text: #222222;
  --muted: #666666;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
  z-index: 999;
}

.skip-link:focus { left: 10px; top: 10px; }

.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 14px;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a { color: var(--white); font-weight: 800; }

.header {
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 250px; height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 900;
  color: var(--black);
}

.nav a:hover,
.nav a.active { color: var(--red); }

.button,
.nav .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 9px;
  font-weight: 900;
  border: 2px solid var(--red);
  cursor: pointer;
  text-align: center;
  transition: .18s ease;
}

.button:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.button.secondary { background: var(--white); color: var(--black); border-color: var(--border); }
.button.secondary:hover { border-color: var(--black); background: #fafafa; }
.button.dark { background: var(--black); border-color: var(--black); color: var(--white); }
.button.dark:hover { background: #333; border-color: #333; }

.mobile-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 900;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  padding: 70px 0 72px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  font-size: 14px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 5px;
  height: 34px;
  background: var(--red);
  display: inline-block;
  border-radius: 99px;
}

h1, h2, h3 {
  color: var(--black);
  line-height: 1.08;
  margin: 0 0 18px;
}

h1 { font-size: clamp(42px, 6vw, 72px); letter-spacing: -0.045em; }
h2 { font-size: clamp(31px, 4vw, 48px); letter-spacing: -0.035em; }
h3 { font-size: 23px; }

.lead {
  font-size: 20px;
  color: #333333;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 900;
}

.hero-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
}

.section { padding: 72px 0; }
.section.light { background: var(--light); }
.section-header { max-width: 820px; margin-bottom: 36px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,.04);
}

.card strong { color: var(--red); }
.card .icon { font-size: 34px; margin-bottom: 14px; }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.service-item h3 { margin-bottom: 8px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.image-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.image-card img { border-radius: 14px; border: 1px solid var(--border); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding-left: 34px;
  position: relative;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 14px;
}

.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 56px 0;
}

.cta-band h2, .cta-band p { color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner p { max-width: 760px; }

.page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  padding: 62px 0;
  border-bottom: 1px solid var(--border);
}

.page-hero .lead { max-width: 860px; }

.form-wrap {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 28px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field.full { grid-column: 1 / -1; }

label {
  display: block;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 7px;
}

input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font: inherit;
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(212,0,0,.18);
  border-color: var(--red);
}

textarea { min-height: 130px; }
.small-note { font-size: 14px; color: var(--muted); margin-top: 8px; }

.sidebar-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}

.footer {
  background: #0e0e0e;
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer img {
  width: 210px;
  background: var(--white);
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.footer h3 { color: var(--white); }
.footer a, .footer p { color: #dddddd; }
.footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #333333; padding-top: 18px; color: #bbbbbb; font-size: 14px; }

@media (max-width: 980px) {
  .brand img { width: 220px; }
  .nav { gap: 16px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; padding: 10px 0; }
  .header-inner { min-height: auto; padding: 18px 0; position: relative; flex-wrap: wrap; }
  .mobile-toggle { display: inline-flex; position: absolute; right: 0; top: 28px; }
  .nav { display: none; flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; padding-top: 18px; }
  .nav.open { display: flex; }
  .nav .button { width: 100%; }
  .hero-grid, .split, .form-wrap, .card-grid, .service-list, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0; }
  .hero-visual { order: -1; }
  .brand img { width: 190px; }
  .section { padding: 54px 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1160px); }
  h1 { font-size: 40px; }
  .lead { font-size: 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
}
