/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --black:      #080808;
  --off-black:  #111111;
  --surface:    #161616;
  --surface2:   #1c1c1c;
  --border:     #242424;
  --border-hi:  #333333;
  --white:      #f0ede8;
  --muted:      #7a7870;
  --accent:     #e8ff48;
  --accent-dim: #c8df20;
  --sms:        #ff6b35;
  --sms-dim:    #e05520;
  --radius:     10px;
  --radius-lg:  16px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --tr: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Desktop: hide system cursor */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================================
   CUSTOM CURSOR (desktop only)
============================================================ */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  pointer-events: none;
  z-index: 99999;

  /* JS controls movement. Keep transform out of CSS transitions. */
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%) scale(1);

  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.16s ease;

  --cursor-bin: var(--accent);
  --cursor-bin-dark: var(--accent-dim);
  --cursor-lines: var(--black);
}

#custom-cursor svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Bin body + lid */
#custom-cursor rect:nth-of-type(1),
#custom-cursor rect:nth-of-type(2) {
  fill: var(--cursor-bin);
  transition: fill 0.14s ease;
}

/* Bin handle */
#custom-cursor rect:nth-of-type(3) {
  fill: var(--cursor-bin-dark);
  transition: fill 0.14s ease;
}

/* Bin inner lines */
#custom-cursor line {
  stroke: var(--cursor-lines);
  transition: stroke 0.14s ease;
}

body.cursor-active #custom-cursor {
  opacity: 1;
}

body.cursor-hover #custom-cursor {
  --cursor-bin: var(--sms);
  --cursor-bin-dark: var(--sms-dim);
  --cursor-lines: #fff;
}

/* Hide cursor on touch devices */
@media (hover: none) {
  #custom-cursor {
    display: none !important;
  }
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

section { padding-block: 6rem; }

.divider {
  height: 1px;
  background: var(--border);
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: var(--tr);
  border: 1.5px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }

.btn-lg {
  padding: 0.95rem 1.9rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,255,72,0.25);
}

.btn-sms {
  background: transparent;
  color: var(--sms);
  border-color: var(--sms);
}
.btn-sms:hover {
  background: var(--sms);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,107,53,0.25);
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem 0;
  transition: background var(--tr), box-shadow var(--tr);
}

.nav.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-logo span { color: var(--accent); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color var(--tr);
  letter-spacing: 0.01em;
}
.nav-phone:hover { color: var(--white); }

@media (max-width: 480px) {
  .nav-phone { display: none; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

/* Subtle grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.6; box-shadow: 0 0 16px var(--accent); }
}

.hero-h1 {
  font-size: clamp(3.6rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-photo-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.hero-photo-cta svg { color: var(--accent); flex-shrink: 0; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 0.15rem; }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 500;
}

.stat-sep {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.25rem; }
  .stat-num { font-size: 1.2rem; }
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-it-works { background: var(--off-black); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-arrow { display: none; }
}

.step {
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--tr), box-shadow var(--tr);
}

.step:hover {
  border-color: var(--border-hi);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.step-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.25rem;
}

.step-icon svg { width: 100%; height: 100%; }

.step-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3.5rem;
  width: 48px;
}

.step-arrow svg { width: 40px; }

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
}

.service-card:hover {
  border-color: var(--border-hi);
  background: var(--surface2);
  transform: translateY(-3px);
}

.service-icon {
  width: 36px; height: 36px;
  color: var(--accent);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--white);
}

.services-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-us { background: var(--off-black); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.why-content h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  margin-bottom: 1.25rem;
}

.why-intro {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(232,255,72,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 0.1rem;
}
.why-icon svg { width: 14px; height: 14px; }

.why-list strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.why-list span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Pricing card */
.pricing-card {
  position: sticky;
  top: 6rem;
}

.pricing-card-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.pricing-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   QUOTE FORM
============================================================ */
.quote-section { background: var(--black); }

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .quote-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.quote-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.quote-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.sms-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sms);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity var(--tr);
}
.sms-shortcut:hover { opacity: 0.75; }

/* Form card */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  transition: border-color var(--tr);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 90px; }

/* File upload */
.file-label { cursor: pointer; }

input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.file-input-ui {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface2);
  border: 1px dashed var(--border-hi);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  transition: border-color var(--tr), color var(--tr);
}

.file-label:hover .file-input-ui {
  border-color: var(--accent);
  color: var(--accent);
}

.file-name-display {
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 0.25rem;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.success-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
}

.success-icon svg { width: 100%; height: 100%; }

.form-success h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-success a { color: var(--accent); font-weight: 600; }

/* ============================================================
   FINAL CTA BAND
============================================================ */
.cta-band { background: var(--off-black); padding-block: 5rem; }

.cta-band-inner { text-align: center; }

.cta-band-inner h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 0.75rem;
}

.cta-band-inner > p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.cta-photo-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--sms);
  margin-bottom: 2rem !important;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding-block: 3.5rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand .nav-logo { margin-bottom: 0.75rem; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  max-width: 300px;
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  transition: opacity var(--tr);
}
.footer-phone:hover { opacity: 0.75; }

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--tr);
}

.footer-links li a { color: var(--muted); }
.footer-links li:hover,
.footer-links li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--off-black); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  overflow: hidden;
}

.testimonial-card:hover {
  border-color: var(--border-hi);
  box-shadow: 0 10px 36px rgba(0,0,0,0.45);
  transform: translateY(-3px);
}

/* Featured / accent card */
.testimonial-card--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.testimonial-card--accent:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 14px 40px rgba(232,255,72,0.25);
}

.testimonial-quote-mark {
  position: absolute;
  top: -0.25rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.12);
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  line-height: 1;
}

.testimonial-stars--dark {
  color: var(--black);
  opacity: 0.5;
  margin-top: auto;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--white);
  font-style: italic;
  quotes: none;
}

.testimonial-card--accent blockquote {
  color: var(--black);
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232,255,72,0.12);
  border: 1.5px solid rgba(232,255,72,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.testimonial-avatar--dark {
  background: rgba(0,0,0,0.15);
  border-color: rgba(0,0,0,0.2);
  color: var(--black);
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.testimonial-card--accent .testimonial-author strong {
  color: var(--black);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

.testimonial-card--accent .testimonial-author span {
  color: rgba(0,0,0,0.55);
}

.testimonials-cta {
  text-align: center;
  padding-top: 1rem;
}

/* Stagger testimonial card reveals */
.testimonial-card:nth-child(2) { transition-delay: 0.08s; }
.testimonial-card:nth-child(3) { transition-delay: 0.16s; }
.testimonial-card:nth-child(4) { transition-delay: 0.10s; }
.testimonial-card:nth-child(5) { transition-delay: 0.18s; }
.testimonial-card:nth-child(6) { transition-delay: 0.24s; }

/* ============================================================
   TIPS & GUIDES
============================================================ */
.tips { background: var(--black); }

.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .tips-grid { grid-template-columns: 1fr; }
}

.tip-cards-secondary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}

.tip-card:hover {
  border-color: var(--border-hi);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.tip-card--featured {
  background: var(--surface2);
  border-color: var(--border-hi);
  justify-content: flex-start;
}

.tip-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,255,72,0.08);
  border: 1px solid rgba(232,255,72,0.18);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  width: fit-content;
}

.tip-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
}

.tip-card--featured h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}

.tip-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.tip-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.tip-icon svg { width: 100%; height: 100%; }

/* Step list inside featured tip */
.tip-steps {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.tip-step {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.88rem;
  color: var(--white);
}

.tip-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.tips-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}

.tips-cta-text {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ============================================================
   MOBILE STICKY CTA
============================================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  section { padding-block: 4rem; }
  section:last-of-type { padding-bottom: 6rem; }
  .footer { padding-bottom: 6rem; }
}

.mobile-cta-call, .mobile-cta-sms {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--tr);
}

.mobile-cta-call {
  background: var(--accent);
  color: var(--black);
}

.mobile-cta-sms {
  background: transparent;
  color: var(--sms);
  border: 1.5px solid var(--sms);
}

/* ============================================================
   MOBILE — COMPREHENSIVE FIXES (≤ 480px)
============================================================ */
@media (max-width: 480px) {

  /* --- Hero --- */
  .hero { padding-top: 5.5rem; padding-bottom: 3.5rem; }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .stat-sep { display: none; }

  /* --- How It Works --- */
  .step { padding: 1.5rem 1.25rem; }

  /* --- Why Us --- */
  .pricing-card { position: static; }

  /* --- Quote form --- */
  .form-card { padding: 1.25rem; }

  /* --- CTA band --- */
  .cta-band-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-band-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Testimonials --- */
  .testimonial-card { padding: 1.25rem; }

  .testimonials-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Tips --- */
  .tip-card { padding: 1.25rem; }

  .tips-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .tips-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Footer --- */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }
}

/* ============================================================
   MOBILE — MEDIUM (481px – 768px)
============================================================ */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-cta { flex-wrap: wrap; }

  .pricing-card { position: static; }

  .cta-band-actions { justify-content: center; }

  .tips-cta { justify-content: flex-start; }
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children of steps and service cards */
.step:nth-child(1).reveal,
.step:nth-child(3).reveal,
.step:nth-child(5).reveal { transition-delay: 0.1s; }

.step:nth-child(3) { transition-delay: 0.2s; }
.step:nth-child(5) { transition-delay: 0.3s; }

.service-card:nth-child(2) { transition-delay: 0.05s; }
.service-card:nth-child(3) { transition-delay: 0.10s; }
.service-card:nth-child(4) { transition-delay: 0.15s; }
.service-card:nth-child(5) { transition-delay: 0.20s; }
.service-card:nth-child(6) { transition-delay: 0.25s; }
.service-card:nth-child(7) { transition-delay: 0.30s; }
.service-card:nth-child(8) { transition-delay: 0.35s; }