:root {
  --blue: #0f2747;
  --blue-2: #0f2747;
  --ink: #162033;
  --muted: #5f6b7d;
  --soft: #f5f7fa;
  --line: #dfe6ef;
  --white: #ffffff;
  --accent: #c8a96b;
  --green: #25d366;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(20, 40, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(223, 230, 239, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  overflow: visible;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--blue);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2f3a4b;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.site-header.mega-open .nav-links a.has-mega::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a.has-mega {
  gap: 6px;
}

.nav-links a.has-mega::before {
  content: "";
  order: 2;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.site-header.mega-open .nav-links a.has-mega::before {
  transform: rotate(225deg);
  margin-top: 4px;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  width: min(1040px, calc(100vw - 48px));
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px) scale(0.985);
  transform-origin: top center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-header.mega-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.mega-panel {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.9fr 1.05fr;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(188, 203, 221, 0.64);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 248, 252, 0.78)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 80px rgba(20, 40, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px) saturate(1.35);
}

.mega-column {
  padding: 18px;
  border-radius: 10px;
}

.mega-feature {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(20, 40, 66, 0.98), rgba(30, 58, 95, 0.9)),
    var(--blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.mega-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-feature .mega-label {
  color: rgba(255, 255, 255, 0.72);
}

.mega-feature h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.mega-feature p {
  margin: 14px 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.mega-link {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 9px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.mega-link:hover,
.mega-link:focus-visible {
  border-color: rgba(45, 125, 210, 0.22);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.mega-link span {
  color: var(--blue-2);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
}

.mega-link small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

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

.language-switcher {
  position: relative;
  z-index: 30;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(184, 199, 216, 0.9);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(15, 39, 71, 0.06);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-switcher.is-open .language-toggle {
  border-color: rgba(200, 169, 107, 0.8);
  box-shadow: 0 14px 34px rgba(15, 39, 71, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.language-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  right: 0;
  width: 286px;
  padding: 10px;
  border: 1px solid rgba(188, 203, 221, 0.68);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.96)),
    #ffffff;
  box-shadow: 0 28px 70px rgba(20, 40, 66, 0.24);
  backdrop-filter: blur(24px) saturate(1.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-menu a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.language-menu a:hover,
.language-menu a:focus-visible {
  border-color: rgba(200, 169, 107, 0.35);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
  outline: none;
}

.language-code {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 169, 107, 0.5);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(200, 169, 107, 0.1);
  font-size: 12px;
  font-weight: 950;
}

.language-menu strong,
.language-menu small {
  display: block;
}

.language-menu strong {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.2;
}

.language-menu small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--blue);
  border-color: #b8c7d8;
  background: var(--white);
}

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

.button.whatsapp {
  color: var(--white);
  background: var(--green);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 9px 16px 9px 10px;
  color: var(--white);
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(15, 39, 71, 0.22);
}

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

.floating-whatsapp-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #25d366;
  background: var(--white);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.floating-whatsapp-text {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.floating-whatsapp-text strong {
  font-size: 13px;
}

.floating-whatsapp-text small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(200, 169, 107, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fc 58%, #eef3f8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  align-items: center;
  min-height: 760px;
  gap: 62px;
  padding: 78px 0 58px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(44px, 4.55vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

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

.hero-strengths {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px 18px;
  max-width: 590px;
  margin-top: 38px;
}

.strength {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-2);
  font-size: 14px;
  font-weight: 850;
}

.strength-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(200, 169, 107, 0.46);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(15, 39, 71, 0.08);
  font-size: 16px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-backdrop {
  position: absolute;
  overflow: hidden;
  top: 8px;
  right: 6px;
  width: 80%;
  height: 520px;
  border: 1px solid rgba(15, 39, 71, 0.08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(15, 39, 71, 0.12);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  backdrop-filter: blur(2px);
}

.hero-backdrop img,
.hero-scene img,
.hero-product img,
.hero-factory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scene {
  position: absolute;
  top: 18px;
  right: 0;
  width: 100%;
  height: 526px;
  overflow: hidden;
  border: 1px solid rgba(15, 39, 71, 0.1);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 30px 72px rgba(15, 39, 71, 0.15);
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 28%, rgba(255, 255, 255, 0.12));
}

.hero-product,
.hero-factory-card,
.hero-stats {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(15, 39, 71, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 52px rgba(15, 39, 71, 0.14);
}

.hero-product-main {
  top: 72px;
  right: 0;
  width: 74%;
  height: 318px;
  padding: 28px;
}

.hero-product-main img {
  object-fit: contain;
}

.hero-product-sofa {
  left: 0;
  bottom: 86px;
  width: 48%;
  height: 248px;
}

.hero-factory-card {
  right: 22px;
  bottom: 70px;
  width: 38%;
  height: 206px;
}

.hero-factory-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(transparent, rgba(15, 39, 71, 0.78));
}

.hero-factory-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.hero-stats {
  left: 72px;
  right: 34px;
  bottom: 300px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 20px 42px rgba(15, 39, 71, 0.11);
}

.hero-visual-scene .hero-stats {
  left: 28px;
  right: 28px;
  bottom: 24px;
}

.hero-stat {
  padding: 18px 16px;
  border-right: 1px solid rgba(15, 39, 71, 0.11);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  color: var(--blue);
  font-size: 25px;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

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

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

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

.section-head h2,
.page-hero h1 {
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.dark .section-head h2 {
  color: var(--white);
}

.section-head p,
.page-hero p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.dark .section-head p,
.dark p {
  color: rgba(255, 255, 255, 0.78);
}

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

.product-card,
.info-card,
.article-card,
.landing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--soft);
}

.product-card .card-body,
.info-card,
.article-card,
.landing-card {
  padding: 24px;
}

.product-card h3,
.info-card h3,
.article-card h3,
.landing-card h3 {
  margin: 0 0 10px;
  color: var(--blue-2);
  font-size: 21px;
  line-height: 1.2;
}

.product-card p,
.info-card p,
.article-card p,
.landing-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

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

.info-card {
  min-height: 180px;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.step strong {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--blue);
  border-radius: 6px;
  background: var(--white);
}

.step h3 {
  margin: 0 0 5px;
  font-size: 20px;
}

.applications {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.app-item {
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-2);
  font-weight: 800;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(20, 40, 66, 0.08);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--blue-2);
  object-fit: cover;
}

.video-card-body {
  padding: 18px;
}

.video-card h3 {
  margin: 0 0 8px;
  color: var(--blue-2);
  font-size: 19px;
  line-height: 1.2;
}

.video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.faq-item button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--blue-2);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.is-open p {
  display: block;
}

.cta-band {
  color: var(--white);
  background: var(--blue);
}

.inquiry-page {
  background:
    radial-gradient(circle at 84% 4%, rgba(200, 169, 107, 0.16), transparent 30%),
    linear-gradient(135deg, #f7f9fc 0%, #ffffff 56%, #eef3f8 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.cta-grid h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
}

.inquiry-form.premium-form {
  padding: 30px;
  border: 1px solid rgba(207, 217, 230, 0.92);
  box-shadow: 0 26px 70px rgba(15, 39, 71, 0.13);
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
}

.field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.required-mark {
  color: #b42318;
  font-size: 13px;
  font-weight: 900;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  border: 1px solid #cfd9e6;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #ffffff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 39, 71, 0.09);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #8a96a8;
}

.inquiry-form input.is-invalid,
.inquiry-form textarea.is-invalid,
.inquiry-form select.is-invalid {
  border-color: #d92d20;
  background: #fffafa;
}

.field-error {
  min-height: 16px;
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  color: #067647;
  background: #ecfdf3;
  font-weight: 800;
}

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

.form-status.is-error {
  color: #b42318;
  background: #fef3f2;
}

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

.form-actions .button {
  flex: 0 0 auto;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.contact-proof-grid,
.location-grid {
  display: grid;
  gap: 20px;
}

.contact-proof-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.location-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.address-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 40, 66, 0.08);
}

.address-card {
  padding: 28px;
}

.address-card h3,
.map-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.15;
}

.address-lines {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 720;
}

.address-lines span {
  color: var(--muted);
  font-weight: 650;
}

.map-card {
  overflow: hidden;
}

.map-card h3 {
  padding: 22px 22px 0;
}

.map-frame {
  width: 100%;
  min-height: 390px;
  border: 0;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #102338;
}

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

.site-footer h3,
.site-footer h4 {
  margin: 0 0 12px;
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 14px;
}

.page-hero {
  padding: 78px 0 58px;
  background: linear-gradient(135deg, #f7f9fc, #ffffff);
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.detail-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.detail-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--blue-2);
  background: var(--soft);
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

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

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.compare-table th {
  color: var(--blue-2);
  background: var(--soft);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.keyword-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #cfd9e6;
  border-radius: 999px;
  color: var(--blue-2);
  background: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.mini-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.ad-hero {
  background: var(--blue);
  color: var(--white);
}

.ad-hero .page-hero h1,
.ad-hero .page-hero p {
  color: var(--white);
}

@media (max-width: 980px) {
  .mega-menu {
    display: none;
  }

  .nav-links a::after,
  .nav-links a.has-mega::before {
    display: none;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-grid,
  .split,
  .cta-grid,
  .location-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 38px;
    padding: 54px 0 44px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-backdrop {
    right: 0;
    width: 90%;
  }

  .hero-stats {
    left: 24px;
    right: 24px;
    bottom: 282px;
  }

  .product-grid,
  .advantage-grid,
  .article-grid,
  .landing-grid,
  .contact-proof-grid,
  .video-grid,
  .video-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    gap: 14px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions,
  .hero-actions {
    width: 100%;
  }

  .language-switcher {
    width: 100%;
  }

  .language-toggle {
    width: 100%;
  }

  .language-menu {
    left: 0;
    right: auto;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 8px 12px 8px 8px;
  }

  .floating-whatsapp-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .floating-whatsapp-text small {
    display: none;
  }

  .hero h1 {
    font-size: 39px;
    line-height: 1.02;
  }

  .hero-kicker {
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-strengths,
  .product-grid,
  .advantage-grid,
  .article-grid,
  .landing-grid,
  .contact-proof-grid,
  .video-grid,
  .video-grid.two,
  .footer-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .inquiry-form.premium-form {
    padding: 22px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .map-frame {
    min-height: 320px;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .hero-backdrop,
  .hero-scene,
  .hero-product,
  .hero-factory-card,
  .hero-stats {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-backdrop {
    display: none;
  }

  .hero-scene {
    display: block;
    height: 260px;
  }

  .hero-product-main,
  .hero-product-sofa,
  .hero-factory-card {
    height: 220px;
  }

  .hero-product-main {
    padding: 18px;
  }

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

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}
