/* ============================================
   agency.indiselo.com — Indiaselo family look,
   U.S. agency positioning (distinct from indiaselo.com)
   Fonts: Plus Jakarta Sans + Sora
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Sora:wght@600;700&display=swap");

:root {
  --brand: #0d9488;
  --brand-dark: #0f766e;
  --brand-light: #2dd4bf;
  --accent: #2563eb;
  --accent-soft: #3b82f6;
  --ink: #0f172a;
  --ink-muted: #475569;
  --ink-faint: #64748b;
  --surface: #ffffff;
  --surface-muted: #f1f5f9;
  --surface-deep: #e2e8f0;
  --hero-dark: #0b1220;
  --footer-dark: #060a10;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 20px 60px rgba(13, 148, 136, 0.22);
  --gradient-hero: linear-gradient(135deg, #042f2e 0%, #0c4a6e 42%, #172554 100%);
  --gradient-mesh: radial-gradient(ellipse 90% 70% at 10% 20%, rgba(45, 212, 191, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(59, 130, 246, 0.2), transparent 45%),
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(13, 148, 136, 0.12), transparent 50%);
  --gradient-cta: linear-gradient(115deg, #0d9488 0%, #0891b2 45%, #2563eb 100%);
  --gradient-accent: linear-gradient(90deg, #0d9488, #2563eb);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --header-bar: 76px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Sora", var(--font);
  /* Aliases for generated pages + legacy inline styles */
  --text: var(--ink);
  --text-muted: var(--ink-muted);
  --bg-card: var(--surface);
  --bg-deep: var(--surface-muted);
  --bg-elevated: var(--surface);
  --purple: var(--brand);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-muted);
  background: var(--surface-muted);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--ink-muted);
}

/* ----- Top promotional bar (Indiaselo-style energy, U.S. copy) ----- */
.top-bar {
  background: linear-gradient(90deg, #0f766e 0%, #0e7490 40%, #1d4ed8 100%);
  color: #ecfdf5;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0.45rem 1rem;
  letter-spacing: 0.02em;
}

.top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1rem;
}

.top-bar__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 12px #6ee7b7;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}

/* ----- Layout ----- */
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.section--tight {
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
}

.section--light {
  background: var(--surface);
}

.section--muted {
  background: var(--surface-muted);
}

.section--dark {
  background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  color: #cbd5e1;
}

.section--dark h2,
.section--dark h3 {
  color: #f8fafc;
}

.section--dark p,
.section--dark li {
  color: #94a3b8;
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: visible;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header__bar {
  min-height: var(--header-bar);
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.04em;
}

.logo__word {
  display: inline-block;
  padding-inline: 0.12em;
  background: linear-gradient(120deg, #0f766e, #1d4ed8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__suffix {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(37, 99, 235, 0.12));
  color: var(--brand-dark);
  border: 1px solid rgba(13, 148, 136, 0.25);
}

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

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 0.55rem 0.85rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--ink);
  background: rgba(13, 148, 136, 0.08);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.nav__dropdown a {
  display: block;
  padding: 0.55rem 0.85rem;
  color: var(--ink-muted);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
}

.nav__dropdown a:hover {
  color: var(--ink);
  background: var(--surface-muted);
}

.nav__toggle {
  display: none;
  background: var(--surface-muted);
  border: 1px solid var(--border-strong);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 960px) {
  .site-header__inner {
    gap: 0.65rem;
    min-width: 0;
  }

  .logo {
    min-width: 0;
  }

  .nav__toggle {
    display: block;
    flex-shrink: 0;
  }

  /* Absolute (not fixed): backdrop-filter on .site-header creates a containing block, so fixed
     children were trapped in the header strip — looked like an empty white bar with scroll. */
  .nav__list {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1002;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0 max(1rem, env(safe-area-inset-right)) 0 max(1rem, env(safe-area-inset-left));
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s var(--ease), opacity 0.25s, padding-block 0.3s var(--ease);
    box-shadow: var(--shadow-md);
  }

  .site-header.is-open .nav__list {
    max-height: 85vh;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
    padding-block: 1rem;
  }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 0.5rem;
    display: none;
    background: var(--surface-muted);
  }

  .nav__item--open .nav__dropdown {
    display: block;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s, opacity 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, #0d9488 0%, #0e7490 50%, #2563eb 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.25);
  color: #fff;
}

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: rgba(13, 148, 136, 0.04);
}

.btn--outline-light {
  background: transparent;
  color: #f8fafc;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
}

.header-cta {
  flex-shrink: 0;
}

/* ----- Hero (dark mesh — family vibe, premium) ----- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(3.5rem, 10vw, 6.5rem);
  overflow: hidden;
  background: var(--hero-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 1;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 35%, black, transparent);
  z-index: 0;
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Split hero: copy + illustration (homepage) */
.hero--split .container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero--split .container {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }

  .hero--split .hero__content {
    max-width: 560px;
  }
}

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.hero__art svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.35));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 600;
  color: #a5f3fc;
  margin-bottom: 1.35rem;
}

.hero__badge strong {
  color: #f0fdfa;
}

.hero h1 {
  max-width: 20ch;
  margin-bottom: 0.85rem;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

.hero__sub {
  font-size: 1.125rem;
  max-width: 38ch;
  margin-bottom: 1.5rem;
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.6;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #99f6e4;
}

.hero__checks span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero__checks span::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(52, 211, 153, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 560px;
}

.hero__stat {
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
}

.hero__stat span {
  font-size: 0.78rem;
  font-weight: 500;
  color: #94a3b8;
}

/* ----- Cards ----- */
.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.25s;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: rgba(13, 148, 136, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(37, 99, 235, 0.12));
  border: 1px solid rgba(13, 148, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  color: var(--ink);
}

.card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.section__head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section__head p {
  font-size: 1.05rem;
}

.section--dark .section__head p {
  color: #94a3b8;
}

/* ----- Trust bar ----- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.trust-bar__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--brand-dark);
}

.trust-bar__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
  justify-content: center;
}

.trust-bar__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-bar__mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), rgba(37, 99, 235, 0.15));
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--brand-dark);
  flex-shrink: 0;
}

/* ----- Testimonials ----- */
.testimonial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.testimonial__quote {
  font-size: 1.05rem;
  color: #e2e8f0;
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.55;
}

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

.testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.testimonial__meta strong {
  display: block;
  color: #f1f5f9;
  font-size: 0.95rem;
}

.testimonial__meta span {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ----- Case studies ----- */
.case {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.case__visual {
  min-height: 200px;
  background: linear-gradient(145deg, #0d9488 0%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.case__body {
  padding: 1.75rem;
}

.case__body h3 {
  color: var(--ink);
}

.case__body p {
  color: var(--ink-muted);
}

.case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(13, 148, 136, 0.12);
  color: var(--brand-dark);
}

/* ----- CTA banner ----- */
.cta-banner {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.25rem);
  background: var(--gradient-cta);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.35rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 480px;
}

.cta-banner .btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cta-banner .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* ----- FAQ ----- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item__btn {
  width: 100%;
  text-align: left;
  padding: 1.05rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item__btn::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.is-open .faq-item__btn::after {
  transform: rotate(45deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-item__content {
  padding: 0 1.25rem 1.15rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.section--dark .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.section--dark .faq-item__btn {
  color: #f1f5f9;
}

.section--dark .faq-item__content {
  color: #94a3b8;
}

/* ----- Forms ----- */
.form label {
  color: var(--ink);
}

.form input,
.form textarea,
.form select {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid rgba(13, 148, 136, 0.45);
  outline-offset: 2px;
}

.form-note {
  color: var(--ink-faint);
}

/* Contact — polished fields */
.form--contact .form-field {
  margin-bottom: 1.15rem;
}

.form--contact label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  color: var(--ink-muted);
}

.form--contact input,
.form--contact textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}

.form--contact textarea {
  min-height: 7rem;
  resize: vertical;
}

.form--contact input::placeholder,
.form--contact textarea::placeholder {
  color: #94a3b8;
}

.form--contact input:hover,
.form--contact textarea:hover {
  border-color: rgba(13, 148, 136, 0.35);
}

.form--contact input:focus,
.form--contact textarea:focus {
  outline: none;
  border-color: rgba(13, 148, 136, 0.65);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.18), 0 4px 14px rgba(15, 23, 42, 0.06);
  background: #fff;
}

.form--contact .btn--whatsapp {
  margin-top: 0.35rem;
  padding: 0.95rem 1.25rem;
  font-size: 0.95rem;
}

/* Footer embedded map */
.footer-location {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-location__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #94a3b8;
  margin: 0 0 1rem;
}

.map-embed--footer iframe {
  width: 100%;
  height: min(220px, 40vw);
  min-height: 180px;
  border: 0;
  border-radius: var(--radius);
}

.footer-location__note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

.sticky-cta--whatsapp-only {
  justify-content: center;
}

.sticky-cta--whatsapp-only .btn--whatsapp {
  min-width: 10rem;
}

/* ----- Footer ----- */
.site-footer {
  position: relative;
  padding: 3.5rem 0 2rem;
  background: var(--footer-dark);
  color: #94a3b8;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #0d9488, #2563eb) 1;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.4), transparent);
}

.site-footer .logo {
  color: #f8fafc;
}

.site-footer .logo__word {
  background: linear-gradient(120deg, #5eead4, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer .logo__suffix {
  border-color: rgba(94, 234, 212, 0.3);
  color: #5eead4;
  background: rgba(13, 148, 136, 0.12);
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.1fr 1.05fr 0.85fr 1.35fr;
}

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

@media (max-width: 520px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer-services-list,
.footer-metro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services-list li,
.footer-metro-list li {
  margin-bottom: 0.45rem;
}

.footer-metro-item {
  margin-bottom: 0.75rem;
  line-height: 1.45;
  font-size: 0.8rem;
}

.footer-metro-city {
  display: block;
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.footer-metro-svc a {
  color: #94a3b8;
  font-weight: 500;
}

.footer-metro-svc a:hover {
  color: #5eead4;
}

.footer-metro-note {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0 0 0.65rem;
  line-height: 1.4;
}

.footer-directory-link {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
}

.footer-directory-link a {
  font-weight: 600;
  color: #5eead4;
}

.markets-jump-wrap {
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--border);
}

.markets-jump-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  margin: 0 0 0.65rem;
  font-weight: 700;
}

.markets-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
}

.markets-jump-link {
  font-size: 0.85rem;
  font-weight: 500;
}

.markets-city-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.markets-city-block:last-of-type {
  border-bottom: none;
}

.markets-city-heading {
  margin-bottom: 0.35rem;
}

.markets-city-sub {
  color: var(--ink-muted);
  font-size: 0.92rem;
  margin: 0 0 1rem;
}

.markets-city-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.markets-city-links a {
  font-weight: 600;
  font-size: 0.9rem;
}

.markets-preview-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
}

.markets-preview-links a {
  font-weight: 600;
  font-size: 0.88rem;
}

.site-footer h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 1.1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.site-footer a {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
}

.site-footer a:hover {
  color: #5eead4;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #94a3b8;
  max-width: 300px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  color: #cbd5e1;
}

.footer-social a:hover {
  background: rgba(13, 148, 136, 0.2);
  border-color: rgba(45, 212, 191, 0.35);
  color: #5eead4;
}

.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748b;
}

/* ----- Breadcrumb ----- */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--brand-dark);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.page-hero .breadcrumb a {
  color: var(--brand-dark);
}

/* ----- Map ----- */
.map-embed {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
}

/* ----- Sticky CTA ----- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9980;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem max(1rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}

@media (min-width: 769px) {
  .sticky-cta {
    position: static;
    transform: none;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .sticky-cta.is-visible {
    transform: translateY(0);
  }

  body:has(.sticky-cta.is-visible) {
    padding-bottom: 4.25rem;
  }
}

/* ----- Floating WhatsApp ----- */
.wa-float {
  --wa-green: #25d366;
  --wa-green-deep: #128c7e;
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  z-index: 9995;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem 0.55rem 0.65rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(145deg, var(--wa-green) 0%, #1ebe5d 48%, var(--wa-green-deep) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.45), 0 2px 8px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s var(--ease), box-shadow 0.25s;
}

.wa-float:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(18, 140, 126, 0.5), 0 4px 12px rgba(15, 23, 42, 0.14);
}

.wa-float:active {
  transform: translateY(0) scale(0.98);
}

.wa-float__ring {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.wa-float__label {
  position: relative;
  z-index: 1;
  padding-right: 0.15rem;
}

.wa-float svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .wa-float {
    bottom: calc(4.85rem + env(safe-area-inset-bottom));
  }
}

.btn--whatsapp {
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  color: #fff !important;
  border: none;
  width: 100%;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.35);
}

.btn--whatsapp:hover {
  color: #fff !important;
  filter: brightness(1.05);
}

.contact-wa-hint {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-top: 0.75rem;
}

/* ----- Scroll reveal ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ----- Funnel ----- */
.funnel-body {
  background: var(--surface-muted);
}

.funnel-header {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.funnel-header .logo {
  justify-content: center;
}

.funnel-header__tag {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 0.35rem;
  font-weight: 500;
}

.funnel-body .hero__badge {
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.22);
  color: var(--brand-dark);
}

.funnel-body .hero__badge strong {
  color: var(--ink);
}

.funnel-body h1 {
  color: var(--ink);
}

.funnel-lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
}

.funnel-strong {
  color: var(--ink);
}

.funnel-minimal .site-footer {
  padding-top: 2rem;
}

/* ----- Page hero (inner) ----- */
.page-hero {
  padding: clamp(2.75rem, 6vw, 4rem) 0 2.5rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-muted) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08), transparent 65%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  color: var(--ink);
  max-width: 22ch;
}

.page-hero p {
  color: var(--ink-muted);
}

/* ----- Thank you ----- */
.thankyou-icon {
  border-color: rgba(13, 148, 136, 0.25);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(37, 99, 235, 0.1));
}

/* ----- Badges ----- */
.badge {
  background: rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.2);
  color: var(--brand-dark);
  font-weight: 600;
}

/* ----- Utility ----- */
.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

