:root {
  --purple: #7b28DA;
  --purple-dark: #5d1ba8;
  --purple-light: #9d54f0;
  --dark: #2F2D33;
  --dark-2: #1c1b1f;
  --light: #E0E4FF;
  --light-2: #f4f6ff;
  --white: #ffffff;
  --text: #2F2D33;
  --text-muted: #6b6873;
  --border: rgba(47, 45, 51, 0.08);
  --shadow-sm: 0 2px 8px rgba(47, 45, 51, 0.06);
  --shadow-md: 0 10px 30px rgba(123, 40, 218, 0.12);
  --shadow-lg: 0 20px 60px rgba(123, 40, 218, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --font-head: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3,
.eyebrow,
.section-eyebrow,
.hero__title,
.section-title,
.service-card h3,
.cta-final h2,
.btn,
.nav__links a,
.chip,
.trust__item strong,
.differentiator__list strong,
.check {
  font-family: var(--font-head);
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(110deg, var(--purple) 0%, var(--purple-light) 50%, var(--purple) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
}

.nav__logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  transition: opacity 0.2s ease;
}

.nav__logo:hover { opacity: 0.78; }

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo--nav { height: 44px; }

.brand-logo--footer { height: 56px; }

@media (max-width: 640px) {
  .brand-logo--nav { height: 38px; }
  .brand-logo--footer { height: 48px; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--dark); }

.nav__cta {
  background: var(--dark);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: transform 0.2s, background 0.2s;
}

.nav__cta:hover {
  background: var(--purple) !important;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 150px 0 170px;
  overflow: hidden;
  background-color: var(--dark);
  background-image:
    linear-gradient(rgba(28, 27, 31, 0.9), rgba(28, 27, 31, 0.9)),
    url('hero-franzzz.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__inner { position: relative; z-index: 2; max-width: 880px; }

/* textos do hero sobre fundo escuro */
.hero .hero__title { color: var(--white); }
.hero .hero__lead { color: rgba(255, 255, 255, 0.82); }
.hero .gradient-text {
  background: linear-gradient(110deg, var(--purple-light) 0%, #c79bff 50%, var(--purple-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .hero__trust { border-top-color: rgba(255, 255, 255, 0.18); }
.hero .trust__item strong { color: var(--white); }
.hero .trust__item span { color: rgba(255, 255, 255, 0.7); }
.hero .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero .btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(123, 40, 218, 0.35);
}

.btn--primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(123, 40, 218, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 34px; font-size: 17px; }

.hero__trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

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

.trust__item strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}

.trust__item span {
  font-size: 13px;
  color: var(--text-muted);
}

.hero__bg {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(123, 40, 218, 0.18) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ============ SECTIONS BASE ============ */
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

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

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 24px;
  max-width: 820px;
}

.section-title--light { color: var(--white); }

/* ============ SERVICES ============ */
.services { padding: 110px 0; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(123, 40, 218, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(123, 40, 218, 0.25);
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(123, 40, 218, 0.3);
}

.service-card__icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ============ COMO FUNCIONA ============ */
.process {
  padding: 110px 0;
  background: var(--light);
}

.process__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-top: 16px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(123, 40, 218, 0.25);
}

.process-step__num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 18px;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ============ DIFFERENTIATOR ============ */
.differentiator {
  padding: 110px 0;
  background: var(--dark);
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.differentiator__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.differentiator__lead {
  font-size: 1.1rem;
  color: rgba(224, 228, 255, 0.7);
  margin-bottom: 40px;
  max-width: 580px;
}

.differentiator__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.differentiator__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.differentiator__list strong {
  color: var(--white);
  font-weight: 700;
}

.differentiator__list div {
  font-size: 15px;
  color: rgba(224, 228, 255, 0.85);
  line-height: 1.6;
}

.check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}

.differentiator__visual {
  position: relative;
  height: 360px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb--1 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, var(--purple-light), var(--purple));
  top: 20px;
  left: 30px;
  box-shadow: 0 0 80px rgba(123, 40, 218, 0.5);
  animation: float 8s ease-in-out infinite;
}

.orb--2 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 40% 30%, var(--light), rgba(224, 228, 255, 0.5));
  top: 180px;
  right: 20px;
  animation: float 10s ease-in-out infinite reverse;
}

.orb--3 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--purple-light), transparent);
  bottom: 30px;
  left: 100px;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-25px) translateX(15px); }
}

@media (max-width: 880px) {
  .differentiator__inner { grid-template-columns: 1fr; gap: 50px; }
  .differentiator__visual { display: none; }
}

/* ============ REGION ============ */
.region {
  padding: 110px 0;
  background: var(--light);
}

.region__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 40px;
}

.region__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.chip:hover {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.chip--ghost {
  background: transparent;
  color: var(--text-muted);
  border-style: dashed;
}

/* ============ SOBRE ============ */
.about {
  padding: 110px 0;
  background: var(--light);
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.about__photo { flex-shrink: 0; }

.about__photo img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  border: 5px solid var(--white);
  box-shadow: 0 0 0 3px var(--purple), var(--shadow-lg);
}

.about__content { max-width: 560px; }

.about__name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 12px 0 4px;
}

.about__role {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 20px;
}

.about__bio {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about__inner { flex-direction: column; text-align: center; gap: 32px; }
  .about__content { max-width: 100%; }
}

/* ============ INSTAGRAM ============ */
.instagram-section {
  padding: 110px 0;
  background: var(--light);
  text-align: center;
}

.instagram-section .section-title {
  margin-left: auto;
  margin-right: auto;
}

.instagram-section__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

.instagram-feed {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
}

.instagram-feed .instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  width: 326px !important;
  max-width: 100% !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-md) !important;
}

.instagram-section__cta {
  margin-top: 48px;
}

/* ============ FAQ ============ */
.faq {
  padding: 110px 0;
  background: var(--light);
}

.faq__reassure {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 48px;
}

.faq__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(123, 40, 218, 0.08);
  color: var(--purple);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
}

.faq__badge::before {
  content: '✓';
  font-weight: 800;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: rgba(123, 40, 218, 0.3); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--purple);
  line-height: 1;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item__body { padding: 0 24px 22px; }

.faq-item__body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item__body strong { color: var(--dark); }

/* Caixinha de pergunta (estilo Instagram) */
.ask-box {
  margin-top: 52px;
  max-width: 620px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.ask-box__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.ask-box__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
}

.ask-box__head h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.ask-box__head p {
  font-size: 14px;
  opacity: 0.9;
}

.ask-form { display: flex; flex-direction: column; gap: 12px; }

.ask-form textarea,
.ask-form input[type="text"] {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  resize: vertical;
}

.ask-form textarea:focus,
.ask-form input[type="text"]:focus {
  outline: 2px solid rgba(255, 255, 255, 0.7);
}

.ask-form__submit {
  background: var(--dark) !important;
  align-self: flex-start;
}

.ask-form__submit:hover { background: var(--dark-2) !important; }

.ask-form__feedback {
  font-weight: 600;
  font-size: 15px;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .ask-box { padding: 24px; }
  .ask-form__submit { align-self: stretch; text-align: center; }
}

/* ============ CTA FINAL ============ */
.cta-final {
  padding: 120px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(123, 40, 218, 0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(123, 40, 218, 0.12), transparent 50%),
    var(--light);
  text-align: center;
}

.cta-final__inner { max-width: 760px; margin: 0 auto; }

.cta-final h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}

.cta-final p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-final__alt {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.cta-final__alt a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark-2);
  color: rgba(224, 228, 255, 0.7);
  padding: 56px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.footer__brand .logo-text { color: var(--white); }

.footer__contact {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}

.footer__contact a { transition: color 0.2s; }
.footer__contact a:hover { color: var(--light); }

.footer__legal {
  font-size: 13px;
  color: rgba(224, 228, 255, 0.5);
}

@media (max-width: 760px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer__contact { justify-content: center; }
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============ LEAD MODAL ============ */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 16px;
  overflow-y: auto;
}

.lead-modal[hidden] { display: none; }

.lead-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 27, 31, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lead-modal.is-open .lead-modal__overlay { opacity: 1; }

.lead-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin-top: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.lead-modal.is-open .lead-modal__card {
  transform: translateY(0);
  opacity: 1;
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--light-2);
  color: var(--text-muted);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.lead-modal__close:hover {
  background: var(--light);
  color: var(--dark);
  transform: rotate(90deg);
}

.lead-modal__badge {
  display: inline-block;
  padding: 7px 16px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead-modal__title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 12px;
}

.lead-modal__lead {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.6;
}

.lead-form { display: flex; flex-direction: column; gap: 16px; }

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.lead-form__field label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.lead-form__field input {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--light-2);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}

.lead-form__field input::placeholder { color: #b3b0bb; }

.lead-form__field input:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123, 40, 218, 0.12);
}

.lead-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.lead-form__note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 480px) {
  .lead-modal__card { padding: 36px 24px 28px; margin-top: 16px; }
  .lead-modal__title { font-size: 1.45rem; }
  .lead-form__row { grid-template-columns: 1fr; }
}

/* ============ RESPONSIVE TWEAKS ============ */
@media (max-width: 640px) {
  .hero { padding: 100px 0 120px; }
  .services, .differentiator, .region { padding: 70px 0; }
  .cta-final { padding: 80px 0; }
  .hero__trust { gap: 28px; }
  .footer__contact { flex-direction: column; gap: 10px; }
}
