  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --orange: #f7941e;
    --orange-light: #ffa64d;
    --orange-pale: #fff1e6;
    --orange-glow: rgba(247, 148, 30, 0.12);
    --terracotta: #d9780f;
    --white: #ffffff;
    --off-white: #fefcf9;
    --warm-gray: #f7f3ef;
    --charcoal: #2d2a26;
    --text-body: #4a4541;
    --text-muted: #8a827a;
    --serif: 'Playfair Display', serif;
    --sans: 'Source Sans 3', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }

  /* ── SVG Icon Helper ── */
  .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

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

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(247, 148, 30, 0.08);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--charcoal);
  }

  .logo-img {
    height: 100px;
    width: auto;
    max-width: min(280px, 52vw);
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }

  .logo-text {
    font-family: var(--serif);
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--charcoal);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
    border-radius: 1px;
  }

  .nav-links a:hover { color: var(--orange); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s !important;
    box-shadow: 0 2px 10px rgba(247, 148, 30, 0.25);
  }

  .nav-cta:hover {
    background: var(--terracotta) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(247, 148, 30, 0.35);
  }

  .nav-cta::after { display: none !important; }

  /* Language Toggle */
  .lang-toggle {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(247, 148, 30, 0.2);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    margin-left: auto;
  }

  @media (min-width: 901px) {
    .lang-toggle { margin-left: 0; }
  }

  .lang-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--sans);
  }

  .lang-btn.active {
    background: var(--orange);
    color: var(--white);
  }

  .lang-btn:hover:not(.active) {
    color: var(--orange);
    background: var(--orange-glow);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
  }

  .hero-bg-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 148, 30, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
  }

  .hero-bg-3 {
    position: absolute;
    top: 15%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 235, 211, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite 2s;
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
  }

  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-glow);
    border: 1px solid rgba(247, 148, 30, 0.15);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease backwards;
  }

  .hero-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.12;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease 0.1s backwards;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--orange);
    position: relative;
  }

  .hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange-pale);
    border-radius: 2px;
  }

  .hero-desc {
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 480px;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease 0.2s backwards;
  }

  .hero-bilingual {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.5rem;
    animation: fadeUp 0.8s ease 0.25s backwards;
    padding-left: 1rem;
    border-left: 2px solid var(--orange-pale);
  }

  .hero-bilingual-hint {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-muted);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    border-left: 2px solid transparent;
    animation: fadeUp 0.8s ease 0.28s backwards;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeUp 0.8s ease 0.3s backwards;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(247, 148, 30, 0.3);
  }

  .btn-primary:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(247, 148, 30, 0.35);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--charcoal);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(247, 148, 30, 0.2);
    cursor: pointer;
    transition: all 0.3s;
  }

  .btn-secondary:hover {
    border-color: var(--orange);
    background: var(--orange-glow);
    transform: translateY(-2px);
  }

  /* Hero portrait */
  .hero-visual {
    position: relative;
    animation: fadeUp 1s ease 0.4s backwards;
    display: flex;
    justify-content: center;
  }

  .hero-portrait {
    position: relative;
    width: 100%;
    max-width: 420px;
  }

  .hero-portrait img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    box-shadow:
      0 24px 64px rgba(247, 148, 30, 0.18),
      0 2px 6px rgba(0,0,0,0.06);
  }

  .hero-portrait::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    z-index: -1;
    opacity: 0.25;
  }

  .hero-portrait::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 10%;
    right: 10%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(247, 148, 30, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -2;
  }

  .hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(247, 148, 30, 0.1);
    box-shadow: 0 20px 60px rgba(247, 148, 30, 0.08), 0 1px 3px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
  }

  .hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
  }

  .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .card-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange-pale), var(--orange-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    padding: 10px;
  }

  .card-name { font-weight: 700; font-size: 1rem; color: var(--charcoal); }
  .card-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

  .card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .stat-box {
    background: var(--warm-gray);
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid rgba(247, 148, 30, 0.05);
  }

  .stat-value {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--charcoal);
  }

  .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }

  .card-bar {
    height: 8px;
    background: var(--warm-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }

  .card-bar-fill {
    height: 100%;
    width: 78%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 4px;
    animation: barGrow 1.5s ease 0.8s backwards;
  }

  @keyframes barGrow { from { width: 0; } }

  .card-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  .floating-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--white);
    border: 1px solid rgba(247, 148, 30, 0.12);
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    animation: badgeBounce 3s ease-in-out infinite;
    z-index: 2;
    color: var(--charcoal);
  }

  .badge-check {
    width: 18px;
    height: 18px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .badge-check svg { width: 11px; height: 11px; }

  @keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid rgba(247, 148, 30, 0.06);
    border-bottom: 1px solid rgba(247, 148, 30, 0.06);
    background: var(--warm-gray);
  }

  .trust-bar p {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

  .trust-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  }

  .trust-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    /* Collapse whitespace between duplicate rows (avoids stray flex “gaps”) */
    font-size: 0;
    line-height: 0;
    will-change: transform;
    animation: trustMarquee 42s linear infinite;
  }

  /* --trust-marquee-distance is set in JS to one row width (pixel-perfect loop) */
  @keyframes trustMarquee {
    from { transform: translate3d(0, 0, 0); }
    to {
      transform: translate3d(
        calc(-1 * var(--trust-marquee-distance, 50%)),
        0,
        0
      );
    }
  }

  .trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-shrink: 0;
    padding-right: 3rem;
    opacity: 0.4;
    font-size: 1rem;
    line-height: normal;
  }

  .trust-logo {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--charcoal);
    white-space: nowrap;
  }

  @media (prefers-reduced-motion: reduce) {
    .trust-marquee {
      mask-image: none;
      -webkit-mask-image: none;
    }
    .trust-marquee-track {
      animation: none;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      font-size: 1rem;
      line-height: normal;
      will-change: auto;
    }

    .trust-marquee-track .trust-logos[aria-hidden="true"] {
      display: none;
    }

    .reviews-marquee {
      mask-image: none;
      -webkit-mask-image: none;
    }

    .reviews-marquee-track {
      animation: none;
      width: 100%;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
    }

    .reviews-row {
      flex-wrap: wrap;
      justify-content: center;
      padding-right: 0;
      gap: 1.5rem;
      width: 100%;
    }
  }

  /* ── SERVICES ── */
  .services {
    padding: 7rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 1rem;
  }

  .section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .section-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
  }

  .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.25rem;
    border: 1px solid rgba(247, 148, 30, 0.08);
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    flex: 0 1 320px;
    max-width: min(100%, 380px);
    box-sizing: border-box;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange-glow), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(247, 148, 30, 0.1);
    border-color: rgba(247, 148, 30, 0.15);
  }

  .service-card:hover::before { opacity: 1; }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 14px;
  }

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

  /* Auto icon reads slightly small vs. other glyphs at the same box size */
  .service-card:nth-child(2) .service-icon svg {
    transform: scale(1.08);
    transform-origin: center;
  }

  .service-card:nth-child(1) .service-icon { background: rgba(247, 148, 30, 0.1); color: var(--orange); }
  .service-card:nth-child(2) .service-icon { background: rgba(244, 162, 97, 0.15); color: var(--terracotta); }
  .service-card:nth-child(3) .service-icon { background: var(--orange-pale); color: var(--terracotta); }
  .service-card:nth-child(4) .service-icon { background: rgba(247, 148, 30, 0.12); color: var(--orange); }
  .service-card:nth-child(5) .service-icon { background: rgba(232, 121, 43, 0.1); color: var(--terracotta); }
  .service-card:nth-child(6) .service-icon { background: rgba(247, 148, 30, 0.12); color: var(--orange); }

  .service-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    position: relative;
  }

  .service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-body);
    position: relative;
  }

  .service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    position: relative;
    transition: gap 0.3s;
  }

  .service-card:hover .learn-more { gap: 0.7rem; }

  /* ── COMUNIDAD ── */
  .comunidad {
    background: var(--warm-gray);
    padding: 5rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(247, 148, 30, 0.06);
    border-bottom: 1px solid rgba(247, 148, 30, 0.06);
  }

  .comunidad-inner { max-width: 800px; margin: 0 auto; }

  .comunidad h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
  }

  .comunidad > .comunidad-inner > p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2rem;
  }

  .comunidad-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .comunidad-feat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
  }

  .comunidad-feat .dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── TESTIMONIAL ── */
  .testimonial {
    padding: 7rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonial-card {
    background: var(--white);
    border-radius: 28px;
    padding: 3.5rem;
    border: 1px solid rgba(247, 148, 30, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  }

  .testimonial-card::after {
    content: '\201C';
    position: absolute;
    top: -20px; right: 40px;
    font-family: var(--serif);
    font-size: 12rem;
    color: rgba(247, 148, 30, 0.06);
    line-height: 1;
  }

  .testimonial-text {
    font-family: var(--serif);
    font-size: 1.45rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 2rem;
    position: relative;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
  }

  .author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--orange-pale), var(--orange-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--terracotta);
  }

  .author-name { font-weight: 700; font-size: 0.95rem; }
  .author-role { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

  .testimonial-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .mini-card {
    background: var(--warm-gray);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(247, 148, 30, 0.05);
    transition: transform 0.3s;
  }

  .mini-card:hover { transform: translateY(-3px); }

  .mini-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    background: var(--orange-glow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: var(--orange);
  }

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

  .mini-card .mini-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.25rem; color: var(--charcoal); }
  .mini-card .mini-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

  /* ── GOOGLE REVIEWS (New Section) ── */
  .google-reviews {
    padding: 0 3rem 7rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  #reviews-feed {
    scroll-margin-top: clamp(8rem, 12vw, 11rem);
  }

  .reviews-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .reviews-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  }

  .reviews-marquee-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: reviewsMarquee 20s linear infinite;
  }

  .reviews-marquee:hover .reviews-marquee-track {
    animation-play-state: paused;
  }

  .reviews-row {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
    flex-shrink: 0;
  }

  @keyframes reviewsMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(247, 148, 30, 0.06);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: min(90vw, 360px);
    min-height: 100%;
  }

  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(247, 148, 30, 0.05);
    border-color: rgba(247, 148, 30, 0.1);
  }

  .review-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .review-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--warm-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--terracotta);
    font-size: 1.1rem;
    border: 1px solid rgba(247, 148, 30, 0.1);
    flex-shrink: 0;
  }

  .review-avatar-img--photo {
    padding: 0;
    overflow: hidden;
    background: var(--white);
  }

  .review-avatar-img--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  /* Tighter crop for photos with square canvas / white letterboxing */
  .review-avatar-img--photo-fill {
    background: var(--warm-gray);
  }

  .review-avatar-img--photo-fill img {
    transform: scale(1.32);
    transform-origin: center center;
  }

  /* Circular photo inside a square canvas (white corners): zoom so the subject fills the avatar */
  .review-avatar-img--photo-circle-crop {
    background: var(--warm-gray);
  }

  .review-avatar-img--photo-circle-crop img {
    transform: scale(1.48);
    transform-origin: center center;
  }

  /* Nudge framing when the subject sits slightly off-center in the source crop */
  .review-avatar-img--photo-pos-nudge-right img {
    object-position: 56% 50%;
  }

  /* Weight crop toward upper region (e.g. faces above large foreground object) */
  .review-avatar-img--photo-pos-up img {
    object-position: center 38%;
  }

  /* Assign different gradient backgrounds to placeholders */
  .rev-1 .review-avatar-img:not(.review-avatar-img--photo) { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
  .rev-2 .review-avatar-img:not(.review-avatar-img--photo) { background: linear-gradient(135deg, #fff1eb 0%, #ace0f9 100%); }
  .rev-3 .review-avatar-img:not(.review-avatar-img--photo) { background: linear-gradient(135deg, #ddd6f3 0%, #faaca8 100%); }

  .review-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--charcoal);
  }

  .review-stars {
    display: flex;
    gap: 2px;
    margin-top: 3px;
    color: var(--orange);
  }

  .review-stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }

  .review-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-body);
    font-style: italic;
    position: relative;
    flex-grow: 1;
  }

  /* ── CTA ── */
  .cta {
    padding: 0 3rem 7rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cta-card {
    background: linear-gradient(135deg, var(--orange), var(--terracotta));
    border-radius: 28px;
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-card::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .cta-card h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
  }

  .cta-card p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
  }

  .cta-card .btn-primary {
    background: var(--white);
    color: var(--terracotta);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
  }

  .cta-card .btn-primary:hover {
    background: var(--off-white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }

  .cta-phone {
    margin-top: 1.5rem;
    position: relative;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
  }

  .cta-phone a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid rgba(247, 148, 30, 0.08);
    padding: 4rem 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 36rem;
  }

  .footer-brand .logo {
    margin-bottom: 1rem;
    justify-content: center;
  }

  .footer-brand .logo-img {
    height: 52px;
    max-width: min(220px, 70vw);
  }

  .footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col {
    max-width: 36rem;
  }

  .footer-col h4 {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
  }

  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.7rem; }

  .footer-col a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color 0.3s;
  }

  .footer-col a:hover { color: var(--orange); }

  .footer-bottom {
    border-top: 1px solid rgba(247, 148, 30, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
    flex-direction: column;
  }

  /* ── QUOTE PAGE ── */
  body#quote-page {
    background: var(--off-white);
  }

  .quote-page {
    min-height: calc(100vh - 2rem);
    padding: 7.5rem 1.5rem 4.5rem;
    background:
      radial-gradient(ellipse 120% 80% at 50% -20%, rgba(247, 148, 30, 0.09) 0%, transparent 55%),
      linear-gradient(180deg, var(--off-white) 0%, var(--white) 45%, var(--warm-gray) 100%);
  }

  .quote-page-inner {
    max-width: 560px;
    margin: 0 auto;
  }

  .quote-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    margin-bottom: 1.75rem;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .quote-back:hover {
    color: var(--terracotta);
    transform: translateX(-2px);
  }

  .quote-page h1 {
    font-family: var(--serif);
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .quote-sub {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 48ch;
  }

  .quote-form {
    background: var(--white);
    border-radius: 22px;
    padding: 2.25rem 2.5rem 2.5rem;
    border: 1px solid rgba(247, 148, 30, 0.12);
    box-shadow:
      0 4px 24px rgba(247, 148, 30, 0.07),
      0 20px 50px rgba(0, 0, 0, 0.04);
    position: relative;
  }

  .quote-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    opacity: 0.9;
  }

  .quote-field {
    margin-bottom: 1.35rem;
  }

  .quote-field:last-of-type {
    margin-bottom: 1.5rem;
  }

  .quote-field label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.45rem;
    letter-spacing: 0.01em;
  }

  .quote-field input,
  .quote-field select,
  .quote-field textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    border-radius: 11px;
    border: 1.5px solid rgba(247, 148, 30, 0.18);
    background: var(--white);
    color: var(--charcoal);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .quote-field select {
    cursor: pointer;
  }

  .quote-field input::placeholder,
  .quote-field textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.85;
  }

  .quote-field input:focus,
  .quote-field select:focus,
  .quote-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-glow);
  }

  .quote-field textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.55;
  }

  .quote-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
    cursor: pointer;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 18px rgba(247, 148, 30, 0.35);
  }

  .quote-form .btn-primary:hover:not(:disabled) {
    box-shadow: 0 6px 24px rgba(247, 148, 30, 0.42);
  }

  .quote-form .btn-primary:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    box-shadow: 0 2px 12px rgba(247, 148, 30, 0.2);
  }

  .quote-error {
    font-size: 0.9rem;
    color: #b42318;
    background: rgba(180, 35, 24, 0.08);
    border: 1px solid rgba(180, 35, 24, 0.22);
    border-radius: 11px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .quote-privacy {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-top: 1.35rem;
    text-align: center;
  }

  .quote-success {
    background: var(--white);
    border-radius: 22px;
    padding: 2.75rem 2rem;
    text-align: center;
    border: 1px solid rgba(247, 148, 30, 0.12);
    box-shadow: 0 12px 40px rgba(247, 148, 30, 0.08);
  }

  .quote-success::before {
    content: '';
    display: block;
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background-color: var(--orange-pale);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9780f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px 28px;
    border: 2px solid rgba(247, 148, 30, 0.22);
  }

  .quote-success h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.65rem;
    line-height: 1.25;
  }

  .quote-success p {
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 1.75rem;
    font-size: 0.98rem;
  }

  .quote-success .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-portrait { max-width: 300px; margin: 0 auto; }
    .hero-desc, .hero-bilingual, .hero-bilingual-hint { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .services { padding: 5rem 1.5rem; }
    .services-grid {
      flex-direction: column;
      align-items: center;
    }
    .service-card {
      flex: 0 1 auto;
      width: 100%;
      max-width: 440px;
    }
    .testimonial { padding: 5rem 1.5rem; }
    .testimonial-card { grid-template-columns: 1fr; padding: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; justify-items: center; }
    .cta { padding: 0 1.5rem 5rem; }
    .cta-card { padding: 3rem 2rem; }
    .comunidad { padding: 4rem 1.5rem; }
    .google-reviews { padding: 0 1.5rem 5rem; }
    .quote-page { padding: 7rem 1.25rem 3.5rem; }
    .quote-form { padding: 2rem 1.35rem 2.25rem; }
  }

  @media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .testimonial-right { grid-template-columns: 1fr; }
    .comunidad-features { flex-direction: column; align-items: center; }
    .quote-form { padding: 1.65rem 1.15rem 1.85rem; }
    .quote-page h1 { font-size: 1.65rem; }
  }

  /* ── COVERAGE MAP ── */
.coverage-map {
  padding: 6rem 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(247, 148, 30, 0.04) 0%, transparent 70%),
    var(--off-white);
  text-align: center;
}
 
.coverage-map-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.coverage-map .section-desc {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
 
.map-container {
  margin-top: 3rem;
  padding: 2.5rem 2rem 1.5rem;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(247, 148, 30, 0.1);
  box-shadow:
    0 4px 24px rgba(247, 148, 30, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}
 
#us-map-svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 820px;
  margin: 0 auto;
}
 
.state-default {
  fill: #ede9e4;
  stroke: #d8d2cb;
  stroke-width: 0.7;
  stroke-linejoin: round;
}
 
.state-covered {
  fill: var(--orange);
  fill-opacity: 0.22;
  stroke: var(--orange);
  stroke-width: 1.4;
  stroke-linejoin: round;
  transition: fill-opacity 0.3s ease;
  cursor: default;
}
 
.state-covered:hover {
  fill-opacity: 0.38;
}
 
.marker-glow {
  fill: var(--orange);
  opacity: 0.15;
}
 
.marker-bg {
  fill: #fff;
  stroke: var(--orange);
  stroke-width: 1.5;
}
 
.marker-label {
  fill: var(--orange);
  font-size: 7px;
  font-weight: 700;
  font-family: 'Source Sans 3', sans-serif;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}
 
.marker-home .marker-bg {
  fill: var(--orange);
  stroke: #fff;
  stroke-width: 2;
}
 
.marker-home .marker-label {
  fill: #fff;
  font-size: 8px;
}
 
.marker-home .marker-glow {
  opacity: 0.18;
}
 
@keyframes pulse-ring {
  0%, 100% { r: 18; opacity: 0.18; }
  50% { r: 24; opacity: 0.04; }
}
 
.marker-home .marker-pulse {
  fill: var(--orange);
  animation: pulse-ring 2.8s ease-in-out infinite;
}
 
.state-tooltip {
  position: absolute;
  background: var(--charcoal);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  z-index: 10;
  transform: translate(-50%, -100%);
}
 
.state-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--charcoal);
}
 
.state-tooltip.show {
  opacity: 1;
}
 
.coverage-legend {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 148, 30, 0.08);
}
 
.legend-states {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.6rem;
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 500;
}
 
.legend-dot {
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
}
 
@media (max-width: 900px) {
  .coverage-map { padding: 5rem 1.5rem; }
  .map-container { padding: 1.5rem 1rem 1rem; }
  .legend-states { font-size: 0.78rem; }
}
 
@media (max-width: 500px) {
  .map-container { padding: 1rem 0.5rem 0.75rem; }
  .legend-states { font-size: 0.72rem; gap: 0.3rem 0.45rem; }
}