/* ================================================
   Deepoint conversion-optimized stylesheet
   Brand: Blue #194085 / Red #cc2525
   ================================================ */

:root {
  --blue-primary: #194085;
  --blue-dark: #0f2756;
  --blue-deep: #081938;
  --red-accent: #cc2525;
  --red-dark: #a51d1d;
  --green-wa: #25d366;
  --green-wa-dark: #128c7e;
  --white: #ffffff;
  --bg-light: #f7f9fa;
  --bg-soft: #eef2f7;
  --text-dark: #1a1f2e;
  --text-gray: #5a6271;
  --text-mute: #8a93a3;
  --border-light: #e3e7ee;
  --gold: #f3b13a;
  --font-main: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial,
    sans-serif;
  --shadow-sm: 0 2px 8px rgba(15, 39, 86, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 39, 86, 0.1);
  --shadow-lg: 0 20px 50px rgba(15, 39, 86, 0.18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 96px 0;
}
.section-pad-sm {
  padding: 64px 0;
}
.text-center {
  text-align: center;
}

/* Typography */
h1 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}
h4 {
  font-size: 1rem;
  font-weight: 700;
}
p {
  color: var(--text-gray);
  line-height: 1.65;
  text-wrap: pretty;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 12px;
}
.red-text {
  color: var(--red-accent);
}
.blue-text {
  color: var(--blue-primary);
}

/* ================= Buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--red-accent);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(204, 37, 37, 0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 24px rgba(204, 37, 37, 0.45);
}
.btn-blue {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(25, 64, 133, 0.3);
}
.btn-blue:hover {
  background: var(--blue-dark);
}
.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-primary);
}
.btn-outline {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  background: var(--white);
}
.btn-outline:hover {
  background: var(--blue-primary);
  color: var(--white);
}
.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}
.btn-wa:hover {
  background: var(--green-wa-dark);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn .arr {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arr {
  transform: translateX(3px);
}

/* ================= Top utility bar ================= */
.utility-bar {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  height: 36px;
  display: flex;
  align-items: center;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.utility-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.utility-left svg {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}
.utility-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.lang-btn.active {
  background: var(--red-accent);
  color: var(--white);
}
.lang-btn:hover:not(.active) {
  color: var(--white);
}

/* ================= Header ================= */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 76px;
  background: var(--white);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 36px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  display: block;
}
.logo-on-dark img {
  height: 38px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 100%;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.nav-item:hover > a,
.nav-item > a.active {
  color: var(--red-accent);
  border-bottom-color: var(--red-accent);
}
.nav-arrow {
  font-size: 0.7rem;
  opacity: 0.6;
  transition: var(--transition);
}
.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-top: 3px solid var(--red-accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 8px 0;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 0.9rem;
  color: var(--text-gray);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--red-accent);
  border-left-color: var(--red-accent);
  padding-left: 26px;
}

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

/* ================= Hero (full-bleed image carousel) ================= */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 25, 56, 0.92) 0%,
    rgba(8, 25, 56, 0.66) 48%,
    rgba(8, 25, 56, 0.26) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-inner {
  display: block;
  max-width: 760px;
}
.hero-grid {
  display: block;
  max-width: 760px;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--blue-deep);
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s ease,
    transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-copy p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin-bottom: 32px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-media {
  width: 100%;
  max-width: 980px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-media img {
  display: block;
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 177, 58, 0.25);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--gold);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.55;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* Hero inquiry form */
.hero-form-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border-top: 5px solid var(--red-accent);
}
.hero-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--blue-primary);
}
.hero-form-card .sub {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}
.hero-form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--bg-light);
}
.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(25, 64, 133, 0.1);
}
.hero-form-card textarea {
  min-height: 70px;
  resize: vertical;
}
.hero-form-card .submit-btn {
  width: 100%;
  padding: 14px;
}
.hero-form-card .form-foot {
  font-size: 0.75rem;
  color: var(--text-mute);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-form-card .form-foot svg {
  width: 12px;
  height: 12px;
}

/* ================= Trust strip ================= */
.trust-strip {
  background: var(--bg-light);
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.trust-strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
}
.trust-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.cert-badge:hover {
  border-color: var(--blue-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
a.cert-badge {
  text-decoration: none;
  color: var(--text-dark);
}
a.cert-badge::after {
  content: ">";
  font-size: 0.7rem;
  color: var(--text-mute);
  margin-left: 2px;
  opacity: 0.6;
  transition: var(--transition);
}
a.cert-badge:hover::after {
  opacity: 1;
  color: var(--blue-primary);
  transform: translateX(1px);
}
.cert-badge .ic {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: var(--blue-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.cert-badge.gold .ic {
  background: var(--gold);
  color: var(--blue-deep);
}
.cert-badge.red .ic {
  background: var(--red-accent);
}

/* ================= Why Deepoint (3 value props) ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: ">";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--red-accent);
  transition: width 0.35s;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}
.why-card:hover::before {
  width: 100%;
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg {
  width: 28px;
  height: 28px;
}
.why-card h3 {
  color: var(--blue-primary);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.94rem;
}
.why-card .micro {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ================= Stats banner (between hero and content) ================= */
.stats-banner {
  background: linear-gradient(
    95deg,
    var(--blue-primary) 0%,
    var(--blue-dark) 100%
  );
  color: var(--white);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-item .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-item .lbl {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}
.stat-item .ic-w {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-item .ic-w svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

/* ================= Products section (cards w/ specs + inquiry CTA) ================= */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head .eyebrow {
  color: var(--red-accent);
}
.section-head p {
  font-size: 1.05rem;
  margin-top: 8px;
}

.prod-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.prod-tab {
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--text-gray);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.prod-tab:hover {
  color: var(--blue-primary);
  border-color: var(--blue-primary);
}
.prod-tab.active {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prod-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.prod-img-wrap {
  background: var(--bg-light);
  padding: 32px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.prod-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s;
}
.prod-card:hover .prod-img-wrap img {
  transform: scale(1.06);
}
.prod-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red-accent);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.prod-tag.blue {
  background: var(--blue-primary);
}
.prod-tag.gold {
  background: var(--gold);
  color: var(--blue-deep);
}

.prod-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-body h3 {
  font-size: 1.1rem;
  color: var(--blue-primary);
  margin-bottom: 6px;
}
.prod-body .model {
  font-size: 0.78rem;
  color: var(--text-mute);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
}
.spec-item {
  display: flex;
  flex-direction: column;
}
.spec-item .k {
  font-size: 0.7rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.spec-item .v {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 700;
}

.prod-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.prod-actions .btn {
  flex: 1;
  padding: 11px 14px;
  font-size: 0.85rem;
}

/* ================= Application scenarios ================= */
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.app-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
  display: block;
}
.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.app-card:hover img {
  transform: scale(1.08);
}
.app-card::after {
  content: ">";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(8, 25, 56, 0.85) 100%
  );
}
.app-card .label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
}
.app-card .label h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.app-card .label p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}
.app-card .arr-circle {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.app-card:hover .arr-circle {
  background: var(--red-accent);
  border-color: var(--red-accent);
}

/* ================= Cases magazine grid ================= */
.cases-section {
  background: var(--bg-light);
}
.cases-mag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.case-mag {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.case-mag:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.case-mag.large {
  grid-row: span 1;
}

.case-mag-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-mute, #e8edf2);
}
.case-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.cs-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.cs-slide.active {
  opacity: 1;
}
.cs-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.cs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.cs-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.case-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}

.case-mag-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-light);
  color: var(--blue-primary);
  border: 1px solid var(--border-light);
  padding: 3px 10px;
  border-radius: 4px;
  width: fit-content;
}
.case-tag.red {
  background: #fdecea;
  color: var(--red-accent);
  border-color: #f5c6c0;
}
.case-tag.gold {
  background: #fef7e0;
  color: #8a6000;
  border-color: #f5d96a;
}
.case-mag-body h3 {
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin: 0;
  line-height: 1.25;
}
.case-loc {
  font-size: 0.84rem;
  color: var(--text-mute);
  margin: 0;
}
.case-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 8px 0;
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}
.case-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.case-spec .k {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  font-weight: 600;
}
.case-spec .v {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-primary);
}
.case-mag-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 860px) {
  .cases-mag-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= Mid-page CTA banner ================= */
.cta-banner {
  background: linear-gradient(
    115deg,
    var(--red-accent) 0%,
    var(--red-dark) 100%
  );
  color: var(--white);
  padding: 56px 0;
}
.cta-banner-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}
.cta-banner-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cta-banner-actions .btn {
  background: var(--white);
  color: var(--red-accent);
}
.cta-banner-actions .btn:hover {
  background: var(--blue-deep);
  color: var(--white);
}
.cta-banner-actions .btn.outline-w {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.cta-banner-actions .btn.outline-w:hover {
  background: var(--white);
  color: var(--red-accent);
  border-color: var(--white);
}

/* ================= Distributor program section ================= */
.distributor-section {
  background: linear-gradient(
    135deg,
    var(--blue-deep) 0%,
    var(--blue-primary) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.distributor-section::before {
  content: ">";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(243, 177, 58, 0.18) 0%,
    transparent 70%
  );
}
.dist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.distributor-section h2 {
  color: var(--white);
}
.distributor-section h2 .accent {
  color: var(--gold);
}
.distributor-section .sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.dist-perks {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}
.dist-perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.dist-perk .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.dist-perk strong {
  display: block;
  margin-bottom: 2px;
}
.dist-perk span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}
.dist-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dist-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dist-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dist-img-overlay {
  position: absolute;
  left: -20px;
  bottom: -20px;
  background: var(--white);
  color: var(--text-dark);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 230px;
}
.dist-img-overlay .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red-accent);
  line-height: 1;
}
.dist-img-overlay .lbl {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-top: 4px;
}

/* ================= Testimonials ================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card blockquote {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-dark);
  font-style: normal;
  margin-bottom: 18px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--red-accent));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.testi-author .name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.92rem;
}
.testi-author .role {
  font-size: 0.78rem;
  color: var(--text-mute);
}
.testi-flag {
  margin-left: auto;
  font-size: 1.4rem;
}

/* ================= Floating WhatsApp / Inquiry stack ================= */
.float-stack {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.float-btn:hover {
  transform: scale(1.08) translateY(-2px);
}
.float-btn.wa {
  background: var(--green-wa);
}
.float-btn.wa:hover {
  background: var(--green-wa-dark);
}
.float-btn.inq {
  background: var(--red-accent);
}
.float-btn.inq:hover {
  background: var(--red-dark);
}
.float-btn.top {
  background: var(--blue-primary);
  width: 44px;
  height: 44px;
}
.float-btn svg {
  width: 26px;
  height: 26px;
}
.float-btn.top svg {
  width: 18px;
  height: 18px;
}
.float-btn .tag {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-btn .tag::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--text-dark);
}
.float-btn:hover .tag {
  opacity: 1;
  right: 70px;
}

.float-btn.wa::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--green-wa);
  opacity: 0;
  animation: pulseWA 2s infinite;
}
@keyframes pulseWA {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ================= Inquiry modal ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 25, 56, 0.65);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.25s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.3s;
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-head {
  background: linear-gradient(115deg, var(--blue-primary), var(--blue-dark));
  color: var(--white);
  padding: 26px 28px;
  position: relative;
}
.modal-head h3 {
  color: var(--white);
  margin-bottom: 4px;
}
.modal-head p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.modal-body {
  padding: 26px 28px;
}
.modal-body form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-body input,
.modal-body select,
.modal-body textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  background: var(--bg-light);
  transition: var(--transition);
}
.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(25, 64, 133, 0.1);
}
.modal-body textarea {
  min-height: 90px;
  resize: vertical;
}
.modal-body .submit-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.modal-body .submit-row .btn {
  flex: 1;
  padding: 13px;
}

.success-state {
  text-align: center;
  padding: 30px 20px;
}
.success-state .check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f5ec;
  color: #2e9b4d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
}
.success-state h3 {
  margin-bottom: 8px;
  color: var(--blue-primary);
}
.success-state p {
  font-size: 0.95rem;
}

/* ================= Footer ================= */
.footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer ul li a {
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.78);
}
.footer ul li a:hover {
  color: var(--gold);
}
.footer .brand-blurb {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 14px 0 20px;
}
.footer .brand-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}
.footer .brand-contact span,
.footer .brand-contact .contact-pill {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}
.footer .brand-contact .contact-pill {
  color: var(--white);
  line-height: 1.45;
  transition: var(--transition);
}
.footer .brand-contact .contact-pill:hover {
  color: var(--gold);
}
.footer .brand-contact .contact-pill span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.footer .brand-contact img {
  width: 14px;
  margin-top: 4px;
  opacity: 0.85;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.footer-form input,
.footer-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  width: 100%;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}
.footer-form textarea {
  min-height: 70px;
  resize: vertical;
}
.footer-form button {
  background: var(--red-accent);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: var(--transition);
}
.footer-form button:hover {
  background: var(--red-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--red-accent);
  color: var(--white);
  transform: translateY(-2px);
}
.social-links a svg {
  width: 16px;
  height: 16px;
}
.copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {
  .hero-grid {
    max-width: 720px;
  }
  .why-grid,
  .testi-grid,
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .stat-divider {
    display: none;
  }
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dist-grid,
  .cta-banner-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-actions {
    justify-content: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .case-card:nth-child(1) {
    grid-row: span 1;
    grid-column: span 2;
  }
}
@media (max-width: 1100px) {
  .nav-menu {
    display: none;
  }
  .nav-inner {
    justify-content: space-between;
  }
}
@media (max-width: 720px) {
  .section-pad {
    padding: 64px 0;
  }
  .nav-menu {
    display: none;
  }
  .why-grid,
  .testi-grid,
  .prod-grid,
  .app-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .utility-left {
    font-size: 0.72rem;
    gap: 12px;
  }
  .utility-bar .container {
    gap: 12px;
  }
  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cases-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .case-card:nth-child(1) {
    grid-column: span 1;
  }
  .inside-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .inside-gallery-factory {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }
  .inside-gallery-factory .g-tile-feature {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }
  .inside-gallery-6 {
    grid-template-columns: 1fr 1fr;
  }
  .g-tile-tall,
  .g-tile-wide {
    grid-row: span 1;
    grid-column: span 2;
  }
  .inside-tabs {
    flex-wrap: wrap;
  }
  .inside-cta {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* ================= Inside Deepoint gallery ================= */
.inside-section {
  background: var(--bg-light);
}
.inside-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0 0 36px;
  padding: 6px;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.inside-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-mute);
  transition: var(--transition);
}
.inside-tab:hover {
  color: var(--blue-primary);
}
.inside-tab.active {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(25, 64, 133, 0.25);
}
.inside-tab-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  color: inherit;
}
.inside-tab.active .inside-tab-num {
  background: rgba(255, 255, 255, 0.22);
}

.inside-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.inside-gallery-factory {
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  grid-auto-rows: 190px;
  align-items: stretch;
}
.inside-gallery-factory .g-tile-video {
  cursor: default;
}
.inside-gallery-factory .g-tile-feature {
  grid-column: span 1;
  grid-row: span 2;
  min-height: 394px;
}
.inside-gallery-factory .g-tile-feature::after {
  display: none;
}
.inside-gallery[hidden] {
  display: none;
}
.inside-gallery-6 {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
}
.g-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-mute);
  cursor: zoom-in;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.g-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.g-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.g-tile:hover img {
  transform: scale(1.06);
}
.g-tile::after {
  content: "+";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transition: var(--transition);
}
.g-tile:hover::after {
  opacity: 1;
}
.g-tile-tall {
  grid-row: span 2;
}
.g-tile-wide {
  grid-column: span 2;
}

.inside-cta {
  margin-top: 36px;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px dashed var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.02rem;
  color: var(--text-dark);
  font-weight: 500;
}

@media (max-width: 720px) {
  .inside-gallery-factory {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }
  .inside-gallery-factory .g-tile-feature {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }
}

/* ================= Lightbox ================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 18, 38, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: lbFade 0.2s ease;
}
.lightbox[hidden] {
  display: none;
}
@keyframes lbFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lb-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.lb-close,
.lb-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.lb-close:hover,
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.06);
}
.lb-close {
  top: 24px;
  right: 24px;
}
.lb-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-prev:hover {
  transform: translateY(-50%) scale(1.06);
}
.lb-next:hover {
  transform: translateY(-50%) scale(1.06);
}
.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

/* ============================================================
   Solution page styles (subhero / scenario / calc / faq)
   ============================================================ */

/* ---------- Compact hero (used by solution sub-pages) ---------- */
.subhero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-primary) 100%);
  color: #fff; padding: 80px 0 64px; position: relative; overflow: hidden;
}
.subhero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(243,177,58,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.subhero .container { position: relative; z-index: 1; }
.subhero .eyebrow { color: var(--gold); }
.subhero h1 {
  color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; margin: 12px 0 18px;
}
.subhero .lead {
  color: rgba(255,255,255,0.85); font-size: 1.15rem; line-height: 1.6;
  max-width: 720px; margin-bottom: 28px;
}
.subhero .red-text { color: var(--gold); }
.subhero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.subhero-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35); aspect-ratio: 4/3;
}
.subhero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.subhero-pains {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 24px 0 28px; max-width: 520px;
}
.subhero-pains span {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.92rem;
  display: flex; align-items: center; gap: 8px;
}
.subhero-pains span::before { content: "⚡"; color: var(--gold); font-size: 1rem; }

/* ---------- Section variants ---------- */
.section-light { background: var(--bg-light); }

/* ---------- Solutions — scenario picker ---------- */
.scenario-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.scenario-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 26px 24px; transition: var(--transition); cursor: pointer; text-decoration: none;
  color: inherit; display: flex; flex-direction: column; gap: 10px;
}
.scenario-card:hover { transform: translateY(-4px); border-color: var(--red-accent); box-shadow: var(--shadow-md); }
.scenario-card .sc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.scenario-card h3 { font-size: 1.12rem; margin: 6px 0 4px; color: var(--blue-deep); }
.scenario-card p { font-size: 0.92rem; color: var(--text-gray); line-height: 1.55; margin: 0; }
.scenario-card .sc-specs {
  margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--border-light);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
}
.scenario-card .sc-spec { display: flex; flex-direction: column; gap: 2px; font-size: 0.84rem; }
.scenario-card .sc-spec .k { color: var(--text-mute); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.scenario-card .sc-spec .v { color: var(--blue-deep); font-weight: 700; }

/* ---------- Scenario calculator ---------- */
.calc-wrap {
  background: #fff; border-radius: var(--radius-lg);
  border: 2px solid var(--blue-primary); padding: 36px; box-shadow: var(--shadow-md);
}
.calc-stepper { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: stretch; }
.calc-step {
  background: var(--bg-light); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 24px 20px;
  position: relative; display: flex; flex-direction: column; gap: 14px;
}
.calc-step .step-num {
  position: absolute; top: -16px; left: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; box-shadow: var(--shadow-sm);
}
.calc-step h4 { margin: 0; color: var(--blue-deep); font-size: 1rem; padding-top: 6px; }
.calc-step label { font-size: 0.82rem; color: var(--text-gray); display: block; margin-bottom: 4px; font-weight: 600; }
.calc-step input, .calc-step select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); font-size: 0.95rem; background: #fff; font-family: inherit;
}
.calc-step input:focus, .calc-step select:focus {
  outline: none; border-color: var(--blue-primary); box-shadow: 0 0 0 3px rgba(25,64,133,0.12);
}
.calc-result {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-primary));
  color: #fff; border-radius: var(--radius-md); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.calc-result .cv-label { font-size: 0.74rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.calc-result .cv-pv, .calc-result .cv-bat { font-size: 1.45rem; font-weight: 800; color: var(--gold); letter-spacing: -0.01em; }
.calc-result .cv-combo {
  font-size: 0.9rem; color: rgba(255,255,255,0.92); line-height: 1.45;
  background: rgba(255,255,255,0.08); padding: 10px 12px; border-radius: var(--radius-sm);
}
.calc-placeholder { color: var(--text-mute); font-size: 0.92rem; text-align: center; padding: 20px 12px; line-height: 1.5; }

/* ---------- FAQ (details/summary) ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-list details {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-list details[open] { border-color: var(--blue-primary); box-shadow: var(--shadow-sm); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 18px 22px; padding-right: 50px;
  font-weight: 700; color: var(--blue-deep); position: relative; font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--red-accent); font-weight: 400; line-height: 1; transition: transform 0.25s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details > p, .faq-list details > div { padding: 0 22px 20px; color: var(--text-gray); line-height: 1.65; margin: 0; }

/* ---------- 4-column why grid (solution pages) ---------- */
.why-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ---------- Subhero stats bar ---------- */
.subhero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 36px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.subhero-stats .stat-num {
  font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.01em;
}
.subhero-stats .stat-lbl {
  font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 6px; letter-spacing: 0.04em;
}

/* ---------- Case deep layout ---------- */
.case-deep {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: center; padding: 64px 0; border-bottom: 1px solid var(--border-light);
}
.case-deep:last-child { border-bottom: none; }
.case-deep:nth-child(even) .case-deep-media { order: 2; }
.case-deep-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: var(--bg-soft);
}
.case-deep-media .case-slider, .case-deep-media .case-video { width: 100%; height: 100%; }
.case-deep-media .cs-slide { object-fit: cover; }
.case-deep-body .case-tag { display: inline-block; margin-bottom: 12px; }
.case-deep-body h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 8px; }
.case-deep-body .case-loc { color: var(--text-mute); font-size: 0.92rem; margin-bottom: 20px; }
.case-deep-narrative > div {
  margin-bottom: 16px; padding-left: 16px; border-left: 3px solid var(--border-light);
}
.case-deep-narrative h4 {
  font-size: 0.78rem; color: var(--red-accent); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 6px;
}
.case-deep-narrative p { color: var(--text-gray); line-height: 1.65; margin: 0; }
.case-deep-narrative > div:nth-child(2) { border-left-color: var(--blue-primary); }
.case-deep-narrative > div:nth-child(2) h4 { color: var(--blue-primary); }
.case-deep-narrative > div:nth-child(3) { border-left-color: var(--gold); }
.case-deep-narrative > div:nth-child(3) h4 { color: #b58319; }
.case-deep-body .case-specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin: 22px 0; background: var(--bg-light); padding: 16px;
  border-radius: var(--radius-md); border: 1px solid var(--border-light);
}
.case-deep-body .case-spec { display: flex; flex-direction: column; gap: 2px; }
.case-deep-body .case-spec .k { font-size: 0.75rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.06em; }
.case-deep-body .case-spec .v { font-weight: 700; color: var(--blue-deep); }
.case-components { margin: 16px 0 22px; }
.case-components h4 {
  font-size: 0.78rem; color: var(--text-gray); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 10px;
}
.case-components ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.case-components li { display: flex; align-items: center; gap: 8px; }
.case-components a {
  color: var(--blue-primary); text-decoration: none; font-size: 0.92rem;
  border-bottom: 1px dashed var(--blue-primary); padding-bottom: 1px; transition: var(--transition);
}
.case-components a:hover { color: var(--red-accent); border-bottom-color: var(--red-accent); }
.case-components li::before { content: "📄"; font-size: 0.95rem; }

/* ---------- Process timeline ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; counter-reset: step;
}
.process-step {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 28px 22px; text-align: center; position: relative;
}
.process-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--red-accent); color: #fff; display: flex;
  align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(204,37,37,0.3);
}
.process-step h3 { margin: 14px 0 8px; font-size: 1.05rem; }
.process-step p { font-size: 0.92rem; color: var(--text-gray); line-height: 1.55; margin: 0; }

/* ---------- Filter chips ---------- */
.case-filter {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px;
}
.case-chip {
  background: #fff; border: 1px solid var(--border-light); color: var(--text-dark);
  padding: 9px 18px; border-radius: 999px; cursor: pointer; font-weight: 600;
  font-size: 0.9rem; font-family: inherit; transition: var(--transition);
}
.case-chip:hover { border-color: var(--red-accent); color: var(--red-accent); }
.case-chip.active { background: var(--red-accent); color: #fff; border-color: var(--red-accent); }

/* ---------- Responsive additions ---------- */
@media (max-width: 1024px) {
  .subhero-grid { grid-template-columns: 1fr; gap: 28px; }
  .subhero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .case-deep { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .case-deep:nth-child(even) .case-deep-media { order: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .scenario-picker { grid-template-columns: repeat(2, 1fr); }
  .calc-stepper { grid-template-columns: 1fr; }
  .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .subhero { padding: 56px 0 44px; }
  .subhero-stats { grid-template-columns: 1fr 1fr; }
  .subhero-pains { grid-template-columns: 1fr; }
  .case-deep-body .case-specs { grid-template-columns: 1fr; }
  .scenario-picker { grid-template-columns: 1fr; }
  .why-grid-4 { grid-template-columns: 1fr; }
  .calc-wrap { padding: 24px 18px; }
}
