:root {
  --home-blue: #0b4f9f;
  --home-blue-dark: #07366d;
  --home-blue-soft: #eef6ff;
  --home-green: #1f8a4c;
  --home-text: #14213d;
  --home-muted: #64748b;
  --home-border: #dbe7f3;
  --home-soft: #f7fafc;
  --home-shadow: 0 18px 42px rgba(15, 23, 42, .10);
}
.home-page main { overflow: hidden; }
.home-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.14), transparent 34%),
    radial-gradient(circle at 12% 10%, rgba(219, 234, 254, 0.58), transparent 28%),
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 78%);
  padding: 74px 0 38px;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 420px;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--home-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.home-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--home-text);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.home-hero h1 span {
  display: block;
}
.hero-lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: #34445e;
  font-size: 20px;
  line-height: 1.65;
}
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.hero-benefits span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--home-border);
  border-radius: 999px;
  background: #fff;
  color: #263b55;
  font-weight: 800;
  font-size: 14px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: var(--home-blue);
  box-shadow: 0 12px 24px rgba(11,79,159,.22);
}
.btn-primary:hover { background: var(--home-blue-dark); }
.btn-outline {
  color: var(--home-blue);
  background: #fff;
  border-color: rgba(11,79,159,.28);
}
.btn-outline:hover { background: var(--home-blue-soft); }
.microcopy {
  margin: 14px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.6;
}
.hero-call-card {
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #dbe7f5;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}
.card-label {
  margin: 0 0 10px;
  color: var(--home-muted);
  font-weight: 800;
}
.hero-call-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.03em;
}
.hero-phone {
  display: block;
  color: var(--home-blue);
  font-size: 28px;
  font-weight: 950;
  text-decoration: none;
  margin-bottom: 20px;
}
.hero-phone:hover { color: var(--home-blue-dark); }
.hero-call-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-call-card li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  line-height: 1.55;
}
.hero-call-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--home-green);
  font-weight: 900;
}
.card-note {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--home-blue-soft);
  color: var(--home-blue-dark);
  font-weight: 800;
}
.trust-strip {
  padding: 18px 0 36px;
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.trust-grid div {
  min-height: 118px;
  padding: 18px 14px;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: #fff;
}
.icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 12px;
  background: var(--home-blue-soft);
  color: var(--home-blue);
  font-weight: 900;
}
.icon.green,
.tile-icon.green { color: var(--home-green); background: linear-gradient(180deg, #effaf4 0%, #e8f6ef 100%); border-color: rgba(30,146,89,.12); }
.trust-grid strong { display: block; font-size: 15px; }
.trust-grid small { display: block; margin-top: 4px; color: var(--home-muted); line-height: 1.35; }
.home-section { padding: 78px 0; background: #fff; }
.home-section.soft { background: var(--home-soft); }
.section-head {
  max-width: 760px;
  margin: 0 0 34px;
}
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.section-head p {
  margin: 14px 0 0;
  color: var(--home-muted);
  font-size: 18px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-tile,
.audience-grid article,
.process-grid article,
.work-card {
  border: 1px solid var(--home-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-tile {
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}
.service-tile:hover,
.audience-grid article:hover,
.process-grid article:hover,
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow);
  border-color: rgba(11,79,159,.22);
}
.tile-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f4f8ff 0%, #eef4fb 100%);
  border: 1px solid rgba(11,79,159,.08);
  color: #235ea6;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  flex-shrink: 0;
}
.tile-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tile-icon-care {
  color: #1b7f74;
  background: linear-gradient(180deg, #f0faf8 0%, #e8f6f3 100%);
  border-color: rgba(27,127,116,.12);
}
.service-tile h3,
.audience-grid h3,
.process-grid h3,
.work-card h3 { margin: 0 0 10px; font-size: 20px; }
.service-tile p,
.audience-grid p,
.process-grid p,
.work-card p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}
.service-tile > span:last-child {
  display: inline-block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--home-blue);
  font-weight: 900;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.audience-grid article {
  padding: 25px;
}
.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  padding: 34px;
  border: 1px solid rgba(11,79,159,.16);
  border-radius: 30px;
  background: linear-gradient(135deg, #f3f8ff 0%, #ffffff 60%);
  box-shadow: var(--home-shadow);
}
.price-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.035em;
}
.price-copy p { color: #3b4c65; line-height: 1.75; font-size: 17px; }
.included-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.included-list div {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--home-border);
}
.price-cta {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--home-border);
}
.price-cta h3 { margin: 0 0 10px; font-size: 24px; }
.price-cta p { color: var(--home-muted); line-height: 1.65; }
.price-cta .btn { width: 100%; margin-top: 10px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work-card { overflow: hidden; }
.work-card h3,
.work-card p { padding-left: 22px; padding-right: 22px; }
.work-card h3 { padding-top: 20px; }
.work-card p { padding-bottom: 24px; }
.work-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #e2e8f0;
}
.work-images img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-grid article {
  padding: 25px;
}
.process-grid span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--home-blue);
  color: #fff;
  font-weight: 900;
}
.narrow { max-width: 850px; }
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--home-border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: #fff;
  color: var(--home-text);
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-item button::after {
  content: "+";
  float: right;
  color: var(--home-blue);
}
.faq-item.is-open button::after { content: "−"; }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--home-muted); line-height: 1.7; }
.faq-item.is-open .faq-answer { display: block; }
.faq-answer p { margin: 0; }
.final-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--home-blue-dark), var(--home-blue));
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.035em;
}
.final-cta p {
  max-width: 730px;
  margin: 16px auto 0;
  color: rgba(255,255,255,.86);
  line-height: 1.7;
  font-size: 18px;
}
.centered-actions { justify-content: center; margin-top: 28px; }
.btn-light {
  color: var(--home-blue-dark);
  background: #fff;
}
.btn-light-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.55);
}
.final-note { font-size: 14px !important; opacity: .92; }
.partners-compact {
  padding: 46px 0;
  background: #fff;
}
.partners-inner {
  display: grid;
  grid-template-columns: minmax(0, 430px) 1fr;
  gap: 30px;
  align-items: center;
}
.partners-inner h2 {
  margin: 0;
  font-size: 28px;
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.partner-logos img {
  width: 100%;
  max-height: 54px;
  object-fit: contain;
  padding: 12px;
  border: 1px solid var(--home-border);
  border-radius: 16px;
  background: #fff;
}
.mobile-bottom-cta { display: none; }

/* Homepage assist + feedback popups */
.home-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10020;
  background: rgba(15, 23, 42, .42);
  opacity: 0;
  transition: opacity .18s ease;
}
.home-popup-backdrop.is-open { opacity: 1; }
.home-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 10021;
  width: min(92vw, 560px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  transform: translate(-50%, -48%) scale(.98);
  opacity: 0;
  padding: 28px;
  border: 1px solid rgba(219, 231, 243, .95);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .26);
  transition: opacity .18s ease, transform .18s ease;
}
.home-popup.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.home-popup-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 999px;
  background: #fff;
  color: var(--home-text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.home-popup-close:hover { background: var(--home-blue-soft); }
.home-popup-kicker {
  margin: 0 0 10px;
  color: var(--home-blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.home-popup h2 {
  margin: 0 34px 12px 0;
  color: var(--home-text);
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.12;
  letter-spacing: -.03em;
}
.home-popup p {
  margin: 0 0 18px;
  color: #40516a;
  line-height: 1.65;
}
.home-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.home-popup-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}
.home-popup-btn-primary {
  color: #fff;
  background: var(--home-blue);
  box-shadow: 0 12px 24px rgba(11,79,159,.18);
}
.home-popup-btn-outline {
  color: var(--home-blue);
  background: #fff;
  border-color: rgba(11,79,159,.28);
}
.home-popup-btn-whatsapp {
  color: #fff;
  background: #1f8a4c;
}
.home-popup-btn-ghost {
  color: var(--home-blue);
  background: var(--home-blue-soft);
}
.home-feedback-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 16px;
}
.home-feedback-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--home-border);
  border-radius: 15px;
  background: #fff;
  color: var(--home-text);
  font-weight: 850;
  cursor: pointer;
}
.home-feedback-options label:hover { border-color: rgba(11,79,159,.35); background: var(--home-blue-soft); }
.home-feedback-message {
  display: grid;
  gap: 8px;
  color: var(--home-text);
  font-weight: 900;
}
.home-feedback-message span {
  color: var(--home-muted);
  font-weight: 700;
}
.home-feedback-message textarea {
  width: 100%;
  min-height: 94px;
  resize: vertical;
  border: 1px solid var(--home-border);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--home-text);
  font: inherit;
}
.home-feedback-message textarea:focus {
  outline: 3px solid rgba(11,79,159,.14);
  border-color: rgba(11,79,159,.45);
}
.home-popup-actions-submit { align-items: center; }
.home-feedback-status {
  min-height: 22px;
  margin: 12px 0 0 !important;
  color: var(--home-green) !important;
  font-weight: 850;
}
html.home-popup-open { overflow: hidden; }
