/* ============================================================
   Emilio's Landscaping & Lawn Care LLC
   Main Stylesheet — Mobile-First
   ============================================================ */

/* ---- RESET & BASE ----------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- CSS VARIABLES ---------------------------------------- */
:root {
  /* Greens */
  --g-900: #1B5E20;
  --g-800: #2E7D32;
  --g-700: #388E3C;
  --g-400: #66BB6A;
  --g-100: #E8F5E9;

  /* Orange (call CTAs) */
  --o-700: #D84315;
  --o-600: #E64A19;
  --o-500: #FF5722;

  /* Neutrals */
  --white:    #ffffff;
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-900: #111827;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.10);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;

  /* Header height */
  --header-h: 68px;
}

/* ---- LAYOUT UTILITIES ------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section--gray {
  background: var(--gray-50);
}

.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--g-900);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ---- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, border-color 0.18s, transform 0.15s, box-shadow 0.18s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }

/* Primary (green) */
.btn--primary {
  background: var(--g-800);
  color: var(--white);
  border-color: var(--g-800);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--g-900);
  border-color: var(--g-900);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Call (orange) */
.btn--call {
  background: var(--o-600);
  color: var(--white);
  border-color: var(--o-600);
}
.btn--call:hover,
.btn--call:focus-visible {
  background: var(--o-700);
  border-color: var(--o-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Call outline (white border, for hero) */
.btn--call-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn--call-outline:hover,
.btn--call-outline:focus-visible {
  background: var(--white);
  color: var(--o-600);
  border-color: var(--white);
}

/* White (for dark backgrounds) */
.btn--white {
  background: var(--white);
  color: var(--g-800);
  border-color: var(--white);
}
.btn--white:hover,
.btn--white:focus-visible {
  background: var(--g-100);
  border-color: var(--g-100);
  transform: translateY(-2px);
}

/* Modifiers */
.btn--full { width: 100%; }
.btn--lg   { padding: 15px 28px; font-size: 1rem; }

/* ---- HEADER ----------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 3px solid var(--g-800);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.header__logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--g-800);
  line-height: 1.2;
  display: none; /* shows only when logo fails */
}

/* Desktop nav */
.header__nav {
  display: none;
  gap: 28px;
  margin-left: auto;
}
.header__nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color 0.15s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.header__nav a:hover {
  color: var(--g-800);
  border-bottom-color: var(--g-800);
}

/* Header CTA */
.header__cta {
  display: none;
  padding: 10px 18px;
  font-size: 0.875rem;
  margin-left: 8px;
}

/* Hamburger */
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  transition: background 0.15s;
}
.header__toggle:hover { background: var(--gray-100); }
.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown — hidden by default, shown only when [hidden] is removed */
.header__mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 20px 16px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
  animation: slideDown 0.2s ease;
}
.header__mobile-nav:not([hidden]) {
  display: flex;
}
.header__mobile-nav a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
}
.header__mobile-nav a:last-child { border-bottom: none; }
.header__mobile-nav .btn {
  margin-top: 8px;
  justify-content: center;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- HERO ------------------------------------------------- */
.hero {
  background: linear-gradient(145deg, var(--g-900) 0%, var(--g-800) 55%, var(--g-700) 100%);
  color: var(--white);
  padding: 52px 0 72px;
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23ffffff' fill-opacity='0.04'/%3E%3Ccircle cx='0' cy='0' r='1.5' fill='%23ffffff' fill-opacity='0.04'/%3E%3Ccircle cx='80' cy='0' r='1.5' fill='%23ffffff' fill-opacity='0.04'/%3E%3Ccircle cx='0' cy='80' r='1.5' fill='%23ffffff' fill-opacity='0.04'/%3E%3Ccircle cx='80' cy='80' r='1.5' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Hero: text block */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g-400);
  margin-bottom: 10px;
}

.hero__title {
  font-size: clamp(1.9rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Hero: form card */
.hero__form-wrap { width: 100%; }

.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.form-card__header {
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--g-100);
}
.form-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--g-900);
  margin-bottom: 2px;
}
.form-card__sub {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Form row (2-col) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  margin-bottom: 12px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 5px;
}

.req {
  color: #DC2626;
  margin-left: 1px;
}
.optional {
  color: var(--gray-400);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: auto;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%234B5563'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 36px;
  -webkit-appearance: none;
  appearance: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 70px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--g-800);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}
.form-group input.invalid,
.form-group select.invalid {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.field-error {
  display: block;
  font-size: 0.75rem;
  color: #DC2626;
  margin-top: 3px;
  min-height: 16px;
  font-weight: 500;
}

#submitBtn {
  margin-top: 16px;
  font-size: 1rem;
  padding: 14px;
}
#submitBtn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.form-microcopy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}

/* Form success / error states */
.form-state {
  text-align: center;
  padding: 16px 8px;
}
.form-state__icon { font-size: 2.5rem; margin-bottom: 10px; }
.form-state--success h3 {
  font-size: 1.1rem;
  color: var(--g-900);
  margin-bottom: 6px;
  font-weight: 700;
}
.form-state--success p { color: var(--gray-600); margin-bottom: 18px; font-size: 0.9rem; }
.form-state--error p  { color: #DC2626; margin-bottom: 16px; font-size: 0.9rem; }

/* ---- TRUST STRIP ------------------------------------------ */
.trust-strip {
  background: var(--g-100);
  border-top: 3px solid var(--g-800);
  border-bottom: 3px solid var(--g-800);
  padding: 24px 0;
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--g-800);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--g-900);
  font-weight: 700;
  margin-bottom: 2px;
}
.trust-item p {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin: 0;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--g-400);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ---- SERVICIOS -------------------------------------------- */
.servicios__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-top: 3px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 24px 18px;
  text-align: center;
  transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  height:100%;
}
.service-card:hover {
  border-top-color: var(--g-800);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card__icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}
.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--g-900);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.service-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--g-100);
  color: var(--g-800);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid var(--g-400);
}

.servicios__cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- CÓMO TRABAJAMOS -------------------------------------- */
.como-trabajamos { background: var(--white); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.step {
  text-align: center;
  padding: 32px 24px;
  max-width: 340px;
  width: 100%;
}

.step__num {
  width: 52px;
  height: 52px;
  background: var(--g-800);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 12px rgba(46,125,50,0.3);
}

.step__icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--g-900);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g-400);
  transform: rotate(90deg);
}

/* ---- GALERÍA ---------------------------------------------- */
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.galeria__tile {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.galeria__tile:hover .galeria__img { transform: scale(1.05); }
.galeria__tile:hover .galeria__overlay { opacity: 1; }

.galeria__img {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-end;
}

/* Gallery placeholder backgrounds — replace with real <img> tags when photos are ready */
.galeria__img--1 { background: linear-gradient(145deg, #33691E 0%, #558B2F 50%, #7CB342 100%); }
.galeria__img--2 { background: linear-gradient(145deg, #1B5E20 0%, #2E7D32 50%, #4CAF50 100%); }
.galeria__img--3 { background: linear-gradient(145deg, #4E342E 0%, #6D4C41 50%, #A1887F 100%); }
.galeria__img--4 { background: linear-gradient(145deg, #01579B 0%, #0277BD 50%, #29B6F6 100%); }
.galeria__img--5 { background: linear-gradient(145deg, #E65100 0%, #F57C00 50%, #FFB74D 100%); }
.galeria__img--6 { background: linear-gradient(145deg, #37474F 0%, #546E7A 50%, #90A4AE 100%); }

/* Leaf/texture decorations inside gallery tiles */
.galeria__img--1::before { content: '🌿'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); opacity: 0.25; }
.galeria__img--2::before { content: '✂️'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); opacity: 0.25; }
.galeria__img--3::before { content: '🪨'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); opacity: 0.25; }
.galeria__img--4::before { content: '💧'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); opacity: 0.25; }
.galeria__img--5::before { content: '🍂'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); opacity: 0.25; }
.galeria__img--6::before { content: '❄️'; font-size: 4rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); opacity: 0.25; }

.galeria__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.galeria__overlay span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,0,0,0.45);
  padding: 5px 10px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.galeria__note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.galeria__note a {
  color: var(--g-800);
  font-weight: 700;
  text-decoration: underline;
}

/* ---- CTA BAND --------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--g-900) 0%, var(--g-800) 60%, var(--g-700) 100%);
  color: var(--white);
  padding: 64px 0;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}

.cta-band__text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.cta-band__text p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}

.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- CONTACTO --------------------------------------------- */
.contacto { background: var(--white); }

.contacto__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contacto__info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--g-900);
  margin-bottom: 4px;
}
.contacto__owner {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.contacto__list {
  margin-bottom: 28px;
}
.contacto__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contacto__list li:last-child { border-bottom: none; }

.contacto__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--g-100);
  color: var(--g-800);
  border-radius: 50%;
  flex-shrink: 0;
}

.contacto__list strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.contacto__list span,
.contacto__list a {
  font-size: 0.95rem;
  color: var(--gray-900);
}
.contacto__list a {
  color: var(--g-800);
  font-weight: 700;
}
.contacto__list a:hover { text-decoration: underline; }

.contacto__map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  background: var(--gray-100);
}
.contacto__map iframe { display: block; }

/* ---- FOOTER ----------------------------------------------- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.65);
  padding: 36px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer__logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}
.footer__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--g-400);
  font-weight: 600;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); text-decoration: underline; }

.footer__copy {
  font-size: 0.78rem;
  line-height: 1.7;
}

/* ---- STICKY MOBILE CALL ----------------------------------- */
.sticky-call {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: calc(100% - 32px);
  max-width: 380px;
}
.sticky-call.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-call__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--o-600);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(230,74,25,0.45);
  transition: background 0.18s, transform 0.15s;
}
.sticky-call__btn:hover  { background: var(--o-700); }
.sticky-call__btn:active { transform: scale(0.97); }

/* ============================================================
   RESPONSIVE — TABLET (≥ 640px)
   ============================================================ */
@media (min-width: 640px) {

  /* Header */
  .header__toggle      { display: none; }
  .header__nav         { display: flex; }
  .header__cta         { display: inline-flex; }
  .header__mobile-nav  { display: none !important; }

  /* Hero grid */
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .hero__form-wrap { width: 100%; }

  /* Trust */
  .trust-strip__inner { gap: 40px; }

  /* Services */
  .servicios__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Steps: horizontal */
  .steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
  .step { max-width: 260px; }
  .step__arrow {
    transform: rotate(0deg);
    margin-top: 40px;
    flex-shrink: 0;
  }

  /* Gallery */
  .galeria__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* CTA band */
  .cta-band__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  /* Contact */
  .contacto__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  /* Footer */
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
  .footer__brand { align-items: flex-start; }

  /* Hide sticky call on desktop */
  .sticky-call { display: none; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================================ */
@media (min-width: 1024px) {

  .section { padding: 88px 0; }

  .hero { padding: 64px 0 88px; }

  .servicios__grid { grid-template-columns: repeat(3, 1fr); }

  .step { max-width: 300px; }

  .form-card { padding: 32px 28px 26px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
