:root {
  --navy: #102746;
  --navy-deep: #0a1b34;
  --gold: #b67a22;
  --gold-light: #d8af6b;
  --cream: #fbf7ef;
  --paper: #fffdf9;
  --sand: #efe3d1;
  --ink: #1b2b3e;
  --muted: #68717b;
  --line: rgba(16, 39, 70, 0.14);
  --white: #ffffff;
  --green: #64733f;
  --orange: #cc6e2d;
  --rose: #a65369;
  --teal: #367d83;
  --shadow-sm: 0 10px 35px rgba(16, 39, 70, 0.08);
  --shadow-md: 0 22px 60px rgba(16, 39, 70, 0.15);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --container: 1200px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(182, 122, 34, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 96px 0;
}

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

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

.section-navy {
  color: var(--white);
  background: var(--navy);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

h4 {
  font-size: 1.18rem;
}

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}

p {
  margin: 0 0 18px;
}

.lead {
  max-width: 720px;
  color: #465465;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.section-navy .lead {
  color: rgba(255, 255, 255, 0.76);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #c3882d;
  box-shadow: 0 12px 26px rgba(182, 122, 34, 0.24);
}

.button-outline {
  border-color: rgba(182, 122, 34, 0.5);
  color: var(--gold);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--gold);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-small {
  min-height: 40px;
  padding: 9px 17px;
  font-size: 0.74rem;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(16, 39, 70, 0.08);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 15px;
}

.logo-slot {
  position: relative;
  display: grid;
  min-width: 112px;
  min-height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(182, 122, 34, 0.55);
  border-radius: 9px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.63rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.logo-slot.nume {
  min-width: 82px;
  color: var(--navy);
  border-color: rgba(16, 39, 70, 0.35);
}

.logo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--paper);
}

.brand-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a:not(.button) {
  position: relative;
  padding: 30px 0;
  color: #27384b;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--gold);
  content: "";
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.hero-carousel {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  background: #f1e9dc;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: grid;
  place-items: center;
  color: rgba(16, 39, 70, 0.6);
  background: linear-gradient(120deg, #f8eee0 0%, #eadac3 100%);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.88) 38%, rgba(251, 247, 239, 0.12) 68%, rgba(251, 247, 239, 0.03) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(52%, 650px);
  padding: 72px 0 96px;
}

.hero-content h1 {
  font-size: clamp(3.25rem, 6.4vw, 5.7rem);
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.hero-pillar {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.icon-circle {
  display: grid;
  width: 48px;
  height: 48px;
  margin-inline: auto;
  place-items: center;
  border: 1px solid rgba(182, 122, 34, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.6);
}

.carousel-controls {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carousel-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(16, 39, 70, 0.18);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 39, 70, 0.26);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 30px;
  border-radius: 99px;
  background: var(--gold);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.two-column.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.image-slot {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(182, 122, 34, 0.5);
  border-radius: var(--radius-lg);
  color: rgba(16, 39, 70, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(239, 227, 209, 0.8)),
    repeating-linear-gradient(45deg, transparent 0 15px, rgba(182, 122, 34, 0.05) 15px 16px);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.image-slot.ratio-portrait {
  aspect-ratio: 4 / 5;
}

.image-slot.ratio-landscape {
  aspect-ratio: 3 / 2;
}

.image-slot.ratio-wide {
  aspect-ratio: 16 / 9;
}

.image-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--cream);
}

.image-filename {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat {
  padding: 28px;
  background: var(--paper);
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: #536171;
  font-size: 0.88rem;
}

.pillars-band {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  color: var(--white);
  background: var(--navy);
}

.pillars-band::before,
.pillars-band::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(216, 175, 107, 0.18);
  border-radius: 50%;
  content: "";
}

.pillars-band::before {
  top: -150px;
  left: -90px;
}

.pillars-band::after {
  right: -100px;
  bottom: -180px;
}

.pillars-layout {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  align-items: center;
  gap: 52px;
}

.pillars-layout h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

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

.pillar-card {
  padding: 24px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.pillar-card .icon-circle {
  color: var(--gold-light);
  border-color: rgba(216, 175, 107, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.pillar-card h3 {
  margin: 14px 0 7px;
  color: var(--gold-light);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pillar-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  line-height: 1.5;
}

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

.solution-card {
  --solution-color: var(--gold);
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.solution-card[data-color="green"] { --solution-color: var(--green); }
.solution-card[data-color="orange"] { --solution-color: var(--orange); }
.solution-card[data-color="rose"] { --solution-color: var(--rose); }
.solution-card[data-color="teal"] { --solution-color: var(--teal); }
.solution-card[data-color="navy"] { --solution-color: var(--navy); }

.solution-image {
  border: 0;
  border-radius: 0;
  aspect-ratio: 3 / 2;
  background: #efe8dc;
}

.solution-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.solution-kicker {
  color: var(--solution-color);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin: 8px 0 11px;
}

.solution-card p {
  flex: 1;
  color: #596574;
  font-size: 0.92rem;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--solution-color);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.highlight-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f2e7d5;
  box-shadow: var(--shadow-md);
}

.highlight-copy {
  padding: clamp(38px, 6vw, 76px);
}

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

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before,
.feature-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

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

.feature-card {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-align: center;
}

.feature-card .icon-circle {
  width: 62px;
  height: 62px;
  font-size: 1.45rem;
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: #66717d;
  font-size: 0.86rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 34px 26px;
  border-top: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.6);
  counter-increment: steps;
}

.step::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  content: counter(steps);
  font-weight: 900;
}

.step h3 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: #66717d;
  font-size: 0.88rem;
}

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

.testimonial {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.quote-mark {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.8;
}

.testimonial blockquote {
  margin: 15px 0 24px;
  color: #364657;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-slot {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(182, 122, 34, 0.6);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.56rem;
  text-align: center;
}

.avatar-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person strong,
.person span {
  display: block;
}

.person strong {
  color: var(--navy);
  font-size: 0.84rem;
}

.person span {
  color: #7b838d;
  font-size: 0.73rem;
}

.content-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.filter-button.is-active {
  color: var(--white);
  border-color: var(--gold);
  background: var(--gold);
}

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

.content-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.content-card[hidden] {
  display: none;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.content-image {
  border: 0;
  border-radius: 0;
  aspect-ratio: 3 / 2;
}

.content-card-body {
  padding: 23px;
}

.content-type {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 99px;
  color: var(--gold);
  background: rgba(182, 122, 34, 0.1);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.content-card h3 {
  margin: 13px 0 9px;
  font-size: 1.28rem;
}

.content-card p {
  color: #66717d;
  font-size: 0.86rem;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-question span:last-child {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 24px;
  color: #63707e;
}

.contact-banner {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.contact-banner .image-slot {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
  border-radius: 0;
}

.contact-banner .image-slot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 27, 52, 0.97), rgba(10, 27, 52, 0.66) 55%, rgba(10, 27, 52, 0.15));
  content: "";
}

.contact-banner-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 86px 0;
}

.contact-banner h2 {
  color: var(--white);
}

.contact-banner p {
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 88px;
  background:
    radial-gradient(circle at 88% 20%, rgba(216, 175, 107, 0.2), transparent 22%),
    linear-gradient(130deg, #f7eddf, #fffdf9 62%);
}

.page-hero::after {
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(182, 122, 34, 0.16);
  border-radius: 50%;
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
  color: #6f7882;
  font-size: 0.8rem;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.product-hero {
  padding: 70px 0;
  background: var(--cream);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
}

.product-tag {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 13px;
  border-radius: 99px;
  color: var(--gold);
  background: rgba(182, 122, 34, 0.11);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.info-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.info-card h3 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
}

.info-card p {
  margin: 0;
  color: #65717e;
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  justify-content: center;
  gap: 70px;
}

.article-body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.85;
}

.article-body h2,
.article-body h3 {
  margin-top: 2.2em;
}

.article-body .image-slot {
  margin: 34px 0;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.article-aside h3 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  color: #717a84;
  font-size: 0.82rem;
}

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

.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-align: center;
}

.contact-card h3 {
  margin-top: 16px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-card p {
  color: #687480;
  overflow-wrap: anywhere;
}

.legal-content {
  max-width: 850px;
  margin-inline: auto;
}

.legal-content h2 {
  margin-top: 1.5em;
  font-size: 2rem;
}

.legal-content h3 {
  margin-top: 1.5em;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 800;
}

.legal-content ul {
  padding-left: 22px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding: 64px 0;
}

.site-footer .logo-slot {
  width: 150px;
  color: var(--gold-light);
  border-color: rgba(216, 175, 107, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.site-footer h3 {
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-links a {
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-note {
  margin-top: 20px;
  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-link {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  z-index: 950;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #20b85a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  font-size: 0.72rem;
  font-weight: 900;
}

.empty-state {
  max-width: 680px;
  margin-inline: auto;
  padding: 60px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  text-align: center;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 76px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a:not(.button) {
    font-size: 0.76rem;
  }

  .main-nav .button {
    display: none;
  }

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

  .features-grid,
  .steps,
  .testimonial-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 760px);
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    transform: translateX(100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 24px;
    background: var(--paper);
    transition: transform 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a:not(.button) {
    padding: 17px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    display: inline-flex;
    margin-top: 22px;
  }

  .hero-carousel {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.95) 51%, rgba(251, 247, 239, 0.12) 82%);
  }

  .hero-content {
    width: min(100%, 650px);
    align-self: end;
    padding: 300px 0 98px;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .two-column,
  .two-column.reverse,
  .pillars-layout,
  .highlight-panel,
  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .two-column.reverse .image-slot {
    order: -1;
  }

  .highlight-panel .image-slot {
    min-height: 420px;
    border-radius: 0;
  }

  .product-hero-grid .image-slot {
    max-width: 650px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .section-sm {
    padding: 50px 0;
  }

  .brand-lockup {
    gap: 8px;
  }

  .logo-slot {
    min-width: 86px;
    min-height: 38px;
    font-size: 0.55rem;
  }

  .logo-slot.nume {
    min-width: 64px;
  }

  .brand-divider {
    height: 28px;
  }

  .hero-carousel {
    min-height: 810px;
  }

  .hero-content {
    padding-top: 330px;
  }

  .hero-content .lead {
    font-size: 1rem;
  }

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

  .solution-grid,
  .info-grid,
  .features-grid,
  .steps,
  .testimonial-grid,
  .content-grid,
  .contact-grid,
  .stats-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

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

  .product-hero {
    padding: 50px 0 64px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }

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

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

@media print {
  .site-header,
  .site-footer,
  .whatsapp-float,
  .carousel-controls,
  .button-row {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero {
    padding: 30px 0;
  }
}
