:root {
  --navy: #071a33;
  --navy-2: #0d2b52;
  --ink: #10223c;
  --muted: #647084;
  --line: #e6e0d6;
  --paper: #fbfaf7;
  --soft: #f4efe6;
  --card: #ffffff;
  --accent: #c96f21;
  --accent-2: #ef9a2f;
  --green: #1fc16b;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(11, 31, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgba(201, 111, 33, 0.08), transparent 30rem),
    linear-gradient(180deg, #fff 0%, var(--paper) 60%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
}

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

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

svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  margin: 18px 0 22px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

em,
h1 span,
h2 span {
  color: var(--accent);
  font-style: italic;
}

.wrap {
  width: min(var(--max), calc(100% - 52px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 82px;
  padding: 0 max(26px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(230, 224, 214, 0.86);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--navy);
  overflow: hidden;
}

.brand-mark i {
  position: absolute;
  width: 30px;
  height: 5px;
  border-radius: 999px;
  transform: rotate(-28deg);
}

.brand-mark i:nth-child(1) { top: 11px; left: 6px; background: #f07c22; }
.brand-mark i:nth-child(2) { top: 17px; left: 8px; background: #f6b21a; }
.brand-mark i:nth-child(3) { top: 23px; left: 7px; background: #21b96b; }
.brand-mark i:nth-child(4) { top: 29px; left: 9px; background: #1aa4df; }

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.brand-text small {
  margin-top: 4px;
  color: #647084;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 32px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: white;
  font-size: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(7, 26, 51, 0.2);
}

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

.btn-ghost {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

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

.btn-small {
  min-height: 48px;
  color: #fff;
  background: var(--navy);
}

.btn-full {
  width: 100%;
  margin-top: 16px;
}

.btn-whatsapp-header img {
  width: 18px;
  height: 18px;
}

.hero-pro {
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
}

.hero-pro::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75) 54%, rgba(244, 239, 230, 0.75)),
    radial-gradient(circle at 86% 20%, rgba(201, 111, 33, 0.18), transparent 34rem);
  content: "";
}

.hero-pro-grid,
.subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1fr);
  gap: 70px;
  align-items: center;
}

.eyebrow,
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.breadcrumb {
  display: block;
  margin-bottom: 22px;
  color: #8b93a1;
  text-transform: none;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 650px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-visual,
.subhero-image {
  position: relative;
}

.hero-visual img,
.subhero-image img,
.about-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  aspect-ratio: 1.15;
  object-fit: cover;
}

.floating-approval,
.floating-note {
  position: absolute;
  right: -18px;
  display: grid;
  gap: 5px;
  width: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-approval {
  top: 82px;
}

.floating-note {
  right: auto;
  bottom: 28px;
  left: -28px;
}

.floating-approval small,
.floating-note span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.floating-approval strong {
  color: var(--navy);
  font-size: 30px;
}

.floating-approval span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.stats-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stats-bar div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stats-bar div:last-child {
  border-right: 0;
}

.stats-bar span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--accent);
  background: #fff4e8;
}

.stats-bar strong {
  color: var(--navy);
  font-size: 24px;
}

.stats-bar small {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

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

.section-navy {
  color: #fff;
  background:
    radial-gradient(circle at 80% 12%, rgba(201, 111, 33, 0.22), transparent 28rem),
    var(--navy);
}

.section-navy p,
.section-navy .section-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-intro p {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}

.product-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-tile,
.process-card,
.value-card,
.testimonial-card,
.blog-card,
.side-card,
.content-block,
.decision-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(7, 26, 51, 0.06);
}

.product-tile {
  display: grid;
  gap: 16px;
  padding: 30px;
  min-height: 320px;
}

.tile-icon,
.round-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 111, 33, 0.28);
  border-radius: 50%;
  color: var(--accent);
  background: #fff7ef;
}

.product-tile p {
  margin-bottom: 0;
}

.product-tile ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.product-tile b,
.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent);
}

.process-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  position: relative;
  min-height: 210px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.process-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--accent-2);
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) 1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
}

.media-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 140px;
  padding: 18px;
  border-radius: 16px;
  color: #fff;
  background: var(--navy);
}

.media-badge strong {
  color: var(--accent-2);
  font-size: 44px;
}

.proof-list,
.feature-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.proof-list div,
.feature-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
}

.proof-list svg {
  color: var(--accent);
}

.proof-list b,
.feature-list strong {
  display: block;
  color: var(--ink);
}

.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.decision-card {
  padding: 36px;
}

.decision-card.dark {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.decision-card.dark p,
.decision-card.dark li {
  color: rgba(255, 255, 255, 0.76);
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.check-list svg {
  color: var(--accent);
}

.solutions-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.industry-grid div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.industry-grid svg {
  color: var(--accent);
}

.industry-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.comparison-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  border-radius: 20px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(201, 111, 33, 0.22), transparent 44%),
    var(--navy);
}

.comparison-card p {
  color: rgba(255, 255, 255, 0.72);
}

.comparison-card div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.comparison-card strong {
  color: var(--accent-2);
}

.section-logos {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.logo-marquee {
  overflow: hidden;
  margin-top: 24px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.logo-marquee img {
  width: 1366px;
  height: 72px;
  object-fit: contain;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.prequal-grid,
.contact-grid,
.faq-grid,
.final-cta-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.mini-benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mini-benefits span {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.lead-form {
  padding: 28px;
}

.form-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.form-head > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--accent);
  background: #fff3e7;
}

.form-head p {
  margin-bottom: 0;
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 700;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  padding: 14px;
  resize: vertical;
}

.field-wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 800;
}

.form-status[data-type="error"] {
  color: #b04320;
}

.testimonial-grid,
.blog-grid,
.values-grid,
.metric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 24px;
}

.testimonial-card img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: var(--accent-2);
  letter-spacing: 0.05em;
}

.testimonial-card p {
  margin: 10px 0;
  font-size: 14px;
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
}

.blog-card h3,
.blog-card p,
.blog-card a {
  margin-right: 24px;
  margin-left: 24px;
}

.blog-card h3 {
  margin-top: 22px;
}

.blog-card a {
  margin-bottom: 24px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.92), rgba(7, 26, 51, 0.82)),
    url("assets/media/pro-advisory.webp") center / cover;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta h2 {
  margin-bottom: 8px;
}

.subhero {
  padding: 76px 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(244, 239, 230, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(201, 111, 33, 0.12), transparent 32rem);
}

.subhero h1 {
  font-size: clamp(44px, 5.2vw, 72px);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: start;
}

.content-block {
  position: relative;
  margin-bottom: 22px;
  padding: 32px;
}

.content-block h2 {
  margin-top: 20px;
  font-size: clamp(30px, 3vw, 42px);
}

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

.stack-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--muted);
  font-weight: 700;
}

.stack-list svg {
  color: var(--accent);
}

.sticky-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 26px;
}

.side-stats {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.side-stats div {
  display: grid;
}

.side-stats strong {
  color: var(--accent);
  font-size: 26px;
}

.side-card ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 800;
}

.centered {
  max-width: 760px;
  text-align: center;
}

.centered-actions {
  justify-content: center;
}

.metric-cards {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.metric-cards div,
.value-card {
  padding: 24px;
}

.metric-cards div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.metric-cards strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
}

.value-card svg {
  color: var(--accent);
}

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

.contact-list > a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.contact-list svg {
  color: var(--accent);
}

.contact-list b {
  display: block;
}

.why-box {
  padding: 24px;
  border-radius: 16px;
  color: #fff;
  background: var(--navy);
}

.why-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  padding: 56px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}

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

.footer .brand-text strong,
.footer .brand-text small {
  color: #fff;
}

.footer h3 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #20d366;
  box-shadow: 0 16px 42px rgba(32, 211, 102, 0.34);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 18px;
  }

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

  .main-nav a {
    padding: 13px 0;
  }

  .menu-toggle {
    display: block;
  }

  .topbar .btn {
    display: none;
  }

  .hero-pro-grid,
  .subhero-grid,
  .about-grid,
  .solutions-panel,
  .decision-grid,
  .prequal-grid,
  .contact-grid,
  .faq-grid,
  .final-cta-grid,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-pro {
    padding-top: 48px;
  }

  .stats-bar,
  .product-matrix,
  .process-board,
  .testimonial-grid,
  .blog-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .brand-text strong {
    font-size: 15px;
  }

  .hero-pro,
  .subhero,
  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  h2 {
    font-size: 34px;
  }

  .hero-pro-grid,
  .subhero-grid {
    gap: 34px;
  }

  .floating-approval,
  .floating-note {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .stats-bar,
  .product-matrix,
  .process-board,
  .industry-grid,
  .testimonial-grid,
  .blog-grid,
  .values-grid,
  .metric-cards,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    margin-top: 32px;
  }

  .stats-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solutions-panel,
  .decision-card,
  .content-block,
  .lead-form {
    padding: 24px;
  }

  .hero-actions,
  .trust-row {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-row {
    gap: 14px;
    margin-top: 24px;
  }

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

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

/* Last-pass QA override for the home hero. Keep this at the end of the file. */
.hero-pro {
  padding-top: 72px;
}

.hero-pro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.8fr);
  gap: 58px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 4.1vw, 60px);
  line-height: 1.05;
}

.template-quote {
  width: min(100%, 560px);
  margin-top: 10px;
}

.quote-media {
  min-height: 470px;
}

.quote-card {
  gap: 8px;
  padding: 24px 26px;
}

.quote-foot {
  display: none;
}

.brand-logo {
  width: 198px;
}

@media (max-width: 980px) {
  .hero-pro-grid,
  .template-quote {
    grid-template-columns: minmax(0, 1fr);
  }

  .template-quote {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 152px;
  }

  .hero-pro {
    padding-top: 42px;
  }

  .quote-media {
    min-height: 160px;
  }
}

/* Absolute final override: clean photo, no floating cards, reference logo size. */
.brand-logo {
  width: 236px;
  height: auto;
}

.footer-brand .brand-logo {
  width: 236px;
}

.hero-showcase {
  position: relative;
  display: block;
  justify-self: end;
  width: min(100%, 540px);
  min-height: 0;
}

.showcase-image {
  position: relative;
  inset: auto;
  width: 100%;
  aspect-ratio: 1.18;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.23);
}

.showcase-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(6, 27, 52, 0.24));
  content: "";
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.showcase-caption,
.showcase-card,
.showcase-list,
.showcase-note {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-showcase {
    justify-self: stretch;
    width: 100%;
  }

  .showcase-image {
    aspect-ratio: 1.42;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 182px;
  }

  .showcase-image {
    aspect-ratio: 1.08;
    border-radius: 22px;
  }
}

/* Premium template pass: final cascade layer. */
body {
  background:
    radial-gradient(circle at 14% 8%, rgba(217, 120, 31, 0.08), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #f8f5ef 58%, #fff 100%);
}

.topbar {
  min-height: 104px;
  border-bottom: 1px solid rgba(6, 27, 52, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 48px rgba(6, 27, 52, 0.08);
}

.brand-logo {
  width: auto;
  height: 82px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: auto;
  height: 88px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
}

.main-nav {
  color: var(--navy);
}

.main-nav a {
  padding: 41px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.active::after {
  bottom: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.btn-small {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 16px 36px rgba(6, 27, 52, 0.18);
}

.hero-pro {
  color: var(--navy);
  padding: 74px 0 58px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 239, 0.94)),
    radial-gradient(circle at 78% 26%, rgba(217, 120, 31, 0.14), transparent 32rem);
}

.hero-pro::before {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.9)),
    linear-gradient(90deg, rgba(6, 27, 52, 0.04), transparent);
}

.hero-pro-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(470px, 0.86fr);
  gap: 68px;
}

.hero-pro .eyebrow {
  color: var(--accent);
}

.hero-copy h1 {
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.02;
}

.hero-copy > p {
  color: #596575;
  font-size: 18px;
}

.hero-pro .btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(6, 27, 52, 0.18);
}

.hero-pro .btn-ghost {
  color: var(--navy);
  border-color: rgba(6, 27, 52, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

.hero-pro .trust-row {
  color: #3b485a;
}

.hero-showcase {
  width: min(100%, 540px);
  padding: 12px;
  border: 1px solid rgba(6, 27, 52, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 28px 70px rgba(6, 27, 52, 0.12);
  animation: heroFloat 7s ease-in-out infinite;
}

.showcase-image {
  aspect-ratio: 1.2;
  border-color: rgba(6, 27, 52, 0.08);
  border-radius: 24px;
  box-shadow: none;
}

.showcase-caption,
.showcase-card,
.showcase-list,
.showcase-note {
  display: none !important;
}

.stats-bar {
  margin-top: 38px;
  border: 1px solid rgba(6, 27, 52, 0.08);
  box-shadow: 0 24px 64px rgba(6, 27, 52, 0.1);
}

.stats-bar div,
.product-tile,
.blog-card,
.testimonial-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.stats-bar div:hover {
  transform: translateY(-3px);
  background: #fff8ef;
}

.product-tile:hover,
.blog-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 120, 31, 0.28);
  box-shadow: 0 26px 64px rgba(6, 27, 52, 0.12);
}

.reveal {
  transform: translateY(26px) scale(0.985);
}

.reveal.is-visible {
  transform: translateY(0) scale(1);
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-showcase,
  .logo-marquee div {
    animation: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    min-height: 86px;
    background: rgba(255, 255, 255, 0.96);
  }

  .brand-logo {
    height: 68px;
  }

  .main-nav {
    color: var(--navy);
  }

  .hero-pro-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 78px;
  }

  .brand-logo {
    height: 60px;
  }

  .hero-pro {
    padding-top: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .hero-showcase {
    padding: 8px;
    border-radius: 24px;
  }

  .showcase-image {
    aspect-ratio: 1.08;
    border-radius: 20px;
  }
}

/* Premium template pass: final cascade layer. */
body {
  background:
    radial-gradient(circle at 14% 8%, rgba(217, 120, 31, 0.08), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #f8f5ef 58%, #fff 100%);
}

.topbar {
  min-height: 104px;
  border-bottom: 1px solid rgba(6, 27, 52, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 48px rgba(6, 27, 52, 0.08);
}

.brand-logo {
  width: auto;
  height: 82px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: auto;
  height: 88px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
}

.main-nav {
  color: var(--navy);
}

.main-nav a {
  padding: 41px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.active::after {
  bottom: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.btn-small {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 16px 36px rgba(6, 27, 52, 0.18);
}

.hero-pro {
  color: var(--navy);
  padding: 74px 0 58px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 239, 0.94)),
    radial-gradient(circle at 78% 26%, rgba(217, 120, 31, 0.14), transparent 32rem);
}

.hero-pro::before {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.9)),
    linear-gradient(90deg, rgba(6, 27, 52, 0.04), transparent);
}

.hero-pro-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(470px, 0.86fr);
  gap: 68px;
}

.hero-pro .eyebrow {
  color: var(--accent);
}

.hero-copy h1 {
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.02;
}

.hero-copy > p {
  color: #596575;
  font-size: 18px;
}

.hero-pro .btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(6, 27, 52, 0.18);
}

.hero-pro .btn-ghost {
  color: var(--navy);
  border-color: rgba(6, 27, 52, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

.hero-pro .trust-row {
  color: #3b485a;
}

.hero-showcase {
  width: min(100%, 540px);
  padding: 12px;
  border: 1px solid rgba(6, 27, 52, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 28px 70px rgba(6, 27, 52, 0.12);
  animation: heroFloat 7s ease-in-out infinite;
}

.showcase-image {
  aspect-ratio: 1.2;
  border-color: rgba(6, 27, 52, 0.08);
  border-radius: 24px;
  box-shadow: none;
}

.showcase-caption,
.showcase-card,
.showcase-list,
.showcase-note {
  display: none !important;
}

.stats-bar {
  margin-top: 38px;
  border: 1px solid rgba(6, 27, 52, 0.08);
  box-shadow: 0 24px 64px rgba(6, 27, 52, 0.1);
}

.stats-bar div,
.product-tile,
.blog-card,
.testimonial-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.stats-bar div:hover {
  transform: translateY(-3px);
  background: #fff8ef;
}

.product-tile:hover,
.blog-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 120, 31, 0.28);
  box-shadow: 0 26px 64px rgba(6, 27, 52, 0.12);
}

.reveal {
  transform: translateY(26px) scale(0.985);
}

.reveal.is-visible {
  transform: translateY(0) scale(1);
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-showcase,
  .logo-marquee div {
    animation: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    min-height: 86px;
    background: rgba(255, 255, 255, 0.96);
  }

  .brand-logo {
    height: 68px;
  }

  .main-nav {
    color: var(--navy);
  }

  .hero-pro-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 78px;
  }

  .brand-logo {
    height: 60px;
  }

  .hero-pro {
    padding-top: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .hero-showcase {
    padding: 8px;
    border-radius: 24px;
  }

  .showcase-image {
    aspect-ratio: 1.08;
    border-radius: 20px;
  }
}

/* Premium template pass: light corporate header, exact reference logo, cleaner hierarchy. */
body {
  background:
    radial-gradient(circle at 14% 8%, rgba(217, 120, 31, 0.08), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #f8f5ef 58%, #fff 100%);
}

.topbar {
  min-height: 104px;
  border-bottom: 1px solid rgba(6, 27, 52, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 48px rgba(6, 27, 52, 0.08);
}

.brand-logo {
  width: auto;
  height: 82px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: auto;
  height: 88px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
}

.main-nav {
  color: var(--navy);
}

.main-nav a {
  padding: 41px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.active::after {
  bottom: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.btn-small {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 16px 36px rgba(6, 27, 52, 0.18);
}

.hero-pro {
  color: var(--navy);
  padding: 74px 0 58px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 239, 0.94)),
    radial-gradient(circle at 78% 26%, rgba(217, 120, 31, 0.14), transparent 32rem);
}

.hero-pro::before {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.9)),
    linear-gradient(90deg, rgba(6, 27, 52, 0.04), transparent);
}

.hero-pro-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(470px, 0.86fr);
  gap: 68px;
}

.hero-pro .eyebrow {
  color: var(--accent);
}

.hero-copy h1 {
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.02;
}

.hero-copy > p {
  color: #596575;
  font-size: 18px;
}

.hero-pro .btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(6, 27, 52, 0.18);
}

.hero-pro .btn-ghost {
  color: var(--navy);
  border-color: rgba(6, 27, 52, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

.hero-pro .trust-row {
  color: #3b485a;
}

.hero-showcase {
  width: min(100%, 540px);
  padding: 12px;
  border: 1px solid rgba(6, 27, 52, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 28px 70px rgba(6, 27, 52, 0.12);
  animation: heroFloat 7s ease-in-out infinite;
}

.showcase-image {
  aspect-ratio: 1.2;
  border-color: rgba(6, 27, 52, 0.08);
  border-radius: 24px;
  box-shadow: none;
}

.showcase-image::after {
  background: linear-gradient(180deg, transparent 68%, rgba(6, 27, 52, 0.2));
}

.stats-bar {
  margin-top: 38px;
  border: 1px solid rgba(6, 27, 52, 0.08);
  box-shadow: 0 24px 64px rgba(6, 27, 52, 0.1);
}

.stats-bar div {
  transition: transform 0.24s ease, background 0.24s ease;
}

.stats-bar div:hover {
  transform: translateY(-3px);
  background: #fff8ef;
}

.product-tile,
.content-block,
.side-card,
.lead-form,
.blog-card,
.testimonial-card,
.decision-card,
.solutions-panel {
  box-shadow: 0 18px 46px rgba(6, 27, 52, 0.07);
}

.product-tile,
.blog-card,
.testimonial-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-tile:hover,
.blog-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 120, 31, 0.28);
  box-shadow: 0 26px 64px rgba(6, 27, 52, 0.12);
}

.reveal {
  transform: translateY(26px) scale(0.985);
}

.reveal.is-visible {
  transform: translateY(0) scale(1);
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-showcase,
  .logo-marquee div {
    animation: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    min-height: 86px;
    background: rgba(255, 255, 255, 0.96);
  }

  .brand-logo {
    height: 68px;
  }

  .main-nav {
    color: var(--navy);
  }

  .hero-pro-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 78px;
  }

  .brand-logo {
    height: 60px;
  }

  .hero-pro {
    padding-top: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .hero-showcase {
    padding: 8px;
    border-radius: 24px;
  }

  .showcase-image {
    aspect-ratio: 1.08;
    border-radius: 20px;
  }
}

/* Definitive clean hero and reference logo pass. */
.brand-logo {
  width: 236px;
  height: auto;
}

.footer-brand .brand-logo {
  width: 236px;
}

.hero-showcase {
  position: relative;
  display: block;
  justify-self: end;
  width: min(100%, 540px);
  min-height: 0;
}

.showcase-image {
  position: relative;
  inset: auto;
  width: 100%;
  aspect-ratio: 1.18;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.23);
}

.showcase-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(6, 27, 52, 0.24));
  content: "";
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.showcase-caption,
.showcase-card,
.showcase-list,
.showcase-note {
  display: none;
}

@media (max-width: 980px) {
  .hero-showcase {
    justify-self: stretch;
    width: 100%;
  }

  .showcase-image {
    aspect-ratio: 1.42;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 182px;
  }

  .showcase-image {
    aspect-ratio: 1.08;
    border-radius: 22px;
  }
}

/* Clean executive hero: no invasive floating cards over the photo. */
.hero-showcase {
  position: relative;
  justify-self: end;
  display: grid;
  gap: 18px;
  width: min(100%, 560px);
  min-height: 0;
}

.showcase-image {
  position: relative;
  inset: auto;
  overflow: hidden;
  aspect-ratio: 1.06;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.showcase-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 56%, rgba(6, 27, 52, 0.34)),
    linear-gradient(90deg, rgba(6, 27, 52, 0.16), transparent 46%);
  content: "";
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
}

.showcase-caption,
.showcase-card,
.showcase-list {
  display: none;
}

.showcase-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
}

.showcase-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.showcase-note svg {
  color: var(--accent-2);
}

.brand-logo {
  width: 232px;
}

.footer-brand .brand-logo {
  width: 232px;
}

@media (max-width: 980px) {
  .hero-showcase {
    justify-self: stretch;
    width: 100%;
  }

  .showcase-image {
    aspect-ratio: 1.35;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 178px;
  }

  .showcase-image {
    aspect-ratio: 1.08;
    border-radius: 22px;
  }

  .showcase-note {
    justify-content: flex-start;
    padding: 14px;
  }

  .showcase-note span {
    font-size: 12px;
  }
}

/* Professional hero showcase: replaces the old form-first hero. */
.hero-showcase {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
  min-height: 520px;
}

.showcase-image {
  position: absolute;
  inset: 0 40px 64px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.showcase-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(6, 27, 52, 0.76)),
    linear-gradient(90deg, rgba(6, 27, 52, 0.22), transparent 42%);
  content: "";
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
}

.showcase-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 330px;
  color: #fff;
}

.showcase-caption span,
.showcase-card small {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-caption strong {
  font-size: 22px;
  line-height: 1.12;
}

.showcase-card,
.showcase-list {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 58px rgba(5, 17, 34, 0.24);
  backdrop-filter: blur(14px);
}

.showcase-card.primary {
  top: 34px;
  right: 0;
  display: grid;
  gap: 7px;
  width: 220px;
  padding: 20px;
  border-radius: 18px;
}

.showcase-card.primary strong {
  color: var(--navy);
  font-size: 34px;
  letter-spacing: -0.04em;
}

.showcase-card.primary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.showcase-card.secondary {
  right: 18px;
  bottom: 118px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  width: 190px;
  padding: 16px;
  border-radius: 16px;
}

.showcase-card.secondary > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--accent);
  background: #fff1df;
}

.showcase-card.secondary strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
}

.showcase-card.secondary small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.showcase-list {
  right: 74px;
  bottom: 10px;
  display: grid;
  gap: 10px;
  width: 330px;
  padding: 18px 20px;
  border-radius: 18px;
}

.showcase-list b {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 14px;
}

.showcase-list svg {
  color: var(--accent);
}

@media (max-width: 980px) {
  .hero-showcase {
    justify-self: stretch;
    width: 100%;
    min-height: 580px;
  }

  .showcase-image {
    inset: 0 0 150px;
  }

  .showcase-card.primary {
    top: auto;
    right: 18px;
    bottom: 88px;
  }

  .showcase-card.secondary {
    right: auto;
    bottom: 88px;
    left: 18px;
  }

  .showcase-list {
    right: 18px;
    bottom: 0;
    left: 18px;
    width: auto;
  }
}

@media (max-width: 640px) {
  .hero-showcase {
    min-height: 520px;
  }

  .showcase-image {
    inset: 0 0 190px;
    border-radius: 22px;
  }

  .showcase-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .showcase-caption strong {
    font-size: 18px;
  }

  .showcase-card.primary,
  .showcase-card.secondary,
  .showcase-list {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
  }

  .showcase-card.primary {
    margin-top: 365px;
  }

  .showcase-card.secondary,
  .showcase-list {
    margin-top: 12px;
  }
}

/* Header and hero refinement after visual QA */
.brand-logo {
  width: 198px;
  height: auto;
  image-rendering: auto;
}

.footer-brand .brand-logo {
  width: 198px;
}

.hero-pro {
  padding: 72px 0 56px;
}

.hero-pro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 4.15vw, 62px);
  line-height: 1.05;
}

.hero-copy > p {
  max-width: 600px;
}

.template-quote {
  width: min(100%, 560px);
  margin-top: 10px;
  border-radius: 24px;
}

.quote-media {
  min-height: 470px;
}

.quote-media img {
  object-position: 48% center;
}

.quote-card {
  gap: 9px;
  padding: 24px 26px;
}

.quote-card-head h3 {
  max-width: 260px;
  font-size: 20px;
  line-height: 1.12;
}

.quote-card input,
.quote-card select {
  height: 41px;
}

.quote-card .btn {
  min-height: 48px;
  margin-top: 4px;
}

.quote-foot {
  display: none;
}

.stats-bar {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .brand-logo {
    width: 178px;
  }

  .hero-pro {
    padding-top: 54px;
  }

  .template-quote {
    width: 100%;
    margin-top: 0;
  }

  .quote-media {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 152px;
  }

  .hero-pro {
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(33px, 10vw, 40px);
  }

  .quote-media {
    min-height: 160px;
  }
}

/* Professional lending-template refresh */
:root {
  --navy: #061b34;
  --navy-2: #0a2a50;
  --ink: #0a213e;
  --paper: #f7f4ef;
  --soft: #eee7dc;
  --accent: #d9781f;
  --accent-2: #f09a2b;
}

.topbar {
  min-height: 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 27, 52, 0.94);
  box-shadow: 0 16px 45px rgba(6, 27, 52, 0.18);
}

.brand-logo {
  width: 184px;
  height: auto;
}

.main-nav {
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--accent-2);
}

.main-nav a.active::after {
  background: var(--accent-2);
}

.btn-small {
  color: var(--navy);
  background: linear-gradient(135deg, #f5a623, #d9781f);
  box-shadow: 0 14px 32px rgba(217, 120, 31, 0.28);
}

.menu-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

h1,
h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
}

em,
h1 span,
h2 span {
  color: var(--accent);
  font-style: normal;
}

.hero-pro {
  padding: 82px 0 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 27, 52, 0.96), rgba(8, 38, 72, 0.93)),
    radial-gradient(circle at 76% 18%, rgba(217, 120, 31, 0.25), transparent 36rem);
}

.hero-pro::before {
  background:
    linear-gradient(120deg, rgba(6, 27, 52, 0.98), rgba(6, 27, 52, 0.88) 48%, rgba(11, 48, 87, 0.88)),
    url("assets/media/pro-advisory.webp") right center / min(54vw, 760px) auto no-repeat;
  opacity: 1;
}

.hero-pro-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.9fr);
  min-height: 680px;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.02;
}

.hero-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.hero-pro .eyebrow {
  color: var(--accent-2);
}

.hero-pro .btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #f5a623, #d9781f);
  box-shadow: 0 18px 44px rgba(217, 120, 31, 0.3);
}

.hero-pro .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero-pro .trust-row {
  color: rgba(255, 255, 255, 0.86);
}

.application-shell {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.application-card {
  padding: 28px;
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.application-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.application-head > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--accent);
  background: #fff1df;
}

.application-head small {
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.application-head strong {
  display: block;
  font-size: 28px;
}

.approval-meter {
  height: 12px;
  margin: 26px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #e9edf2;
}

.approval-meter span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #24c77a, var(--accent-2));
  animation: meterGrow 1.1s ease both;
}

@keyframes meterGrow {
  from { width: 0; }
}

.application-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.application-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.application-stats small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.application-stats strong {
  color: var(--navy);
  font-size: 22px;
}

.application-options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.application-options b {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--navy);
  background: #f6f8fb;
}

.application-options svg {
  color: var(--accent);
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 24px;
}

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

.hero-photo-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 27, 52, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.stats-bar {
  margin-top: -28px;
  border: 0;
  box-shadow: 0 22px 70px rgba(6, 27, 52, 0.18);
}

.product-tile,
.decision-card,
.solutions-panel,
.lead-form,
.content-block,
.side-card,
.testimonial-card,
.blog-card {
  border-radius: 12px;
}

.section-intro {
  text-align: left;
  margin-left: 0;
}

.section-intro p {
  margin-left: 0;
}

.product-matrix {
  align-items: stretch;
}

.product-tile {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 120, 31, 0.35);
  box-shadow: 0 22px 54px rgba(6, 27, 52, 0.12);
}

.section-navy {
  background:
    linear-gradient(135deg, rgba(6, 27, 52, 0.98), rgba(8, 45, 82, 0.96)),
    radial-gradient(circle at 84% 10%, rgba(217, 120, 31, 0.25), transparent 34rem);
}

.footer-brand .brand-logo {
  width: 184px;
}

@media (max-width: 980px) {
  .topbar {
    background: rgba(6, 27, 52, 0.97);
  }

  .main-nav {
    color: rgba(255, 255, 255, 0.84);
  }

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

@media (max-width: 640px) {
  .brand-logo {
    width: 162px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .application-shell {
    padding: 12px;
    border-radius: 22px;
  }

  .application-card {
    padding: 22px;
  }

  .application-stats {
    grid-template-columns: 1fr;
  }
}

/* Cleaner finance-template structure */
.hero-pro {
  padding: 66px 0 64px;
}

.hero-pro::before {
  background:
    linear-gradient(115deg, rgba(6, 27, 52, 0.99) 0%, rgba(6, 27, 52, 0.96) 46%, rgba(10, 42, 80, 0.88) 100%),
    radial-gradient(circle at 74% 22%, rgba(217, 120, 31, 0.26), transparent 34rem);
}

.hero-pro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 0.95fr);
  min-height: 560px;
  gap: 48px;
}

.hero-copy h1 {
  max-width: 680px;
  font-size: clamp(46px, 4.8vw, 70px);
}

.template-quote {
  display: grid;
  grid-template-columns: 0.82fr 1.05fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.quote-media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.quote-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 27, 52, 0.78));
  content: "";
}

.quote-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-media span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 27, 52, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.quote-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 26px 30px;
  color: var(--ink);
  background: #fff;
}

.quote-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 2px;
}

.quote-card-head > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--accent);
  background: #fff1df;
}

.quote-card-head small {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card-head h3 {
  margin: 2px 0 0;
  font-size: 21px;
}

.quote-card label {
  gap: 6px;
  font-size: 12px;
}

.quote-card input,
.quote-card select {
  height: 42px;
}

.quote-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.quote-foot {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 9px;
  align-items: baseline;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.quote-foot b {
  color: var(--accent);
  font-size: 18px;
}

.quote-foot span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.stats-bar {
  transform: none;
  margin-top: 42px;
}

#productos.section {
  padding-top: 96px;
}

.product-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-tile {
  min-height: 360px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.product-tile:last-child {
  border-right: 0;
}

.product-tile:hover {
  transform: none;
  background: #fff9f2;
  box-shadow: none;
}

.process-board {
  position: relative;
}

.process-board::before {
  position: absolute;
  top: 48px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
}

.process-card {
  background: rgba(255, 255, 255, 0.06);
}

.about-grid {
  align-items: stretch;
}

.about-media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.solutions-panel {
  grid-template-columns: 1fr 380px;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 30px;
  max-width: none;
  align-items: end;
  margin-bottom: 44px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro p {
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .template-quote,
  .section-intro,
  .solutions-panel {
    grid-template-columns: 1fr;
  }

  .quote-media {
    min-height: 300px;
  }

  .stats-bar {
    transform: none;
    margin-top: 34px;
  }

  #productos.section {
    padding-top: 76px;
  }

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

  .product-tile,
  .product-tile:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-board::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-pro-grid {
    gap: 32px;
  }

  .template-quote {
    border-radius: 18px;
  }

  .quote-media {
    min-height: 220px;
  }

  .quote-card {
    padding: 22px;
  }

  .quote-two,
  .quote-foot {
    grid-template-columns: 1fr;
  }
}

/* Final layout polish: keep the professional template balanced on all pages. */
.hero-pro {
  padding: 58px 0 54px;
}

.hero-pro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.9fr);
  gap: 56px;
  min-height: auto;
}

.hero-copy h1 {
  max-width: 660px;
  font-size: clamp(44px, 4.45vw, 66px);
  line-height: 1.04;
}

.template-quote {
  justify-self: end;
  width: min(100%, 620px);
}

.quote-media {
  min-height: 540px;
}

.quote-card {
  padding: 28px;
}

.stats-bar {
  margin-top: 34px;
}

.subhero {
  padding: 62px 0;
}

.subhero-grid {
  gap: 56px;
}

.subhero h1 {
  max-width: 740px;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.05;
}

.subhero-image img,
.hero-photo-card img {
  aspect-ratio: 1.48;
  object-fit: cover;
}

.section {
  padding: 82px 0;
}

.final-cta {
  padding: 58px 0;
}

.final-cta-grid {
  align-items: center;
}

.blog-page {
  padding-top: 82px;
}

.contact-grid {
  align-items: start;
}

.contact-grid .lead-form {
  align-self: start;
}

@media (max-width: 980px) {
  .hero-pro-grid,
  .template-quote,
  .subhero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-pro-grid {
    gap: 42px;
  }

  .template-quote {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .quote-media {
    min-height: 320px;
  }

  .stats-bar {
    margin-top: 30px;
  }

  .about-media img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .topbar {
    min-height: 76px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand-logo {
    width: 148px;
  }

  .hero-pro {
    padding: 40px 0 48px;
  }

  .hero-copy h1 {
    width: auto;
    max-width: 100%;
    font-size: clamp(34px, 10.4vw, 42px);
    letter-spacing: -0.05em;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .template-quote {
    overflow: hidden;
    border-radius: 20px;
  }

  .quote-media {
    min-height: 170px;
  }

  .quote-card {
    gap: 8px;
    padding: 18px;
  }

  .quote-card-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-card-head > span {
    display: none;
  }

  .quote-card-head h3 {
    font-size: 19px;
  }

  .quote-card input,
  .quote-card select {
    height: 40px;
  }

  .quote-card .btn {
    min-height: 46px;
  }

  .quote-foot {
    display: none;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar div {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .stats-bar div:nth-child(2n) {
    border-right: 0;
  }

  .stats-bar div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .stats-bar div {
    padding: 20px;
  }

  .subhero {
    padding: 44px 0 52px;
  }

  .subhero h1 {
    font-size: clamp(34px, 10vw, 42px);
    letter-spacing: -0.05em;
  }

  .subhero-image img,
  .hero-photo-card img {
    aspect-ratio: 1.18;
  }

  .section {
    padding: 60px 0;
  }

  .section-intro {
    gap: 12px;
    margin-bottom: 28px;
  }

  .product-tile {
    min-height: auto;
  }

  .application-shell {
    padding: 10px;
  }

  .application-card {
    padding: 18px;
  }

  .application-options b {
    padding: 10px 12px;
  }

  .application-shell .hero-photo-card {
    display: none;
  }

  .about-media img {
    min-height: 0;
  }

  .final-cta {
    padding: 50px 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* Last-pass QA override for the home hero. Keep this at the end of the file. */
.hero-pro {
  padding-top: 72px;
}

.hero-pro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.8fr);
  gap: 58px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 4.1vw, 60px);
  line-height: 1.05;
}

.template-quote {
  width: min(100%, 560px);
  margin-top: 10px;
}

.quote-media {
  min-height: 470px;
}

.quote-card {
  gap: 8px;
  padding: 24px 26px;
}

.quote-foot {
  display: none;
}

.brand-logo {
  width: 198px;
}

@media (max-width: 980px) {
  .hero-pro-grid,
  .template-quote {
    grid-template-columns: minmax(0, 1fr);
  }

  .template-quote {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 152px;
  }

  .hero-pro {
    padding-top: 42px;
  }

  .quote-media {
    min-height: 160px;
  }
}
/* Absolute final override: clean photo, no floating cards, reference logo size. */
.brand-logo {
  width: 236px;
  height: auto;
}

.footer-brand .brand-logo {
  width: 236px;
}

.hero-showcase {
  position: relative;
  display: block;
  justify-self: end;
  width: min(100%, 540px);
  min-height: 0;
}

.showcase-image {
  position: relative;
  inset: auto;
  width: 100%;
  aspect-ratio: 1.18;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.23);
}

.showcase-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(6, 27, 52, 0.24));
  content: "";
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.showcase-caption,
.showcase-card,
.showcase-list,
.showcase-note {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-showcase {
    justify-self: stretch;
    width: 100%;
  }

  .showcase-image {
    aspect-ratio: 1.42;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 182px;
  }

  .showcase-image {
    aspect-ratio: 1.08;
    border-radius: 22px;
  }
}
