:root {
  --color-midnight: #11243f;
  --color-ink: #10233d;
  --color-ink-soft: #5f738f;
  --color-ink-muted: #7c8fa7;
  --color-accent: #d7a13a;
  --color-accent-strong: #bf7b14;
  --color-line: rgba(17, 36, 63, 0.12);
  --color-line-strong: rgba(17, 36, 63, 0.22);
  --color-surface: #f6f8fc;
  --color-panel: rgba(255, 255, 255, 0.9);
  --color-panel-strong: rgba(255, 255, 255, 0.97);
  --color-dark-panel: rgba(10, 21, 37, 0.92);
  --shadow-soft: 0 28px 64px rgba(16, 35, 61, 0.12);
  --shadow-card: 0 22px 46px rgba(16, 35, 61, 0.1);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(68, 110, 171, 0.14), transparent 32%),
    radial-gradient(circle at right center, rgba(215, 161, 58, 0.14), transparent 28%),
    linear-gradient(180deg, #fbfcfe 0%, #eef3fb 55%, #f7f9fd 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 36, 63, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 36, 63, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 36%, transparent 100%);
  opacity: 0.3;
  pointer-events: none;
  z-index: -3;
}

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

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

h1,
h2,
h3,
h4,
.navbar-nav .nav-link,
.brand-wordmark,
.page-kicker,
.section-tag {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
}

.panel {
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.section-block {
  padding: 4.8rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: "";
  width: 2.8rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.section-title {
  font-size: clamp(2.1rem, 3.8vw, 4.2rem);
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 46rem;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--color-ink-soft);
}

.page-glow {
  position: fixed;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -2;
  opacity: 0.45;
  pointer-events: none;
  animation: glow-drift 16s ease-in-out infinite;
}

.page-glow-left {
  left: -12vw;
  top: 6vh;
  background: rgba(54, 87, 147, 0.22);
}

.page-glow-right {
  right: -10vw;
  top: 38vh;
  background: rgba(215, 161, 58, 0.22);
  animation-delay: -8s;
}

.floating-messengers {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  z-index: 1050;
}

.floating-messenger {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 18px 30px rgba(16, 35, 61, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-messenger:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 34px rgba(16, 35, 61, 0.26);
}

.floating-messenger-whatsapp {
  background: linear-gradient(135deg, #26d366, #0e9d47);
}

.floating-messenger-bot {
  background: linear-gradient(135deg, #2f85ff, #1862d4);
}

.hero-title--latin {
  text-transform: none;
}

.site-header {
  padding: 1rem 0 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header .navbar {
  padding: 0;
}

.site-header .container {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(16, 35, 61, 0.08);
  backdrop-filter: blur(20px);
  padding: 0.9rem 1rem 0.9rem 1.4rem;
}

.site-header.is-scrolled .container {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 44px rgba(16, 35, 61, 0.12);
}

.navbar-brand img {
  height: 56px;
  width: auto;
}

.desktop-nav {
  margin-left: 2rem;
}

.navbar-nav {
  gap: 0.3rem;
}

.navbar-nav .nav-link {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  padding: 0.55rem 0.85rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent-strong), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-ink);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  width: 54px;
  height: 54px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  box-shadow: 0 14px 28px rgba(16, 35, 61, 0.08);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-midnight);
}

.btn-accent {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #d8a03a, #be7610);
  box-shadow: 0 16px 26px rgba(191, 123, 20, 0.28);
}

.btn-accent:hover,
.btn-accent:focus {
  color: #fff;
  background: linear-gradient(135deg, #e0ab47, #bf7b14);
}

.btn-outline-accent {
  border: 1px solid rgba(191, 123, 20, 0.18);
  color: var(--color-accent-strong);
  background: rgba(255, 255, 255, 0.78);
}

.btn-outline-accent:hover,
.btn-outline-accent:focus {
  color: var(--color-ink);
  background: rgba(215, 161, 58, 0.12);
  border-color: rgba(191, 123, 20, 0.3);
}

.offcanvas {
  --bs-offcanvas-width: min(420px, 86vw);
  background:
    radial-gradient(circle at top right, rgba(215, 161, 58, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(9, 20, 35, 0.98), rgba(17, 36, 63, 0.97));
}

.offcanvas-header {
  padding: 1.5rem;
}

.offcanvas-body {
  padding: 0 1.5rem 1.5rem;
}

.offcanvas .navbar-brand img {
  height: 52px;
}

.offcanvas .nav-link {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.offcanvas .nav-link.active,
.offcanvas .nav-link:hover {
  color: #fff;
}

.offcanvas-contacts {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.hero-section {
  padding: 2rem 0 4rem;
}

.hero-carousel {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 36px 70px rgba(16, 35, 61, 0.12);
}

.hero-slide {
  min-height: clamp(560px, 76vh, 760px);
  padding: clamp(2.4rem, 4vw, 4.2rem);
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #122746 0%, #163156 45%, #0e2038 100%);
  color: #fff;
}

.hero-slide.theme-pendent {
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #364967 0%, #8a7b51 56%, #4d3612 100%);
}

.hero-slide.theme-sidewall {
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #1d2430 0%, #515962 50%, #151b24 100%);
}

.hero-slide.theme-capsules {
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #41577d 0%, #7589aa 48%, #b9862e 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.2rem;
}

.page-kicker::before {
  content: "";
  width: 2.4rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-title {
  font-size: clamp(3.3rem, 8vw, 6.6rem);
  line-height: 0.92;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero-text {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-frame {
  min-height: 480px;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 12% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  filter: blur(24px);
}

.hero-frame img {
  max-height: 520px;
  width: auto;
  position: relative;
  z-index: 1;
  animation: hero-float 6s ease-in-out infinite;
}

.hero-frame--landscape img {
  width: min(100%, 620px);
  max-height: none;
}

.carousel-indicators {
  margin-bottom: 1.3rem;
}

.carousel-indicators [data-bs-target] {
  width: 48px;
  height: 4px;
  border-radius: 999px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 4.6rem;
}

.about-panel,
.cta-panel,
.amo-card,
.detail-panel,
.table-panel,
.doc-card,
.product-card,
.contact-shell,
.spotlight-card,
.compare-panel {
  padding: 2rem;
}

.about-copy {
  font-size: 1.04rem;
  line-height: 1.9;
  color: var(--color-ink-soft);
  margin: 0;
}

.value-card {
  height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 36, 63, 0.08);
  box-shadow: var(--shadow-card);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.value-card p {
  color: var(--color-ink-soft);
  margin-bottom: 0;
  line-height: 1.7;
}

.product-card {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-card__visual {
  min-height: 300px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95), rgba(231, 237, 248, 0.72) 58%, rgba(195, 205, 220, 0.24) 100%),
    linear-gradient(180deg, rgba(17, 36, 63, 0.05), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.product-card__visual img {
  max-height: 270px;
  width: auto;
  transition: transform 0.25s ease;
}

.product-card:hover .product-card__visual img {
  transform: translateY(-5px) scale(1.02);
}

.product-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}

.product-card p {
  color: var(--color-ink-soft);
  line-height: 1.8;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.meta-pill {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 36, 63, 0.06);
  color: var(--color-ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.spotlight-card {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: auto -15% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 161, 58, 0.22), transparent 68%);
}

.spotlight-card h3 {
  font-size: 2rem;
  margin-bottom: 0.65rem;
}

.spotlight-card p {
  color: var(--color-ink-soft);
  margin-bottom: 0;
  max-width: 26rem;
  line-height: 1.8;
}

.spotlight-card .bi {
  font-size: 2rem;
  color: var(--color-accent-strong);
  margin-bottom: 1rem;
}

.amo-card,
.cta-panel {
  height: 100%;
}

.amo-card--home {
  display: flex;
  align-items: stretch;
  padding: 1.25rem;
}

.amo-card--home .amo-shell {
  flex: 1 1 auto;
  min-height: 100%;
}

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

.amo-card--compact,
.cta-panel--compact {
  height: auto;
}

.amo-card--compact .amo-shell {
  min-height: 0;
}

.amo-card--compact .amo-shell iframe {
  min-height: 0;
}

.amo-shell {
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: var(--color-panel-strong);
  border: 1px solid rgba(17, 36, 63, 0.08);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0.75rem;
}

.amo-shell > * {
  width: 100%;
  max-width: 100%;
}

.amo-shell iframe,
.amo-shell form,
.amo-shell .amoforms_iframe,
.amo-shell [class*="amoforms"],
.amo-shell [id*="amoforms"] {
  width: 100% !important;
  max-width: 100% !important;
}

.amo-shell iframe {
  min-height: 100%;
  border: 0;
  border-radius: calc(var(--radius-lg) - 8px);
  background: #fff;
}

.amo-card p,
.cta-panel p,
.cta-list {
  color: var(--color-ink-soft);
  line-height: 1.8;
}

.form-sidekick {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.2rem;
  background:
    radial-gradient(circle at top right, rgba(215, 161, 58, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 252, 0.92));
}

.form-sidekick .section-title {
  font-size: clamp(2.15rem, 3vw, 3.25rem);
}

.form-sidekick p {
  margin: 0;
  color: var(--color-ink-soft);
}

.cta-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.cta-list li + li {
  margin-top: 0.75rem;
}

.contact-shell {
  padding: 1.5rem;
}

.contact-info-box,
.map-shell {
  height: 100%;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 36, 63, 0.08);
  box-shadow: var(--shadow-card);
}

.contact-info-box {
  padding: 1.4rem 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1.15rem;
  padding: 1.2rem 0;
  align-items: flex-start;
}

.contact-card + .contact-card {
  border-top: 1px solid rgba(17, 36, 63, 0.08);
}

.contact-icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: rgba(17, 36, 63, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: #214e86;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.contact-card p,
.contact-card a {
  color: var(--color-ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.map-shell {
  overflow: hidden;
  padding: 0;
}

.map-shell iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
}

.page-hero {
  padding: 2rem 0 2.5rem;
}

.page-hero__panel {
  padding: 2rem;
}

.page-hero__panel p {
  color: var(--color-ink-soft);
  line-height: 1.8;
  max-width: 42rem;
  margin-bottom: 0;
}

.page-hero__visual {
  min-height: 280px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.94), rgba(238, 242, 248, 0.72) 64%, rgba(195, 205, 220, 0.24) 100%),
    linear-gradient(180deg, rgba(17, 36, 63, 0.05), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.page-hero__visual img {
  max-height: 250px;
  width: auto;
}

.compare-panel h3,
.table-panel h3,
.detail-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--color-ink-soft);
  line-height: 1.8;
}

.spec-list li + li {
  margin-top: 0.7rem;
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-strong);
}

.usage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.usage-chip {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(17, 36, 63, 0.06);
  color: var(--color-ink-soft);
  font-weight: 700;
}

.detail-switcher {
  gap: 0.8rem;
}

.detail-switcher .nav-link {
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  border: 1px solid rgba(17, 36, 63, 0.1);
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-ink-soft);
  font-weight: 700;
}

.detail-switcher .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #173662, #2b5ca0);
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(23, 54, 98, 0.24);
}

.detail-visual {
  padding: 2rem;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 6.5rem;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96), rgba(238, 242, 248, 0.72) 62%, rgba(195, 205, 220, 0.24) 100%),
    linear-gradient(180deg, rgba(17, 36, 63, 0.05), transparent);
}

.detail-visual img {
  max-height: 440px;
  width: auto;
}

.detail-panel p {
  color: var(--color-ink-soft);
  line-height: 1.8;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr td {
  padding: 0.85rem 0;
  vertical-align: top;
  border-bottom: 1px solid rgba(17, 36, 63, 0.08);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table td:first-child {
  width: 42%;
  color: var(--color-ink-soft);
  font-weight: 700;
  padding-right: 1rem;
}

.doc-card {
  height: 100%;
}

.doc-preview {
  min-height: 270px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 36, 63, 0.06), rgba(17, 36, 63, 0.02)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96), rgba(229, 236, 246, 0.72) 64%, rgba(195, 205, 220, 0.24) 100%);
  margin-bottom: 1.35rem;
}

.doc-preview::before {
  content: "PDF";
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #e24b3b;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.doc-preview img {
  position: absolute;
  right: -2%;
  bottom: -2%;
  max-height: 94%;
  width: auto;
}

.doc-preview--certificate {
  min-height: 420px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 36, 63, 0.08);
}

.doc-preview--certificate::before {
  z-index: 3;
}

.doc-preview--certificate iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.doc-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.65rem;
}

.doc-card p,
.doc-card li {
  color: var(--color-ink-soft);
  line-height: 1.8;
}

.doc-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-shell {
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  height: 54px;
  width: auto;
}

.brand-wordmark {
  display: block;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.footer-brand small {
  display: block;
  color: var(--color-ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.85rem 1.2rem;
  white-space: nowrap;
}

.footer-links a {
  color: var(--color-ink-soft);
  font-weight: 700;
}

.footer-copy {
  color: var(--color-ink-soft);
  text-align: right;
}

.footer-copy span {
  display: block;
}

.footer-copy span + span {
  margin-top: 0.35rem;
}

.footer-copy a {
  color: var(--color-accent-strong);
  font-weight: 700;
}

.status-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(215, 161, 58, 0.12);
  color: var(--color-accent-strong);
  font-weight: 700;
}

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

.compare-item {
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 36, 63, 0.08);
}

.compare-item h4 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--color-ink-soft);
  letter-spacing: normal;
  font-family: "Manrope", sans-serif;
  text-transform: none;
}

.compare-item p {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-ink);
}

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

@keyframes glow-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2vw, -2vh, 0) scale(1.05);
  }
}

@media (max-width: 1399.98px) {
  .desktop-nav {
    margin-left: 1rem;
  }

  .navbar-nav .nav-link {
    font-size: 0.86rem;
    padding-inline: 0.65rem;
  }
}

@media (max-width: 1199.98px) {
  .site-header .container {
    border-radius: 28px;
  }

  .navbar-brand img {
    height: 50px;
  }

  .hero-frame {
    min-height: 360px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
  }

  .footer-links {
    flex-wrap: wrap;
    white-space: normal;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .section-block {
    padding: 4rem 0;
  }

  .hero-slide {
    padding: 2rem;
    text-align: center;
  }

  .hero-copy {
    margin-bottom: 2rem;
  }

  .hero-text {
    margin-inline: auto;
  }

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

  .page-hero__visual {
    margin-top: 1rem;
  }

  .map-shell iframe {
    min-height: 430px;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    padding-top: 0.75rem;
  }

  .site-header .container {
    padding-inline: 1rem;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .hero-title {
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .hero-frame {
    min-height: 300px;
    padding: 1rem;
  }

  .hero-frame img,
  .detail-visual img {
    max-height: 360px;
  }

  .detail-visual {
    position: static;
    top: auto;
    min-height: 320px;
  }

  .about-panel,
  .cta-panel,
  .amo-card,
  .detail-panel,
  .table-panel,
  .doc-card,
  .product-card,
  .contact-shell,
  .spotlight-card,
  .compare-panel,
  .page-hero__panel {
    padding: 1.5rem;
  }

  .amo-shell {
    padding: 0.5rem;
  }

  .contact-card {
    gap: 0.9rem;
  }

  .contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

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

@media (max-width: 575.98px) {
  .floating-messengers {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .floating-messenger {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }

  .hero-slide {
    min-height: 520px;
  }

  .navbar-brand img {
    height: 44px;
  }
}
