/* =============================================
   PERDOMO LAW FIRM — Main CSS v1.0
   Design: Navy #1E3A8A + Gold #C9A84C
   Fonts: EB Garamond (headings) + Lato (body)
   Validated: UI/UX Pro Max "Legal Services"
============================================= */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── CSS Variables ── */
:root {
  --primary:        #1E3A8A;
  --primary-light:  #1E40AF;
  --primary-dark:   #172554;
  --gold:           #C9A84C;
  --gold-dark:      #B45309;
  --gold-glow:      rgba(201,168,76,0.3);
  --white:          #FFFFFF;
  --bg-light:       #F8FAFC;
  --bg-dark:        #0F172A;
  --text-main:      #0F172A;
  --text-muted:     #6B7A8D;
  --border:         #E2E8F0;
  --whatsapp:       #25D366;
  --whatsapp-dark:  #1DAE57;
  --urgent:         #DC2626;
  --success:        #059669;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg:      0 20px 40px rgba(0,0,0,0.15);
  --shadow-float:   0 25px 60px rgba(0,0,0,0.2);
  --font-heading:   'EB Garamond', Georgia, serif;
  --font-body:      'Lato', system-ui, sans-serif;
  --radius:         8px;
  --radius-lg:      16px;
  --transition:     0.25s ease;
}

/* ── Base Typography ── */
body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-main);
  background: var(--white);
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { margin-bottom: 1rem; }

/* ── Layout ── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section      { padding: 5rem 0; }
.section--light { background: var(--bg-light); }
.section--dark  { background: var(--primary-dark); color: var(--white); }

.section__header   { text-align: center; margin-bottom: 3rem; }
.section__subtitle {
  color: var(--gold-dark); font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 0.5rem; display: block;
}
.section__title { margin-bottom: 1rem; }
.section__desc  { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: var(--radius); border: 2px solid transparent;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn-primary  { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 20px var(--gold-glow); }
.btn-outline  { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); transform: translateY(-2px); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

@keyframes pulse-gold {
  0%   { box-shadow: 0 0 0 0 var(--gold-glow); }
  70%  { box-shadow: 0 0 0 14px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.btn-primary--pulse { animation: pulse-gold 2.2s infinite; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg-dark); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 1.5rem;
}
/* ── Brand Logo (CSS) ── */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.brand-logo__icon {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 4px rgba(201,168,76,0.35));
}
.brand-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-logo__name {
  font-family: 'Lato', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}
.brand-logo__sub {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.brand-logo__sub em {
  font-style: italic;
  color: var(--gold);
}
.navbar__logo:hover .brand-logo__name { color: var(--gold); transition: color var(--transition); }

/* Footer variant */
.brand-logo--footer .brand-logo__icon { font-size: 2rem; }
.brand-logo--footer .brand-logo__name { font-size: 1.35rem; }
.brand-logo--footer .brand-logo__sub  { font-size: 0.9rem; }
.navbar__links { display: flex; gap: 1.75rem; align-items: center; }
.navbar__links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; transition: color var(--transition); }
.navbar__links a:hover { color: var(--gold); }
.navbar__actions { display: flex; align-items: center; gap: 1rem; }
.navbar__phone { display: flex; align-items: center; gap: 0.35rem; color: var(--gold); font-size: 0.85rem; font-weight: 700; }
.navbar__phone:hover { color: var(--gold-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  background: var(--bg-dark); color: var(--white);
  padding: 6rem 0 5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 55%, #1a1040 100%);
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero__title { margin-bottom: 1.5rem; }
.hero__title em { color: var(--gold); font-style: normal; }
.hero__subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.78); margin-bottom: 2rem; max-width: 460px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero__stats { display: flex; gap: 2.5rem; }
.hero__stat-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; }
.hero__stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.hero__image { position: relative; }
.hero__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-float); }
.hero__image-badge {
  position: absolute; bottom: 1.5rem; left: -1.5rem;
  background: var(--primary); color: var(--white);
  padding: 0.9rem 1.25rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); font-size: 0.85rem;
}
.hero__image-badge strong { display: block; font-size: 1rem; color: var(--gold); margin-bottom: 0.1rem; }

/* ── Trust Bar ── */
.trust-bar { background: var(--primary); padding: 1.25rem 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; color: var(--white); }
.trust-item__icon { color: var(--gold); font-size: 1.5rem; }
.trust-item__text strong { display: block; font-size: 0.9rem; font-weight: 700; }
.trust-item__text span { font-size: 0.75rem; opacity: 0.75; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  text-align: center; transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card__icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.service-card h3 { font-size: 0.95rem; color: var(--primary); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
.service-card__link { color: var(--gold-dark); font-size: 0.82rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.3rem; }
.service-card__link:hover { color: var(--primary); }

/* ── About / Attorney ── */
.about__inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: center; }
.about__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about__credentials { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.credential { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.credential i { color: var(--gold); width: 20px; flex-shrink: 0; }

/* ── Process ── */
.process__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.process__step {
  text-align: center; padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.04); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.09);
}
.process__step-num { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; color: var(--gold); opacity: 0.5; display: block; margin-bottom: 0.5rem; }
.process__step h3 { color: var(--white); margin-bottom: 0.75rem; }
.process__step p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.testimonial-card__stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card__quote {
  font-family: var(--font-heading); font-size: 1.05rem; font-style: italic;
  line-height: 1.65; margin-bottom: 1.5rem;
}
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testimonial-card__name    { font-weight: 700; font-size: 0.9rem; }
.testimonial-card__service { font-size: 0.78rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item__question {
  width: 100%; text-align: left; background: var(--white); border: none;
  padding: 1.25rem 1.5rem; font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 700; color: var(--text-main); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background var(--transition);
}
.faq-item__question:hover { background: var(--bg-light); }
.faq-item__icon { font-size: 0.7rem; color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item__answer-inner { padding: 1.25rem 1.5rem; background: var(--bg-light); color: var(--text-muted); font-size: 0.95rem; }
.faq-item.open .faq-item__answer { max-height: 500px; }

/* ── CTA Urgency ── */
.cta-urgency {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
  padding: 5rem 0; text-align: center; color: var(--white);
}
.cta-urgency h2 { color: var(--white); margin-bottom: 1rem; }
.cta-urgency p  { color: rgba(255,255,255,0.78); margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-urgency__buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ── Contact Form ── */
.contact__inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact__info h3   { margin-bottom: 1rem; }
.contact__info-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; font-size: 0.95rem; }
.contact__info-item i { color: var(--primary); font-size: 1.2rem; width: 20px; }
.contact__info-item a:hover { color: var(--gold-dark); }
.form { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--text-main); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text-main);
  background: var(--white); transition: border-color var(--transition); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.honeypot { display: none !important; visibility: hidden !important; }
.form-status { padding: 1rem 1.25rem; border-radius: var(--radius); margin-top: 1rem; font-weight: 600; font-size: 0.9rem; display: none; }
.form-status.success { background: #d1fae5; color: #065f46; display: block; }
.form-status.error   { background: #fee2e2; color: #991b1b; display: block; }

/* ── Footer ── */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__logo    { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); font-weight: 700; margin-bottom: 0.5rem; }
.footer__tagline { font-size: 0.85rem; color: var(--gold); margin-bottom: 1rem; }
.footer__address { font-style: normal; font-size: 0.85rem; line-height: 1.7; }
.footer__links h4, .footer__contact h4 { color: var(--white); font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; font-weight: 700; }
.footer__links ul li { margin-bottom: 0.4rem; }
.footer__links a, .footer__contact a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__links a:hover, .footer__contact a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer__social a {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); border-radius: 50%; color: rgba(255,255,255,0.6);
  transition: all var(--transition); font-size: 0.85rem;
}
.footer__social a:hover { background: var(--gold); color: var(--bg-dark); }
.footer__bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.78rem; }
.footer__disclaimer { color: rgba(255,255,255,0.35); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 5rem; right: 1.5rem; z-index: 900;
  width: 58px; height: 58px; background: var(--whatsapp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float i { font-size: 1.9rem; color: var(--white); }

/* ── Mobile Bottom Bar ── */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; }
.mobile-bar__inner { display: flex; border-top: 1px solid rgba(255,255,255,0.12); }
.mobile-bar__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.9rem; font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
  color: var(--white); text-decoration: none; min-height: 54px;
}
.mobile-bar__btn--call    { background: var(--primary); }
.mobile-bar__btn--contact { background: var(--primary-dark); }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Service page specific ── */
.service-hero { background: var(--bg-dark); color: var(--white); padding: 5rem 0 4rem; }
.service-hero__breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.service-hero__breadcrumb a { color: var(--gold); }
.service-body { max-width: 820px; }
.service-body h2, .service-body h3 { margin: 2rem 0 1rem; }
.service-body ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.service-body ul li { margin-bottom: 0.4rem; }
.service-cta-sticky { background: var(--primary); color: var(--white); padding: 2rem; border-radius: var(--radius-lg); position: sticky; top: 90px; }
.service-cta-sticky h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }
.service-inner-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card__image { width: 100%; height: 200px; object-fit: cover; }
.blog-card__image-placeholder { width: 100%; height: 200px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.blog-card__body { padding: 1.5rem; }
.blog-card__cat  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card__excerpt { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-card__date { font-size: 0.78rem; color: var(--text-muted); }
.blog-post-body { max-width: 760px; margin: 0 auto; }
.blog-post-body h2, .blog-post-body h3 { margin: 2rem 0 1rem; }
.blog-post-body ul, .blog-post-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.blog-post-body li { margin-bottom: 0.4rem; }
.blog-post-body p  { margin-bottom: 1.25rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about__inner   { grid-template-columns: 1fr; }
  .about__image   { max-width: 420px; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3rem 0; }

  /* ── Navbar ── */
  .navbar__nav {
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--bg-dark); padding: 2rem 1.5rem;
    transform: translateX(-100%); transition: transform var(--transition);
    border-top: 1px solid rgba(255,255,255,0.08); z-index: 999;
    overflow-y: auto;
  }
  .navbar__nav.open { transform: translateX(0); }
  .navbar__links { flex-direction: column; gap: 0; }
  .navbar__links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .navbar__links a  { display: block; padding: 1rem 0; font-size: 1.05rem; color: rgba(255,255,255,0.85); }
  /* Hide CTA and phone in navbar — they're in the mobile bar */
  .navbar__actions .btn  { display: none; }
  .navbar__actions .navbar__phone { display: none; }
  .hamburger { display: flex; }

  /* ── Hero ── */
  .hero { padding: 3.5rem 0 3rem; }
  .hero__inner  { grid-template-columns: 1fr; gap: 2rem; }
  .hero__image  { display: none; }
  .hero__ctas   { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__stats  { gap: 1.25rem; flex-wrap: wrap; }
  .hero__stat-num { font-size: 1.8rem; }

  /* ── Trust bar ── */
  .trust-bar__inner { flex-direction: column; gap: 1rem; align-items: flex-start; padding: 0 1.25rem; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .service-card  { padding: 1.5rem 1rem; }

  /* ── About ── */
  .about__image { margin: 0 auto; }

  /* ── Process ── */
  .process__steps { grid-template-columns: 1fr; gap: 1rem; }
  .process__step  { padding: 1.75rem 1.5rem; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* ── Service page ── */
  .service-inner-grid { grid-template-columns: 1fr; }
  .service-cta-sticky { position: static; }

  /* ── Contact form ── */
  .form-grid { grid-template-columns: 1fr; }
  .form       { padding: 1.75rem 1.25rem; }
  .contact__inner { gap: 2rem; }

  /* ── Footer ── */
  .footer__grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* ── Mobile bar ── */
  .mobile-bar     { display: block; }
  .whatsapp-float { bottom: 4.5rem; right: 1rem; width: 50px; height: 50px; }
  .whatsapp-float i { font-size: 1.6rem; }

  /* ── Section headers ── */
  .section__header { margin-bottom: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero__stats   { gap: 1rem; }
  .hero__badge   { font-size: 0.68rem; }
  .trust-item__text span { display: none; }
  .btn--lg { padding: 0.875rem 1.5rem; font-size: 1rem; }
  .cta-urgency__buttons .btn { width: 100%; justify-content: center; }
  .footer__social { justify-content: flex-start; }
}
