/* ============================================================
   L&G Limpezas de Condomínios, estilos do site
   Mobile-first, identidade real (azul #234169 + turquesa #A8DADC)
   Tipografia: Plus Jakarta Sans
   ============================================================ */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--lg-font-body);
  font-weight: var(--lg-weight-regular);
  font-size: var(--lg-size-body);
  line-height: var(--lg-leading-normal);
  color: var(--lg-text-primary);
  background: var(--lg-color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--lg-link-hover);
}

img, svg {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 820px;
}

/* ===== BOTÕES PILL (padrão da marca) ===== */

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--lg-color-primary);
  color: var(--lg-text-on-dark);
  font-family: var(--lg-font-body);
  font-weight: var(--lg-weight-bold);
  font-size: 1rem;
  border: none;
  border-radius: var(--lg-radius-pill);
  padding: 14px 28px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  line-height: 1;
  text-align: center;
}

.btn-pill:hover {
  background: var(--lg-color-secondary);
  color: var(--lg-text-on-dark);
  transform: translateY(-1px);
}

.btn-pill-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-pill-block {
  display: flex;
  width: 100%;
  padding: 16px 28px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--lg-color-primary);
  color: var(--lg-color-primary);
  background: transparent;
  font-family: var(--lg-font-body);
  font-weight: var(--lg-weight-bold);
  font-size: 1rem;
  border-radius: var(--lg-radius-pill);
  padding: 12px 26px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.btn-ghost:hover {
  background: var(--lg-color-primary);
  color: var(--lg-text-on-dark);
}

/* ===== TOPBAR ===== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eef1f5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--lg-color-accent-2);
  flex-shrink: 0;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: cover;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.25rem;
  color: var(--lg-color-primary);
  letter-spacing: 0.02em;
}

.brand-name small {
  font-size: 0.7rem;
  color: var(--lg-text-muted);
  margin-top: 2px;
  font-weight: var(--lg-weight-medium);
  letter-spacing: 0.04em;
}

.nav {
  display: none;
  gap: 22px;
}

.nav a {
  color: var(--lg-color-primary);
  font-weight: var(--lg-weight-medium);
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--lg-color-secondary);
}

@media (min-width: 1024px) {
  .nav { display: inline-flex; }
}

/* ===== HERO ===== */

.hero {
  background: linear-gradient(135deg, #234169 0%, #1B2A3F 100%);
  color: var(--lg-text-on-dark);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(168, 218, 220, 0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  background: var(--lg-color-accent-1);
  color: var(--lg-color-primary);
  font-weight: var(--lg-weight-bold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: var(--lg-tracking-title);
  padding: 6px 14px;
  border-radius: var(--lg-radius-pill);
  margin-bottom: 16px;
}

.title-hero {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 2.1rem;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--lg-text-on-dark);
  letter-spacing: -0.01em;
}

.lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
  max-width: 540px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero .btn-pill {
  background: var(--lg-color-accent-1);
  color: var(--lg-color-primary);
}

.hero .btn-pill:hover {
  background: var(--lg-color-white);
  color: var(--lg-color-primary);
}

.hero .btn-ghost {
  border-color: var(--lg-color-accent-1);
  color: var(--lg-color-accent-1);
}

.hero .btn-ghost:hover {
  background: var(--lg-color-accent-1);
  color: var(--lg-color-primary);
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(168, 218, 220, 0.3);
  padding-top: 22px;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.9rem;
  color: var(--lg-color-accent-1);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* Hero art */
.hero-art {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 65, 105, 0.05) 0%, rgba(35, 65, 105, 0.4) 100%);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  background: var(--lg-color-white);
  color: var(--lg-color-primary);
  border-radius: var(--lg-radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-badge-num {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 2.2rem;
  color: var(--lg-color-primary);
  line-height: 1;
}

.hero-badge-lbl {
  font-size: 0.72rem;
  color: var(--lg-text-muted);
  font-weight: var(--lg-weight-medium);
  line-height: 1.3;
}

@media (min-width: 992px) {
  .hero {
    padding: 80px 0 88px;
  }
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
  .title-hero {
    font-size: 3.1rem;
  }
}

/* ===== TRUST BAR ===== */

.trust-bar {
  background: var(--lg-color-night);
  color: var(--lg-text-on-dark);
  padding: 22px 0;
  border-bottom: 4px solid var(--lg-color-accent-1);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

@media (min-width: 768px) {
  .trust-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-item strong {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.72rem;
  color: var(--lg-color-accent-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-item span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: var(--lg-weight-medium);
  line-height: 1.4;
}

/* ===== SEÇÃO GENÉRICA ===== */

.section-eyebrow {
  display: inline-block;
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.78rem;
  color: var(--lg-color-secondary);
  text-transform: uppercase;
  letter-spacing: var(--lg-tracking-title);
  margin-bottom: 12px;
}

.section-eyebrow-dark {
  color: var(--lg-color-accent-1);
}

.section-eyebrow-light {
  color: var(--lg-color-accent-1);
}

.title-section {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.85rem;
  line-height: 1.15;
  color: var(--lg-color-primary);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}

@media (min-width: 768px) {
  .title-section {
    font-size: 2.3rem;
  }
}

.title-section-dark, .title-section-light {
  color: var(--lg-text-on-dark);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--lg-text-muted);
  max-width: 720px;
  margin: 0 0 36px;
  line-height: 1.6;
}

/* ===== DORES ===== */

.section-pain {
  background: var(--lg-color-accent-2);
  padding: 64px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.pain-card {
  background: var(--lg-color-white);
  border-radius: var(--lg-radius-md);
  padding: 28px 24px;
  box-shadow: var(--lg-shadow-sm);
  border-top: 4px solid var(--lg-color-primary);
}

.pain-num {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.4rem;
  color: var(--lg-color-accent-1);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.pain-card h3 {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 1.1rem;
  color: var(--lg-color-primary);
  margin: 0 0 10px;
  line-height: 1.3;
}

.pain-card p {
  margin: 0;
  color: var(--lg-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== SERVIÇOS ===== */

.section-services {
  background: var(--lg-color-white);
  padding: 72px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.service-card {
  background: var(--lg-color-white);
  border: 1px solid #eef1f5;
  border-radius: var(--lg-radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lg-shadow-md);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--lg-color-accent-2);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 1.1rem;
  color: var(--lg-color-primary);
  margin: 0 0 10px;
  line-height: 1.3;
}

.service-promise {
  color: var(--lg-text-muted);
  font-size: 0.92rem;
  margin: 0 0 16px;
  line-height: 1.55;
  flex: 1;
}

.service-link {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.85rem;
  color: var(--lg-color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.service-link:hover span {
  transform: translateX(4px);
}

/* ===== SOBRE ===== */

.section-about {
  background: var(--lg-color-bg-soft);
  padding: 72px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-inner {
    grid-template-columns: 0.85fr 1fr;
    gap: 56px;
  }
}

.about-art {
  display: flex;
  justify-content: center;
}

.about-quote-card {
  background: var(--lg-color-primary);
  color: var(--lg-text-on-dark);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  box-shadow: var(--lg-shadow-lg);
  max-width: 440px;
  width: 100%;
}

.about-quote-mark {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 5rem;
  color: var(--lg-color-accent-1);
  line-height: 1;
  display: block;
  margin-bottom: -10px;
}

.about-quote {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--lg-text-on-dark);
  margin: 0 0 18px;
  font-weight: var(--lg-weight-medium);
}

.about-quote-author {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.9rem;
  color: var(--lg-color-accent-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.about-text p {
  color: var(--lg-text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 16px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  color: var(--lg-color-primary);
  font-size: 0.96rem;
  line-height: 1.5;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lg-color-accent-1);
  border: 3px solid var(--lg-color-primary);
}

/* ===== PROCESSO ===== */

.section-process {
  background: var(--lg-color-white);
  padding: 72px 0;
}

.process-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 600px) {
  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (min-width: 992px) {
  .process-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

.process-item {
  background: var(--lg-color-bg-soft);
  border-radius: var(--lg-radius-md);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  border-left: 4px solid var(--lg-color-accent-1);
}

.process-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lg-color-primary);
  color: var(--lg-text-on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.process-item h3 {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 1.05rem;
  color: var(--lg-color-primary);
  margin: 0 0 8px;
  line-height: 1.3;
}

.process-item p {
  margin: 0;
  color: var(--lg-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ===== GALERIA ===== */

.section-gallery {
  background: var(--lg-color-accent-2);
  padding: 72px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  grid-auto-rows: 200px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    grid-auto-rows: 240px;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--lg-radius-md);
  overflow: hidden;
  box-shadow: var(--lg-shadow-sm);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 18px 14px;
  color: var(--lg-text-on-dark);
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, transparent 0%, rgba(35, 65, 105, 0.85) 100%);
  pointer-events: none;
}

/* ===== DIFERENCIAIS ===== */

.section-diff {
  background: var(--lg-color-primary);
  color: var(--lg-text-on-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.section-diff::before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(168, 218, 220, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .diff-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

.diff-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(168, 218, 220, 0.25);
  border-radius: var(--lg-radius-md);
  padding: 26px 22px;
}

.diff-num {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 2.6rem;
  color: var(--lg-color-accent-1);
  line-height: 1;
  margin-bottom: 12px;
}

.diff-num-icon {
  font-size: 0;
  margin-bottom: 12px;
  height: 36px;
  display: flex;
  align-items: center;
}

.diff-card h3 {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 1rem;
  color: var(--lg-text-on-dark);
  margin: 0 0 8px;
}

.diff-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== FAQ ===== */

.section-faq {
  background: var(--lg-color-white);
  padding: 72px 0;
}

.faq-item {
  border: 1px solid #eef1f5;
  border-radius: var(--lg-radius-md);
  margin-bottom: 12px;
  background: var(--lg-color-white);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--lg-color-accent-1);
  box-shadow: var(--lg-shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  color: var(--lg-color-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.4rem;
  color: var(--lg-color-secondary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--lg-text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ===== CONTACTO ===== */

.section-contact {
  background: linear-gradient(135deg, #234169 0%, #1B2A3F 100%);
  color: var(--lg-text-on-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(168, 218, 220, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
}

.contact-info p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 520px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list li {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(168, 218, 220, 0.25);
  border-radius: var(--lg-radius-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-list strong {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: var(--lg-tracking-title);
  color: var(--lg-color-accent-1);
}

.contact-list a, .contact-list span {
  color: var(--lg-text-on-dark);
  font-weight: var(--lg-weight-medium);
  font-size: 1rem;
  line-height: 1.4;
}

.contact-list a:hover {
  color: var(--lg-color-accent-1);
}

.contact-form {
  background: var(--lg-color-white);
  border-radius: var(--lg-radius-md);
  padding: 28px;
  box-shadow: var(--lg-shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-title {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.3rem;
  color: var(--lg-color-primary);
  margin: 0 0 6px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field span {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.85rem;
  color: var(--lg-color-primary);
}

.field input, .field textarea {
  border: 1px solid #d8e0ea;
  border-radius: var(--lg-radius-sm);
  padding: 12px 14px;
  font-family: var(--lg-font-body);
  font-size: 0.96rem;
  color: var(--lg-color-primary);
  background: var(--lg-color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--lg-color-secondary);
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.18);
}

.form-note {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: var(--lg-text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--lg-color-night);
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 20px 36px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.1fr 2fr;
    gap: 48px;
  }
}

.footer-brand .brand-name strong {
  color: var(--lg-color-white);
}

.footer-brand .brand-name small {
  color: var(--lg-color-accent-1);
}

.footer-brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 360px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-cols h4 {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: var(--lg-tracking-title);
  color: var(--lg-color-accent-1);
  margin: 0 0 14px;
}

.footer-cols a, .footer-cols span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  margin-bottom: 6px;
  line-height: 1.45;
}

.footer-cols a:hover {
  color: var(--lg-color-accent-1);
}

.footer-bar {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 0;
}

.footer-bar a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.footer-bar a:hover {
  color: var(--lg-color-accent-1);
}

.footer-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@media (min-width: 600px) {
  .footer-bar-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
