: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);
}

.button.linkedin-button {
  color: var(--white);
  border-color: #0a66c2;
  background: #0a66c2;
}

.social-icon-link {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10, 102, 194, 0.22);
  border-radius: 6px;
  color: #0a66c2;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(15, 39, 71, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  color: var(--white);
  border-color: #0a66c2;
  background: #0a66c2;
  transform: translateY(-1px);
  outline: none;
}

.social-icon-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.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);
}

.buyer-path-section {
  background: #ffffff;
}

.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);
}

.compact-head {
  margin-bottom: 24px;
}

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

.buyer-card {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(207, 217, 230, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.94)),
    #ffffff;
  box-shadow: 0 16px 38px rgba(20, 40, 66, 0.07);
}

.buyer-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 10px;
  border: 1px solid rgba(200, 169, 107, 0.45);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(200, 169, 107, 0.11);
  font-size: 12px;
  font-weight: 900;
}

.buyer-card h3 {
  margin: 0 0 10px;
  color: var(--blue-2);
  font-size: 22px;
  line-height: 1.16;
}

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

.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;
}

.proof-media-contain {
  background: #f7f9fc;
}

.proof-media-contain img {
  object-fit: contain;
}

.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(6, 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;
}

.rfq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: center;
}

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

.rfq-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.rfq-item strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
}

.rfq-item span {
  color: var(--ink);
  font-weight: 720;
}

.rfq-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

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

.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;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 20px;
}

.contact-channel-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-channel-card:hover,
.contact-channel-card:focus-visible {
  border-color: rgba(200, 169, 107, 0.7);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
  outline: none;
}

.contact-channel-icon {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: var(--blue);
  background: var(--white);
  font-size: 13px;
  font-weight: 950;
}

.contact-channel-icon.in {
  color: var(--white);
  background: #0a66c2;
  font-size: 16px;
}

.contact-channel-card strong {
  align-self: end;
  font-size: 15px;
  line-height: 1.1;
}

.contact-channel-card small {
  align-self: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.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;
}

.footer-links a {
  transition: color 0.18s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  outline: none;
}

.footer-bottom-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.site-footer .social-icon-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-footer .social-icon-link:hover,
.site-footer .social-icon-link:focus-visible {
  border-color: #0a66c2;
  background: #0a66c2;
}

.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);
}

.founder-section {
  background:
    linear-gradient(135deg, rgba(247, 249, 252, 0.98), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  gap: 42px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(207, 217, 230, 0.95);
  border-radius: 10px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%),
    var(--white);
  box-shadow: 0 24px 70px rgba(15, 39, 71, 0.11);
}

.founder-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(188, 203, 221, 0.72);
  border-radius: 8px;
  background: #ffffff;
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(15, 39, 71, 0.18), transparent);
  pointer-events: none;
}

.founder-photo img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center bottom;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
}

.founder-copy {
  display: grid;
  gap: 16px;
}

.founder-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
}

.founder-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.founder-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(200, 169, 107, 0.46);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(200, 169, 107, 0.1);
  font-size: 13px;
  font-weight: 850;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

@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,
  .rfq-grid,
  .founder-card {
    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,
  .buyer-grid,
  .article-grid,
  .landing-grid,
  .contact-proof-grid,
  .video-grid,
  .video-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .founder-photo img {
    height: 390px;
  }
}

@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%;
  }

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

  .language-switcher {
    width: 100%;
  }

  .language-toggle {
    width: 100%;
  }

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

  .button {
    width: 100%;
  }

  .site-header .social-icon-link {
    display: none;
  }

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

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

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

  .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,
  .buyer-grid,
  .article-grid,
  .landing-grid,
  .contact-proof-grid,
  .contact-channel-grid,
  .video-grid,
  .video-grid.two,
  .footer-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .founder-card {
    padding: 22px;
  }

  .founder-photo img {
    height: 320px;
  }

  .founder-actions {
    display: grid;
  }

  .footer-bottom-social {
    align-items: stretch;
    flex-direction: column;
  }

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

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

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

  .proof-media img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .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-visual-scene .hero-stats {
    left: 0;
    right: auto;
    bottom: auto;
  }

  .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;
  }

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

  .buyer-card {
    min-height: auto;
  }

  .rfq-media img {
    height: 260px;
  }
}


.product-seo-hero .hero-kicker {
  color: var(--accent);
}

.product-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.product-proof-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-proof-grid strong,
.product-proof-grid span {
  display: block;
}

.product-proof-grid strong {
  color: var(--blue);
  font-size: 13px;
  margin-bottom: 6px;
}

.product-proof-grid span {
  color: var(--muted);
  font-size: 14px;
}

.product-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.floating-rfq {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 38px rgba(15, 39, 71, 0.2);
  font-size: 13px;
  font-weight: 850;
}

.contact-person-section {
  position: fixed;
  top: 96px;
  right: 16px;
  z-index: 88;
  width: 196px;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.contact-person-section .container {
  width: auto;
  margin: 0;
}

.factory-contact-card {
  display: grid;
  width: 196px;
  margin: 0;
  overflow: hidden;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(188, 203, 221, 0.72);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(15, 39, 71, 0.14);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.factory-contact-photo {
  width: 100%;
  padding: 8px 10px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.factory-contact-photo::before {
  display: none;
}

.factory-contact-photo img {
  width: 100%;
  height: 132px;
  object-fit: contain;
  object-position: center center;
  border: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: none;
}

.factory-contact-copy {
  display: grid;
  gap: 5px;
  padding: 10px;
}

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

.factory-contact-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0;
}

.factory-contact-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.contact-person-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 6px;
  align-items: center;
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 750;
}

.contact-person-meta span {
  color: #465369;
  font-weight: 700;
}

.contact-person-meta span::before {
  display: none;
}

.factory-contact-points {
  display: none;
}

.factory-contact-points li::marker {
  color: var(--blue);
}

.factory-contact-actions {
  display: flex;
  gap: 6px;
  margin-top: 2px;
}

.factory-contact-actions .button {
  flex: 1;
  min-height: 28px;
  padding: 6px 7px;
  justify-content: center;
  font-size: 10.5px;
}

.factory-contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.factory-contact-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(188, 203, 221, 0.78);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .contact-person-section,
  .floating-rfq {
    display: none;
  }

  .contact-person-meta {
    display: grid;
    gap: 6px;
  }

  .contact-person-meta span::before {
    display: none;
  }

  .product-proof-grid,
  .product-content-grid {
    grid-template-columns: 1fr;
  }

}

.growth-dashboard-shell {
  --growth-navy: #0b1d33;
  --growth-panel: #ffffff;
  --growth-soft: #f4f7fb;
  --growth-line: #dbe5f1;
  --growth-blue: #2f80ed;
  --growth-gold: #c8a96b;
  --growth-green: #25d366;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: calc(100vh - 74px);
  background:
    radial-gradient(circle at 82% 0%, rgba(47, 128, 237, 0.1), transparent 32%),
    linear-gradient(180deg, #f7f9fc 0%, #edf3fa 100%);
  overflow-x: clip;
}

.growth-dashboard-page .contact-person-section,
.growth-dashboard-page .floating-rfq {
  display: none;
}

.growth-sidebar {
  position: sticky;
  top: 74px;
  align-self: start;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 74px);
  padding: 24px 18px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(15, 39, 71, 0.98), rgba(7, 20, 37, 0.98)),
    var(--growth-navy);
}

.growth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 900;
}

.growth-brand img {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  object-fit: cover;
}

.growth-nav {
  display: grid;
  gap: 7px;
}

.growth-nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
}

.growth-nav a:hover,
.growth-nav a.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #276ed7, #2f80ed);
}

.growth-sidebar-note {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.growth-sidebar-note strong {
  color: var(--growth-gold);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.growth-sidebar-note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.growth-dashboard-main {
  display: grid;
  gap: 22px;
  width: min(1240px, calc(100% - 44px));
  min-width: 0;
  margin: 0 auto;
  padding: 34px 0 58px;
}

.growth-topbar,
.growth-panel,
.growth-flow article,
.growth-metrics article {
  border: 1px solid rgba(190, 204, 222, 0.82);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(15, 39, 71, 0.08);
  backdrop-filter: blur(16px);
}

.growth-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 18px;
}

.growth-eyebrow {
  margin: 0 0 8px;
  color: var(--growth-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.growth-topbar h1 {
  max-width: 760px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.growth-topbar p:not(.growth-eyebrow) {
  max-width: 780px;
  margin: 15px 0 0;
  color: #58677d;
  font-size: 16px;
}

.growth-top-actions,
.growth-filter-group,
.growth-cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.growth-flow article {
  position: relative;
  min-height: 132px;
  padding: 18px;
  border-radius: 14px;
}

.growth-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--growth-blue), rgba(47, 128, 237, 0));
}

.growth-flow span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 9px;
  color: var(--blue);
  background: #eef5ff;
  font-weight: 900;
}

.growth-flow strong,
.growth-metrics strong,
.growth-panel h2 {
  color: var(--blue);
}

.growth-flow strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.growth-flow small {
  display: block;
  margin-top: 7px;
  color: #66758a;
  font-size: 12px;
  line-height: 1.42;
}

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

.growth-metrics article {
  display: grid;
  gap: 5px;
  min-height: 122px;
  padding: 18px;
  border-radius: 14px;
}

.growth-metrics span {
  color: #627087;
  font-size: 12px;
  font-weight: 800;
}

.growth-metrics strong {
  font-size: 34px;
  line-height: 1;
}

.growth-metrics small {
  color: #7a8798;
  font-size: 12px;
  line-height: 1.38;
}

.growth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
  gap: 18px;
  min-width: 0;
}

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

.growth-panel {
  padding: 22px;
  border-radius: 18px;
  min-width: 0;
}

.growth-panel-large {
  min-height: 402px;
}

.growth-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.growth-panel-head h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.growth-panel-head p {
  max-width: 720px;
  margin: 7px 0 0;
  color: #657389;
  font-size: 14px;
}

.growth-filter-group button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--growth-line);
  border-radius: 999px;
  color: var(--blue);
  background: #ffffff;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.growth-filter-group button.is-active,
.growth-filter-group button:hover {
  color: #ffffff;
  border-color: var(--growth-blue);
  background: var(--growth-blue);
}

.trend-chart {
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.trend-chart svg {
  width: 100%;
  min-height: 260px;
}

.trend-chart .chart-grid {
  fill: none;
  stroke: #e6edf6;
  stroke-width: 1;
}

.trend-chart .chart-fill {
  fill: url(#trendFill);
}

.trend-chart .chart-line {
  fill: none;
  stroke: var(--growth-blue);
  stroke-width: 5;
  stroke-linecap: round;
}

.trend-chart circle {
  fill: #ffffff;
  stroke: var(--growth-blue);
  stroke-width: 4;
}

.donut-card {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.donut-chart {
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#2f80ed 0 42%, #c8a96b 42% 64%, #25d366 64% 82%, #0f2747 82% 100%);
  box-shadow: inset 0 0 0 42px #ffffff, 0 14px 30px rgba(15, 39, 71, 0.12);
}

.donut-card ul,
.question-list,
.market-list,
.task-list {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.donut-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4d5c70;
  font-size: 13px;
  font-weight: 750;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.blue { background: #2f80ed; }
.dot.gold { background: #c8a96b; }
.dot.green { background: #25d366; }
.dot.navy { background: #0f2747; }

.intent-bars {
  display: grid;
  gap: 15px;
}

.intent-bars div {
  display: grid;
  grid-template-columns: 128px 1fr 44px;
  align-items: center;
  gap: 12px;
  color: #536276;
  font-size: 13px;
  font-weight: 800;
}

.intent-bars i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--growth-blue) var(--bar), #e7edf5 var(--bar));
}

.intent-bars strong {
  color: var(--blue);
}

.question-list a,
.market-list article,
.task-list li {
  border: 1px solid #e2e9f2;
  border-radius: 12px;
  background: #fbfdff;
}

.question-list a {
  display: block;
  padding: 13px 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.question-list a:hover {
  border-color: rgba(47, 128, 237, 0.4);
  background: #f1f7ff;
}

.growth-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.growth-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  overflow: hidden;
  border-radius: 12px;
  font-size: 14px;
}

.growth-table th,
.growth-table td {
  padding: 14px;
  border-bottom: 1px solid #e5ecf5;
  text-align: left;
  vertical-align: middle;
}

.growth-table th {
  color: #607088;
  background: #f5f8fc;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.growth-table td {
  color: #2b384b;
  font-weight: 650;
}

.priority {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.priority.high {
  color: #0b5c2a;
  background: rgba(37, 211, 102, 0.15);
}

.priority.medium {
  color: #7a5712;
  background: rgba(200, 169, 107, 0.22);
}

.market-list article {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  padding: 13px 14px;
}

.market-list strong {
  color: var(--blue);
}

.market-list span,
.task-list span {
  color: #66758a;
  font-size: 13px;
  line-height: 1.42;
}

.task-list {
  counter-reset: tasks;
}

.task-list li {
  counter-increment: tasks;
  display: grid;
  gap: 4px;
  padding: 14px 14px 14px 52px;
  position: relative;
}

.task-list li::before {
  content: counter(tasks);
  position: absolute;
  top: 15px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.task-list strong {
  color: var(--blue);
  font-size: 14px;
}

.growth-cta-strip {
  margin-top: 16px;
}

@media (max-width: 1120px) {
  .growth-dashboard-shell {
    grid-template-columns: 1fr;
  }

  .growth-sidebar {
    position: static;
    min-height: auto;
    overflow: hidden;
  }

  .growth-nav {
    display: flex;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .growth-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .growth-sidebar-note {
    display: none;
  }

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

  .growth-flow article:not(:last-child)::after {
    display: none;
  }

  .growth-grid,
  .growth-grid-balanced {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .growth-dashboard-main {
    width: min(100% - 28px, 1240px);
    padding: 24px 0 42px;
  }

  .growth-topbar {
    display: grid;
    padding: 22px;
  }

  .growth-topbar h1 {
    font-size: 38px;
  }

  .growth-flow,
  .growth-metrics {
    grid-template-columns: 1fr;
  }

  .growth-panel {
    padding: 18px;
  }

  .growth-panel-head {
    display: grid;
  }

  .intent-bars div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .market-list article {
    grid-template-columns: 1fr;
  }
}
