:root {
  --navy: #172537;
  --navy-2: #223448;
  --red: #f05467;
  --red-dark: #d83e52;
  --aqua: #1fa7ad;
  --green: #5f8f45;
  --ink: #17212b;
  --muted: #63707c;
  --line: #e4e9ee;
  --soft: #f5f7f9;
  --white: #ffffff;
  --max: 1200px;
  --shadow: 0 18px 44px rgba(23, 37, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

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

h1,
h2,
h3,
p,
a {
  overflow-wrap: anywhere;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(1360px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 12px 10px;
  color: var(--navy);
  white-space: nowrap;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  white-space: nowrap;
}

.header-cta {
  min-width: 132px;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--red);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  color: var(--navy);
  border-color: var(--navy);
  background: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 29, 43, 0.92), rgba(18, 29, 43, 0.62) 42%, rgba(18, 29, 43, 0.12)),
    linear-gradient(0deg, rgba(18, 29, 43, 0.58), rgba(18, 29, 43, 0.02));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 570px;
  padding: 88px 0 56px;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.hero-content h1,
.page-title h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6.3vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow),
.page-title p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-models {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 36px;
  background: rgba(18, 29, 43, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(12px);
}

.hero-models article {
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-models span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.hero-models strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.08;
}

.hero-models p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 700px;
  margin-top: 26px;
}

.hero-badges span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.page-title {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: 56px 0;
}

.page-title h1 {
  font-size: clamp(42px, 5.4vw, 70px);
}

.home-summary {
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
  padding: 46px 0;
}

.summary-copy h2 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
}

.summary-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  box-shadow: var(--shadow);
}

.metric-grid div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.metric-grid div:last-child {
  border-right: 0;
}

.metric-grid strong {
  display: block;
  color: var(--red);
  font-size: 42px;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.home-summary .metric-grid {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.home-summary .metric-grid div {
  border-right-color: rgba(255, 255, 255, 0.16);
}

.home-summary .metric-grid span {
  color: rgba(255, 255, 255, 0.66);
}

.brand-entity {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.entity-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  padding: 42px 0;
  align-items: start;
}

.entity-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.entity-grid p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.entity-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.entity-links a {
  padding: 9px 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: clamp(74px, 8vw, 112px) 0;
}

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

.home-insights {
  padding-top: clamp(62px, 6vw, 88px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4.1vw, 54px);
  line-height: 1.08;
}

.section-head p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.content-page {
  max-width: 860px;
}

.content-page h2 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.content-page a {
  color: var(--red);
  font-weight: 700;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  white-space: nowrap;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: repeat(2, 245px);
  gap: 18px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.showcase-main {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.showcase-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 29, 43, 0.9), rgba(18, 29, 43, 0.12) 68%);
}

.showcase-main div {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}

.showcase-main h3 {
  max-width: 560px;
  margin: 10px 0 0;
  font-size: clamp(32px, 3.9vw, 52px);
  line-height: 1;
}

.showcase-main p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.product-list {
  display: grid;
  align-content: stretch;
  border-top: 1px solid var(--line);
}

.product-list article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.product-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.product-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.1;
}

.product-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.home-products {
  background: var(--white);
}

.home-section-head {
  margin-bottom: 32px;
}

.product-board {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fafb);
  box-shadow: 0 18px 46px rgba(23, 37, 55, 0.08);
}

.product-lead {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 380px;
}

.product-lead-copy {
  align-self: center;
  padding: clamp(28px, 4.6vw, 54px);
}

.product-lead-copy h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
}

.product-lead-copy p {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.product-lead img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.product-lead img[src*="assets/products/"] {
  padding: 22px;
  object-fit: contain;
  background: #f7f9fb;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.product-tags span {
  padding: 8px 10px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.model-card-grid article {
  min-height: 330px;
  padding: 0;
  border-right: 1px solid var(--line);
}

.model-card-grid article > div {
  padding: 22px 22px 24px;
}

.model-card-grid img {
  width: 100%;
  height: 150px;
  padding: 14px;
  object-fit: contain;
  background: #f7f9fb;
  border-bottom: 1px solid var(--line);
}

.model-card-grid article:last-child {
  border-right: 0;
}

.model-card-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.model-card-grid h3 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.08;
}

.model-card-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.home-why {
  color: var(--white);
  background: #121d2a;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(34px, 5.6vw, 76px);
  align-items: stretch;
}

.why-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--navy);
}

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

.why-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 29, 42, 0.86), rgba(18, 29, 42, 0.06));
}

.why-media div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.why-media strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  line-height: 1.08;
}

.why-media span {
  display: block;
  max-width: 360px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.why-content {
  align-self: center;
}

.why-content .section-head {
  margin-bottom: 28px;
}

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

.why-content .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.why-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.why-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.why-list h3 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.14;
}

.why-list p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.home-quality {
  background: linear-gradient(180deg, #ffffff, #f6f8fa);
}

.quality-header {
  display: grid;
  grid-template-columns: 0.95fr 0.85fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.quality-header .section-head {
  margin-bottom: 0;
}

.quality-header > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.quality-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 37, 55, 0.07);
}

.quality-flow article {
  min-height: 238px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.quality-flow article:last-child {
  border-right: 0;
}

.quality-flow span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.quality-flow h3 {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.08;
}

.quality-flow p {
  margin: 14px 0 0;
  color: var(--muted);
}

.quality-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 26px 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.quality-cta strong,
.quality-cta span {
  display: block;
}

.quality-cta strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.16;
}

.quality-cta span {
  margin-top: 7px;
  color: var(--muted);
}

.image-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.image-card.large {
  grid-row: 1 / 3;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 220ms ease;
}

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

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 29, 43, 0.86), rgba(18, 29, 43, 0.08));
}

.image-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.image-card span,
.model-code {
  color: var(--red);
  font-weight: 900;
}

.image-card h3 {
  margin: 8px 0;
  font-size: 26px;
  line-height: 1.15;
}

.image-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.value-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.value-grid,
.capability-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-grid article,
.capability-grid article,
.service-grid article,
.contact-card,
.news-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(23, 37, 55, 0.06);
}

.value-grid span,
.capability-grid span,
.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.value-grid h3,
.capability-grid h3,
.service-grid h3,
.project-preview-grid h3,
.news-card h3,
.product-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.value-grid p,
.capability-grid p,
.service-grid p,
.project-preview-grid p,
.news-card p,
.product-card p,
.contact-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.value-layout .value-grid article {
  box-shadow: none;
}

.value-layout .value-grid article:hover {
  border-color: rgba(240, 84, 103, 0.36);
}

.project-preview-grid,
.product-grid,
.project-grid,
.news-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-preview-grid article,
.product-card,
.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(23, 37, 55, 0.06);
}

.news-card {
  display: flex;
  flex-direction: column;
}

.news-card-featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(240, 84, 103, 0.08), rgba(31, 111, 122, 0.08)),
    var(--white);
}

.product-card-link {
  display: block;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card-link:hover,
.product-card-link:focus-visible {
  border-color: rgba(240, 84, 103, 0.45);
  box-shadow: 0 18px 40px rgba(23, 37, 55, 0.12);
  transform: translateY(-3px);
}

.card-action {
  display: inline-block;
  margin-top: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-note {
  display: grid;
  align-content: end;
  min-height: 310px;
  padding: 26px;
  background: linear-gradient(145deg, #172537, #1f6f7a);
  color: var(--white);
}

.project-note:nth-child(5) {
  background: linear-gradient(145deg, #172537, #b94758);
}

.project-note:nth-child(6) {
  background: linear-gradient(145deg, #172537, #285470);
}

.project-note > span {
  display: inline-flex;
  justify-self: start;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-note .card-body {
  padding: 0;
}

.project-note h3 {
  color: var(--white);
}

.project-note p {
  color: rgba(255, 255, 255, 0.74);
}

.project-preview-grid img,
.product-card img,
.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-card img[src*="assets/products/"] {
  height: 185px;
  padding: 10px 12px;
  object-fit: contain;
  background: #f7f9fb;
}

.product-card img[src$="nb-covered.jpg"] {
  padding: 8px 14px;
}

.product-page-hero img {
  object-position: center 58%;
}

.product-detail-hero {
  padding: clamp(54px, 7vw, 92px) 0;
  background: linear-gradient(180deg, #ffffff, #f6f8fa);
  border-bottom: 1px solid var(--line);
}

.product-detail-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.product-detail-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.98;
  text-transform: uppercase;
}

.product-detail-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.detail-meta-grid div {
  padding: 18px 16px;
  background: var(--white);
}

.detail-meta-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-meta-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.12;
}

.product-detail-image {
  padding: clamp(18px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(23, 37, 55, 0.08);
}

.product-detail-image img {
  width: 100%;
  min-height: 360px;
  object-fit: contain;
}

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

.detail-aside {
  display: grid;
  gap: 16px;
}

.detail-panel,
.detail-card-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(23, 37, 55, 0.06);
}

.detail-panel h2,
.detail-card-grid h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
}

.detail-panel ul,
.detail-card-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.detail-table table {
  min-width: 0;
}

.detail-table th {
  width: 230px;
  color: var(--navy);
}

.detail-table td {
  color: var(--muted);
}

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

.detail-card-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.detail-cta {
  background:
    linear-gradient(110deg, rgba(23, 37, 55, 0.96), rgba(240, 84, 103, 0.74)),
    url("assets/padel-hero.jpg") center / cover;
}

.project-preview-grid h3,
.project-preview-grid p,
.product-card .card-body,
.project-card .card-body {
  padding: 22px;
}

.project-preview-grid p {
  padding-top: 0;
}

.cta-band {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(23, 37, 55, 0.96), rgba(31, 167, 173, 0.78)),
    url("assets/padel-hero.jpg") center / cover;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.cta-inner h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
}

.site-footer {
  padding: 56px 0 64px;
  color: rgba(255, 255, 255, 0.76);
  background: #101820;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 0.9fr;
  gap: 38px;
}

.footer-logo {
  width: 210px;
  padding: 7px;
  background: var(--white);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 17px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--red);
}

.site-footer p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer .footer-address {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.site-footer a[href^="mailto:"],
.site-footer a[href*="wa.me"],
.site-footer a[href*="whatsapp.com/send"],
.site-footer .footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.site-footer a[href^="mailto:"]::before,
.site-footer a[href*="wa.me"]::before,
.site-footer a[href*="whatsapp.com/send"]::before,
.site-footer .footer-address::before,
.contact-method h3::before {
  content: "";
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  background: currentColor;
}

.site-footer a[href^="mailto:"]::before,
.contact-email h3::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer a[href*="wa.me"]::before,
.site-footer a[href*="whatsapp.com/send"]::before,
.contact-whatsapp h3::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 8.5-8.5h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3Cpath d='M9 8.8c.35 2.7 2.5 4.85 5.2 5.2l1.25-1.25'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 8.5-8.5h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3Cpath d='M9 8.8c.35 2.7 2.5 4.85 5.2 5.2l1.25-1.25'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer .footer-address::before,
.contact-address-card h3::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.99-5.54 10.15-7.4 11.72a1 1 0 0 1-1.2 0C9.54 20.15 4 14.99 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.99-5.54 10.15-7.4 11.72a1 1 0 0 1-1.2 0C9.54 20.15 4 14.99 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-method h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-method h3::before {
  margin-top: 0;
  color: var(--red);
}

.footer-social {
  width: min(var(--max), calc(100% - 40px));
  margin: 34px auto 0;
  text-align: center;
}

.site-footer .footer-social-title {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.site-footer .footer-copyright {
  max-width: none;
  margin: 18px 0 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.site-footer .footer-legal {
  max-width: none;
  margin: 8px 0 0;
}

.site-footer .footer-legal a {
  display: inline-flex;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 14px 0 0;
}

.site-footer .footer-social-link {
  display: inline-flex;
  place-items: center;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0;
  background: transparent;
  border: 0;
  color: inherit;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus-visible {
  transform: translateY(-2px);
  color: inherit;
  opacity: 0.86;
}

.site-footer .footer-social-link svg {
  display: block;
  width: 30px;
  height: 30px;
}

.site-footer .footer-social-link.youtube {
  color: #ff0033;
}

.site-footer .footer-social-link.facebook {
  color: #1877f2;
}

.site-footer .footer-social-link.instagram {
  color: #e4405f;
}

.site-footer .footer-social-link.tiktok,
.site-footer .footer-social-link.x {
  color: #ffffff;
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.framed-image {
  position: relative;
}

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

.spec-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.spec-list.compact {
  gap: 0;
}

.company-info-list {
  max-width: 680px;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list strong {
  color: var(--navy);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

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

th {
  color: var(--navy);
  background: var(--soft);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--soft);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  cursor: pointer;
}

.quality-feature {
  align-items: stretch;
}

.quality-feature .section-head {
  align-self: center;
  margin-bottom: 0;
}

.news-card time {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.news-card a {
  display: inline-block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy);
  font-weight: 900;
}

.article-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

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

.article-hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 70px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--white);
}

.article-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.article-intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.article-meta span,
.article-meta time {
  padding: 8px 11px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.article-sidebar strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.article-sidebar p {
  color: var(--muted);
  line-height: 1.7;
}

.article-sidebar .btn {
  width: 100%;
}

.article-body {
  max-width: 860px;
}

.article-body > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.article-body h2 {
  margin: 46px 0 16px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.article-body a {
  color: var(--red);
  font-weight: 800;
}

.article-callout,
.article-next {
  margin: 34px 0;
  padding: 28px;
  background: var(--soft);
  border-left: 4px solid var(--red);
}

.article-callout strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
}

.article-callout p,
.article-next p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.article-table {
  margin: 34px 0;
}

.article-next {
  border-left-color: #1f6f7a;
}

.article-next .button-row {
  margin-top: 24px;
}

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

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

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

.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .product-feature-grid,
  .product-showcase,
  .product-lead,
  .product-detail-top,
  .detail-layout,
  .value-layout,
  .why-layout,
  .two-col,
  .summary-grid,
  .entity-grid,
  .quality-header,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .model-card-grid,
  .quality-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-card-grid article:nth-child(2),
  .quality-flow article:nth-child(2) {
    border-right: 0;
  }

  .model-card-grid article:nth-child(-n + 2),
  .quality-flow article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .why-media {
    min-height: 430px;
  }

  .product-feature-grid {
    display: grid;
    grid-template-rows: none;
  }

  .image-card.large {
    grid-row: auto;
  }

  .project-preview-grid,
  .product-grid,
  .project-grid,
  .detail-card-grid,
  .news-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .article-sidebar {
    position: static;
  }

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

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

@media (max-width: 680px) {
  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 150px;
  }

  .site-nav {
    top: 70px;
  }

  .home-hero,
  .home-hero .hero-content {
    min-height: 0;
  }

  .home-hero .hero-content {
    padding: 56px 0 44px;
  }

  .hero-models {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 28px;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .hero-models article {
    min-height: 82px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-models strong {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.15;
  }

  .hero-models span {
    font-size: 10px;
  }

  .hero-models p {
    display: none;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges span {
    font-size: 11px;
  }

  .hero-content h1,
  .page-title h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .hero-content p:not(.eyebrow),
  .page-title p:not(.eyebrow) {
    font-size: 17px;
  }

  .button-row,
  .cta-inner {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .metric-grid,
  .value-grid,
  .capability-grid,
  .service-grid,
  .model-card-grid,
  .why-list,
  .quality-flow,
  .project-preview-grid,
  .product-grid,
  .project-grid,
  .detail-meta-grid,
  .detail-card-grid,
  .news-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .news-card-featured {
    grid-column: span 1;
  }

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

  .article-hero-content {
    padding: 124px 0 52px;
  }

  .article-intro {
    font-size: 17px;
  }

  .article-meta span,
  .article-meta time {
    font-size: 11px;
  }

  .product-lead-copy {
    padding: 28px 22px;
  }

  .product-lead img {
    min-height: 260px;
  }

  .model-card-grid article,
  .model-card-grid article:nth-child(2),
  .quality-flow article,
  .quality-flow article:nth-child(2) {
    border-right: 0;
  }

  .model-card-grid article:not(:last-child),
  .quality-flow article:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .why-media {
    min-height: 360px;
  }

  .why-list article {
    grid-template-columns: 40px 1fr;
  }

  .quality-cta {
    display: grid;
    padding: 24px 22px;
  }

  .summary-grid {
    padding: 38px 0;
  }

  .metric-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-summary .metric-grid div {
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .product-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .showcase-main {
    min-height: 430px;
  }

  .showcase-main div {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .section-head.split {
    display: grid;
  }
}

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