@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800;900&family=Rubik:wght@500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --ink: #111318;
  --muted: #626a76;
  --line: #dfe4ea;
  --paper: #f6f7f9;
  --white: #ffffff;
  --night: #090b10;
  --red: #e03135;
  --cyan: #00a7b5;
  --gold: #c99535;
  --shadow: 0 18px 60px rgba(17, 19, 24, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(223, 228, 234, 0.82);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 5vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(17, 19, 24, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.03rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  font-size: 0.88rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav,
.site-footer nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 36px);
}

.nav a,
.site-footer nav a {
  color: #2f3540;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a:hover,
.site-footer nav a:hover,
.nav a.is-active {
  color: var(--red);
}

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

.language-switch {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  height: 36px;
}

.language-switch button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  height: 34px;
  padding: 0 10px;
}

.language-switch button.is-active {
  background: var(--ink);
  color: var(--white);
}

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 7px;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  width: 24px;
}

.hero {
  background: var(--night);
  min-height: 88vh;
  overflow: hidden;
  position: relative;
}

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

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.86) 0%, rgba(5, 7, 11, 0.58) 42%, rgba(5, 7, 11, 0.1) 100%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.36), rgba(5, 7, 11, 0.08));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 720px;
  padding: 24vh clamp(20px, 7vw, 84px) 12vh;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  text-transform: lowercase;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  margin: 28px 0 0;
  max-width: 620px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

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

.button-primary:hover {
  background: #b9272b;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.strip {
  background: var(--night);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.strip div {
  background: #121720;
  padding: 26px clamp(20px, 4vw, 54px);
}

.strip strong {
  display: block;
  font-size: clamp(1.2rem, 2.3vw, 2rem);
  line-height: 1.1;
}

.strip span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 32px);
}

.intro {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.intro > p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  margin: 30px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.feature-band h2,
.contact h2 {
  font-size: clamp(2.05rem, 4.5vw, 4.6rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.category-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
}

.category-card {
  background: var(--night);
  color: var(--white);
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.category-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 300ms ease;
  width: 100%;
}

.category-card::after {
  background: linear-gradient(90deg, rgba(5, 7, 11, 0.8), rgba(5, 7, 11, 0.12));
  content: "";
  inset: 0;
  position: absolute;
}

.category-card:hover img {
  transform: scale(1.04);
}

.category-card div {
  bottom: 26px;
  left: 28px;
  max-width: 360px;
  position: absolute;
  right: 28px;
  z-index: 1;
}

.category-card span,
.product-copy p {
  color: var(--cyan);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.category-card h3,
.product-card h3,
.capability-grid h3 {
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1.13;
  margin: 0;
}

.featured {
  padding-top: 0;
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.product-card a,
.category-card a {
  display: block;
  height: 100%;
}

.product-card img {
  aspect-ratio: 1 / 1;
  background: #edf1f5;
  object-fit: cover;
  transition: transform 240ms ease;
  width: 100%;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-copy {
  padding: 22px;
}

.product-copy span,
.capability-grid p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.feature-band {
  align-items: stretch;
  background: var(--night);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
}

.feature-band img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.feature-band div {
  align-self: center;
  padding: clamp(48px, 7vw, 90px);
}

.feature-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  margin: 24px 0 0;
}

.capabilities {
  background: var(--white);
}

.capability-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.capability-grid article {
  background: var(--paper);
  min-height: 250px;
  padding: 28px;
}

.capability-grid span {
  color: var(--gold);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 42px;
}

.contact {
  align-items: start;
  display: grid;
  gap: clamp(32px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.75fr);
  padding-top: 0;
}

.contact-copy p {
  font-size: 1.06rem;
  margin: 24px 0 0;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-points span {
  border: 1px solid var(--line);
  color: #3b424d;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 12px;
}

.inquiry-form {
  background: var(--night);
  box-shadow: var(--shadow);
  color: var(--white);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
}

.inquiry-form label {
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 8px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  background: #161b24;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  min-height: 46px;
  outline: none;
  padding: 12px 13px;
  width: 100%;
}

.inquiry-form textarea {
  min-height: 128px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--cyan);
}

.form-note {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  margin: 0;
}

.site-footer {
  align-items: center;
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 34px clamp(18px, 5vw, 54px);
}

.site-footer p {
  margin: 10px 0 0;
}

.page-hero {
  background: var(--night);
  color: var(--white);
  min-height: 520px;
  overflow: hidden;
  padding: 140px clamp(20px, 7vw, 84px) 72px;
  position: relative;
}

.page-hero > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.52;
  position: absolute;
  width: 100%;
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(5, 7, 11, 0.88), rgba(5, 7, 11, 0.3));
  content: "";
  inset: 0;
  position: absolute;
}

.page-hero > div {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.page-hero h1,
.product-hero h1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0;
}

.page-hero p:not(.eyebrow),
.product-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  max-width: 680px;
}

.catalog-section {
  padding-top: clamp(56px, 7vw, 86px);
}

.product-hero {
  align-items: stretch;
  background: var(--night);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: 640px;
  padding-top: 72px;
}

.product-hero-copy {
  align-self: center;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 7vw, 84px);
}

.product-hero-media {
  background: #edf1f5;
  min-height: 520px;
}

.product-hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.button-secondary.dark {
  border-color: var(--line);
  color: var(--ink);
}

.product-summary {
  display: grid;
  gap: clamp(26px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
}

.spec-panel h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  margin: 0;
}

.spec-grid {
  align-content: start;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spec-grid span {
  background: var(--paper);
  border: 1px solid var(--line);
  color: #343b46;
  font-weight: 850;
  padding: 16px;
}

.gallery-section {
  padding-top: 0;
}

.asset-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.asset-grid img {
  aspect-ratio: 1 / 1;
  background: var(--paper);
  border: 1px solid var(--line);
  object-fit: cover;
  width: 100%;
}

.detail-section {
  background: var(--paper);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.detail-heading {
  padding-bottom: 32px;
}

.detail-heading p:not(.eyebrow) {
  color: var(--muted);
  max-width: 760px;
}

.detail-stack {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(14px, 3vw, 32px);
}

.detail-stack img {
  background: var(--white);
  margin: 0 auto 12px;
  width: min(100%, 1180px);
}

.compact-contact {
  padding-top: clamp(64px, 8vw, 104px);
}

.inquiry-cta {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-top: clamp(64px, 8vw, 104px);
}

.inquiry-cta h2,
.contact-info h2,
.process-section h2,
.faq-section h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.inquiry-cta p:not(.eyebrow) {
  color: var(--muted);
  max-width: 720px;
}

.contact-hero {
  background: var(--night);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: 680px;
  padding-top: 72px;
}

.contact-hero-copy {
  align-self: center;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 7vw, 84px);
}

.contact-hero h1 {
  font-size: clamp(2.45rem, 4.7vw, 4.9rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.contact-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  max-width: 660px;
}

.contact-hero-media {
  min-height: 520px;
  overflow: hidden;
}

.contact-hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.contact-page-grid {
  align-items: start;
  display: grid;
  gap: clamp(32px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.74fr);
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.info-list article {
  border: 1px solid var(--line);
  display: grid;
  gap: 5px;
  padding: 18px;
}

.info-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-list a,
.info-list strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.process-section {
  background: var(--paper);
  max-width: none;
}

.process-section > *,
.faq-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

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

.process-grid article,
.faq-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
}

.process-grid span {
  color: var(--gold);
  display: block;
  font-weight: 900;
  margin-bottom: 34px;
}

.process-grid h3,
.faq-grid h3 {
  font-size: 1.18rem;
  margin: 0;
}

.process-grid p,
.faq-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

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

@media (max-width: 920px) {
  .intro,
  .feature-band,
  .contact,
  .product-hero,
  .product-summary,
  .contact-hero,
  .contact-page-grid,
  .inquiry-cta {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .capability-grid,
  .asset-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band img {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 64px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(17, 19, 24, 0.12);
    display: grid;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 10px 18px 18px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 64px;
    transform: translateY(-10px);
    transition:
      opacity 170ms ease,
      transform 170ms ease;
  }

  .language-switch {
    height: 34px;
  }

  .language-switch button {
    height: 32px;
    padding: 0 8px;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    border-top: 1px solid var(--line);
    padding: 14px 0;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(5, 7, 11, 0.9), rgba(5, 7, 11, 0.28));
  }

  .hero img {
    object-position: center top;
  }

  .hero-content {
    padding-top: 42vh;
  }

  .strip,
  .category-grid,
  .product-grid,
  .capability-grid,
  .asset-grid,
  .spec-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 440px;
    padding-top: 120px;
  }

  .product-hero {
    padding-top: 64px;
  }

  .product-hero-media {
    min-height: 340px;
  }

  .contact-hero {
    padding-top: 64px;
  }

  .contact-hero-media {
    min-height: 260px;
  }

  .category-card {
    min-height: 220px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .category-card div,
  .product-copy,
  .capability-grid article,
  .process-grid article,
  .faq-grid article {
    padding: 20px;
  }

  .category-card div {
    bottom: 0;
    left: 0;
    right: 0;
  }
}

/* UI/UX Pro Max redesign: accessible B2B catalog system */
:root {
  --ink: #020617;
  --muted: #475569;
  --line: #dbe3ef;
  --paper: #f8fafc;
  --white: #ffffff;
  --night: #182341;
  --red: #344d92;
  --cyan: #5b75bd;
  --gold: #b7791f;
  --shadow: 0 18px 54px rgba(52, 77, 146, 0.14);
  --max: 1200px;
}

body {
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
  color: var(--ink);
  font-family: "Nunito Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
}

h1,
h2,
h3,
.brand,
.button,
.nav a {
  font-family: Rubik, Inter, ui-sans-serif, system-ui, sans-serif;
}

a,
button,
.product-card,
.category-card {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
main:focus-visible {
  outline: 3px solid rgba(52, 77, 146, 0.42);
  outline-offset: 3px;
}

.skip-link {
  background: var(--night);
  color: var(--white);
  font-weight: 900;
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  top: 12px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 100;
}

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

.site-header {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 227, 239, 0.9);
  box-shadow: 0 18px 50px rgba(24, 35, 65, 0.08);
  height: 68px;
  left: 18px;
  padding: 0 18px;
  right: 18px;
  top: 14px;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(24, 35, 65, 0.12);
}

.brand {
  color: #182341;
  font-weight: 900;
}

.brand-mark {
  background: #182341;
  border-radius: 6px;
}

.brand-logo {
  height: 38px;
  object-fit: contain;
  width: auto;
}

.nav {
  gap: 8px;
}

.nav a {
  border-radius: 999px;
  color: #334155;
  font-size: 0.84rem;
  padding: 9px 12px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  background: #e0f2fe;
  color: #344d92;
}

.language-switch {
  background: #f8fafc;
  border-radius: 999px;
  overflow: hidden;
}

.language-switch button {
  border-radius: 999px;
  min-width: 44px;
}

.language-switch button.is-active {
  background: #182341;
}

.hero {
  min-height: 86vh;
}

.hero-carousel {
  min-height: 92vh;
}

.carousel-track,
.carousel-slide {
  inset: 0;
  margin: 0;
  position: absolute;
}

.carousel-slide {
  opacity: 0;
  transition: opacity 650ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 35, 65, 0.92) 0%, rgba(24, 35, 65, 0.74) 43%, rgba(24, 35, 65, 0.16) 100%),
    linear-gradient(0deg, rgba(24, 35, 65, 0.52), rgba(24, 35, 65, 0.05));
}

.hero-content {
  max-width: 760px;
  padding-top: 26vh;
}

.carousel-panel {
  bottom: 28px;
  display: grid;
  gap: 8px;
  position: absolute;
  right: clamp(18px, 5vw, 54px);
  width: min(360px, calc(100vw - 36px));
  z-index: 2;
}

.carousel-panel button {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  color: #334155;
  display: grid;
  font-family: "Nunito Sans", Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 850;
  gap: 10px;
  grid-template-columns: 42px 1fr;
  min-height: 48px;
  padding: 8px 12px;
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.carousel-panel button span {
  color: #344d92;
  font-family: Rubik, Inter, sans-serif;
  font-weight: 900;
}

.carousel-panel button.is-active {
  background: #182341;
  border-color: #182341;
  color: #ffffff;
}

.carousel-panel button.is-active span {
  color: #5b75bd;
}

.carousel-controls {
  bottom: 28px;
  display: flex;
  gap: 8px;
  left: clamp(20px, 7vw, 84px);
  position: absolute;
  z-index: 2;
}

.carousel-controls button {
  background: rgba(24, 35, 65, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  font-family: Rubik, Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  min-height: 40px;
  padding: 0 14px;
}

.eyebrow {
  color: #5b75bd;
  font-family: Rubik, Inter, ui-sans-serif, system-ui, sans-serif;
}

.hero h1,
.page-hero h1,
.product-hero h1,
.contact-hero h1 {
  text-transform: none;
}

.hero-copy,
.page-hero p:not(.eyebrow),
.product-hero p:not(.eyebrow),
.contact-hero p:not(.eyebrow) {
  font-weight: 700;
}

.button {
  border-radius: 8px;
  min-height: 50px;
  padding: 0 22px;
}

.button-primary {
  background: #344d92;
  box-shadow: 0 12px 28px rgba(52, 77, 146, 0.28);
}

.button-primary:hover {
  background: #24376d;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.strip div {
  background: #182341;
}

.section {
  padding-bottom: clamp(72px, 8vw, 112px);
  padding-top: clamp(72px, 8vw, 112px);
}

.section-heading h2,
.feature-band h2,
.contact h2,
.inquiry-cta h2,
.contact-info h2,
.process-section h2,
.faq-section h2 {
  color: #182341;
  max-width: 880px;
}

.category-grid,
.product-grid,
.capability-grid,
.process-grid,
.faq-grid {
  gap: 18px;
}

.category-card,
.product-card,
.capability-grid article,
.process-grid article,
.faq-grid article,
.info-list article {
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.category-card:hover,
.product-card:hover,
.capability-grid article:hover,
.process-grid article:hover,
.faq-grid article:hover {
  border-color: #bae6fd;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-card {
  background: #ffffff;
}

.product-card img {
  background: #f1f5f9;
  object-fit: contain;
  padding: 14px;
}

.product-copy {
  border-top: 1px solid var(--line);
}

.product-copy p,
.category-card span {
  color: #344d92;
}

.product-copy span,
.capability-grid p,
.contact-copy p,
.site-footer p,
.inquiry-cta p:not(.eyebrow) {
  color: #475569;
  font-weight: 650;
}

.feature-band {
  background: #182341;
}

.feature-band div {
  background:
    radial-gradient(circle at top left, rgba(91, 117, 189, 0.2), transparent 42%),
    #182341;
}

.launch-board {
  padding-top: 0;
}

.launch-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  margin-top: 38px;
}

.launch-feature {
  background: #182341;
  border-radius: 8px;
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
  overflow: hidden;
}

.launch-feature img {
  background: #e2e8f0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.launch-feature div {
  align-self: center;
  padding: clamp(26px, 5vw, 56px);
}

.launch-feature h3 {
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.05;
  margin: 0 0 26px;
}

.launch-feature a {
  color: #b8c7ff;
  font-family: Rubik, Inter, sans-serif;
  font-weight: 900;
}

.launch-metrics {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.launch-metrics article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 140px;
  padding: 22px;
}

.launch-metrics strong {
  color: #344d92;
  display: block;
  font-family: Rubik, Inter, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.launch-metrics span {
  color: #475569;
  display: block;
  font-weight: 850;
  margin-top: 12px;
}

.new-arrivals {
  padding-top: 0;
}

.compact-products {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.compact-products .product-copy {
  padding: 16px;
}

.compact-products .product-copy span {
  display: none;
}

.compact-products .product-card h3 {
  font-size: 1rem;
}

.page-hero,
.product-hero,
.contact-hero {
  background: #182341;
}

.page-hero {
  padding-top: 132px;
}

.breadcrumbs {
  align-items: center;
  background: #f8fafc;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 9px;
  padding: 104px clamp(18px, 5vw, 54px) 14px;
}

.breadcrumbs a {
  color: #344d92;
}

.root-breadcrumbs {
  padding-top: 104px;
}

.product-hero,
.contact-hero {
  padding-top: 0;
}

.product-hero-copy,
.contact-hero-copy {
  padding-top: clamp(70px, 9vw, 112px);
}

.product-hero-media,
.contact-hero-media {
  background: #e2e8f0;
}

.product-hero-media img {
  object-fit: contain;
  padding: clamp(18px, 4vw, 48px);
}

.spec-grid span,
.contact-points span {
  border-radius: 8px;
}

.asset-grid img {
  border-radius: 8px;
  object-fit: contain;
  padding: 10px;
}

.detail-section {
  background: #f8fafc;
}

.detail-stack img {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.inquiry-cta {
  background: #ffffff;
}

.contact-page-grid {
  align-items: stretch;
}

.inquiry-form {
  background:
    radial-gradient(circle at top right, rgba(91, 117, 189, 0.18), transparent 38%),
    #182341;
  border-radius: 8px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  background: #ffffff;
  border-color: #cbd5e1;
  border-radius: 6px;
  color: #182341;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: #5b75bd;
}

.process-section {
  background: #f8fafc;
}

.site-footer {
  background: #182341;
  border-top: 0;
  color: #ffffff;
}

.site-footer .brand,
.site-footer nav a {
  color: #ffffff;
}

.site-footer .brand-logo {
  background: #ffffff;
  border-radius: 6px;
  padding: 4px;
}

.site-footer p {
  color: #cbd5e1;
}

.whatsapp-float {
  align-items: center;
  background: #344d92;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 14px 34px rgba(52, 77, 146, 0.28);
  color: #ffffff;
  display: inline-flex;
  font-family: Rubik, Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  min-height: 48px;
  padding: 0 18px;
  position: fixed;
  right: 22px;
  z-index: 30;
}

.whatsapp-float:hover {
  background: #24376d;
}

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

@media (max-width: 1080px) {
  .site-header {
    left: 12px;
    right: 12px;
  }

  .nav {
    gap: 2px;
  }

  .nav a {
    padding-left: 8px;
    padding-right: 8px;
  }

  .launch-layout {
    grid-template-columns: 1fr;
  }

  .compact-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 62px;
    left: 0;
    right: 0;
    top: 0;
  }

  .nav {
    top: 62px;
  }

  .nav a {
    border-radius: 0;
  }

  .hero-content {
    padding-top: 36vh;
  }

  .hero-carousel {
    min-height: 96vh;
  }

  .carousel-panel {
    bottom: 18px;
    left: 18px;
    right: 18px;
    width: auto;
  }

  .carousel-panel button {
    font-size: 0.78rem;
    grid-template-columns: 34px 1fr;
    min-height: 40px;
    padding: 6px 10px;
  }

  .carousel-controls {
    display: none;
  }

  .breadcrumbs,
  .root-breadcrumbs {
    padding-top: 82px;
  }

  .page-hero {
    padding-top: 88px;
  }

  .product-hero-copy,
  .contact-hero-copy {
    padding-top: 48px;
  }

  .product-card img {
    padding: 8px;
  }

  .brand-logo {
    height: 34px;
  }

  .whatsapp-float {
    bottom: 14px;
    min-height: 44px;
    padding: 0 14px;
    right: 14px;
  }

  .launch-feature,
  .launch-metrics,
  .compact-products {
    grid-template-columns: 1fr;
  }

  .launch-feature img {
    aspect-ratio: 16 / 10;
  }
}
