:root {
  color-scheme: light;
  --navy: #0f172a;
  --navy-2: #1e293b;
  --green: #10b981;
  --green-hover: #059669;
  --success: #16a34a;
  --warning: #f59e0b;
  --error: #dc2626;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --text: #1e293b;
  --muted: #64748b;
  --shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
  --soft-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  --radius: 28px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

button {
  border: 0;
}

address {
  font-style: normal;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 190px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.site-header .brand-logo {
  width: auto;
  height: 76px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header-phone {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--green-hover);
}

.header-whatsapp {
  min-height: 42px;
  padding-inline: 16px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.92rem;
}

.btn-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.28);
}

.btn-primary:hover {
  background: var(--green-hover);
}

.btn-secondary {
  color: var(--navy);
  background: #ffffff;
  border-color: var(--border);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 64px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 12%, rgba(16, 185, 129, 0.22), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, var(--navy) 0%, #111827 52%, var(--navy-2) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(560px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.status-line,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--green-hover);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25;
}

.status-line {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.eyebrow.dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 3.5vw, 60px);
  line-height: 1.04;
  font-weight: 800;
}

.hero-lede {
  max-width: 560px;
  margin: 0;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.hero-proof span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.command-center {
  width: 100%;
  min-width: 560px;
  max-width: 660px;
  justify-self: end;
}

.app-shell {
  display: grid;
  grid-template-columns: 156px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.app-rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: #020617;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 800;
}

.app-rail img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  border-radius: 0;
  object-fit: contain;
}

.app-rail span {
  padding: 10px 11px;
  border-radius: 14px;
}

.app-rail .active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.app-main-panel {
  min-width: 0;
  padding: 20px;
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.app-topbar,
.panel-heading,
.ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.app-topbar p,
.panel-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.app-topbar h2,
.panel-heading h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.15;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.app-topbar h2 {
  font-size: 1.4rem;
}

.app-topbar strong,
.panel-heading strong {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--green-hover);
  font-size: 0.76rem;
  font-weight: 800;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.kpi-grid article,
.chart-card,
.work-card,
.ticket-row {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #ffffff;
}

.kpi-grid article {
  min-height: 104px;
  padding: 14px;
}

.kpi-grid span {
  display: block;
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.kpi-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.kpi-grid .warning span {
  color: var(--warning);
}

.ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(210px, 0.9fr);
  gap: 12px;
  margin-top: 12px;
}

.chart-card,
.work-card {
  padding: 16px;
}

.chart-bars {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 11px;
  margin-top: 20px;
}

.chart-bars span {
  flex: 1;
  min-height: 24px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--green), rgba(16, 185, 129, 0.45));
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.work-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.work-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.work-card li span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
}

.ticket-row {
  align-items: center;
  margin-top: 12px;
  padding: 14px 16px;
}

.ticket-row strong,
.ticket-row span {
  display: block;
}

.ticket-row strong {
  color: var(--navy);
}

.ticket-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.ticket-row em {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fffbeb;
  color: var(--warning);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 800;
}

.signal-strip {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.signal-grid {
  min-height: 78px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.signal-grid span,
.service-tags li,
.form-trust span {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
}

.situation-section {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2,
.split-heading h2,
.audience h2,
.local-card h2,
.diagnostic-copy h2 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 800;
}

.section-heading p,
.split-heading > p,
.local-card p,
.diagnostic-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.platform {
  background: var(--bg);
}

.platform-grid,
.issue-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.platform-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.module-card,
.path-card,
.issue-card,
.timeline article,
.audience-list article,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.module-card,
.issue-card,
.timeline article {
  padding: 24px;
}

.module-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--bg);
  color: var(--navy);
}

.module-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-card h3,
.path-card h3,
.issue-card h3,
.timeline h3,
.audience-list h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
}

.module-card p,
.path-card p,
.issue-card p,
.timeline p,
.audience-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.path-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  min-width: 0;
}

.path-card .path-note {
  color: var(--text);
  font-weight: 700;
}

.path-card .btn {
  width: fit-content;
  margin-top: auto;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-card p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 600;
}

.offer-list li {
  position: relative;
  padding-left: 24px;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.offer-cta {
  width: fit-content;
  margin-top: auto;
}

.problems {
  background: #ffffff;
  border-block: 1px solid var(--border);
}

.issue-card span,
.timeline span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--green-hover);
  font-size: 1rem;
  font-weight: 800;
}

.method {
  background: var(--bg);
}

.audience {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 0%, rgba(16, 185, 129, 0.2), transparent 28%),
    var(--navy);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.audience h2 {
  color: #ffffff;
}

.audience-list {
  display: grid;
  gap: 16px;
}

.audience-list article {
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.audience-list h3 {
  color: #ffffff;
}

.audience-list p {
  color: #cbd5e1;
}

.local-seo {
  background: #ffffff;
}

.local-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.faq-section {
  background: var(--bg);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  box-shadow: none;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.diagnostic-section {
  padding: 96px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 8%, rgba(16, 185, 129, 0.2), transparent 26%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
  gap: 52px;
  align-items: start;
}

.diagnostic-copy h2 {
  color: #ffffff;
}

.diagnostic-copy p {
  color: #cbd5e1;
}

.value-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.value-list li {
  position: relative;
  padding-left: 30px;
  color: #f8fafc;
  font-weight: 700;
}

.value-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.form-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow);
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}

.form-header p {
  margin: 0 0 6px;
  color: var(--green-hover);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-header h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1.12;
}

.form-header span {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.field label span {
  color: var(--muted);
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  font-size: 0.98rem;
  line-height: 1.25;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--muted);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-submit {
  width: 100%;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.privacy-note {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
  font-size: 0.84rem;
}

.site-footer {
  padding: 56px 0 30px;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p,
.site-footer li,
.site-footer address {
  color: var(--muted);
}

.site-footer p {
  max-width: 420px;
  margin: 0;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 0.98rem;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--green-hover);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  margin-top: 34px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--navy);
  font-weight: 800;
}

.mobile-cta {
  display: none;
}

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

@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }

  .header-phone,
  .header-whatsapp {
    display: none;
  }

  .hero-grid,
  .split-heading,
  .audience-grid,
  .local-card,
  .diagnostic-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .command-center {
    max-width: 820px;
  }

  .command-center {
    min-width: 0;
    justify-self: stretch;
  }

  .platform-grid,
  .situation-grid,
  .issue-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 32px, var(--max));
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-logo {
    width: 164px;
  }

  .site-header .brand-logo {
    width: auto;
    height: 64px;
    max-width: 170px;
    object-fit: contain;
  }

  .nav-links {
    display: none;
  }

  .header-phone,
  .header-whatsapp {
    display: none;
  }

  .hero {
    padding: 66px 0 72px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .split-heading h2,
  .audience h2,
  .local-card h2,
  .diagnostic-copy h2 {
    font-size: 2.2rem;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-rail {
    display: none;
  }

  .kpi-grid,
  .ops-grid,
  .hero-proof,
  .situation-grid,
  .platform-grid,
  .issue-grid,
  .timeline,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic-section {
    padding: 72px 0;
  }

  .situation-grid {
    gap: 18px;
  }

  .path-card {
    width: 100%;
    padding: 24px;
  }

  .path-card .btn {
    width: 100%;
    min-height: 48px;
    padding: 13px 18px;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 800;
    text-align: center;
  }

  .mobile-cta a:last-child {
    color: #ffffff;
    background: var(--green);
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .btn-sm {
    display: none;
  }

  .brand-logo {
    width: 150px;
  }

  .site-header .brand-logo {
    width: auto;
    height: 62px;
    max-width: 160px;
    object-fit: contain;
  }

  .hero h1 {
    font-size: 2.36rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .offer-cta {
    width: 100%;
    padding-inline: 16px;
  }

  .path-card .btn {
    width: 100%;
  }

  .app-main-panel,
  .form-card,
  .local-card {
    padding: 20px;
  }

  .app-topbar,
  .panel-heading,
  .ticket-row,
  .form-header {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    min-height: 44px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 800;
  }

  .mobile-cta a:last-child {
    color: #ffffff;
    background: var(--green);
  }
}
