:root {
  --bg: #f4fbf6;
  --bg-soft: #eef8f1;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #122117;
  --text-soft: #506055;
  --line: rgba(18, 33, 23, 0.08);
  --line-strong: rgba(15, 157, 88, 0.18);
  --brand: #0f9d58;
  --brand-deep: #067344;
  --brand-glow: rgba(15, 157, 88, 0.18);
  --shadow: 0 24px 70px rgba(14, 46, 28, 0.08);
  --shadow-strong: 0 30px 80px rgba(14, 46, 28, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(29, 185, 84, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(15, 157, 88, 0.08), transparent 22%),
    radial-gradient(circle at 70% 12%, rgba(64, 196, 117, 0.12), transparent 26%),
    linear-gradient(180deg, #fcfffd 0%, var(--bg) 35%, #ffffff 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 999px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-tinted {
  background: linear-gradient(180deg, rgba(226, 247, 234, 0.42), rgba(255, 255, 255, 0.85));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-heading h2,
.hero-copy h1,
.legal-shell h1 {
  margin: 0.35rem 0 0.75rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  max-width: 12ch;
}

.section-heading h2,
.legal-shell h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-heading p,
.hero-subtext,
.legal-shell p,
.small-note {
  color: var(--text-soft);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 157, 88, 0.1);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.offer-badge,
.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f9d58, #1db954);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.glass-card,
.feature-card,
.pricing-card,
.pricing-sidecard,
.step-card,
.mini-feature,
.secondary-card,
.reason-card,
.testimonial-card,
.countdown-card,
.demo-strip,
.faq-item,
.legal-shell,
.trust-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.top-strip {
  position: relative;
  z-index: 11;
  background: linear-gradient(90deg, #093a23, #0f9d58 58%, #1db954);
  color: #fff;
  font-size: 0.82rem;
}

.top-strip-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.55rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 33, 23, 0.05);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #57cf82);
  box-shadow: 0 14px 30px rgba(15, 157, 88, 0.28);
  font-weight: 800;
}

.brand-mark-image {
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: 0 16px 34px rgba(7, 57, 34, 0.18);
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--text-soft);
}

.main-nav,
.nav-cta,
.hero-actions,
.microcopy-row,
.footer-links,
.final-cta-actions,
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.mobile-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.mobile-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-deep);
}

.main-nav a,
.footer-links a {
  color: var(--text-soft);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #1db954);
  box-shadow: 0 20px 40px rgba(15, 157, 88, 0.26);
}

.button-secondary,
.button-ghost {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line-strong);
}

.button-block {
  width: 100%;
}

.hero-section {
  overflow: clip;
  padding-top: 4rem;
}

.hero-grid,
.pricing-grid,
.footer-grid,
.final-cta-shell {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.hero-subtext {
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.15rem 0 0.3rem;
  padding: 0.8rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 157, 88, 0.12);
  box-shadow: 0 18px 40px rgba(17, 49, 29, 0.08);
  max-width: fit-content;
}

.hero-brandline p {
  margin: 0.15rem 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-logo-badge {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(14, 46, 28, 0.16);
}

.hero-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mini-stats {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 0.2rem;
}

.hero-mini-stats div {
  min-width: 110px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 33, 23, 0.06);
  box-shadow: 0 16px 36px rgba(14, 46, 28, 0.07);
}

.hero-mini-stats strong {
  display: block;
  font-size: 1.15rem;
}

.hero-mini-stats span {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.microcopy-row span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-proof article,
.metric-box,
.campaign-panel,
.chat-preview {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 33, 23, 0.07);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  animation: floatUp 6s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  inset: 10% 8% 15% 12%;
  background: radial-gradient(circle, rgba(31, 186, 88, 0.28), rgba(31, 186, 88, 0));
  filter: blur(18px);
  animation: pulseGlow 5.5s ease-in-out infinite;
}

.dashboard-card {
  position: relative;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 246, 0.92)),
    var(--surface);
  box-shadow: var(--shadow-strong);
}

.dashboard-topbar,
.dashboard-appbar,
.campaign-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.dashboard-topbar,
.dashboard-appbar {
  margin-bottom: 1.1rem;
}

.dashboard-appbar {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(18, 33, 23, 0.06);
}

.dashboard-appbar strong {
  color: var(--brand);
  font-size: 1rem;
}

.dashboard-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.84rem;
  justify-content: flex-end;
}

.dashboard-status,
.campaign-header span,
.testimonial-card span,
.legal-intro {
  color: var(--text-soft);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ff6f61; }
.dot-yellow { background: #ffcb48; }
.dot-green { background: #35c759; }

.metric-stack,
.bar-row,
.faq-list,
.legal-shell {
  display: grid;
  gap: 1rem;
}

.metric-highlight {
  background: linear-gradient(135deg, rgba(15, 157, 88, 0.96), rgba(26, 203, 108, 0.92));
  color: #fff;
}

.metric-highlight small,
.metric-highlight span {
  color: rgba(255, 255, 255, 0.82);
}

.metric-box strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1.1;
  margin-top: 0.25rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metric-grid-dashboard {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-wallet {
  border-left: 3px solid #12b95b;
}

.metric-box {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.metric-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(14, 46, 28, 0.08);
}

.campaign-panel,
.chat-preview,
.trust-grid article,
.feature-card,
.pricing-card,
.pricing-sidecard,
.step-card,
.mini-feature,
.secondary-card,
.reason-card,
.testimonial-card,
.countdown-card,
.demo-strip,
.faq-item,
.legal-shell {
  border-radius: var(--radius-lg);
}

.bar-item {
  display: grid;
  gap: 0.4rem;
}

.bar-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(18, 33, 23, 0.08);
  overflow: hidden;
}

.bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #4fd37f);
}

.chat-bubble {
  max-width: 80%;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  font-size: 0.95rem;
}

.bubble-brand {
  background: rgba(15, 157, 88, 0.14);
  margin-left: auto;
}

.bubble-soft {
  background: rgba(18, 33, 23, 0.06);
}

.trust-strip { padding: 0 0 1rem; }

.dashboard-panels {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
}

.send-panel,
.recent-panel {
  min-height: 360px;
}

.form-mockup {
  display: grid;
  gap: 0.8rem;
}

.mock-field {
  display: grid;
  gap: 0.3rem;
}

.mock-field label,
.table-head {
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-input,
.mock-button,
.table-row {
  border-radius: 12px;
}

.mock-input {
  min-height: 42px;
  padding: 0.8rem 0.9rem;
  background: rgba(244, 247, 250, 0.95);
  border: 1px solid rgba(18, 33, 23, 0.08);
  color: #7a8692;
}

.mock-textarea {
  min-height: 72px;
}

.mock-tabs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.mock-tab {
  padding: 0.45rem 0.8rem;
  border-radius: 9px;
  background: rgba(244, 247, 250, 0.95);
  color: var(--text-soft);
  font-size: 0.8rem;
}

.mock-tab.active {
  background: rgba(15, 157, 88, 0.14);
  color: var(--brand-deep);
  font-weight: 700;
}

.mock-button {
  display: grid;
  place-items: center;
  min-height: 48px;
  background: linear-gradient(135deg, var(--brand), #1db954);
  color: #fff;
  font-weight: 700;
}

.table-mock {
  display: grid;
  gap: 0.8rem;
}

.table-row {
  display: grid;
  grid-template-columns: 0.6fr 1fr 0.9fr 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0.5rem;
}

.table-empty {
  display: grid;
  place-items: center;
  min-height: 248px;
  border-radius: 16px;
  background: rgba(250, 251, 252, 0.9);
  color: #9a7a46;
  border: 1px dashed rgba(18, 33, 23, 0.1);
}

.trust-grid,
.feature-showcase,
.steps-grid,
.features-grid,
.secondary-grid,
.reasons-grid,
.lead-grid,
.testimonial-grid {
  display: grid;
  gap: 1.15rem;
}

.trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-showcase { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.features-grid,
.reasons-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.secondary-grid,
.testimonial-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lead-grid { grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr); align-items: start; }

.trust-grid article {
  padding: 1.25rem;
  text-align: center;
}

.trust-grid strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.feature-card,
.step-card,
.mini-feature,
.secondary-card,
.reason-card,
.testimonial-card {
  padding: 1.5rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.step-card:hover,
.mini-feature:hover,
.secondary-card:hover,
.reason-card:hover,
.testimonial-card:hover,
.pricing-card:hover,
.pricing-sidecard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(15, 157, 88, 0.16);
}

.feature-card h3,
.pricing-card h3,
.pricing-sidecard h3,
.step-card h3,
.secondary-card h3,
.reason-card h3 {
  margin-top: 0;
}

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

.pricing-card,
.pricing-sidecard {
  padding: 1.7rem;
}

.pricing-card-featured {
  position: relative;
  border-color: rgba(15, 157, 88, 0.22);
}

.price-line {
  display: flex;
  align-items: end;
  gap: 0.45rem;
  margin: 1rem 0 0.7rem;
}

.price-line strong {
  font-size: 2.35rem;
  line-height: 1;
}

.list-clean,
.legal-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.pricing-toggle {
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.toggle-button {
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-weight: 700;
}

.toggle-button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #1db954);
}

.countdown-card {
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
}

.step-number {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 157, 88, 0.12);
  color: var(--brand-deep);
  font-weight: 800;
}

.demo-strip,
.final-cta-shell,
.footer-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 1.7rem;
}

.testimonial-card p { margin-top: 0; }

.faq-item { padding: 1.1rem 1.25rem; }

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-item p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.lead-copy {
  margin-bottom: 0;
  max-width: 560px;
}

.lead-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  max-width: 520px;
  justify-self: end;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 33, 23, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.82rem 0.95rem;
  color: var(--text);
}

.lead-form textarea {
  resize: vertical;
}

.admin-shell {
  display: grid;
  gap: 1.5rem;
}

.admin-login,
.admin-table-wrap {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.admin-login {
  max-width: 560px;
  margin: 0 auto;
}

.admin-form {
  max-width: none;
  justify-self: stretch;
}

.admin-header-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.admin-table {
  display: grid;
  gap: 0.75rem;
}

.admin-table-row {
  display: grid;
  grid-template-columns: 0.4fr 0.8fr 0.9fr 0.8fr 1fr 0.8fr 1.2fr 0.9fr;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 33, 23, 0.06);
  align-items: start;
}

.admin-table-head {
  background: rgba(15, 157, 88, 0.08);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(15, 157, 88, 0.12);
  color: var(--brand-deep);
}

.form-status.is-error {
  background: rgba(199, 67, 67, 0.12);
  color: #8f1f1f;
}

.final-cta { padding-bottom: 6rem; }

.final-cta-shell {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(15, 157, 88, 0.12), rgba(255, 255, 255, 0.9));
  border: 1px solid var(--line-strong);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(18, 33, 23, 0.06);
}

.footer-grid { gap: 1rem; }
.footer-copy { color: var(--text-soft); }
.footer-copy p { margin: 0; }

.contact-line {
  margin-top: 1rem;
  color: var(--text-soft);
}

@keyframes floatUp {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0%,
  100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #11a64c, #23d366);
  box-shadow: 0 18px 36px rgba(17, 166, 76, 0.3);
}

.whatsapp-float::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
}

.legal-page {
  background: linear-gradient(180deg, #fcfffd 0%, #f5fbf7 100%);
}

.legal-header { position: static; }

.legal-shell {
  padding: 2rem;
  max-width: 920px;
}

.legal-section + .legal-section { margin-top: 1rem; }

@media (max-width: 1080px) {
  .main-nav,
  .nav-cta .button-ghost { display: none; }

  .hero-grid,
  .pricing-grid,
  .feature-showcase,
  .secondary-grid,
  .testimonial-grid,
  .steps-grid,
  .features-grid,
  .reasons-grid,
  .lead-grid,
  .trust-grid,
  .dashboard-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid-dashboard {
    grid-template-columns: 1fr;
  }

  .top-strip-shell {
    justify-content: center;
  }

  .admin-table-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section { padding: 4.25rem 0; }

  .nav-shell,
  .row-heading,
  .demo-strip,
  .final-cta-shell,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-grid,
  .pricing-grid,
  .feature-showcase,
  .secondary-grid,
  .testimonial-grid,
  .steps-grid,
  .features-grid,
  .reasons-grid,
  .lead-grid,
  .trust-grid,
  .dashboard-panels,
  .hero-proof,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-section { padding-top: 2.25rem; }
  .hero-visual { min-height: auto; }

  .site-header {
    padding: 0.85rem 0;
  }

  .nav-shell {
    position: relative;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong,
  .brand-text small,
  .hero-copy,
  .hero-subtext,
  .hero-proof article,
  .feature-card,
  .secondary-card,
  .reason-card,
  .testimonial-card,
  .pricing-card,
  .pricing-sidecard,
  .mini-feature,
  .step-card,
  .lead-form,
  .contact-line,
  .dashboard-card,
  .admin-table-row {
    word-break: break-word;
  }

  .brand-text small {
    font-size: 0.74rem;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .nav-cta {
    display: grid;
    gap: 0.8rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 33, 23, 0.08);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 22px 50px rgba(14, 46, 28, 0.12);
  }

  .site-header.is-open .main-nav {
    margin-top: 0.9rem;
  }

  .main-nav a {
    padding: 0.2rem 0;
  }

  .site-header.is-open .nav-cta {
    margin-top: 0.8rem;
  }

  .hero-brandline {
    width: 100%;
    max-width: none;
  }

  .admin-header-row,
  .admin-stats {
    grid-template-columns: 1fr;
    display: grid;
  }

  .admin-table-row {
    grid-template-columns: 1fr;
  }

  .top-strip {
    display: none;
  }

  .button,
  .nav-cta .button-primary,
  .hero-actions .button,
  .final-cta-actions .button {
    width: 100%;
  }

  .nav-cta,
  .hero-actions,
  .final-cta-actions {
    width: 100%;
  }

  .dashboard-nav {
    justify-content: flex-start;
  }

  .dashboard-card,
  .lead-form,
  .admin-login,
  .admin-table-wrap,
  .legal-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .whatsapp-float {
    left: 1rem;
    justify-content: center;
  }

  .legal-shell { padding: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
