/* ============================================================
   main.css — Flat Tire Roadside Assistance
   All custom styles for homepage & landing pages
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Brand Colors ────────────────────────────────────────── */
:root {
  --red:        #E31E24;
  --red-dark:   #b91018;
  --red-light:  #fce8e9;
  --accent-bg:  #f8f9fa;
  --dark:       #111827;
  --gray:       #6b7280;
  --gray-light: #e5e7eb;
  --white:      #ffffff;
}

/* ── Utility Classes ─────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.bg-red { background-color: var(--red); }
.bg-accent { background-color: var(--accent-bg); }
.bg-dark { background-color: var(--dark); }
.bg-soft-red { background-color: var(--red-light); }

/* ── Typography ──────────────────────────────────────────── */
.eyebrow {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}
.heading-xl {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
}
.heading-lg {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
}
.heading-md {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
}
.body-text {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(227,30,36,.35); }
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); transform: translateY(-1px); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: .9rem; }
.btn svg { width: 1.2rem; height: 1.2rem; flex-shrink: 0; }

/* ── Announcement / Sticky Bar ───────────────────────────── */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: .75rem 1rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.announcement-bar a { color: var(--white); }
.bar-spacer { height: 44px; }

/* ── HOMEPAGE: Hero ──────────────────────────────────────── */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red-light);
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero-badge span { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--red); text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 6px; }

.hero-checklist { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.hero-checklist li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; line-height: 1.5; }
.hero-checklist li::before { content: '✔'; color: #16a34a; font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }
.hero-checklist strong { font-weight: 700; }

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-image-wrap { position: relative; display: flex; justify-content: center; }
.hero-image-wrap img { width: 100%; max-width: 480px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,.12)); }
.hero-badge-float {
  position: absolute;
  bottom: 10%;
  left: -10px;
  background: var(--white);
  border-radius: 12px;
  padding: .8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  animation: floatUp 3s ease-in-out infinite;
}
@keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-badge-float .badge-icon { width: 40px; height: 40px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hero-badge-float .badge-icon svg { width: 20px; height: 20px; color: #fff; }
.hero-badge-float .badge-text .label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); }
.hero-badge-float .badge-text .value { font-size: 1rem; font-weight: 800; color: var(--dark); }

/* ── HOMEPAGE: Numbers / Stats ───────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-number span { color: var(--red); }
.stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── HOMEPAGE: About ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.about-image-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}
.about-image-grid img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.about-content .eyebrow { display: block; margin-bottom: .5rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { margin-bottom: 1rem; }
.about-features { display: flex; flex-direction: column; gap: .6rem; margin: 1.5rem 0 2rem; }
.about-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 600;
}
.about-feature .check { width: 22px; height: 22px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-feature .check svg { width: 12px; height: 12px; color: #fff; }

/* ── HOMEPAGE: Features ──────────────────────────────────── */
.features-section { background: var(--red); color: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.features-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.features-image-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.features-content h2 { color: var(--white); margin-bottom: 1.25rem; }
.features-content p { color: rgba(255,255,255,.88); margin-bottom: 1rem; line-height: 1.8; font-size: .95rem; }
.features-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  color: var(--dark);
  border-radius: 8px;
  padding: .9rem 1.4rem;
  margin-top: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}
.features-phone-badge .icon { background: var(--red-light); padding: .6rem; border-radius: 6px; }
.features-phone-badge .icon svg { width: 20px; height: 20px; color: var(--red); }
.features-phone-badge .label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); }
.features-phone-badge .number { font-size: 1.1rem; font-weight: 800; }

/* ── HOMEPAGE: Services Cards ────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--accent-bg);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--gray-light);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.service-icon {
  width: 70px; height: 70px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(227,30,36,.3);
}
.service-icon svg { width: 32px; height: 32px; color: #fff; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; }
.service-card p { font-size: .875rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.75rem; flex-grow: 1; }
.service-card .btn { width: 100%; justify-content: center; }

/* ── HOMEPAGE: Why Choose Us ─────────────────────────────── */
.why-section { background: var(--accent-bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,.09); }
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.why-card .icon {
  width: 56px; height: 56px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.why-card .icon svg { width: 24px; height: 24px; color: var(--red); }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
.why-card p { font-size: .82rem; color: var(--gray); line-height: 1.65; }

/* ── HOMEPAGE: CTA Banner ────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'EMERGENCY?';
  position: absolute;
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  color: rgba(255,255,255,.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -.02em;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { color: rgba(255,255,255,.07); font-size: clamp(4rem, 10vw, 10rem); font-weight: 900; line-height: 1; margin-bottom: 1rem; letter-spacing: -.03em; text-transform: uppercase; }
.cta-row { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cta-row h3 { font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 800; color: var(--red); text-transform: uppercase; }
.cta-decoration-1 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: var(--red); opacity: .04; bottom: -80px; right: -80px; }
.cta-decoration-2 { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: var(--red); opacity: .04; top: -60px; left: -60px; }

/* ── HOMEPAGE: Testimonials ──────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 2.5rem; }
.testimonial { max-width: 680px; }
.testimonial.right { margin-left: auto; text-align: right; }
.testimonial-name {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: .2rem;
  margin-bottom: .75rem;
}
.testimonial p { font-size: .9rem; color: var(--gray); font-style: italic; line-height: 1.8; }
.testimonial-avatar {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .7rem;
  margin-top: .75rem;
}
.testimonial.right .testimonial-avatar { margin-left: auto; }

/* ── HOMEPAGE: Contact Form ──────────────────────────────── */
.contact-section { background: var(--accent-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { font-size: .9rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  font-weight: 600;
}
.contact-detail .ico { width: 38px; height: 38px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail .ico svg { width: 18px; height: 18px; color: #fff; }
.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.07);
  border: 1px solid var(--gray-light);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dark);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227,30,36,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 1.1rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-top: .5rem;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(227,30,36,.35); }

/* ── HOMEPAGE & LP: FAQ ──────────────────────────────────── */
.faq-section { border-top: 1px solid var(--gray-light); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.faq-sidebar { text-align: center; }
.faq-sidebar .faq-icon-big { font-size: 5rem; font-weight: 900; color: var(--gray-light); line-height: 1; }
.faq-sidebar h3 { font-size: 1.5rem; font-weight: 900; color: var(--dark); margin-top: -.5rem; }
.faq-intro { font-size: .875rem; color: var(--gray); font-style: italic; line-height: 1.8; margin-bottom: 1.5rem; }
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item { border-radius: 6px; overflow: hidden; }
.faq-question {
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  transition: background .2s;
  user-select: none;
}
.faq-question:hover { background: #1f2937; }
.faq-toggle {
  background: var(--red);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .3s ease;
  line-height: 1;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: #f9fafb;
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.8;
  padding: 0 1.25rem;
  border: 1px solid var(--gray-light);
  border-top: none;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 1rem 1.25rem; }

/* ── HOMEPAGE: Footer ────────────────────────────────────── */
.site-footer { background: var(--dark); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-top: 1rem; }
.footer-logo { font-size: 1.3rem; font-weight: 900; color: var(--white); }
.footer-logo span { color: var(--red); }
.footer-col h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── LP: Announcement Bar (sticky) ──────────────────────── */
/* (shared .announcement-bar already defined above) */

/* ── LP: Hero ────────────────────────────────────────────── */
.lp-hero {
  padding: 4rem 0 3rem;
  overflow: hidden;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lp-hero h1 { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.5rem; }
.lp-hero h1 em { font-style: normal; color: var(--red); text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 6px; }
.lp-checklist { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.lp-checklist li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; }
.lp-checklist li::before { content: '✔'; color: #16a34a; font-size: 1rem; flex-shrink: 0; }

/* ── LP: Service Cards ───────────────────────────────────── */
.lp-cards { background: var(--white); padding: 3rem 0; }
.lp-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── LP: Features (Red) ──────────────────────────────────── */
/* Shared .features-section styles already cover LP too */

/* ── LP: Form ────────────────────────────────────────────── */
.lp-form-section { background: var(--white); }
.lp-form-header { text-align: center; margin-bottom: 2rem; }
.lp-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--accent-bg);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 2.5rem;
}

/* ── LP: Stats Section ───────────────────────────────────── */
.lp-stats-section { background: var(--white); }
.lp-stats-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.lp-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lp-stat-box {
  background: var(--red-light);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  border-radius: 6px;
}
.lp-stat-box .stat-icon {
  position: absolute;
  top: .6rem; left: .6rem;
  background: var(--red);
  padding: .3rem;
  border-radius: 4px;
}
.lp-stat-box .stat-icon svg { width: 14px; height: 14px; color: #fff; }
.lp-stat-box .num { font-size: 2.5rem; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: .3rem; }
.lp-stat-box .lbl { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); }
.lp-stat-content h2 { margin-bottom: 1rem; }
.lp-stat-content p { font-size: .9rem; color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }

/* ── LP: Footer CTA ──────────────────────────────────────── */
.lp-footer-cta { padding: 5rem 0 0; position: relative; overflow: hidden; }
.lp-footer-cta-inner { text-align: center; }
.lp-footer-cta h2 { font-size: clamp(4rem, 10vw, 8rem); font-weight: 900; color: var(--gray-light); text-transform: uppercase; letter-spacing: -.03em; line-height: 1; margin-bottom: 1rem; }
.lp-footer-cta-row { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.lp-footer-cta-row h3 { font-size: clamp(1.1rem, 2.5vw, 1.8rem); font-weight: 800; color: var(--red); text-transform: uppercase; }
.lp-footer-bottom {
  background: var(--dark);
  padding: 1.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
}
.lp-footer-bottom a {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.lp-footer-bottom a:hover { color: var(--white); }
.lp-footer-bottom span { color: rgba(255,255,255,.15); }

/* ── Thank You Page ──────────────────────────────────────── */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff 0%, #fce8e9 100%);
  padding: 2rem;
}
.thankyou-card {
  background: var(--white);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
}
.thankyou-icon {
  width: 80px; height: 80px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  animation: popIn .4s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thankyou-icon svg { width: 40px; height: 40px; color: #fff; }
.thankyou-card h1 { font-size: 2rem; font-weight: 900; margin-bottom: 1rem; }
.thankyou-card p { color: var(--gray); font-size: .95rem; line-height: 1.8; margin-bottom: 2rem; }
.thankyou-timer { display: inline-flex; align-items: center; gap: .5rem; background: var(--red-light); color: var(--red); font-size: .8rem; font-weight: 700; padding: .6rem 1.2rem; border-radius: 50px; margin-bottom: 2rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-grid, .about-grid, .features-grid, .contact-grid,
  .lp-hero-grid, .lp-stats-content-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .services-grid, .lp-cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lp-stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-row { flex-direction: column; }
  .lp-footer-cta-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .lp-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .thankyou-card { padding: 2.5rem 1.5rem; }
}

/* ── Scroll Margin for Fixed Bar ─────────────────────────── */
[id] { scroll-margin-top: 60px; }

/* ── Smooth micro-interactions ───────────────────────────── */
.service-card, .why-card, .stat-item, .faq-question {
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}
