/* Newturn Press Tools — static site */
:root {
  --navy: #1e3a5f;
  --navy-dark: #0b1a2f;
  --bg: #fcfcfc;
  --white: #ffffff;
  --text: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(11, 26, 47, 0.08);
  --shadow-hover: 0 12px 40px rgba(30, 58, 95, 0.15);
  --gradient-hero: linear-gradient(135deg, rgba(11, 26, 47, 0.88) 0%, rgba(30, 58, 95, 0.62) 50%, rgba(37, 99, 235, 0.25) 100%);
  --gradient-cta: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a4a7a 100%);
  --header-h: 72px;
  --font-display: "Orbitron", sans-serif;
  --font-body: "Poppins", "Montserrat", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent); }
h1, h2, h3, h4, h6 { color: var(--navy-dark); line-height: 1.2; }
h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; }
h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 600; }
.container { width: min(1200px, 100% - 2rem); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11, 26, 47, 0.15); }
.btn-primary { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); color: var(--white); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin: 0 0 0.75rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--navy));
  border-radius: 2px;
}
.section-head .eyebrow::after { left: 50%; transform: translateX(-50%); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(11, 26, 47, 0.06);
}
.site-header.is-scrolled .header-inner { min-height: 64px; }
.site-header.is-scrolled .logo img { height: 42px; transition: height 0.3s ease; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.logo img { height: 48px; width: auto; transition: height 0.3s ease; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.site-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--white);
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1rem 2rem;
}
.site-nav.is-open { display: block; }
body.nav-open { overflow: hidden; }
.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-item { border-bottom: 1px solid var(--border); }
.nav-item > a {
  display: block;
  padding: 0.875rem 0;
  font-weight: 600;
  color: var(--navy-dark);
}
.dropdown { list-style: none; margin: 0; padding: 0 0 0.5rem 1rem; display: none; }
.has-dropdown.is-open .dropdown { display: block; }
.dropdown a { display: block; padding: 0.5rem 0; font-size: 0.875rem; color: var(--muted); }
.nav-cta { width: 100%; margin-top: 0.5rem; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    overflow: visible;
    background: transparent;
    padding: 0;
  }
  .site-nav-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
  }
  .nav-list { display: flex; align-items: center; gap: 0.25rem; }
  .nav-item { border: none; position: relative; }
  .nav-item > a { padding: 0.5rem 0.75rem; font-size: 0.875rem; letter-spacing: 0.02em; transition: color 0.2s ease; }
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
    display: none;
  }
  .has-dropdown:hover .dropdown { display: block; }
  .dropdown a { padding: 0.5rem 1rem; }
  .nav-cta { width: auto; margin: 0 0 0 1rem; }
}

/* Hero — split layout: copy left, carousel right (desktop); stacked on mobile */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

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

.hero-copy-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.25rem 1.25rem;
  background: transparent;
  color: var(--white);
}

.hero-copy-track {
  position: relative;
  min-height: auto;
}

.hero-copy-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.hero-copy-slide.is-active {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
  pointer-events: auto;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.625rem;
}

.hero-copy-slide h1 {
  color: var(--white);
  margin: 0 0 0.75rem;
  font-size: clamp(1.375rem, 6vw, 2.5rem);
  line-height: 1.15;
}

.hero-sub {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
}

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

.hero-actions .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.hero-media-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 0.75rem;
  background: transparent;
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 16px;
}

.hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  position: static;
  margin: 0;
  padding: 0.875rem 0 1.25rem;
  background: transparent;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  background: var(--white);
  width: 22px;
  border-radius: 999px;
}

@media (max-width: 767px) {
  .hero-media-panel {
    padding: 0 0.625rem;
  }

  .hero-carousel {
    aspect-ratio: 16 / 9;
  }

  .hero-slide img {
    border-radius: 18px;
  }
}

@media (min-width: 768px) {
  .hero-copy-panel {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  }

  .hero-copy-track {
    min-height: 340px;
  }

  .hero-copy-slide {
    position: absolute;
    inset: 0;
    height: auto;
    visibility: visible;
    overflow: visible;
  }

  .hero-copy-slide:not(.is-active) {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
  }

  .hero-copy-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    margin-bottom: 0.875rem;
  }

  .hero-copy-slide h1 {
    margin-bottom: 0.875rem;
  }

  .hero-sub {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    max-width: 520px;
  }

  .hero-actions {
    gap: 0.625rem;
  }

  .hero-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    min-height: clamp(500px, 75vh, 640px);
    align-items: stretch;
  }

  .hero-media-panel {
    justify-content: center;
    height: 100%;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    padding-left: 0.75rem;
  }

  .hero-carousel {
    flex: 1;
    width: 100%;
    min-height: 380px;
    max-height: min(560px, calc(75vh - 4rem));
    aspect-ratio: auto;
  }

  .hero-slide img {
    border-radius: 24px;
  }

  .hero-dots {
    padding: 1rem 0 0.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .hero-copy-panel {
    padding-left: clamp(2.5rem, 6vw, 5rem);
  }

  .hero-carousel {
    min-height: 420px;
  }

  .hero-slide img {
    border-radius: 28px;
  }
}

/* Sections */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section.alt-bg { background: #f1f5f9; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head h2 { color: var(--navy-dark); margin: 0; }
.section-intro { color: var(--muted); margin-top: 0.75rem; }
.section-actions { text-align: center; margin-top: 2rem; }

.section.welcome { background: var(--white); }

.welcome-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.welcome-copy .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}

.welcome-copy p {
  color: var(--text);
  margin: 0 0 1.5rem;
  line-height: 1.75;
}
.welcome-copy h2 { margin: 0 0 1rem; color: var(--navy-dark); }

.stats {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.stat-value { display: inline; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--white); }
.stat-suffix { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--accent-light); }
.stat-label { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.why-grid { display: grid; gap: 2rem; }

.section.why {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.why-cards {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 1.125rem 1.125rem 1.125rem 1rem;
  box-shadow: 0 2px 12px rgba(11, 26, 47, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--navy) 100%);
}

.why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.why-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--accent) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.why-card-body {
  flex: 1;
  min-width: 0;
}

.why-card h3 {
  margin: 0 0 0.375rem;
  color: var(--navy-dark);
  font-size: 1rem;
  line-height: 1.3;
}

.why-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (min-width: 640px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem;
  }

  .why-card {
    padding: 1.375rem 1.375rem 1.375rem 1.125rem;
  }

  .why-card h3 {
    font-size: 1.0625rem;
  }

  .why-card p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .why-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .why-card-icon {
    width: 46px;
    height: 46px;
    font-size: 0.875rem;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--navy-dark);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8fafc;
}
.product-card h3 {
  padding: 0.875rem 1rem 1rem;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-dark);
}
.product-card:hover .product-card-image img { transform: none; }
.product-tag {
  display: block;
  padding: 0 1rem 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-band {
  background: var(--gradient-cta);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 45%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.cta-inner h2 { color: var(--white); margin: 0 0 0.5rem; }
.cta-inner p { margin: 0; color: rgba(255,255,255,0.85); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (min-width: 768px) {
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* Page hero */
.page-hero {
  background: var(--gradient-cta);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.18) 0%, transparent 40%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin: 0; }
.page-hero-sub { color: rgba(255,255,255,0.85); margin: 0.75rem 0 0; max-width: 640px; }

.page-about .page-content {
  background: linear-gradient(180deg, #f8fafc 0%, var(--bg) 40%);
}

.about-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.about-stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(11, 26, 47, 0.12);
}

.about-stat {
  text-align: center;
  padding: 0.5rem;
}

.about-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.about-stat-suffix {
  color: var(--accent-light);
}

.about-stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-story-block {
  display: grid;
  gap: 1.25rem;
}

.about-story-panel {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 55%, #1a4a7a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-story-panel::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.about-story-panel .eyebrow {
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}

.about-story-panel .eyebrow::after {
  background: linear-gradient(90deg, var(--accent-light), rgba(255, 255, 255, 0.5));
}

.about-story-title {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(1.375rem, 4vw, 2rem);
  line-height: 1.2;
  max-width: 520px;
}

.about-story-panel .about-lead {
  position: relative;
  z-index: 1;
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  font-weight: 400;
}

.about-leaders {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-leaders-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.about-leaders strong {
  font-size: 1rem;
  color: var(--white);
}

.about-leaders-meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.about-focus-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

.about-focus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(11, 26, 47, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-focus-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.1);
}

.about-focus-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 0.625rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--accent) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
}

.about-focus-card h3 {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  color: var(--navy-dark);
}

.about-focus-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-detail-grid {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(11, 26, 47, 0.04);
}

.about-detail-grid p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text);
}

.about-pillars .section-head {
  margin-bottom: 1.75rem;
}

.about-pillar-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

.about-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.125rem 1.125rem 1.125rem 1rem;
  box-shadow: 0 2px 12px rgba(11, 26, 47, 0.04);
  position: relative;
  overflow: hidden;
}

.about-pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--navy) 100%);
}

.about-pillar-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0.625rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--accent) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
}

.about-pillar h3 {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  color: var(--navy-dark);
}

.about-pillar p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-cta-bar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  border: 1px solid var(--border);
}

.about-cta-bar h2 {
  margin: 0 0 0.375rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.about-cta-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

@media (min-width: 640px) {
  .about-stats-strip {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.75rem 1.5rem;
  }

  .about-story-block {
    grid-template-columns: 1.1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }

  .about-focus-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
    padding: 2rem;
  }

  .about-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-cta-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2rem;
  }
}

@media (min-width: 1024px) {
  .about-pillar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-grid, .contact-grid, .product-detail-grid {
  display: grid;
  gap: 2rem;
}
.product-main-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.contact-list strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.25rem; }
.contact-actions-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-buttons { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
.product-category-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.product-desc { font-size: 1.0625rem; line-height: 1.7; }
.product-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.back-link { font-size: 0.875rem; color: var(--muted); }
.product-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.product-thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: none;
  cursor: pointer;
  width: 64px;
  height: 64px;
  overflow: hidden;
}
.product-thumb.is-active { border-color: var(--navy); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 768px) {
  .about-grid, .contact-grid, .product-detail-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .contact-buttons { flex-direction: row; flex-wrap: wrap; }
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  margin-top: 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--navy), var(--accent-light));
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 2rem;
}
.footer-grid h6 { color: var(--white); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { color: rgba(255,255,255,0.75); }
.footer-grid a:hover { color: var(--white); }
.footer-brand p { font-size: 0.9375rem; margin: 1rem 0 0; max-width: 280px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; font-size: 0.875rem; text-align: center; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  padding: 0;
  margin: 0;
  line-height: 0;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  display: block;
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  color: #fff;
}

@media (max-width: 767px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
  }

  .whatsapp-float svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
  }
}
