*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #FFD700;
  --orange: #FF6B00;
  --red: #E63946;
  --blue: #1B3A6B;
  --green: #2D7A1F;
  --white: #FFFEF0;
  --black: #111111;
  --panel: 4px solid #111111;
  --shadow: 6px 6px 0 #111111;
  --shadow-lg: 8px 8px 0 #111111;
}
html { scroll-behavior: smooth; }
body { font-family: 'Comic Neue', cursive; background: var(--white); color: var(--black); overflow-x: hidden; line-height: 1.5; }

/* NAV */
nav {
  background: var(--blue); border-bottom: var(--panel);
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px; box-shadow: 0 4px 0 #111;
  flex-wrap: wrap; gap: 0.5rem;
}
.nav-logo { font-family: 'Bangers', cursive; font-size: 1.8rem; color: var(--yellow); letter-spacing: 3px; text-shadow: 3px 3px 0 var(--red); text-decoration: none; }
.nav-links { display: flex; list-style: none; flex-wrap: wrap; }
.nav-links li a {
  font-family: 'Bangers', cursive; font-size: 1.05rem; letter-spacing: 1.5px;
  color: white; text-decoration: none; padding: 0.45rem 0.9rem;
  border: 2px solid transparent; display: block; transition: all 0.12s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--yellow); border-color: var(--yellow); background: rgba(255,215,0,0.1); }
.nav-links li a.rescue-link { color: #7DF9A0; }
.nav-links li a.rescue-link:hover, .nav-links li a.rescue-link.active { color: var(--yellow); border-color: var(--yellow); }
.nav-cta {
  font-family: 'Bangers', cursive; font-size: 1.05rem; letter-spacing: 2px;
  background: var(--red); color: white; border: 3px solid var(--yellow);
  padding: 0.4rem 1.1rem; cursor: pointer; box-shadow: 3px 3px 0 #111;
  text-decoration: none; transition: transform 0.1s, box-shadow 0.1s; white-space: nowrap;
}
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 #111; }

/* PAGE SYSTEM */
.page { display: none; }
.page.active { display: block; }

/* BUTTONS */
.btn { font-family: 'Bangers', cursive; letter-spacing: 2px; padding: 0.75rem 2rem; border: var(--panel); cursor: pointer; box-shadow: var(--shadow); transition: transform 0.1s, box-shadow 0.1s; text-decoration: none; display: inline-block; font-size: 1.25rem; }
.btn:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translate(3px,3px); box-shadow: 2px 2px 0 #111; }
.btn-red { background: var(--red); color: white; }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-blue { background: var(--blue); color: white; }
.btn-orange { background: var(--orange); color: white; }
.btn-green { background: #1a6b2a; color: white; }

/* =========== HOME =========== */
.hero { display: grid; grid-template-columns: 5fr 7fr; min-height: 88vh; border-bottom: var(--panel); }
.hero-left {
  padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  border-right: var(--panel); background: var(--white); position: relative; overflow: hidden;
}
.hero-left::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,107,0,0.07) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}
.hero-left > * { position: relative; z-index: 1; }
.hero-badge { font-family: 'Bangers', cursive; font-size: 1rem; letter-spacing: 2px; background: var(--orange); color: white; border: 3px solid #111; box-shadow: 4px 4px 0 #111; padding: 0.3rem 1rem; display: inline-block; }
.hero-title { font-family: 'Bangers', cursive; font-size: 5.5rem; line-height: 0.9; color: var(--blue); letter-spacing: 4px; text-shadow: 4px 4px 0 var(--yellow), 7px 7px 0 #111; }
.hero-sub { font-size: 1.1rem; font-weight: 700; max-width: 420px; line-height: 1.6; color: #222; }
.hero-phone { font-family: 'Bangers', cursive; font-size: 2rem; letter-spacing: 2px; color: var(--red); background: var(--yellow); border: var(--panel); box-shadow: var(--shadow); padding: 0.5rem 1.5rem; display: inline-block; text-decoration: none; transition: transform 0.1s, box-shadow 0.1s; }
.hero-phone:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-lg); }
.hero-right { position: relative; overflow: hidden; background: var(--blue); display: flex; align-items: center; justify-content: center; }
.hero-right::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,215,0,0.25) 1.5px, transparent 1.5px); background-size: 14px 14px; background-color: var(--blue); }
.hero-right img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.starburst { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 2; background: var(--red); color: white; font-family: 'Bangers', cursive; font-size: 0.85rem; letter-spacing: 1px; line-height: 1.2; text-align: center; width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); animation: spin 10s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: var(--panel); background: var(--blue); }
.stat-item { padding: 2rem; text-align: center; border-right: var(--panel); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Bangers', cursive; font-size: 3.5rem; color: var(--yellow); text-shadow: 3px 3px 0 #111; display: block; }
.stat-label { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 1px; text-transform: uppercase; }
.how-section { padding: 4rem 2.5rem; background: var(--white); border-bottom: var(--panel); }
.section-title { font-family: 'Bangers', cursive; font-size: 3rem; letter-spacing: 4px; text-align: center; margin-bottom: 2.5rem; color: var(--blue); text-shadow: 3px 3px 0 var(--yellow), 5px 5px 0 #111; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: var(--panel); }
.step-panel { border-right: var(--panel); padding: 2.5rem 2rem 2.5rem 1.5rem; position: relative; background: var(--white); }
.step-panel:last-child { border-right: none; }
.step-num { font-family: 'Bangers', cursive; font-size: 5rem; color: rgba(255,215,0,0.35); position: absolute; top: -0.5rem; right: 0.75rem; line-height: 1; pointer-events: none; }
.step-panel > *:not(.step-num) { padding-right: 2.5rem; }
.action-word { font-family: 'Bangers', cursive; font-size: 3.5rem; line-height: 1; display: block; margin-bottom: 0.5rem; text-shadow: 3px 3px 0 #111; }
.step-panel h3 { font-family: 'Bangers', cursive; font-size: 1.6rem; letter-spacing: 1px; color: var(--blue); margin-bottom: 0.75rem; }
.step-panel p { font-size: 1rem; line-height: 1.6; }
.image-strip { border-bottom: var(--panel); overflow: hidden; height: 280px; position: relative; }
.image-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.strip-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(27,58,107,0.75) 0%, transparent 40%, transparent 60%, rgba(27,58,107,0.75) 100%); display: flex; align-items: center; justify-content: center; }
.call-badge { font-family: 'Bangers', cursive; font-size: 2.2rem; letter-spacing: 3px; background: var(--red); color: white; border: 4px solid var(--yellow); box-shadow: 6px 6px 0 #111; padding: 0.7rem 2rem; text-align: center; }
.call-badge span { display: block; font-size: 1.4rem; color: var(--yellow); }
.home-cta { background: var(--red); border-bottom: var(--panel); padding: 3.5rem 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; position: relative; overflow: hidden; }
.home-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px); background-size: 14px 14px; }
.home-cta > * { position: relative; z-index: 1; }
.home-cta h2 { font-family: 'Bangers', cursive; font-size: 3rem; color: var(--yellow); text-shadow: 3px 3px 0 #111; letter-spacing: 3px; text-align: center; }
.home-cta p { color: white; font-size: 1.1rem; font-weight: 700; text-align: center; }

/* =========== CURBSIDE RESCUE =========== */
.rescue-hero {
  display: grid; grid-template-columns: 7fr 5fr; border-bottom: var(--panel); min-height: 70vh;
}
.rescue-img { overflow: hidden; border-right: var(--panel); position: relative; }
.rescue-img img { width: 100%; height: 100%; object-fit: cover; }
.rescue-copy {
  padding: 3.5rem 3rem; display: flex; flex-direction: column; justify-content: center; gap: 1.2rem;
  background: var(--white); position: relative; overflow: hidden;
}
.rescue-copy::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(45,122,31,0.07) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}
.rescue-copy > * { position: relative; z-index: 1; }
.rescue-eyebrow { font-family: 'Bangers', cursive; font-size: 0.95rem; letter-spacing: 2px; background: #1a6b2a; color: white; border: 3px solid #111; box-shadow: 4px 4px 0 #111; padding: 0.25rem 0.9rem; display: inline-block; }
.rescue-title { font-family: 'Bangers', cursive; font-size: 5rem; line-height: 0.9; color: #1a6b2a; letter-spacing: 3px; text-shadow: 4px 4px 0 var(--yellow), 7px 7px 0 #111; }
.rescue-tagline { font-family: 'Bangers', cursive; font-size: 1.4rem; color: var(--blue); letter-spacing: 1px; line-height: 1.3; }
.rescue-copy p { font-size: 1.05rem; line-height: 1.7; max-width: 460px; }

/* HOW IT WORKS — RESCUE */
.rescue-steps-section { background: #0f3d1f; border-bottom: var(--panel); padding: 4rem 3rem; position: relative; overflow: hidden; }
.rescue-steps-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,215,0,0.15) 1.5px, transparent 1.5px); background-size: 14px 14px; }
.rescue-steps-section > * { position: relative; z-index: 1; }
.rescue-steps-section .section-title { color: var(--yellow); text-shadow: 3px 3px 0 var(--red), 5px 5px 0 rgba(0,0,0,0.6); }
.rescue-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: var(--panel); }
.rescue-step { border-right: var(--panel); padding: 2.5rem 2rem; background: #fffef0; position: relative; }
.rescue-step:last-child { border-right: none; }
.rescue-step-num { font-family: 'Bangers', cursive; font-size: 5rem; color: #1a6b2a; line-height: 1; display: block; margin-bottom: 0.5rem; text-shadow: 3px 3px 0 var(--yellow); }
.rescue-step h3 { font-family: 'Bangers', cursive; font-size: 1.7rem; letter-spacing: 1px; color: var(--blue); margin-bottom: 0.75rem; }
.rescue-step p { font-size: 1rem; line-height: 1.6; }

/* PRICING */
.pricing-section { padding: 4rem 3rem; border-bottom: var(--panel); background: var(--white); position: relative; overflow: hidden; }
.pricing-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,107,0,0.05) 1.5px, transparent 1.5px); background-size: 16px 16px; }
.pricing-section > * { position: relative; z-index: 1; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: var(--panel); margin-bottom: 2.5rem; }
.price-card { border-right: var(--panel); padding: 2.5rem 2rem; text-align: center; background: var(--white); position: relative; transition: background 0.15s; }
.price-card:hover { background: #fffbe6; }
.price-card:last-child { border-right: none; }
.price-card.featured { background: #1a6b2a; }
.price-card.featured:hover { background: #165720; }
.price-card.featured .price-items { color: rgba(255,255,255,0.85); }
.price-card.featured .price-label { color: var(--yellow); }
.price-card.featured .price-amount { color: white; text-shadow: 3px 3px 0 rgba(0,0,0,0.4); }
.price-card.featured .price-sub { color: rgba(255,255,255,0.9); }
.popular-badge { font-family: 'Bangers', cursive; font-size: 0.85rem; letter-spacing: 1px; background: var(--yellow); color: #111; border: 2px solid #111; padding: 0.2rem 0.8rem; display: inline-block; box-shadow: 3px 3px 0 #111; margin-bottom: 1rem; }
.price-items { font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 2px; color: #888; display: block; margin-bottom: 0.5rem; }
.price-label { font-family: 'Bangers', cursive; font-size: 3rem; letter-spacing: 2px; color: #1a6b2a; display: block; line-height: 1; margin-bottom: 0.25rem; }
.price-amount { font-family: 'Bangers', cursive; font-size: 5rem; color: var(--blue); text-shadow: 3px 3px 0 var(--yellow); display: block; line-height: 1; }
.price-sub { font-size: 0.95rem; font-weight: 700; color: #555; margin-top: 0.75rem; display: block; font-style: italic; }

/* PRICING PAGE specific */
.pricing-page-section { padding: 3.5rem 2.5rem; border-bottom: var(--panel); background: var(--white); position: relative; overflow: hidden; }
.pricing-page-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,107,0,0.05) 1.5px, transparent 1.5px); background-size: 16px 16px; }
.pricing-page-section > * { position: relative; z-index: 1; }
.pricing-section-title { font-family: 'Bangers', cursive; font-size: 2.6rem; letter-spacing: 3px; text-align: center; margin-bottom: 0.5rem; color: var(--blue); text-shadow: 3px 3px 0 var(--yellow), 5px 5px 0 #111; }
.pricing-section-sub { text-align: center; font-size: 1.05rem; font-weight: 700; color: #333; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.flat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: var(--panel); margin-bottom: 1rem; }
.flat-grid .price-card { border-bottom: var(--panel); }
.flat-grid .price-card:nth-last-child(-n+3) { border-bottom: none; }
.flat-grid .price-card:nth-child(3n) { border-right: none; }
.bonus-banner { background: var(--yellow); border: var(--panel); box-shadow: var(--shadow); padding: 1.2rem 1.5rem; text-align: center; margin-top: 1.5rem; }
.bonus-banner strong { font-family: 'Bangers', cursive; font-size: 1.6rem; letter-spacing: 2px; color: var(--red); display: block; margin-bottom: 0.3rem; }
.bonus-banner p { font-size: 1rem; font-weight: 700; color: #111; }
.pricing-disclaimer { background: var(--blue); border-top: var(--panel); padding: 2.5rem 2rem; text-align: center; }
.pricing-disclaimer p { color: rgba(255,255,255,0.95); font-size: 1rem; font-weight: 700; max-width: 720px; margin: 0 auto 1.2rem; line-height: 1.6; }
@media (max-width: 768px) {
  .flat-grid { grid-template-columns: 1fr; }
  .flat-grid .price-card { border-right: none; border-bottom: var(--panel); }
  .flat-grid .price-card:last-child { border-bottom: none; }
}

.rescue-notes { display: flex; flex-direction: column; gap: 1rem; }
.rescue-note { display: flex; gap: 1rem; padding: 1.2rem 1.5rem; border: var(--panel); background: var(--white); box-shadow: 4px 4px 0 #111; }
.rescue-note-icon { font-size: 1.8rem; flex-shrink: 0; }
.rescue-note p { font-size: 0.95rem; line-height: 1.6; }
.rescue-note p strong { font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 1px; color: var(--blue); display: block; margin-bottom: 0.2rem; }

.rescue-cta { background: #1a6b2a; border-bottom: var(--panel); padding: 3.5rem 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; position: relative; overflow: hidden; }
.rescue-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,215,0,0.15) 1.5px, transparent 1.5px); background-size: 14px 14px; }
.rescue-cta > * { position: relative; z-index: 1; }
.rescue-cta h2 { font-family: 'Bangers', cursive; font-size: 3rem; color: var(--yellow); text-shadow: 3px 3px 0 #111; letter-spacing: 3px; text-align: center; }
.rescue-cta p { color: rgba(255,255,255,0.9); font-size: 1.1rem; font-weight: 700; text-align: center; }

/* =========== SERVICES =========== */
.page-header { background: var(--blue); padding: 3.5rem 2.5rem; text-align: center; border-bottom: var(--panel); position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,215,0,0.22) 1.5px, transparent 1.5px); background-size: 14px 14px; }
.page-header > * { position: relative; z-index: 1; }
.page-header h1 { font-family: 'Bangers', cursive; font-size: 4.5rem; color: var(--yellow); text-shadow: 4px 4px 0 var(--red), 7px 7px 0 rgba(0,0,0,0.5); letter-spacing: 4px; }
.page-header p { color: rgba(255,255,255,0.9); font-size: 1.1rem; font-weight: 700; margin-top: 0.5rem; }

.service-item { display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--panel); min-height: 340px; }
.service-item.reverse { direction: rtl; }
.service-item.reverse > * { direction: ltr; }
.service-img { overflow: hidden; border-right: var(--panel); position: relative; }
.service-item.reverse .service-img { border-right: none; border-left: var(--panel); }
.service-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.service-item:hover .service-img img { transform: scale(1.03); }
.service-copy { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem; background: var(--white); position: relative; }
.service-copy::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,107,0,0.05) 1.5px, transparent 1.5px); background-size: 16px 16px; pointer-events: none; }
.service-copy > * { position: relative; z-index: 1; }
.service-tag { font-family: 'Bangers', cursive; font-size: 0.85rem; letter-spacing: 1px; padding: 0.2rem 0.8rem; border: 2px solid #111; box-shadow: 3px 3px 0 #111; display: inline-block; }
.tag-red { background: var(--red); color: white; }
.tag-yellow { background: var(--yellow); color: #111; }
.tag-orange { background: var(--orange); color: white; }
.tag-blue { background: var(--blue); color: white; }
.service-copy h2 { font-family: 'Bangers', cursive; font-size: 2.5rem; color: var(--blue); letter-spacing: 2px; text-shadow: 2px 2px 0 var(--yellow); line-height: 1; }
.service-copy p { font-size: 1.05rem; line-height: 1.65; max-width: 480px; }
.service-cta { font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 1px; color: var(--red); text-decoration: none; }
.service-cta:hover { color: var(--orange); }

/* =========== ABOUT =========== */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--panel); min-height: 60vh; }
.about-visual { position: relative; overflow: hidden; border-right: var(--panel); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { padding: 4rem 3rem; display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.about-copy h1 { font-family: 'Bangers', cursive; font-size: 3.5rem; color: var(--blue); letter-spacing: 3px; text-shadow: 3px 3px 0 var(--yellow), 5px 5px 0 #111; line-height: 1; }
.about-copy p { font-size: 1.05rem; line-height: 1.7; }
.promise-section { background: var(--blue); border-bottom: var(--panel); padding: 4rem 3rem; position: relative; overflow: hidden; }
.promise-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,215,0,0.18) 1.5px, transparent 1.5px); background-size: 14px 14px; }
.promise-section > * { position: relative; z-index: 1; }
.promise-section h2 { font-family: 'Bangers', cursive; font-size: 2.5rem; color: var(--yellow); text-shadow: 3px 3px 0 var(--red); letter-spacing: 3px; text-align: center; margin-bottom: 2.5rem; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.promise-card { background: white; border: var(--panel); box-shadow: var(--shadow); padding: 2rem; }
.promise-card-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.promise-card h3 { font-family: 'Bangers', cursive; font-size: 1.6rem; letter-spacing: 1px; color: var(--blue); margin-bottom: 0.5rem; }
.promise-card p { font-size: 0.95rem; line-height: 1.6; }

/* =========== CONTACT =========== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--panel); min-height: 75vh; }
.contact-info { padding: 4rem 3rem; border-right: var(--panel); display: flex; flex-direction: column; gap: 2rem; justify-content: center; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,107,0,0.06) 1.5px, transparent 1.5px); background-size: 16px 16px; }
.contact-info > * { position: relative; z-index: 1; }
.contact-info h1 { font-family: 'Bangers', cursive; font-size: 3.5rem; color: var(--blue); letter-spacing: 3px; text-shadow: 3px 3px 0 var(--yellow), 5px 5px 0 #111; line-height: 1; margin-bottom: 0.5rem; }
.contact-info p { font-size: 1.05rem; font-weight: 700; line-height: 1.6; max-width: 400px; }
.contact-method { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border: var(--panel); background: var(--white); box-shadow: var(--shadow); text-decoration: none; color: var(--black); font-weight: 700; font-size: 1.1rem; transition: transform 0.1s, box-shadow 0.1s; }
.contact-method:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-lg); background: var(--yellow); }
.contact-method .icon { font-size: 1.8rem; min-width: 2.2rem; text-align: center; }
.contact-method strong { font-family: 'Bangers', cursive; font-size: 1.4rem; letter-spacing: 1px; display: block; color: var(--blue); }
.contact-form-side { background: var(--blue); padding: 4rem 3rem; position: relative; overflow: hidden; }
.contact-form-side::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,215,0,0.14) 1.5px, transparent 1.5px); background-size: 14px 14px; }
.contact-form-side > * { position: relative; z-index: 1; }
.contact-form-side h2 { font-family: 'Bangers', cursive; font-size: 2.5rem; color: var(--yellow); letter-spacing: 3px; margin-bottom: 1.5rem; text-shadow: 2px 2px 0 var(--red); }
.comic-form { display: flex; flex-direction: column; gap: 1rem; }
.comic-form input, .comic-form textarea, .comic-form select { font-family: 'Comic Neue', cursive; font-size: 1rem; font-weight: 700; padding: 0.8rem 1rem; border: 3px solid #111; background: white; color: #111; box-shadow: 4px 4px 0 #111; outline: none; width: 100%; }
.comic-form input:focus, .comic-form textarea:focus, .comic-form select:focus { box-shadow: 4px 4px 0 var(--yellow); border-color: var(--yellow); }
.comic-form textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { display: none; background: var(--yellow); border: var(--panel); padding: 2rem; text-align: center; box-shadow: var(--shadow); }
.form-success.show { display: block; }
.form-success p { font-family: 'Bangers', cursive; font-size: 2rem; color: var(--blue); letter-spacing: 2px; text-shadow: 2px 2px 0 var(--red); }

/* SPEECH BUBBLE */
.speech-bubble { background: white; border: var(--panel); border-radius: 16px; padding: 1rem 1.5rem; position: relative; box-shadow: var(--shadow); display: inline-block; }
.speech-bubble::after { content: ''; position: absolute; bottom: -22px; left: 24px; border: 11px solid transparent; border-top-color: #111; }
.speech-bubble::before { content: ''; position: absolute; bottom: -14px; left: 26px; border: 9px solid transparent; border-top-color: white; z-index: 1; }

/* FOOTER */
footer { background: #111; padding: 2rem 2.5rem; border-top: var(--panel); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Bangers', cursive; font-size: 1.8rem; color: var(--yellow); letter-spacing: 3px; text-shadow: 2px 2px 0 var(--red); }
footer p { color: #777; font-size: 0.85rem; }
footer a { color: var(--yellow); text-decoration: none; }
.footer-phone { font-family: 'Bangers', cursive; font-size: 1.4rem; color: var(--red); letter-spacing: 2px; }

/* ============================================================ */
/* MOBILE & TABLET RESPONSIVE STYLES                              */
/* ============================================================ */

/* Hamburger toggle button - hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  font-family: 'Bangers', cursive;
  font-size: 1.6rem;
  background: var(--yellow);
  color: #111;
  border: 3px solid #111;
  padding: 0.2rem 0.7rem;
  cursor: pointer;
  box-shadow: 3px 3px 0 #111;
  letter-spacing: 1px;
}

/* TABLET (max 1024px) — soften 3-column grids to 2-column where it helps */
@media (max-width: 1024px) {
  .hero-title { font-size: 4rem; }
  .rescue-title { font-size: 3.5rem; }
  .page-header h1 { font-size: 3.2rem; }
  .stat-num { font-size: 2.6rem; }
  .price-amount { font-size: 3.8rem; }
  .price-label { font-size: 2.2rem; }
}

/* PHONE (max 768px) — main mobile breakpoint */
@media (max-width: 768px) {

  /* ---- NAV: collapse into hamburger menu ---- */
  nav {
    padding: 0 1rem;
    height: auto;
    min-height: 60px;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 0;
  }
  .nav-logo { font-size: 1.4rem; letter-spacing: 2px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    flex-basis: 100%;
    background: var(--blue);
    border-top: 3px solid var(--yellow);
    padding: 0.5rem 0;
    margin: 0 -1rem;
    list-style: none;
    order: 3;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255,215,0,0.2);
    border-left: none;
    border-right: none;
    border-top: none;
    font-size: 1.15rem;
    background: var(--blue);
  }
  .nav-links li a:hover, .nav-links li a.active {
    background: rgba(255,215,0,0.15);
    border-color: rgba(255,215,0,0.2);
  }
  .nav-cta {
    font-size: 0.9rem;
    padding: 0.35rem 0.7rem;
    letter-spacing: 1px;
  }

  /* ---- HERO ---- */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left {
    padding: 2rem 1.25rem;
    border-right: none;
    border-bottom: var(--panel);
    gap: 1rem;
  }
  .hero-title {
    font-size: 3rem;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 var(--yellow), 5px 5px 0 #111;
  }
  .hero-sub { font-size: 1rem; max-width: 100%; }
  .hero-phone { font-size: 1.5rem; padding: 0.4rem 1rem; }
  .hero-right { min-height: 280px; }
  .hero-right img { object-fit: contain; }
  .starburst { width: 78px; height: 78px; font-size: 0.7rem; top: 0.8rem; right: 0.8rem; }

  /* Hero buttons should stack and stretch */
  .hero-left > div:has(> .btn) { display: flex; flex-direction: column; gap: 0.75rem; }
  .btn { font-size: 1.05rem; padding: 0.7rem 1.5rem; box-shadow: 4px 4px 0 #111; width: 100%; text-align: center; }
  .btn:hover { box-shadow: 6px 6px 0 #111; }

  /* ---- STATS BAR: stack vertically ---- */
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item {
    padding: 1.25rem;
    border-right: none;
    border-bottom: var(--panel);
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: 2.4rem; }

  /* ---- HOW IT WORKS: stack panels ---- */
  .how-section { padding: 2.5rem 1.25rem; }
  .section-title { font-size: 2rem; letter-spacing: 2px; margin-bottom: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-panel {
    padding: 2rem 1.5rem;
    border-right: none;
    border-bottom: var(--panel);
  }
  .step-panel:last-child { border-bottom: none; }
  .action-word { font-size: 2.5rem; }
  .step-num { font-size: 3.5rem; }

  /* ---- IMAGE STRIP & CALL BADGE ---- */
  .image-strip { height: 200px; }
  .call-badge { font-size: 1.3rem; padding: 0.5rem 1rem; letter-spacing: 1px; }
  .call-badge span { font-size: 1rem; }

  /* ---- HOME CTA ---- */
  .home-cta { padding: 2.5rem 1.25rem; }
  .home-cta h2 { font-size: 2rem; letter-spacing: 2px; }

  /* ---- CURBSIDE RESCUE ---- */
  .rescue-hero { grid-template-columns: 1fr; min-height: auto; }
  .rescue-img {
    border-right: none;
    border-bottom: var(--panel);
    min-height: 240px;
  }
  .rescue-copy { padding: 2rem 1.25rem; gap: 1rem; }
  .rescue-title {
    font-size: 2.8rem;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 var(--yellow), 5px 5px 0 #111;
  }
  .rescue-tagline { font-size: 1.1rem; }
  .rescue-copy p { font-size: 1rem; max-width: 100%; }
  .rescue-steps-section { padding: 2.5rem 1.25rem; }
  .rescue-steps { grid-template-columns: 1fr; }
  .rescue-step {
    padding: 1.75rem 1.25rem;
    border-right: none;
    border-bottom: var(--panel);
  }
  .rescue-step:last-child { border-bottom: none; }
  .rescue-step-num { font-size: 3.5rem; }
  .rescue-cta { padding: 2.5rem 1.25rem; }
  .rescue-cta h2 { font-size: 2rem; letter-spacing: 2px; }

  /* ---- PRICING (home + dedicated page) ---- */
  .pricing-section { padding: 2.5rem 1.25rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card {
    border-right: none;
    border-bottom: var(--panel);
    padding: 2rem 1.25rem;
  }
  .price-card:last-child { border-bottom: none; }
  .price-amount { font-size: 3.8rem; }
  .price-label { font-size: 2.2rem; }
  .pricing-page-section { padding: 2.5rem 1.25rem; }
  .pricing-section-title { font-size: 1.9rem; letter-spacing: 2px; }
  /* Override the existing flat-grid mobile rule with consistent border treatment */
  .flat-grid { grid-template-columns: 1fr; }

  /* ---- SERVICES ---- */
  .page-header { padding: 2.5rem 1.25rem; }
  .page-header h1 { font-size: 2.6rem; letter-spacing: 2px; text-shadow: 3px 3px 0 var(--red), 5px 5px 0 rgba(0,0,0,0.5); }
  .service-item { grid-template-columns: 1fr; min-height: auto; }
  .service-item.reverse { direction: ltr; }
  .service-img {
    border-right: none;
    border-bottom: var(--panel);
    min-height: 220px;
  }
  .service-item.reverse .service-img {
    border-left: none;
    border-bottom: var(--panel);
  }
  .service-copy { padding: 1.75rem 1.25rem; }
  .service-copy h2 { font-size: 1.9rem; }
  .service-copy p { font-size: 1rem; max-width: 100%; }

  /* ---- ABOUT ---- */
  .about-hero { grid-template-columns: 1fr; min-height: auto; }
  .about-visual {
    border-right: none;
    border-bottom: var(--panel);
    min-height: 240px;
  }
  .about-copy { padding: 2rem 1.25rem; }
  .about-copy h1 { font-size: 2.4rem; letter-spacing: 2px; }
  .promise-section { padding: 2.5rem 1.25rem; }
  .promise-section h2 { font-size: 1.9rem; letter-spacing: 2px; }
  .promise-grid { grid-template-columns: 1fr; gap: 1rem; }
  .promise-card { padding: 1.5rem; }

  /* ---- CONTACT ---- */
  .contact-layout { grid-template-columns: 1fr; min-height: auto; }
  .contact-info {
    padding: 2rem 1.25rem;
    border-right: none;
    border-bottom: var(--panel);
    gap: 1.25rem;
  }
  .contact-info h1 { font-size: 2.4rem; letter-spacing: 2px; }
  .contact-info p { max-width: 100%; }
  .contact-form-side { padding: 2rem 1.25rem; }
  .contact-form-side h2 { font-size: 1.9rem; letter-spacing: 2px; }
  .form-row { grid-template-columns: 1fr; }
  .comic-form input, .comic-form textarea, .comic-form select { font-size: 16px; } /* prevents iOS zoom-on-focus */

  /* ---- FOOTER ---- */
  footer {
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-logo { font-size: 1.5rem; }
  .footer-phone { font-size: 1.2rem; }
}

/* SMALL PHONE (max 380px) — extra-tight for older/smaller devices */
@media (max-width: 380px) {
  .hero-title { font-size: 2.5rem; }
  .rescue-title { font-size: 2.4rem; }
  .page-header h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
  .price-amount { font-size: 3rem; }
  .price-label { font-size: 1.8rem; }
  .nav-logo { font-size: 1.2rem; }
  .nav-cta { font-size: 0.8rem; padding: 0.3rem 0.5rem; }
}
