:root {
  --bg: #fcfaf7;
  --bg-soft: #f4f0eb;
  --surface: #ffffff;
  --surface-soft: #f8f6f2;
  --text: #2d2925;
  --muted: #746b61;
  --line: #e2ddd6;
  --primary: #fe6e00;
  --primary-strong: #d95c00;
  --primary-soft: #fff0df;
  --dark: #211c18;
  --success: #167a3d;
  --shadow: 0 24px 70px rgba(45, 41, 37, 0.10);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-shell .container {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 247, 0.94);
  border-bottom: 1px solid rgba(226, 221, 214, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  padding: 10px 12px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--primary-soft);
  color: var(--primary-strong);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
}

.menu-toggle svg {
  margin: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 750;
  padding: 0 18px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}

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

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: #c9bfb4;
  background: #fffaf4;
}

.btn-whatsapp {
  background: #1f7d47;
  color: #fff;
}

.hero {
  padding: 54px 0 38px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  font-weight: 850;
}

.hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.17rem;
}

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

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

.proof-item {
  border-left: 3px solid var(--primary);
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.proof-item strong {
  display: block;
  font-size: 1.05rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.hero-card-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  box-shadow: 0 14px 45px rgba(33, 28, 24, 0.16);
}

.hero-card-panel strong {
  display: block;
  font-size: 1rem;
}

.hero-card-panel span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 68px 0;
}

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

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark .section-intro p,
.section-dark .muted,
.section-dark .feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-intro h2,
.page-section h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.section-intro p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.solution-card,
.blog-card,
.contact-panel,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}

.feature-card h3,
.solution-card h3,
.blog-card h3,
.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.feature-card p,
.solution-card p,
.blog-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
}

.icon-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary-strong);
}

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

.solution-card {
  min-height: 100%;
}

.solution-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.solution-card li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--primary);
}

.split {
  display: grid;
  align-items: center;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
}

.check-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 850;
}

.blog-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
}

.blog-card .category {
  color: var(--primary-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.blog-card a {
  margin-top: auto;
  color: var(--primary-strong);
  font-weight: 800;
}

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

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-line {
  display: flex;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

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

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

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

.field label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8d0c7;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(254, 110, 0, 0.16);
  outline: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  display: none;
  border: 1px solid #b7dfc4;
  border-radius: var(--radius);
  background: #eefaf1;
  color: #145c30;
  padding: 12px;
}

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

.page-hero {
  padding: 64px 0 40px;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.page-section {
  padding: 42px 0;
}

.value-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article {
  width: min(100% - 32px, 780px);
  margin: 0 auto;
  padding: 54px 0 72px;
}

.article h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.08;
}

.article-meta {
  margin: 16px 0 32px;
  color: var(--muted);
}

.article h2 {
  margin-top: 36px;
  font-size: 1.65rem;
}

.article p,
.article li {
  color: #4f4740;
  font-size: 1.06rem;
}

.article a {
  color: var(--primary-strong);
  font-weight: 800;
}

.site-footer {
  background: #17130f;
  color: #fff;
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.65fr));
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 12px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.legal-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.muted {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .section-intro {
    display: grid;
  }

  .feature-grid,
  .blog-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell .container {
    width: calc(100% - 24px);
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand span {
    font-size: 0.78rem;
  }

  .hero-proof,
  .feature-grid,
  .solutions-grid,
  .blog-grid,
  .value-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 340px;
  }

  .section {
    padding: 46px 0;
  }

  .legal-bar {
    display: grid;
  }
}

/* Reference-style Home, matching the approved full-page visual. */
.reference-home {
  --bg: #ffffff;
  --bg-soft: #fbfaf8;
  --surface: #ffffff;
  --text: #080a24;
  --muted: #5e6072;
  --line: #e5e2dc;
  --primary: #c27a00;
  --primary-strong: #b36d00;
  --primary-soft: #fff7ea;
  --shadow: 0 16px 40px rgba(17, 20, 42, 0.08);
  background: #fff;
  color: var(--text);
}

.reference-home .site-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e9e6df;
  box-shadow: 0 2px 10px rgba(17, 20, 42, 0.03);
}

.reference-home .nav {
  min-height: 70px;
}

.brand-wordmark {
  gap: 0;
}

.brand-wordmark img {
  width: 76px;
  height: 58px;
  object-fit: contain;
  border-radius: 0;
}

.reference-home .nav-links {
  gap: 34px;
}

.reference-home .nav-links a {
  padding: 8px 0;
  color: #090b25;
  font-size: 0.88rem;
  font-weight: 700;
}

.reference-home .nav-links a:hover,
.reference-home .nav-links a[aria-current="page"] {
  background: transparent;
  color: var(--primary-strong);
}

.reference-home .btn {
  min-height: 44px;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 800;
}

.reference-home .btn-primary {
  background: linear-gradient(180deg, #d28a06 0%, #bd7300 100%);
  border-color: #b66f00;
  color: #fff;
  box-shadow: 0 8px 18px rgba(194, 122, 0, 0.18);
}

.reference-home .btn-secondary {
  background: #fff;
  border-color: var(--primary-strong);
  color: var(--primary-strong);
}

.btn-wa {
  min-width: 220px;
}

.btn-whatsapp-brand {
  border-color: #1fb85d;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp-brand:hover {
  border-color: #1daa55;
  background: #1fb85d;
  color: #fff;
}

.wa-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ref-hero {
  overflow: hidden;
  min-height: 0;
  border-bottom: 1px solid #ece8df;
  background: linear-gradient(90deg, #fff 0%, #fff 49%, #f6f4f0 49%, #fff 100%);
}

.ref-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: stretch;
  min-height: 460px;
}

.ref-hero-copy {
  min-width: 0;
  padding: 38px 44px 30px 0;
}

.ref-hero-copy h1 {
  max-width: 610px;
  margin: 0;
  color: #070921;
  font-size: clamp(2.05rem, 3.52vw, 3.25rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 560px;
  margin: 16px 0 0;
  color: #1e2438;
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero-plan-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 100%;
  margin-top: 18px;
}

.hero-plan {
  display: grid;
  gap: 5px;
  min-width: 0;
  min-height: 94px;
  border: 1px solid #e5dfd4;
  border-radius: 6px;
  padding: 14px 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 20, 42, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-plan:hover {
  border-color: rgba(194, 122, 0, 0.55);
  box-shadow: 0 14px 30px rgba(17, 20, 42, 0.09);
  transform: translateY(-1px);
}

.hero-plan strong {
  color: #080a24;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.15;
}

.hero-plan span {
  color: #4d5268;
  font-size: 0.8rem;
  line-height: 1.4;
}

.hero-plan.is-pro {
  border-left: 4px solid #c27a00;
}

.hero-plan.is-simple {
  border-left: 4px solid #2478d8;
}

.hero-benefits {
  display: grid;
  gap: 8px;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li,
.support-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: start;
}

.hero-benefits p,
.support-list p {
  margin: 0;
  color: #0f132b;
  font-size: 0.8rem;
  line-height: 1.42;
}

.line-icon,
.feature-icon {
  display: inline-grid;
  color: var(--primary-strong);
  place-items: center;
}

.line-icon svg,
.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ref-hero .hero-actions {
  flex-wrap: wrap;
  margin-top: 18px;
}

.ref-hero .btn {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.86rem;
}

.ref-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  margin-right: 0;
}

.ref-hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 150px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.88) 28%, rgba(255,255,255,0.34) 62%, rgba(255,255,255,0) 100%);
}

.ref-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.ref-section {
  padding: 42px 0;
}

.ref-section h2,
.contact-light h2 {
  margin: 0;
  color: #080a24;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 850;
  line-height: 1.15;
}

.ref-features {
  background: #fff;
  text-align: center;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.feature-strip article {
  padding: 0 10px;
}

.feature-strip .feature-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
}

.feature-strip .feature-icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.55;
}

.feature-strip h3 {
  margin: 0 0 9px;
  color: #080a24;
  font-size: 1rem;
  font-weight: 850;
}

.feature-strip p {
  margin: 0 auto;
  max-width: 160px;
  color: #40445a;
  font-size: 0.92rem;
  line-height: 1.6;
}

.center-title {
  text-align: center;
}

.solution-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}

.solution-showcase-card {
  display: grid;
  grid-template-columns: 44% 56%;
  overflow: hidden;
  min-height: 295px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 20, 42, 0.04);
}

.solution-showcase-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-showcase-card > div {
  padding: 32px 30px 26px;
}

.partner-logo {
  width: 158px;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.simplificado-logo {
  margin-bottom: 18px;
  color: #2478d8;
  font-size: 1.85rem;
  font-weight: 850;
  line-height: 1;
}

.solution-showcase-card p {
  margin: 0;
  color: #22263b;
  font-size: 0.98rem;
  line-height: 1.6;
}

.solution-showcase-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
}

.solution-showcase-card li {
  color: #1d2235;
  font-size: 0.92rem;
}

.solution-showcase-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--primary-strong);
  font-weight: 850;
}

.solution-showcase-card a,
.blog-head a,
.blog-preview-grid a {
  color: var(--primary-strong);
  font-weight: 850;
}

.support-section {
  background: #fff;
}

.support-grid {
  display: grid;
  grid-template-columns: 41% 1fr 190px;
  gap: 38px;
  align-items: center;
}

.support-photo {
  width: 100%;
  min-height: 270px;
  object-fit: cover;
  border-radius: 4px;
}

.support-copy h2 {
  max-width: 410px;
  margin-bottom: 22px;
}

.support-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list p {
  font-size: 0.9rem;
}

.support-numbers {
  display: grid;
  gap: 32px;
}

.support-numbers p {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  color: #080a24;
}

.support-numbers strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.support-numbers span {
  color: #35394d;
  font-size: 0.88rem;
}

.blog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-preview-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fffdf9 100%);
  box-shadow: 0 18px 42px rgba(17, 20, 42, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.blog-preview-grid article:hover {
  border-color: #dcc27c;
  box-shadow: 0 24px 58px rgba(17, 20, 42, 0.11);
  transform: translateY(-3px);
}

.blog-preview-grid img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  background: #f4f0eb;
}

.blog-preview-grid article > *:not(img) {
  margin-right: 22px;
  margin-left: 22px;
}

.blog-preview-grid span {
  display: block;
  margin-top: 20px;
  color: #8f6500;
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-preview-grid h3 {
  margin-top: 11px;
  color: #080a24;
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.28;
}

.blog-preview-grid p {
  margin-top: 10px;
  color: #4b4f64;
  font-size: 0.95rem;
  line-height: 1.55;
}

.blog-preview-grid a {
  display: inline-block;
  margin-top: auto;
  margin-bottom: 24px;
  padding-top: 20px;
  color: #9a6500;
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-light {
  padding: 46px 0 34px;
  background: #fff;
}

.contact-light-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.contact-light p {
  max-width: 430px;
  color: #41465d;
  font-size: 0.98rem;
}

.btn-outline-wa {
  margin-top: 18px;
  min-width: 244px;
}

.compact-form {
  gap: 12px;
}

.compact-form input,
.compact-form textarea {
  width: 100%;
  min-height: 37px;
  border: 1px solid #d9d6cf;
  border-radius: 3px;
  padding: 9px 12px;
  color: #080a24;
  font-size: 0.9rem;
}

.compact-form textarea {
  min-height: 92px;
  resize: vertical;
}

.compact-form button {
  width: 100%;
  min-height: 38px;
}

.ref-footer {
  background: #f8f7f4;
  color: #080a24;
  padding: 30px 0 12px;
}

.ref-footer .footer-grid {
  grid-template-columns: 1.25fr 0.7fr 0.7fr 1fr;
  gap: 70px;
}

.ref-footer h4 {
  color: #080a24;
  font-size: 0.94rem;
}

.ref-footer p,
.ref-footer a {
  display: block;
  margin: 0 0 6px;
  color: #4a4e63;
  font-size: 0.88rem;
}

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

.footer-brand img {
  width: 86px;
  height: 70px;
  background: #fff;
}

.footer-copy {
  margin-top: 26px;
  color: #686c7c;
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 760px) {
  .reference-home .nav-links {
    gap: 0;
  }

  .btn-wa {
    min-width: 0;
  }

  .ref-hero {
    background: #fff;
  }

  .ref-hero-grid,
  .solution-showcase,
  .support-grid,
  .contact-light-grid {
    grid-template-columns: 1fr;
  }

  .ref-hero-copy {
    padding: 34px 0 20px;
  }

  .ref-hero-media {
    min-height: auto;
    margin-right: 0;
    border-radius: 6px;
    overflow: hidden;
  }

  .ref-hero-media::before {
    display: none;
  }

  .ref-hero-media img {
    min-height: 360px;
  }

  .hero-proof-card {
    right: 14px;
    bottom: 14px;
    max-width: min(280px, calc(100% - 28px));
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-numbers {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1180px) and (min-width: 761px) {
  .ref-hero-media {
    margin-right: 0;
  }
}

@media (max-width: 680px) {
  .brand-wordmark img {
    width: 66px;
    height: 52px;
  }

  .reference-home .nav-actions .btn {
    display: none;
  }

  .ref-hero-grid {
    min-height: 0;
  }

  .ref-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 10vw, 2.38rem);
    line-height: 1.04;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-plan-switch {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-plan {
    min-height: 0;
    padding: 12px 14px;
  }

  .hero-benefits {
    gap: 7px;
    margin-top: 16px;
  }

  .hero-benefits li,
  .support-list li {
    grid-template-columns: 30px 1fr;
  }

  .ref-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ref-hero .btn {
    width: 100%;
    justify-content: center;
    padding: 0 12px;
    white-space: normal;
    text-align: center;
  }

  .ref-hero-media img {
    min-height: 300px;
  }

  .feature-strip,
  .blog-preview-grid,
  .support-numbers,
  .form-row {
    grid-template-columns: 1fr;
  }

  .solution-showcase-card {
    grid-template-columns: 1fr;
  }

  .solution-showcase-card > img {
    height: 210px;
  }

  .ref-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.product-page {
  background: #fff;
}

.product-hero {
  padding: 64px 0 54px;
  background:
    radial-gradient(circle at 16% 10%, rgba(194, 122, 0, 0.12), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
}

.product-hero-grid,
.product-modules-grid,
.product-compare-grid,
.related-products-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.product-hero-grid {
  align-items: center;
}

.product-kicker {
  margin: 0 0 14px;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-hero h1 {
  margin: 0;
  max-width: 790px;
  color: #080a24;
  font-size: clamp(2.2rem, 5.1vw, 4.15rem);
  font-weight: 880;
  line-height: 1.02;
}

.product-bullets {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  max-width: 690px;
  padding: 0;
  list-style: none;
}

.product-bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: #38394c;
  font-weight: 650;
}

.product-bullets span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-hero-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  background: #f6f2ec;
}

.product-card-body {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.product-card-body span {
  color: var(--primary-strong);
  font-size: 0.88rem;
  font-weight: 850;
}

.product-card-body strong {
  color: #080a24;
  font-size: 1.18rem;
}

.product-card-body p {
  margin: 0;
  color: var(--muted);
}

.product-section {
  padding: 64px 0;
}

.product-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 830px;
}

.product-section h2 {
  margin: 0;
  color: #080a24;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
  font-weight: 850;
}

.product-section-head p,
.product-modules p,
.product-compare p,
.related-products p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.product-feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(17, 20, 42, 0.04);
}

.product-feature-grid h3,
.product-compare h3 {
  margin: 14px 0 8px;
  color: #080a24;
  font-size: 1.08rem;
  font-weight: 850;
}

.product-feature-grid p,
.product-compare li,
.product-faq p {
  margin: 0;
  color: var(--muted);
}

.product-modules {
  background: #17130f;
  color: #fff;
}

.product-modules h2,
.product-modules p {
  color: #fff;
}

.module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.module-list span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 760;
  padding: 10px 14px;
}

.product-compare {
  background: #fbfaf8;
}

.product-compare-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
}

.product-compare ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.faq-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}

.faq-grid summary {
  cursor: pointer;
  color: #080a24;
  font-weight: 850;
}

.faq-grid p {
  padding-top: 12px;
}

.related-products {
  background: #fbfaf8;
}

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

.related-products-grid a {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.related-products-grid a:hover {
  border-color: #d9b572;
  transform: translateY(-2px);
}

.related-products-grid span {
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 850;
}

.related-products-grid strong {
  color: #080a24;
  font-size: 1.14rem;
}

.related-products-grid small {
  color: var(--muted);
  font-size: 0.93rem;
}

.product-link-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #080a24;
  font-weight: 800;
  padding: 12px 14px;
}

.product-link-grid a:hover {
  border-color: #d9b572;
  color: var(--primary-strong);
}

@media (max-width: 900px) {
  .product-hero-grid,
  .product-modules-grid,
  .product-compare-grid,
  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .product-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-hero {
    padding: 44px 0 36px;
  }

  .product-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
    line-height: 1.08;
  }

  .product-hero-card img {
    height: 250px;
  }

  .product-section {
    padding: 46px 0;
  }

  .product-feature-grid {
    grid-template-columns: 1fr;
  }
}
