:root {
  --navy-950: #050b14;
  --navy-900: #07111f;
  --navy-850: #0a1729;
  --navy-800: #0d1d32;
  --navy-700: #17304e;
  --blue: #2d64ff;
  --blue-light: #6e91ff;
  --cyan: #37d5f2;
  --green: #20c66b;
  --green-dark: #139e51;
  --cream: #f5f6f8;
  --white: #ffffff;
  --ink: #0a1627;
  --muted: #5d6a7e;
  --muted-dark: #a4b1c5;
  --line: #dfe4eb;
  --line-dark: rgba(255, 255, 255, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(8, 23, 43, 0.13);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::selection { color: var(--white); background: var(--blue); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: inherit;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.75rem, 5.2vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.65rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.notice { color: #dce8ff; background: var(--navy-950); border-bottom: 1px solid var(--line-dark); }
.notice-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em; }
.notice span { display: inline-flex; align-items: center; gap: 9px; }
.notice i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(32, 198, 107, 0.14); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); flex-shrink: 0; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 10px; box-shadow: 0 8px 24px rgba(45, 100, 255, 0.24); }
.brand span, .brand strong, .brand small { display: block; }
.brand strong { font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.98rem; letter-spacing: -0.02em; }
.brand small { margin-top: 1px; color: #92a5c1; font-size: 0.68rem; font-weight: 600; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 25px; margin-left: auto; }
.desktop-nav a { color: #b7c3d5; font-size: 0.84rem; font-weight: 700; transition: color 0.2s ease; }
.desktop-nav a:hover { color: var(--white); }
.header-cta { margin-left: 8px; }
.mobile-menu { display: none; position: relative; margin-left: auto; }
.mobile-menu summary { list-style: none; width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; cursor: pointer; border: 1px solid var(--line-dark); border-radius: 10px; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 19px; height: 2px; background: var(--white); border-radius: 4px; }
.mobile-menu nav { position: absolute; top: 52px; right: 0; width: min(290px, calc(100vw - 40px)); display: grid; padding: 12px; background: var(--navy-850); border: 1px solid var(--line-dark); border-radius: 15px; box-shadow: var(--shadow); }
.mobile-menu nav a { padding: 12px 13px; color: #d9e2ef; font-weight: 700; border-radius: 9px; }
.mobile-menu nav a:hover { background: rgba(255,255,255,0.06); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 16px; border-radius: 10px; font-size: 0.82rem; }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--green), #1ab35e); box-shadow: 0 16px 36px rgba(32, 198, 107, 0.25); }
.button-primary:hover { background: linear-gradient(135deg, #25d673, var(--green-dark)); box-shadow: 0 18px 40px rgba(32, 198, 107, 0.34); }
.button-whatsapp { color: var(--white); background: var(--green); }
.button-whatsapp:hover { background: var(--green-dark); }
.button-quiet { color: #d9e4f3; border-color: rgba(255,255,255,0.17); background: rgba(255,255,255,0.04); }
.button-quiet:hover { border-color: var(--cyan); background: rgba(55,213,242,0.08); }
.button-outline { width: 100%; color: var(--ink); border-color: var(--line); background: var(--white); }
.button-outline:hover { border-color: var(--blue); color: var(--blue); }
.button-dark { color: var(--white); background: var(--navy-900); }
.button-dark:hover { background: var(--blue); }
.wa-mark { width: 22px; height: 22px; display: inline-grid; place-items: center; color: var(--green); background: var(--white); border-radius: 50%; }
.whatsapp-icon { display: block; width: 62%; height: 62%; fill: currentColor; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: 0.16; background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, #000, transparent 70%); }
.hero-glow { position: absolute; top: -280px; left: -220px; width: 780px; height: 780px; border-radius: 50%; background: rgba(45,100,255,0.34); filter: blur(120px); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr 0.97fr; gap: clamp(46px, 6vw, 86px); align-items: center; min-height: 720px; padding-block: 78px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker { margin-bottom: 18px; color: var(--cyan); font-size: 0.77rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #c9f7ff; }
.eyebrow span { color: var(--cyan); font-size: 0.75rem; }
.hero h1 { max-width: 760px; margin-bottom: 25px; }
.hero-lead { max-width: 670px; margin-bottom: 34px; color: #afbdd1; font-size: clamp(1rem, 1.6vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 42px 0 0; padding: 25px 0 0; list-style: none; border-top: 1px solid var(--line-dark); }
.hero-facts li { min-width: 0; padding-right: 20px; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { margin-bottom: 5px; color: var(--white); font-family: "Plus Jakarta Sans", sans-serif; font-size: clamp(1rem, 2vw, 1.4rem); letter-spacing: -0.03em; }
.hero-facts span { color: #8798b1; font-size: 0.72rem; line-height: 1.35; }
.hero-visual { position: relative; margin: 0; }
.hero-visual::before { content: ""; position: absolute; inset: 8% -10% -8% 14%; background: var(--blue); opacity: 0.22; filter: blur(70px); border-radius: 50%; }
.hero-visual img { position: relative; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 66% center; border-radius: 30px; border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 45px 100px rgba(0,0,0,0.44); }
.hero-visual figcaption { position: absolute; right: -18px; bottom: 26px; display: flex; align-items: center; gap: 12px; min-width: 245px; padding: 15px 17px; background: rgba(8,18,33,0.88); border: 1px solid var(--line-dark); border-radius: 14px; box-shadow: 0 18px 50px rgba(0,0,0,0.4); backdrop-filter: blur(18px); }
.hero-visual figcaption strong, .hero-visual figcaption small { display: block; }
.hero-visual figcaption strong { font-size: 0.82rem; }
.hero-visual figcaption small { margin-top: 2px; color: #92a3ba; font-size: 0.67rem; }
.status-dot { width: 10px; height: 10px; flex: 0 0 10px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(32,198,107,0.15); }

.trust-ribbon { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; align-items: center; gap: 14px; min-height: 104px; padding: 20px 24px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { padding-right: 0; border-right: 0; }
.mini-icon { width: 37px; height: 37px; flex: 0 0 37px; display: grid; place-items: center; color: var(--blue); background: #edf2ff; border-radius: 10px; font-size: 0.7rem; font-weight: 900; }
.trust-grid p { margin: 0; line-height: 1.35; }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { font-size: 0.83rem; }
.trust-grid small { margin-top: 4px; color: var(--muted); font-size: 0.7rem; }

.client-proof { padding-block: 30px 42px; background: var(--white); border-bottom: 1px solid var(--line); }
.client-proof p { margin-bottom: 22px; color: var(--muted); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.11em; text-align: center; text-transform: uppercase; }
.client-logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; align-items: center; }
.client-logos img { width: 100%; height: 58px; padding: 10px 12px; object-fit: contain; filter: grayscale(1); opacity: 0.68; border: 1px solid #edf0f4; border-radius: 10px; transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease; }
.client-logos img:hover { filter: none; opacity: 1; transform: translateY(-2px); }

.section { padding-block: 112px; }
.section-soft { background: var(--cream); }
.section-dark { color: var(--white); background: var(--navy-900); }
.section-head { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 70px; align-items: end; margin-bottom: 52px; }
.section-head h2 { max-width: 760px; margin-bottom: 0; }
.section-head > p { margin-bottom: 3px; color: var(--muted); }
.section-dark .section-intro, .section-dark p { color: var(--muted-dark); }
.compact-head { margin-bottom: 44px; }
.centered-head { display: block; max-width: 780px; margin-inline: auto; text-align: center; }
.centered-head > p { max-width: 650px; margin: 18px auto 0; }

.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card { min-height: 285px; display: flex; flex-direction: column; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.solution-card:hover { transform: translateY(-5px); border-color: #a9bcf3; box-shadow: 0 20px 55px rgba(12,33,64,0.09); }
.solution-card .card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: auto; color: var(--blue); background: #edf2ff; border-radius: 13px; font-size: 1.25rem; }
.solution-card h3 { margin: 28px 0 10px; }
.solution-card p { margin-bottom: 0; color: var(--muted); font-size: 0.88rem; }
.solution-card a { margin-top: 22px; color: var(--blue); font-size: 0.84rem; font-weight: 800; }
.solution-card .card-tag, .editorial-card .card-tag { margin: 0 0 10px; color: var(--cyan); font-size: 0.67rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.featured-card { color: var(--white); background: linear-gradient(145deg, var(--navy-800), #102a49); border-color: var(--navy-700); }
.featured-card .card-icon { color: var(--cyan); background: rgba(55,213,242,0.1); }
.featured-card p { color: #a9b8cb; }
.featured-card a { color: var(--cyan); }

.process-grid { display: grid; grid-template-columns: 0.83fr 1.17fr; gap: clamp(55px, 8vw, 105px); align-items: center; }
.process-media { position: relative; }
.process-media::after { content: ""; position: absolute; inset: 8% -8% -8% 15%; z-index: 0; background: var(--blue); opacity: 0.2; border-radius: 50%; filter: blur(70px); }
.process-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); }
.media-label { position: absolute; z-index: 2; left: -18px; bottom: 28px; display: flex; align-items: center; gap: 12px; padding: 14px 17px; background: rgba(7,17,31,0.92); border: 1px solid var(--line-dark); border-radius: 13px; box-shadow: 0 16px 50px rgba(0,0,0,0.36); }
.media-label strong, .media-label small { display: block; }
.media-label strong { font-size: 0.82rem; }
.media-label small { color: #8fa0b8; font-size: 0.68rem; }
.process-copy h2 { max-width: 680px; margin-bottom: 19px; }
.process-copy .section-intro { max-width: 620px; }
.steps { margin: 39px 0 0; padding: 0; list-style: none; }
.steps li { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 0 0 30px; }
.steps li:not(:last-child)::after { content: ""; position: absolute; top: 47px; bottom: 4px; left: 22px; width: 1px; background: linear-gradient(var(--cyan), transparent); }
.steps li > span { width: 46px; height: 46px; display: grid; place-items: center; color: var(--cyan); background: rgba(55,213,242,0.08); border: 1px solid rgba(55,213,242,0.22); border-radius: 50%; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; }
.steps h3 { margin: 3px 0 6px; font-size: 1rem; letter-spacing: -0.02em; }
.steps p { margin: 0; font-size: 0.86rem; }

.editorial-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 18px; }
.editorial-card { position: relative; min-height: 500px; overflow: hidden; color: var(--white); background: var(--navy-800); border-radius: var(--radius); }
.editorial-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,11,20,0.92), rgba(5,11,20,0.02) 66%); }
.editorial-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.editorial-card:hover img { transform: scale(1.025); }
.editorial-card > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px; }
.editorial-card h3 { margin-bottom: 9px; font-size: 1.42rem; }
.editorial-card p { margin-bottom: 0; color: #b8c3d3; font-size: 0.84rem; }
.editorial-card.large-card > div { padding: 36px; }
.editorial-card.large-card h3 { font-size: 1.8rem; }

.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.plan-card { position: relative; display: flex; flex-direction: column; padding: 29px 25px 25px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.plan-label { margin-bottom: 7px; color: var(--blue); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.plan-card h3 { margin-bottom: 14px; font-size: 1.34rem; }
.plan-summary { min-height: 64px; color: var(--muted); font-size: 0.82rem; }
.plan-card ul { flex: 1; margin: 19px 0 26px; padding: 18px 0 0; list-style: none; border-top: 1px solid var(--line); }
.plan-card li { position: relative; padding: 7px 0 7px 22px; color: #334157; font-size: 0.78rem; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.plan-card.recommended { color: var(--white); background: var(--navy-900); border-color: var(--blue); box-shadow: 0 22px 55px rgba(9,30,59,0.18); }
.recommended .plan-label { color: var(--cyan); }
.recommended .plan-summary, .recommended li { color: #aebcd0; }
.recommended ul { border-color: var(--line-dark); }
.recommended-badge { position: absolute; top: -13px; right: 18px; padding: 6px 11px; color: var(--navy-900); background: var(--cyan); border-radius: 999px; font-size: 0.63rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.source-note { max-width: 840px; margin: 26px auto 0; color: var(--muted); font-size: 0.7rem; text-align: center; }
.source-note a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.plan-note { display: flex; align-items: flex-start; gap: 14px; max-width: 800px; margin: 30px auto 0; padding: 18px 20px; color: #3f4e62; background: #e9eef6; border-radius: 14px; }
.plan-note > span { width: 26px; height: 26px; flex: 0 0 26px; display: grid; place-items: center; color: var(--white); background: var(--blue); border-radius: 50%; font-weight: 900; }
.plan-note p { margin: 1px 0 0; font-size: 0.81rem; }

.business-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(50px, 7vw, 90px); align-items: center; }
.business-copy > p:not(.section-kicker) { color: var(--muted); }
.business-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0; }
.business-points div { padding: 17px; background: var(--cream); border: 1px solid var(--line); border-radius: 13px; }
.business-points strong, .business-points span { display: block; }
.business-points strong { margin-bottom: 5px; font-size: 0.82rem; }
.business-points span { color: var(--muted); font-size: 0.73rem; }
.business-image { position: relative; margin: 0; }
.business-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 68%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.business-image figcaption { position: absolute; right: 20px; bottom: 20px; left: 20px; padding: 16px 18px; color: var(--white); background: rgba(7,17,31,0.88); border: 1px solid var(--line-dark); border-radius: 13px; backdrop-filter: blur(14px); }
.business-image figcaption strong, .business-image figcaption span { display: block; }
.business-image figcaption strong { font-size: 0.84rem; }
.business-image figcaption span { margin-top: 3px; color: #aab7ca; font-size: 0.71rem; }

.coverage-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.coverage-grid h2 { max-width: 700px; }
.location-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.location-pills span { padding: 10px 14px; color: #d8e4f5; background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: 999px; font-size: 0.77rem; font-weight: 700; }
.reviews-card { padding: 34px; background: linear-gradient(145deg, rgba(45,100,255,0.16), rgba(55,213,242,0.05)); border: 1px solid rgba(110,145,255,0.3); border-radius: var(--radius); }
.stars { margin-bottom: 18px; color: #ffd768; letter-spacing: 0.16em; }
.reviews-card h3 { font-size: 1.48rem; }
.reviews-card p { color: #aebbd0; font-size: 0.87rem; }
.reviews-card a { color: var(--cyan); font-size: 0.84rem; font-weight: 800; }

.faq-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(50px, 8vw, 105px); align-items: start; }
.faq-title { position: sticky; top: 122px; }
.faq-title p:not(.section-kicker) { color: var(--muted); }
.text-link { color: var(--blue); font-size: 0.86rem; font-weight: 800; }
.faq-list details { margin-bottom: 11px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.faq-list details[open] { border-color: #b8c7ed; box-shadow: 0 12px 35px rgba(17,44,82,0.05); }
.faq-list summary { position: relative; padding: 20px 54px 20px 21px; list-style: none; cursor: pointer; font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.95rem; font-weight: 700; line-height: 1.4; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 20px; color: var(--blue); font-size: 1.4rem; font-weight: 500; transform: translateY(-50%); transition: transform 0.2s ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 21px 21px; color: var(--muted); font-size: 0.84rem; }
.faq-list details p a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.final-cta { padding: 0 0 112px; }
.quote-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(38px, 6vw, 80px); padding: 58px 62px; color: var(--white); background: var(--navy-900); border-radius: var(--radius-lg); }
.quote-card::before { content: ""; position: absolute; top: -280px; left: -170px; width: 620px; height: 620px; background: var(--blue); opacity: 0.2; border-radius: 50%; filter: blur(90px); }
.quote-card > * { position: relative; z-index: 1; }
.quote-copy h2 { margin-bottom: 16px; font-size: clamp(2rem, 3.4vw, 3.2rem); }
.quote-copy > p:not(.section-kicker) { color: #a9b7cb; }
.quote-copy ul { margin: 28px 0 0; padding: 0; list-style: none; }
.quote-copy li { position: relative; margin: 12px 0; padding-left: 27px; color: #c8d3e3; font-size: 0.82rem; }
.quote-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 900; }
.quote-form { padding: 28px; color: var(--ink); background: var(--white); border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.24); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 7px; color: #24334a; font-size: 0.72rem; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; min-height: 46px; padding: 11px 12px; color: var(--ink); background: #f8faff; border: 1px solid #d5ddeb; border-radius: 10px; font: inherit; font-size: 0.8rem; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.quote-form textarea { min-height: 82px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(45,100,255,0.12); }
.full-field { margin: 16px 0; }
.quote-form .button { width: 100%; border: 0; cursor: pointer; }
.form-note { margin: 11px 0 0; color: var(--muted); font-size: 0.66rem; text-align: center; }
.form-note a { color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

.site-footer { color: #a7b5c9; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 70px; padding-block: 70px 48px; }
.footer-brand { margin-bottom: 20px; }
.footer-grid > div:first-child > p { max-width: 480px; }
.footer-grid h2 { margin: 5px 0 18px; color: var(--white); font-size: 0.83rem; letter-spacing: 0; }
.footer-grid a, .footer-grid p { display: block; margin-bottom: 8px; font-size: 0.78rem; }
.footer-grid a:hover { color: var(--cyan); }
.footer-grid .legal { margin-top: 18px; color: #6e7e95; font-size: 0.68rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 22px; border-top: 1px solid var(--line-dark); color: #718198; font-size: 0.69rem; }

.floating-wa { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: grid; grid-template-columns: 46px auto; align-items: center; gap: 11px; padding: 7px 17px 7px 7px; color: var(--white); background: linear-gradient(135deg, #25d366, #16ad55); border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; box-shadow: 0 18px 46px rgba(20,155,75,0.38), 0 3px 10px rgba(7,17,31,0.18); transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease; }
.floating-wa:hover { transform: translateY(-4px); filter: brightness(1.04); box-shadow: 0 22px 54px rgba(20,155,75,0.46), 0 4px 12px rgba(7,17,31,0.2); }
.floating-wa-icon { width: 46px; height: 46px; display: grid; place-items: center; color: #1fbe5f; background: var(--white); border-radius: 50%; box-shadow: 0 4px 13px rgba(6,72,32,0.18); }
.floating-wa-icon .whatsapp-icon { width: 27px; height: 27px; }
.floating-wa-copy { display: grid; gap: 2px; padding-right: 2px; text-align: left; line-height: 1.15; }
.floating-wa-copy small { color: rgba(255,255,255,0.84); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.01em; }
.floating-wa-copy strong { color: var(--white); font-size: 0.77rem; font-weight: 800; }

/* Páginas internas: contenido útil, legible y consistente con la portada. */
.page-hero { position: relative; overflow: hidden; padding-block: 78px 86px; color: var(--white); background: var(--navy-900); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: 0.13; background-image: linear-gradient(rgba(255,255,255,0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.11) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, #000, transparent 76%); }
.page-hero::after { content: ""; position: absolute; top: -310px; left: -220px; width: 760px; height: 760px; border-radius: 50%; background: rgba(45,100,255,0.35); filter: blur(120px); }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(42px, 7vw, 92px); align-items: center; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: #91a3bd; font-size: 0.74rem; font-weight: 700; }
.breadcrumb a:hover { color: var(--cyan); }
.page-hero h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(2.55rem, 5vw, 4.8rem); }
.page-lead { max-width: 720px; margin-bottom: 30px; color: #b5c2d4; font-size: clamp(1rem, 1.65vw, 1.18rem); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.page-hero-media { position: relative; margin: 0; }
.page-hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-lg); box-shadow: 0 34px 90px rgba(0,0,0,0.42); }
.page-hero-media figcaption { position: absolute; right: 16px; bottom: 16px; left: 16px; padding: 14px 16px; color: #dce8f7; background: rgba(7,17,31,0.88); border: 1px solid var(--line-dark); border-radius: 13px; font-size: 0.73rem; backdrop-filter: blur(14px); }
.page-section { padding-block: 88px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(42px, 7vw, 86px); align-items: start; }
.prose { max-width: 780px; }
.prose h2 { margin: 48px 0 18px; font-size: clamp(1.75rem, 3vw, 2.75rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 30px 0 10px; font-size: 1.22rem; }
.prose p, .prose li { color: var(--muted); }
.prose strong { color: var(--ink); }
.check-list { display: grid; gap: 12px; margin: 24px 0 32px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 16px 14px 48px; background: var(--cream); border: 1px solid var(--line); border-radius: 12px; }
.check-list li::before { content: "✓"; position: absolute; top: 14px; left: 17px; width: 22px; height: 22px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: 0.7rem; font-weight: 900; }
.info-panel { padding: 28px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); }
.info-panel h2 { margin-bottom: 17px; font-size: 1.25rem; }
.info-panel p { color: var(--muted); font-size: 0.82rem; }
.info-panel ul { display: grid; gap: 10px; margin: 20px 0 26px; padding: 0; list-style: none; }
.info-panel li { padding-bottom: 10px; color: #304056; border-bottom: 1px solid var(--line); font-size: 0.78rem; font-weight: 700; }
.info-panel .button { width: 100%; }
.source-box { margin-top: 30px; padding: 18px 20px; color: var(--muted); background: #f7f9fc; border-left: 4px solid var(--blue); border-radius: 10px; font-size: 0.78rem; }
.source-box a, .prose a { color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.service-links { padding-block: 76px; background: var(--cream); }
.service-links h2 { max-width: 760px; margin-bottom: 30px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { min-height: 190px; display: flex; flex-direction: column; padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.related-card:hover { transform: translateY(-4px); border-color: #a9bcf3; box-shadow: 0 18px 45px rgba(12,33,64,.08); }
.related-card span { margin-bottom: auto; color: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.related-card h3 { margin: 28px 0 8px; }
.related-card p { margin: 0; color: var(--muted); font-size: .8rem; }
.page-cta { padding-block: 76px; color: var(--white); background: linear-gradient(135deg, var(--navy-900), #102a49); }
.page-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.page-cta h2 { max-width: 760px; margin-bottom: 12px; font-size: clamp(1.9rem, 3.6vw, 3.2rem); }
.page-cta p { max-width: 700px; margin-bottom: 0; color: #aebdd1; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 35px; }
.contact-card { padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card h2 { margin-bottom: 10px; font-size: 1.12rem; }
.contact-card p { color: var(--muted); font-size: .8rem; }
.contact-card a { color: var(--blue); font-weight: 800; overflow-wrap: anywhere; }
.privacy-copy { max-width: 860px; }
.privacy-copy h2 { margin-top: 48px; font-size: clamp(1.55rem, 2.8vw, 2.45rem); }
.privacy-copy h3 { margin-top: 28px; font-size: 1.1rem; }
.privacy-copy p, .privacy-copy li { color: var(--muted); }
.privacy-copy a { color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-bottom-links a:hover { color: var(--cyan); }

@media (max-width: 1050px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 0.76rem; }
  .hero-grid { min-height: 650px; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .client-logos { grid-template-columns: repeat(4, 1fr); }
  .plan-summary { min-height: 0; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .hero-grid, .process-grid, .business-grid, .coverage-grid, .faq-layout, .quote-card { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 68px 86px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 680px; }
  .hero-visual img { aspect-ratio: 16 / 11; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-grid > div:first-child, .trust-grid > div:nth-child(3) { padding-left: 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .process-media { max-width: 620px; }
  .process-media img { aspect-ratio: 4 / 3; }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .editorial-card.large-card { grid-column: 1 / -1; }
  .business-image { max-width: 680px; }
  .business-image img { aspect-ratio: 16 / 10; }
  .faq-title { position: static; }
  .quote-card { gap: 30px; }
  .page-hero-grid, .content-grid { grid-template-columns: 1fr; }
  .page-hero-media { max-width: 680px; }
  .info-panel { position: static; }
  .page-cta-inner { display: grid; }
  .related-grid, .contact-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .notice-extra { display: none !important; }
  .header-inner { min-height: 68px; }
  .brand img { width: 38px; height: 38px; }
  .hero-grid { padding-block: 54px 72px; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.65rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-facts { gap: 12px; }
  .hero-facts li { padding-right: 0; }
  .hero-facts strong { font-size: 0.98rem; }
  .hero-facts span { font-size: 0.62rem; }
  .hero-visual img { aspect-ratio: 4 / 3; border-radius: 20px; }
  .hero-visual figcaption { right: 10px; bottom: 10px; min-width: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 85px; padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding-block: 78px; }
  .section-head { margin-bottom: 35px; }
  .solution-grid, .editorial-grid, .plans-grid, .business-points { grid-template-columns: 1fr; }
  .client-logos { grid-template-columns: repeat(2, 1fr); }
  .solution-card { min-height: 245px; padding: 24px; }
  .editorial-card, .editorial-card.large-card { grid-column: auto; min-height: 420px; }
  .editorial-card.large-card > div { padding: 28px; }
  .media-label { left: 10px; bottom: 10px; }
  .recommended { margin-top: 10px; }
  .reviews-card { padding: 27px; }
  .final-cta { padding-bottom: 78px; }
  .quote-card { padding: 38px 24px; border-radius: 22px; }
  .quote-form { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-block: 58px 38px; }
  .footer-bottom { display: grid; }
  .floating-wa { right: 16px; bottom: 16px; width: 58px; height: 58px; display: grid; grid-template-columns: 1fr; place-items: center; padding: 6px; }
  .floating-wa-copy { display: none; }
  .floating-wa-icon { width: 46px; height: 46px; }
  .page-hero { padding-block: 56px 64px; }
  .page-hero h1 { font-size: clamp(2.35rem, 12vw, 3.55rem); }
  .page-hero-actions { display: grid; }
  .page-hero-actions .button { width: 100%; }
  .page-section, .service-links, .page-cta { padding-block: 64px; }
  .related-grid, .contact-cards { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
