:root {
  --bg: #fbf7f0;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #14213d;
  --muted: #56667f;
  --orange: #f77f00;
  --yellow: #fcbf49;
  --cyan: #00b4d8;
  --deep: #0d1b2a;
  --line: rgba(20, 33, 61, 0.1);
  --shadow: 0 20px 45px rgba(13, 27, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(247, 127, 0, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 180, 216, 0.14), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #fbf7f0 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(20, 33, 61, 0.08);
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled .navbar {
  box-shadow: 0 18px 40px rgba(13, 27, 42, 0.14);
  background: #ffffff;
  border-color: rgba(20, 33, 61, 0.08);
  border-radius: 999px;
}

.site-header.scrolled {
  padding: 10px 20px 12px;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

main {
  overflow: visible;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: none;
  border-radius: 999px;
  box-shadow: none;
  transition: box-shadow 0.25s ease, background 0.25s ease, border-radius 0.25s ease,
    border-color 0.25s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(20, 33, 61, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: #b45309;
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--orange), #ff5400);
  box-shadow: none;
  transition: none;
}

.nav-cta::after {
  content: none;
}

.nav-links a.nav-cta:hover {
  color: white;
  transform: none;
  box-shadow: none;
  background: linear-gradient(135deg, var(--orange), #ff5400);
}

.nav-links a.nav-cta:hover::after {
  content: none;
  transform: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 4px;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.22s ease, background-color 0.22s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.steps-section,
.about-section,
.quotation-section,
.print-quote-section,
.contact-section,
.catalog-section,
.benefits-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.print-marquee {
  position: relative;
  width: 100%;
  margin: 80px 0;
  padding: 18px 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.print-marquee::before,
.print-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(9vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.print-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fbf7f0 0%, rgba(251, 247, 240, 0) 100%);
}

.print-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fbf7f0 0%, rgba(251, 247, 240, 0) 100%);
}

.print-marquee-track {
  display: flex;
  width: max-content;
  animation: printMarquee 28s linear infinite;
}

.print-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 28px;
  padding-right: 28px;
}

.print-marquee-group span {
  color: #14213d;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.print-marquee-group span:nth-of-type(4n + 1) {
  color: #14213d;
}

.print-marquee-group span:nth-of-type(4n + 3) {
  color: #b45309;
}

.print-marquee-group .print-marquee-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcf3c, #ff8a00);
  box-shadow: none;
}

@keyframes printMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 72px;
}

.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.45;
  z-index: -1;
}

.hero-glow-left {
  top: 20px;
  left: -120px;
  background: rgba(247, 127, 0, 0.28);
}

.hero-glow-right {
  bottom: 10px;
  right: -100px;
  background: rgba(0, 180, 216, 0.22);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b45309;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.hero h1,
.section-heading h2,
.quotation-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 11ch;
}

.hero-text,
.about-card p,
.quotation-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), #ff5400);
  box-shadow: none;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.btn-whatsapp {
  color: white;
  background: linear-gradient(135deg, #25d366, #128c4a);
  border: 1px solid rgba(18, 140, 74, 0.32);
  box-shadow: none;
}

.btn-whatsapp:hover {
  box-shadow: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 33, 61, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.about-card,
.quotation-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 460px;
  margin-left: auto;
  border-radius: 30px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(0, 180, 216, 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(247, 127, 0, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 58px rgba(13, 27, 42, 0.12);
}

.hero-card-top {
  display: grid;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(20, 33, 61, 0.08);
}

.hero-card-top strong,
.hero-card-band strong,
.hero-stats strong,
.hero-card-grid h3 {
  font-family: "Sora", sans-serif;
}

.hero-card-top p,
.hero-card-grid p,
.hero-stats span {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-card-label,
.mini-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-card-label {
  background: rgba(247, 127, 0, 0.12);
  color: #b45309;
}

.hero-card-top strong {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.hero-card-grid article {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(20, 33, 61, 0.06);
}

.hero-card-grid article:nth-child(1) {
  background: linear-gradient(135deg, #fff4e8, #ffedd5);
}

.hero-card-grid article:nth-child(2) {
  background: linear-gradient(135deg, #e9fbff, #d6f5fb);
}

.mini-label {
  margin-bottom: 12px;
  background: rgba(20, 33, 61, 0.08);
  color: var(--text);
}

.hero-card-grid h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.hero-card-band {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  color: white;
  background: linear-gradient(135deg, #14213d, #1f3b63);
}

.hero-card-band strong {
  font-size: 1rem;
  line-height: 1.5;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-stats div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 33, 61, 0.06);
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.steps-section,
.about-section,
.quotation-section,
.print-quote-section,
.contact-section,
.catalog-section,
.benefits-section {
  padding-top: 32px;
  padding-bottom: 72px;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.quotation-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 68px;
  align-items: center;
  margin-top: 56px;
  padding-bottom: 0;
}

.about-media {
  position: relative;
  min-height: 640px;
}

.about-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 24px 48px rgba(13, 27, 42, 0.12);
}

.about-photo-large {
  top: 0;
  left: 0;
  width: min(100%, 590px);
  height: 515px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(20, 33, 61, 0.05)),
    url("./img/2-1.webp") center/cover no-repeat;
}

.about-photo-small {
  right: -36px;
  bottom: 0;
  width: min(72%, 430px);
  height: 295px;
  border: 10px solid #f7f4ef;
  background:
    linear-gradient(180deg, rgba(255, 200, 54, 0.08), rgba(20, 33, 61, 0.04)),
    url("./img/2-2.webp") center/cover no-repeat;
}

.about-copy {
  max-width: 640px;
}

.about-kicker {
  margin: 0 0 18px;
  color: #ff5a36;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.about-copy h2 {
  margin: 0;
  color: #1f1f1f;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.about-copy p {
  margin: 34px 0 0;
  color: #64748b;
  font-size: 1.08rem;
  line-height: 1.85;
}

.steps-section {
  padding-top: 28px;
  padding-bottom: 72px;
}

.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  grid-template-rows: auto auto;
  gap: 28px;
  align-items: stretch;
}

.steps-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #eef1f7;
}

.steps-card-large {
  grid-row: 1 / span 2;
  min-height: 760px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(20, 33, 61, 0.1)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
}

.steps-card-label {
  position: absolute;
  top: 26px;
  left: 26px;
  max-width: 320px;
  padding: 34px 36px;
  background: rgba(255, 255, 255, 0.94);
}

.steps-mini {
  margin: 0 0 10px;
  color: #ff5a36;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steps-card-label h3 {
  margin: 0;
  color: #20232b;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.steps-card-copy {
  min-height: 360px;
  padding: 40px 42px;
  background: #f3f5fa;
}

.steps-kicker {
  margin: 0 0 16px;
  color: #ff5a36;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.steps-card-copy h2 {
  margin: 0;
  color: #20232b;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.steps-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 26px;
}

.steps-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0 18px;
  align-items: flex-start;
}

.steps-list li::before {
  content: counter(step-counter, decimal-leading-zero);
  counter-increment: step-counter;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-top: 2px;
  border-radius: 50%;
  color: #20232b;
  font-size: 1rem;
  font-weight: 800;
  background: #ffffff;
  border: 1px solid rgba(20, 33, 61, 0.08);
}

.steps-list {
  counter-reset: step-counter;
}

.steps-step-copy {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.steps-list strong {
  display: block;
  color: #20232b;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 800;
}

.steps-list span {
  display: block;
  margin-top: 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}

.steps-card-small {
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(20, 33, 61, 0.08)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=80")
      center/cover no-repeat;
}

.catalog-heading {
  max-width: 860px;
}

.catalog-heading h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
}

.catalog-shell {
  display: block;
}

.catalog-text {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.catalog-grid {
  columns: 4 250px;
  column-gap: 20px;
  margin-top: 34px;
}

.catalog-card {
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(13, 27, 42, 0.16);
}

.catalog-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.catalog-card.medium .catalog-media {
  min-height: 280px;
}

.catalog-card.tall .catalog-media {
  min-height: 360px;
}

.catalog-media::before,
.catalog-media::after {
  content: none;
  display: none;
}

.catalog-copy {
  padding: 22px 22px 24px;
}

.catalog-copy h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
}

.catalog-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.media-badge,
.media-note {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(13, 27, 42, 0.12);
}

.media-badge.alt {
  background: linear-gradient(135deg, #14213d, #2b4570);
  color: white;
}

.benefits-heading {
  max-width: 760px;
  margin-top: 56px;
  margin-bottom: 34px;
  padding-left: 24px;
}

.benefits-heading h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.media-labels {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.3)),
    url("https://images.unsplash.com/photo-1572375992501-4b0892d50c69?auto=format&fit=crop&w=1200&q=80")
      center/cover no-repeat;
}

.media-cards {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.2)),
    url("./img/4-2.webp") center/cover no-repeat;
}

.media-rolls {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.22)),
    url("./img/4-9.webp") center/cover no-repeat;
}

.media-stationery {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.2)),
    url("./img/4-3.webp") center/cover no-repeat;
}

.media-flyers {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.18)),
    url("./img/4-4.webp") center/cover no-repeat;
}

.media-packaging {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.2)),
    url("./img/4-5.webp") center/cover no-repeat;
}

.media-posters {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.18)),
    url("./img/4-6.webp") center/cover no-repeat;
}

.media-document {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.16)),
    url("./img/4-7.webp") center/cover no-repeat;
}

.media-gifts {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.18)),
    url("./img/4-8.webp") center/cover no-repeat;
}

.benefits-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 4px;
  padding-bottom: 28px;
  align-items: stretch;
}

.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  min-height: 0;
  padding: 16px 16px 14px;
  text-align: left;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
    #ffffff;
  border: 1px solid rgba(20, 33, 61, 0.08);
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f77f00, #00b4d8);
}

.benefit-card:nth-child(2)::before {
  background: linear-gradient(90deg, #ff5d8f, #ff8c42);
}

.benefit-card:nth-child(3)::before {
  background: linear-gradient(90deg, #fcbf49, #f77f00);
}

.benefit-card:nth-child(4)::before {
  background: linear-gradient(90deg, #14213d, #3f5d8a);
}

.benefit-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(20, 33, 61, 0.72);
  background: rgba(20, 33, 61, 0.05);
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  max-width: 30ch;
  line-height: 1.55;
  font-size: 0.92rem;
}

@media (min-width: 769px) {
  .benefit-card {
    min-height: 168px;
    padding: 16px 16px 12px;
  }

  .benefit-kicker {
    margin-bottom: 10px;
  }

  .benefit-card h3 {
    margin-bottom: 8px;
  }
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(13, 27, 42, 0.1);
  border-color: rgba(20, 33, 61, 0.12);
}

.quotation-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
  padding-top: 12px;
}

.quotation-copy {
  min-height: 100%;
  padding: 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.92)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1200&q=80")
      center/cover no-repeat;
  color: white;
}

.quotation-copy .eyebrow {
  color: #ffd166;
}

.quotation-copy .eyebrow::before {
  background: linear-gradient(90deg, #ffd166, #ffffff);
}

.quotation-copy h2,
.quotation-copy p {
  color: white;
}

.quotation-form {
  padding: 28px;
  border-radius: 28px;
}

.quotation-form label {
  display: block;
  margin-bottom: 18px;
}

.quotation-form span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.quotation-form input,
.quotation-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 33, 61, 0.12);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
}

.quotation-form textarea {
  min-height: 130px;
  resize: vertical;
}

.quotation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.quotation-actions .btn {
  flex: 1 1 220px;
  min-height: 58px;
  justify-content: center;
  text-align: center;
}

.quotation-form button {
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: #0f766e;
  font-weight: 700;
}

.submission-modal[hidden] {
  display: none;
}

.submission-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.submission-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 36, 0.58);
  backdrop-filter: blur(8px);
}

.submission-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 28px 26px 24px;
  border-radius: 28px;
  border: 1px solid rgba(20, 33, 61, 0.1);
  background:
    radial-gradient(circle at top right, rgba(252, 191, 73, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff);
  box-shadow: 0 24px 60px rgba(13, 27, 42, 0.18);
  color: var(--text);
}

.submission-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 33, 61, 0.06);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.submission-modal-kicker {
  margin: 0 0 12px;
  color: #b45309;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.submission-modal-title {
  margin: 0;
  padding-right: 40px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.submission-modal-message {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.submission-modal-action {
  margin-top: 22px;
}

.print-quote-section {
  max-width: 100%;
  padding-top: 8px;
  padding-left: 0;
  padding-right: 0;
}

.print-quote-card {
  position: relative;
  padding: 64px 32px;
  border-radius: 0;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at top center, rgba(247, 127, 0, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 180, 216, 0.08), transparent 30%),
    linear-gradient(180deg, #081624, #06111b);
  overflow: hidden;
}

.print-quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  pointer-events: none;
}

.print-quote-mark {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Sora", sans-serif;
  font-size: clamp(3.8rem, 8vw, 5.6rem);
  line-height: 0.8;
}

.print-quote-text {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.print-quote-author {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  font-weight: 700;
}

.print-quote-cta {
  margin-top: 30px;
  padding-left: 28px;
  padding-right: 28px;
  box-shadow: 0 10px 24px rgba(247, 127, 0, 0.22);
}

.contact-section {
  padding-top: 20px;
}

.contact-heading {
  max-width: 760px;
}

.contact-heading .eyebrow {
  color: #b45309;
}

.contact-intro {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  margin-top: 34px;
}

.contact-card,
.contact-map-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(13, 27, 42, 0.16);
}

.contact-card {
  position: relative;
  padding: 30px;
  display: grid;
  gap: 18px;
  align-content: start;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(20, 33, 61, 0.98));
  color: white;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(247, 127, 0, 0.2), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(0, 180, 216, 0.12), transparent 28%);
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card-kicker {
  margin: 0;
  color: #ffd166;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  max-width: 13ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-card-text {
  margin: 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.contact-info-grid {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.contact-item {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: #ffd166;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: white;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.6;
}

.contact-links {
  display: grid;
  gap: 4px;
}

.contact-item a {
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.contact-item a:hover {
  color: #ffd166;
  opacity: 1;
}

.contact-map-card {
  min-height: 420px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.24)),
    #dbeafe;
}

.contact-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #f77f00, #00b4d8) 1;
  pointer-events: none;
  z-index: 1;
}

.contact-map-card iframe {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(1.02) contrast(1.02);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.site-footer {
  padding: 28px 20px 34px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
}

.site-footer a {
  color: #f97316;
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 14px 18px;
  }

  .navbar {
    padding: 12px 16px;
    gap: 16px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.7rem;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 11px 16px;
  }

  .hero,
  .steps-section,
  .about-section,
  .quotation-section,
  .print-quote-section,
  .contact-section,
  .catalog-section,
  .benefits-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .print-marquee {
    margin: 64px 0;
    padding: 16px 0;
  }

  .print-marquee-group {
    gap: 24px;
    padding-right: 24px;
  }

  .hero {
    grid-template-columns: 0.98fr 1.02fr;
    gap: 30px;
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 6.2vw, 4.4rem);
    max-width: 10ch;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-card {
    min-height: auto;
  }

  .about-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
  }

  .about-media {
    min-height: 560px;
  }

  .about-photo-large {
    height: 440px;
  }

  .about-photo-small {
    right: 0;
    width: min(68%, 340px);
    height: 240px;
  }

  .about-copy h2 {
    font-size: clamp(2.7rem, 4.6vw, 4.3rem);
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .steps-card-large {
    min-height: 650px;
  }

  .steps-card-copy {
    padding: 34px 32px;
  }

  .steps-card-copy h2 {
    font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  }

  .catalog-grid {
    columns: 3 240px;
    column-gap: 18px;
  }

  .catalog-copy {
    padding: 20px;
  }

  .catalog-copy h3 {
    font-size: 1.18rem;
  }

  .benefits-heading {
    margin-top: 56px;
  }

  .benefits-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .quotation-section {
    gap: 24px;
  }

  .print-quote-card {
    padding: 54px 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .hero,
  .quotation-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .navbar {
    border-radius: 34px;
  }

  .hero {
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    min-height: auto;
  }

  .hero-card {
    width: 100%;
    margin-left: 0;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-media {
    min-height: 520px;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .about-copy {
    max-width: 760px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-card-large {
    grid-row: auto;
    min-height: 560px;
  }

  .steps-card-copy,
  .steps-card-small {
    min-height: auto;
  }

  .benefits-heading {
    margin-top: 52px;
  }

  .benefits-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid {
    columns: 2 220px;
    column-gap: 16px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 14px;
  }

  .navbar {
    position: relative;
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .site-header.scrolled .navbar {
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 33, 61, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: fit-content;
    padding: 12px 0;
  }

  .nav-links a.nav-cta {
    display: none;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .print-marquee {
    margin: 44px 0;
    padding: 14px 0;
  }

  .print-marquee-track {
    animation-duration: 24s;
  }

  .print-marquee-group {
    gap: 18px;
    padding-right: 18px;
  }

  .print-marquee-group .print-marquee-dot {
    width: 10px;
    height: 10px;
  }

  .hero-points {
    gap: 10px;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-card-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .about-section {
    gap: 28px;
    margin-top: 30px;
  }

  .about-media {
    order: 2;
    min-height: 430px;
  }

  .about-copy {
    order: 1;
  }

  .steps-section {
    padding-top: 18px;
    padding-bottom: 58px;
  }

  .steps-grid {
    gap: 18px;
  }

  .steps-card-large {
    min-height: 430px;
  }

  .steps-card-label {
    top: 18px;
    left: 18px;
    max-width: 250px;
    padding: 24px 24px 26px;
  }

  .steps-card-label h3 {
    font-size: 1.95rem;
  }

  .steps-card-copy {
    padding: 28px 22px;
  }

  .steps-card-copy h2 {
    max-width: none;
    font-size: 2rem;
  }

  .steps-list li {
    grid-template-columns: 42px 1fr;
    gap: 0 14px;
  }

  .steps-list li::before {
    width: 42px;
    height: 42px;
    font-size: 0.82rem;
  }

  .steps-step-copy {
    gap: 8px;
    padding-top: 2px;
  }

  .steps-list strong {
    font-size: 1.04rem;
  }

  .steps-list span {
    font-size: 0.98rem;
  }

  .steps-card-small {
    min-height: 260px;
  }

  .about-photo-large {
    height: 340px;
  }

  .about-photo-small {
    width: min(72%, 280px);
    height: 190px;
    border-width: 8px;
  }

  .about-copy h2 {
    font-size: 2.7rem;
  }

  .about-copy p {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .quotation-form {
    padding: 22px;
  }

  .quotation-section {
    gap: 20px;
  }

  .benefits-heading {
    margin-top: 44px;
    margin-bottom: 44px;
  }

  .catalog-card,
  .catalog-card.medium,
  .catalog-card.tall {
    margin-bottom: 16px;
  }

  .catalog-media,
  .catalog-card.medium .catalog-media,
  .catalog-card.tall .catalog-media {
    min-height: 230px;
  }
}

@media (max-width: 560px) {
  .hero,
  .steps-section,
  .about-section,
  .quotation-section,
  .print-quote-section,
  .contact-section,
  .catalog-section,
  .benefits-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .print-marquee {
    margin: 44px 0;
    padding: 12px 0;
  }

  .print-marquee-group {
    gap: 14px;
    padding-right: 14px;
  }

  .print-marquee-group span {
    font-size: 1.2rem;
  }

  .print-marquee-group .print-marquee-dot {
    width: 8px;
    height: 8px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .print-quote-card {
    padding: 42px 18px;
    border-radius: 28px;
  }

  .print-quote-text {
    font-size: 1.35rem;
  }

  .print-quote-author {
    margin-top: 18px;
  }

  .print-quote-cta {
    width: 100%;
    margin-top: 24px;
  }

  .contact-card {
    padding: 22px;
    gap: 18px;
  }

  .contact-card h3 {
    max-width: none;
    font-size: 2rem;
  }

  .contact-item a,
  .contact-item p {
    font-size: 1.02rem;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 320px;
  }

  .about-section {
    gap: 22px;
    margin-top: 20px;
  }

  .about-media {
    min-height: 330px;
  }

  .about-photo-large {
    width: 100%;
    height: 250px;
  }

  .about-photo-small {
    width: 72%;
    height: 135px;
    right: 0;
    bottom: 12px;
    border-width: 6px;
  }

  .about-kicker {
    margin-bottom: 14px;
    font-size: 0.98rem;
  }

  .about-copy h2 {
    font-size: 2.15rem;
  }

  .steps-section {
    padding-top: 10px;
    padding-bottom: 46px;
  }

  .steps-card-large {
    min-height: 320px;
  }

  .steps-card-label {
    top: 14px;
    left: 14px;
    max-width: 210px;
    padding: 18px 18px 20px;
  }

  .steps-mini {
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  .steps-card-label h3 {
    font-size: 1.5rem;
  }

  .steps-card-copy {
    padding: 24px 16px;
  }

  .steps-kicker {
    margin-bottom: 12px;
    font-size: 0.92rem;
  }

  .steps-card-copy h2 {
    font-size: 1.75rem;
  }

  .steps-list {
    margin-top: 22px;
    gap: 16px;
  }

  .steps-list li {
    grid-template-columns: 38px 1fr;
    gap: 0 12px;
  }

  .steps-list li::before {
    width: 38px;
    height: 38px;
  }

  .steps-list strong {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .steps-list span {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .steps-card-small {
    min-height: 210px;
  }

  .section-heading h2,
  .quotation-copy h2 {
    font-size: 1.9rem;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .site-header {
    padding: 10px 12px;
  }

  .navbar {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy {
    gap: 2px;
  }

  .brand-copy small {
    display: block;
    font-size: 0.64rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
  }

  .benefits-heading h3 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-card {
    padding: 20px;
  }

  .catalog-grid {
    columns: unset;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
  }

  .catalog-card,
  .catalog-card.medium,
  .catalog-card.tall {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    margin-bottom: 0;
    border-radius: 22px;
    min-height: 0;
  }

  .catalog-media,
  .catalog-card.medium .catalog-media,
  .catalog-card.tall .catalog-media {
    min-height: 185px;
    height: 100%;
    border-radius: 22px 0 0 22px;
  }

  .catalog-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 16px;
  }

  .catalog-copy h3 {
    margin-bottom: 8px;
    font-size: 1.02rem;
  }

  .catalog-copy p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .media-badge,
  .media-note {
    top: 10px;
    left: 10px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .catalog-card:nth-child(even),
  .catalog-card.medium:nth-child(even),
  .catalog-card.tall:nth-child(even) {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .catalog-card:nth-child(even) .catalog-media,
  .catalog-card.medium:nth-child(even) .catalog-media,
  .catalog-card.tall:nth-child(even) .catalog-media {
    order: 2;
    border-radius: 0 22px 22px 0;
  }

  .catalog-card:nth-child(even) .catalog-copy,
  .catalog-card.medium:nth-child(even) .catalog-copy,
  .catalog-card.tall:nth-child(even) .catalog-copy {
    order: 1;
  }

  .benefits-section {
    grid-template-columns: 1fr;
  }

  .benefits-heading {
    margin-top: 44px;
  }

  .benefit-card {
    min-height: 0;
    padding: 18px 16px 16px;
    border-radius: 22px;
  }

  .benefit-kicker {
    margin-bottom: 10px;
  }

  .benefit-card h3 {
    font-size: 1.04rem;
  }

  .benefit-card p {
    font-size: 0.92rem;
    line-height: 1.58;
  }
}

/* Clean animated hero override */
.hero {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  padding-top: 54px;
  padding-bottom: 84px;
}

.hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  max-width: 9ch;
}

.hero-label {
  margin: 0 0 18px;
  color: #e11d2e;
  font-size: 1rem;
  font-weight: 800;
}

.hero-text {
  margin-top: 22px;
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-checks {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-checks li {
  position: relative;
  padding-left: 38px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  color: #2ec4b6;
  font-size: 1.6rem;
  font-weight: 800;
}

.hero-actions {
  margin-top: 34px;
}

.hero-visual {
  min-height: 640px;
}

.hero-scene {
  position: relative;
  width: min(100%, 680px);
  min-height: 640px;
  margin-left: auto;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(20, 33, 61, 0.08);
  border-radius: 50%;
  animation: orbitFloat 10s ease-in-out infinite;
}

.orbit-one {
  inset: 10px 18px 18px 108px;
}

.orbit-two {
  inset: 88px 86px 92px 36px;
  animation-duration: 14s;
  animation-direction: reverse;
}

.hero-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: dotPulse 4s ease-in-out infinite;
}

.dot-cyan {
  left: 36px;
  bottom: 110px;
  background: #22d3ee;
}

.dot-orange {
  left: 128px;
  top: 220px;
  width: 10px;
  height: 10px;
  background: #fb923c;
}

.dot-blue {
  right: 24px;
  bottom: 180px;
  background: #2563eb;
  animation-delay: 1.2s;
}

.hero-photo-frame {
  position: absolute;
  right: 88px;
  top: 90px;
  width: min(100%, 470px);
  height: 520px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(13, 27, 42, 0.18);
  animation: imageFloat 8s ease-in-out infinite;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-float {
  position: absolute;
  filter: drop-shadow(0 24px 34px rgba(13, 27, 42, 0.14));
  animation: imageFloat 7s ease-in-out infinite;
}

.hero-shirt {
  top: 8px;
  left: 150px;
  width: 220px;
}

.hero-bag {
  right: 14px;
  bottom: 8px;
  width: 210px;
  animation-duration: 9s;
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.02) rotate(4deg);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 0.98fr 1.02fr;
    gap: 30px;
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 6.2vw, 4.5rem);
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-scene {
    min-height: 560px;
  }

  .hero-photo-frame {
    right: 70px;
    top: 86px;
    width: min(100%, 410px);
    height: 470px;
  }

  .hero-shirt {
    left: 118px;
    width: 190px;
  }

  .hero-bag {
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .hero-visual {
    min-height: auto;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-scene {
    min-height: 560px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-scene {
    min-height: 500px;
  }

  .orbit-one {
    inset: 20px 18px 40px 60px;
  }

  .orbit-two {
    inset: 74px 46px 80px 16px;
  }

  .hero-photo-frame {
    right: 38px;
    top: 84px;
    width: min(100%, 360px);
    height: 410px;
  }

  .hero-shirt {
    top: 18px;
    left: 72px;
    width: 150px;
  }

  .hero-bag {
    right: 0;
    bottom: 10px;
    width: 150px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-checks li {
    font-size: 0.95rem;
  }

  .hero-scene {
    min-height: 420px;
  }

  .hero-photo-frame {
    right: 14px;
    top: 86px;
    width: min(100%, 280px);
    height: 320px;
    border-radius: 20px;
  }

  .hero-shirt {
    top: 12px;
    left: 24px;
    width: 118px;
  }

  .hero-bag {
    width: 120px;
  }

  .dot-orange {
    left: 88px;
    top: 182px;
  }
}

/* Split hero redesign */
.hero {
  position: relative;
  max-width: 100%;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: 0.52fr 0.48fr;
  gap: 0;
  align-items: stretch;
  min-height: 100svh;
  background: #f4f5fb;
  overflow: hidden;
}

.hero-glow,
.hero-label + .hero-glow {
  display: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 152px 72px 56px min(11vw, 220px);
  background: #232323;
  color: white;
}

.hero-script {
  margin: 0 0 26px;
  color: #ffca3a;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-weight: 700;
}

.hero-label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  color: white;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 8ch;
  min-height: auto;
  overflow-wrap: anywhere;
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.hero-text {
  max-width: 640px;
  min-height: auto;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.8;
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.hero-checks {
  margin-top: 24px;
  list-style: none;
  padding-left: 0;
  gap: 10px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.hero-checks li::before {
  content: "\2022";
  position: static;
  flex: 0 0 auto;
  line-height: 1;
  transform: translateY(-0.02em);
  color: white;
  font-size: 1.6rem;
}

.hero-actions {
  margin-top: 30px;
}

.hero-primary-btn {
  background: linear-gradient(135deg, #ff8a00, #ff6b00);
  box-shadow: none;
}

.hero-secondary-btn {
  color: #14213d;
  border-color: rgba(20, 33, 61, 0.12);
  background: rgba(255, 255, 255, 0.94);
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-slider-dots {
  display: flex;
  gap: 10px;
}

.hero-dot-indicator {
  border: 0;
  width: 38px;
  height: 3px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dot-indicator.is-active {
  background: white;
  transform: scaleX(1.08);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.hero-visual {
  min-height: 100%;
  background:
    linear-gradient(160deg, rgba(255, 70, 34, 0.95), rgba(255, 170, 35, 0.85)),
    #f89c1c;
}

.hero-artboard {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.hero-artboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.12), transparent 20%);
  mix-blend-mode: screen;
}

.hero-art-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 72%, rgba(255, 214, 90, 0.95), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(255, 73, 40, 0.85), transparent 24%);
}

.hero-art-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 165, 0, 0.16), rgba(255, 114, 0, 0.28)),
    url("./img/1-1.webp") center/cover no-repeat;
  mix-blend-mode: screen;
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.hero-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 175, 72, 0.06), rgba(20, 33, 61, 0.28));
  animation: heroVisualFloat 14s ease-in-out infinite;
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.hero.is-changing h1,
.hero.is-changing .hero-text,
.hero.is-changing .hero-checks li,
.hero.is-changing .hero-art-image,
.hero.is-changing .hero-art-overlay {
  opacity: 0;
  transform: translateY(14px);
}

@keyframes heroVisualFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 18px;
  }

  .site-header.scrolled {
    padding: 10px 18px 12px;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100%;
    padding: 136px 48px 48px 56px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 5vw, 4.8rem);
  }

  .hero-visual,
  .hero-artboard {
    min-height: 100%;
  }

  .hero-art-overlay {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 116px 36px 40px;
  }

  .hero h1 {
    max-width: none;
    min-height: auto;
  }

  .hero-text {
    min-height: auto;
  }

  .hero-visual,
  .hero-artboard {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 14px;
  }

  .site-header.scrolled {
    padding: 8px 14px 10px;
  }

  .hero-content {
    padding: 124px 22px 34px;
  }

  .hero-script {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-slider-controls {
    gap: 10px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual,
  .hero-artboard {
    min-height: 320px;
  }

  .hero-art-overlay {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 12px;
  }

  .site-header.scrolled {
    padding: 8px 12px 10px;
  }

  .hero-content {
    padding: 112px 16px 28px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-checks li {
    font-size: 0.94rem;
  }

  .hero-slider-controls {
    margin-top: 24px;
  }

  .hero-visual,
  .hero-artboard {
    min-height: 260px;
  }

  .hero-art-overlay {
    background-size: cover;
    background-position: center;
  }
}

@media (min-width: 1025px) {
  .catalog-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    gap: 34px;
    align-items: start;
  }

  .catalog-heading {
    order: 1;
    position: sticky;
    top: 116px;
    align-self: start;
    max-width: none;
    padding-right: 18px;
    padding-left: 0;
  }

  .catalog-heading h2 {
    max-width: 11ch;
  }

  .catalog-grid {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 0;
    padding-top: 8px;
  }

  .catalog-card,
  .catalog-card.medium,
  .catalog-card.tall {
    --catalog-hover-lift: 0px;
    position: sticky;
    top: var(--catalog-sticky-top, 110px);
    align-self: start;
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    margin-bottom: 0;
    min-height: 290px;
    align-items: stretch;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff);
    border: 1px solid rgba(20, 33, 61, 0.08);
    box-shadow: none;
    overflow: hidden;
    z-index: var(--catalog-layer, 1);
    transform: translateY(var(--catalog-hover-lift));
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  }

  .catalog-card:hover {
    --catalog-hover-lift: -3px;
    border-color: rgba(20, 33, 61, 0.12);
    box-shadow: none;
  }

  .catalog-card + .catalog-card {
    margin-top: 0;
  }

  .catalog-card.is-stacked,
  .catalog-card.medium.is-stacked,
  .catalog-card.tall.is-stacked {
    box-shadow: none;
  }

  .catalog-media,
  .catalog-card.medium .catalog-media,
  .catalog-card.tall .catalog-media {
    min-height: 100%;
    height: 100%;
    border-radius: 30px 0 0 30px;
  }

  .catalog-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 30px;
    color: var(--text);
    background: transparent;
  }

  .catalog-copy h3 {
    margin-bottom: 10px;
    color: #14213d;
    font-size: clamp(1.35rem, 1.8vw, 1.7rem);
    letter-spacing: -0.03em;
  }

  .catalog-copy p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .catalog-media {
    position: relative;
    overflow: hidden;
  }

  .catalog-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.18));
    opacity: 1;
    transition: opacity 0.28s ease;
  }

  .catalog-card:hover .catalog-media::after {
    opacity: 0.78;
  }

  .media-badge,
  .media-note {
    top: 16px;
    left: 16px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  }

  .media-badge.alt {
    background: linear-gradient(135deg, #14213d, #274c77);
  }
}

@media (min-width: 1100px) {
  .catalog-shell {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 44px;
  }

  .catalog-card,
  .catalog-card.medium,
  .catalog-card.tall {
    min-height: 320px;
    grid-template-columns: minmax(270px, 0.9fr) minmax(0, 1.1fr);
    border-radius: 32px;
  }

  .catalog-media,
  .catalog-card.medium .catalog-media,
  .catalog-card.tall .catalog-media {
    border-radius: 32px 0 0 32px;
  }
}

@media (min-width: 760px) and (max-width: 1024px) {
  .site-header {
    padding: 0 18px;
  }

  .site-header.scrolled {
    padding: 10px 18px 12px;
  }

  .navbar {
    position: relative;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 28px;
  }

  .site-header.scrolled .navbar {
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 33, 61, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
  }

  .nav-links a.nav-cta {
    justify-content: center;
    margin-top: 10px;
    padding: 14px 18px;
  }

  .hero,
  .steps-section,
  .about-section,
  .quotation-section,
  .contact-section,
  .catalog-section,
  .benefits-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .print-quote-section {
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: #232323;
  }

  .hero-content {
    min-height: auto;
    justify-content: flex-start;
    padding: 114px 40px 30px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.9rem, 6vw, 4rem);
    line-height: 0.98;
  }

  .hero-text {
    max-width: 34ch;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-checks {
    margin-top: 20px;
    gap: 8px;
  }

  .hero-checks li {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-slider-controls {
    margin-top: 26px;
  }

  .hero-visual,
  .hero-artboard {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero-art-image,
  .hero-art-overlay {
    background-position: center;
    background-size: cover;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 24px;
  }

  .about-media {
    order: 2;
    max-width: 760px;
    width: 100%;
    min-height: 500px;
    margin: 0 auto;
  }

  .about-copy {
    order: 1;
    max-width: 760px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-card-large {
    min-height: 520px;
    grid-row: auto;
  }

  .steps-card-copy {
    padding: 32px 28px;
  }

  .steps-card-small {
    min-height: 240px;
  }

  .catalog-shell {
    display: grid;
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
    gap: 24px;
    align-items: start;
  }

  .catalog-heading {
    position: sticky;
    top: 104px;
    align-self: start;
    max-width: none;
    padding-right: 10px;
    padding-left: 0;
  }

  .catalog-heading h2 {
    max-width: 11ch;
  }

  .catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    columns: unset;
    margin-top: 0;
    padding-top: 0;
  }

  .catalog-card,
  .catalog-card.medium,
  .catalog-card.tall {
    --catalog-hover-lift: 0px;
    position: sticky;
    top: var(--catalog-sticky-top, 110px);
    z-index: var(--catalog-layer, 1);
    align-self: stretch;
    display: grid;
    grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1.08fr);
    min-height: 250px;
    margin-bottom: 0;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff);
    border: 1px solid rgba(20, 33, 61, 0.08);
    box-shadow: none;
    overflow: hidden;
    transform: translateY(var(--catalog-hover-lift));
    transition: transform 0.24s ease, border-color 0.24s ease;
  }

  .catalog-card:hover,
  .catalog-card.medium:hover,
  .catalog-card.tall:hover {
    --catalog-hover-lift: -3px;
    border-color: rgba(20, 33, 61, 0.12);
  }

  .catalog-media,
  .catalog-card.medium .catalog-media,
  .catalog-card.tall .catalog-media {
    min-height: 100%;
    height: 100%;
    border-radius: 28px 0 0 28px;
  }

  .catalog-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    background: transparent;
  }

  .benefits-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .quotation-section,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quotation-copy,
  .quotation-form,
  .contact-map-card,
  .contact-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 380px;
  }

  .contact-card h3 {
    max-width: 15ch;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }
}
