:root {
  /* Brand Colors - Professional Sporty */
  --bg: #f8f9fc;
  --surface: #ffffff;
  --surface-soft: #eef1f8;
  --ink: #0f172a;
  --muted: #4a5568;
  --line: #e2e8f0;
  
  /* Brand Palette */
  --navy: #0b1f3a;
  --navy-light: #1a3154;
  --navy-dark: #070f21;
  --orange: #f16522;
  --orange-dark: #d95414;
  --orange-light: #ff7b3a;
  --success: #137a52;
  
  /* Design Tokens */
  --max: 1180px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 500;
}

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

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

p,
li,
label,
input,
textarea,
select {
  color: var(--muted);
}

h1,
h2,
h3,
h4,
.nav a,
.cta,
.cta-secondary,
.section-kicker,
.trust-item strong {
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 {
  margin: 0 0 1rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 1rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 0.75rem;
  line-height: 1.25;
  font-weight: 700;
}

.nav,
.top-strip-inner,
.hero,
.section-inner,
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.top-strip {
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem 1rem;
  flex-wrap: wrap;
}

.top-contact-left {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.top-contact-right {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.top-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 160ms ease;
}

.top-link:hover {
  color: var(--orange);
}

.top-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 160ms ease, transform 160ms ease;
}

.top-social:hover {
  background: var(--orange);
  color: #fff;
  transform: scale(1.1);
}

.top-strip-inner span {
  color: #dbe7ff;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.25rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding-bottom: 0.9rem;
  margin-bottom: -0.9rem;
}

.nav-dropdown-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  padding: 0;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 0.2rem);
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.55rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 20;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--surface-soft);
  color: var(--navy);
}

.nav-dropdown-link.active,
.nav-dropdown-link:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"] {
  color: var(--orange);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--orange);
}

.hero-shell {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 0;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-radius: 0;
  margin: 0;
  min-height: 520px;
  max-height: 680px;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
}

@media (max-width: 1200px) {
  .hero-slider {
    min-height: 480px;
  }
}

@media (max-width: 900px) {
  .hero-slider {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .hero-slider {
    min-height: 320px;
  }

  .top-strip-inner {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
  }

  .top-contact-left {
    width: 100%;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .top-contact-right {
    width: 100%;
    justify-content: center;
  }

  .top-link {
    font-size: 0.7rem;
  }

  .top-social {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
  }
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1180px;
  padding: 2rem 0 2.5rem;
  background: transparent;
}

.slider-dots {
  position: absolute;
  inset: auto 0 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  z-index: 2;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.slider-dot:hover,
.slider-dot:focus-visible {
  transform: scale(1.05);
}

.slider-dot.active {
  background: var(--orange);
  border-color: var(--orange);
}

.hero h1,
.hero-lead,
.section-kicker,
.cta,
.cta-secondary {
  position: relative;
  z-index: 2;
}

.hero .hero-actions {
  gap: 1rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.15em;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  max-width: 14ch;
  line-height: 1.05;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 58ch;
  margin-bottom: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.trust-strip,
.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.25s ease;
}

.cta {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 15px rgba(241, 101, 34, 0.3);
}

.cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(241, 101, 34, 0.4);
}

.cta-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.cta-secondary:hover {
  background: var(--navy);
  color: #fff;
}

.mockup-card p {
  margin: 0;
  font-size: 0.82rem;
}

.section {
  padding: 0 1rem 4.5rem;
}

.section-inner {
  padding-top: 4rem;
}

.section-head {
  max-width: 820px;
  margin-bottom: 1.6rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  color: var(--navy);
}

.section-head p {
  margin: 0;
}

.trust-strip-wrap {
  background: #f0f4fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip {
  padding: 1rem;
  justify-content: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 600;
}

.trust-item::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
}

.product-grid,
.value-grid,
.proof-grid,
.social-grid,
.quote-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.product-grid,
.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.value-card,
.proof-card,
.quote-card,
.info-card,
.gallery-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
}

.product-card,
.value-card,
.proof-card,
.quote-card,
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-thumb {
  height: 240px;
  background: #dfe8f6;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-body {
  padding: 1.1rem;
}

.product-body h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}

.product-link {
  display: inline-flex;
  margin-top: 0.55rem;
  color: var(--orange);
  font-weight: 700;
}

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

.value-card,
.proof-card,
.quote-card,
.info-card {
  padding: 1.35rem;
}

.value-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef2f8;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.25rem;
  align-items: stretch;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.detail-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
}

.detail-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.proof-card h3 {
  color: var(--navy);
}

.connect-section {
  background: #eef3fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-link {
  --brand: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 74px;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--navy);
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
  outline: 0;
}

.social-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(241, 101, 34, 0.28), 0 22px 42px rgba(15, 23, 42, 0.12);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.social-link.instagram {
  --brand: #e4405f;
}

.social-link.facebook {
  --brand: #1877f2;
}

.social-link.linkedin {
  --brand: #0a66c2;
}

.social-link.tiktok {
  --brand: #111827;
}

.social-link.youtube {
  --brand: #ff0000;
}

.social-link.x-twitter {
  --brand: #000000;
}

.social-link.whatsapp {
  --brand: #25d366;
}

.social-link.pinterest {
  --brand: #bd081c;
}

.social-link.threads {
  --brand: #181818;
}

.quote-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  gap: 1.2rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-details strong,
.contact-details span,
.contact-details a {
  display: block;
}

.contact-details strong {
  color: var(--navy);
}

.contact-map {
  margin: 1.25rem calc(50% - 50vw) 0;
  overflow: hidden;
  background: var(--surface-soft);
  height: min(560px, 58vw);
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.wa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid #1fae70;
  background: #e9fff4;
  color: #126a46;
  font-weight: 700;
}

.wa-button:hover {
  background: #d6f9e8;
}

.info-list {
  display: grid;
  gap: 1rem;
}

.info-list strong,
.info-list span,
.info-list a {
  display: block;
}

.info-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.9rem;
}

.info-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.map-card {
  margin-top: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  aspect-ratio: 4 / 3;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-link {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--navy);
  font-weight: 700;
}

.map-link:hover {
  color: var(--orange);
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 3rem 1rem 1.4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.footer-title,
.footer-logo .logo-name {
  color: #fff;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: #fff;
  padding: 0.25rem;
}

.footer-logo .logo-subtitle,
.footer-text,
.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #c9d4ea;
}

.footer-links,
.footer-contact {
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 212, 234, 0.18);
  color: #c9d4ea;
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-section,
  .quote-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .value-grid,
  .social-grid,
  .proof-grid,
  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .nav-dropdown {
    width: 100%;
    justify-content: space-between;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-dropdown-toggle {
    flex: 0 0 auto;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    margin-top: 0.2rem;
    box-shadow: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero h1 {
    max-width: none;
  }

  .mockup-grid,
  .product-grid,
  .value-grid,
  .social-grid,
  .proof-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

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

  .top-strip-inner {
    flex-direction: column;
  }
}

/* =========================
   CONTACT MAP INSIDE CARD
   ========================= */

.contact-map-box {
  margin-top: 1.25rem;
  width: 100%;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* mobile tuning */
@media (max-width: 700px) {
  .contact-map-box {
    height: 200px;
  }
}
/* PREMIUM STRIP (CLEANER) */
.premium-strip {
  background: linear-gradient(90deg, #0b1f3a, #132a4d, #0b1f3a);
  border: none;
  position: relative;
  overflow: hidden;
}

.premium-strip-inner {
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.6rem 1rem 1.2rem;
}

/* REMOVE ✓ */
.premium-strip .trust-item::before {
  display: none;
}

/* TAGLINE */
.premium-tagline {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-align: center;
  animation: fadeUp 0.8s ease forwards;
}

.premium-tagline span {
  color: var(--orange);
}

/* MICRO TRUST ROW */
.micro-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.micro-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #dbe7ff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* minimal premium dot (instead of icons = cleaner look) */
.micro-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(241,101,34,0.6);
}
.cert-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cert-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px 2px 0 0;
}

.cert-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.cert-logo-placeholder {
  height: 52px;   /* was 36px */
  display: flex;
  align-items: center;
}

.cert-logo-placeholder img {
  max-height: 52px;   /* was 36px */
  max-width: 160px;   /* was 110px */
  width: auto;
  object-fit: contain;
}

.cert-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ecfdf5;
  color: var(--success);
  border: 1px solid rgba(19, 122, 82, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.cert-verified-badge i {
  font-size: 0.8rem;
}

.cert-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 1.25rem;
}

.cert-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}

.cert-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}

.cert-card p:not(.cert-number) {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}

.cert-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.cert-footer i {
  color: var(--orange);
  font-size: 0.9rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

/* subtle animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* OPTIONAL subtle moving light */
.premium-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shimmer 7s infinite;
}

@keyframes shimmer {
  0% { left: -60%; }
  100% { left: 120%; }
}

/* PREMIUM VALUE CARDS (NO ICONS) */

.premium-value-grid {
  gap: 1.2rem;
}

.premium-card {
  position: relative;
  padding: 1.6rem;
  transition: all 0.25s ease;
}

/* subtle top accent line */
.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.9;
}

/* better spacing */
.premium-card h3 {
  margin-top: 0.4rem;
  margin-bottom: 0;
  font-size: 1.05rem;
  color: var(--navy);
}

.premium-card p {
  margin: 0.4rem 0 0;
  margin-top: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* hover = subtle lift (premium feel) */
.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* optional: slight accent animation on hover */
.premium-card:hover::before {
  width: 70px;
}

/* GRID */
.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* COLUMNS */
.problem-column,
.solution-column {
  display: grid;
  gap: 1rem;
}

/* CARD */
.ps-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.25s ease;
}

/* PROBLEM STYLE (subtle danger tone) */
.problem-column .ps-card {
  border-left: 3px solid rgba(185, 28, 28, 0.6);
}

/* SOLUTION STYLE (confidence tone) */
.ps-card.solution {
  border-left: 3px solid var(--orange);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

/* TEXT */
/* FIXED COST LINE (readable now) */
.cost-line {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7f1d1d;
  background: rgba(185, 28, 28, 0.06);
  padding: 0.45rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
}

/* HOVER */
.ps-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* MOBILE */
@media (max-width: 900px) {
  .problem-solution-grid {
    grid-template-columns: 1fr;
  }
}

/* ROW STRUCTURE */
.ps-rows {
  display: grid;
  gap: 1.2rem;
}

.ps-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 0.8rem;
}

/* CARDS */
.ps-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

/* PROBLEM */
.ps-card.problem {
  border-left: 3px solid rgba(185, 28, 28, 0.7);
}

/* SOLUTION */
.ps-card.solution {
  border-left: 3px solid var(--orange);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

/* CONNECTOR */
.ps-connector {
  position: relative;
  height: 2px;
  background: linear-gradient(to right, rgba(185,28,28,0.6), var(--orange));
}

/* arrow */
.ps-connector::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

/* TEXT */
.ps-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.ps-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* FIXED COST LINE */
.cost-line {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7f1d1d;
  background: rgba(185, 28, 28, 0.06);
  padding: 0.45rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
}

/* HOVER */
.ps-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* MOBILE */
@media (max-width: 900px) {
  .ps-row {
    grid-template-columns: 1fr;
  }

  .ps-connector {
    display: none;
  }
}

/* COST LINE (conversion-focused detail) */

.cost-line {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b91c1c; /* subtle red = risk signal */
  opacity: 0.85;
}

/* optional: softer version if you want less aggressive */
.premium-card:hover .cost-line {
  opacity: 1;
}

/* COST LINE — FIXED (readable + premium) */

.cost-line {
  margin-top: 0.8rem;

  /* readability */
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;

  /* color (less harsh than red, still signals risk) */
  color: #7a1c1c;

  /* structure */
  background: #fef2f2;
  border: 1px solid rgba(185, 28, 28, 0.15);
  padding: 0.55rem 0.7rem;
  border-radius: 6px;

  /* remove bad patterns */
  text-transform: none;
  letter-spacing: normal;
  opacity: 1;

  /* layout */
  display: inline-block;
}

/* optional: stronger emphasis on hover */
.premium-card:hover .cost-line {
  background: #fee2e2;
  border-color: rgba(185, 28, 28, 0.25);
}

/* MAKE ALL CARDS SAME HEIGHT */
.premium-value-grid {
  align-items: stretch;
}

.premium-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* PUSH COST LINE TO BOTTOM */
.premium-card p {
  flex-grow: 1;
}

/* KEEP CONSISTENT SPACING */
.premium-card h3 {
  min-height: 2.4em; /* keeps titles aligned */
}


/* PREMIUM DOUBT CARDS */

.premium-proof-grid {
  gap: 1.2rem;
}

.premium-proof-card {
  position: relative;
  padding: 1.5rem;
  transition: all 0.25s ease;

  /* subtle left accent (same language as previous section) */
  border-left: 3px solid rgba(185, 28, 28, 0.6);
}

/* typography refinement */
.premium-proof-card h3 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--navy);
}

/* subtle hover (premium feel) */
.premium-proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* optional: slight highlight on hover */
.premium-proof-card:hover {
  border-left-color: rgba(185, 28, 28, 0.9);
}

/* better alignment consistency */
.premium-proof-card h3 {
  min-height: 3em;
}

/* SOLUTION CARDS (ZALAR DIFFERENCE) */

.solution-card {
  position: relative;
  padding: 1.6rem;
  transition: all 0.25s ease;

  /* brand-colored accent (positive vs red problems) */
  border-left: 3px solid var(--orange);
}

/* subtle premium accent line on top */
.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.9;
}

/* text refinement */
.solution-card h3 {
  margin-top: 0.4rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.solution-card p {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* hover = subtle confidence */
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* optional: slight accent expansion on hover */
.solution-card:hover::before {
  width: 70px;
}

/* PROCESS CARDS */

.process-card {
  position: relative;
  padding: 1.6rem;
  transition: all 0.25s ease;
  border-left: 3px solid var(--navy);
}

/* step number (clean, premium) */
.step-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* text styling */
.process-card h3 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.process-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* hover */
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* OPTIONAL: subtle connection line between steps (desktop only) */
.process-grid {
  position: relative;
}

@media (min-width: 900px) {
  .process-grid::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--line);
    z-index: 0;
  }

  .process-card {
    z-index: 1;
  }
}






  .pz-section {
    background: var(--bg, #f8f9fc);
    padding: 3.5rem 1rem;
    font-family: 'Barlow', sans-serif;
  }

  .pz-header {
    max-width: 1180px;
    margin: 0 auto 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .pz-kicker {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange, #f16522);
    margin-bottom: 0.4rem;
  }

  .pz-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--navy, #0b1f3a);
    line-height: 1;
    margin: 0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }

  .pz-title span {
    color: var(--orange, #f16522);
  }

  .pz-browse {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy, #0b1f3a);
    border-bottom: 2px solid var(--orange, #f16522);
    padding-bottom: 2px;
    white-space: nowrap;
    text-decoration: none;
  }

  .pz-browse:hover {
    color: var(--orange, #f16522);
  }

  .pz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    max-width: 1180px;
    margin: 0 auto;
    margin-top: 32px;
  }

  .pz-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--navy-dark, #070f21);
    aspect-ratio: 4/5;
    display: block;
    text-decoration: none;
  }

  .pz-card:first-child {
    grid-column: span 2;
    aspect-ratio: 8/5;
  }

  .pz-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: brightness(0.82) contrast(1.05);
  }

  .pz-card:hover img {
    transform: scale(1.07);
    filter: brightness(0.6) contrast(1.1);
  }

  .pz-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,15,33,0.92) 0%, rgba(7,15,33,0.3) 50%, transparent 100%);
    transition: background 0.3s ease;
  }

  .pz-card:hover .pz-overlay {
    background: linear-gradient(to top, rgba(7,15,33,0.97) 0%, rgba(7,15,33,0.55) 60%, rgba(7,15,33,0.1) 100%);
  }

  .pz-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .pz-sport-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange, #f16522);
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease 0.05s;
  }

  .pz-card:hover .pz-sport-tag {
    opacity: 1;
    transform: translateY(0);
  }

  .pz-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0;
  }

  .pz-card:first-child .pz-name {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
  }

  .pz-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--orange, #f16522);
    padding: 0.5rem 1rem 0.45rem;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .pz-card:hover .pz-action {
    opacity: 1;
    transform: translateY(0);
  }

  .pz-sialkot-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: 1180px;
    margin: 1.4rem auto 0;
  }

  .pz-badge-line {
    flex: 1;
    height: 1px;
    background: var(--line, #e2e8f0);
  }

  .pz-badge-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #a0aec0;
    white-space: nowrap;
  }

  .pz-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange, #f16522);
    flex-shrink: 0;
  }

  /* Tablet */
  @media (max-width: 1040px) {
    .pz-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .pz-card:first-child {
      grid-column: span 2;
    }
  }

  /* Mobile */
  @media (max-width: 700px) {
    .pz-grid {
      grid-template-columns: 1fr 1fr;
    }
    .pz-card:first-child {
      grid-column: span 2;
    }
    .pz-info { padding: 1rem; }
    /* Always show CTA on touch devices */
    .pz-action,
    .pz-sport-tag {
      opacity: 1;
      transform: none;
    }
    .pz-badge-text {
      display: none; /* too long on small screens */
    }
  }

  @media (max-width: 480px) {
    .pz-grid { grid-template-columns: 1fr; }
    .pz-card:first-child { grid-column: span 1; aspect-ratio: 4/3; }
    .pz-card { aspect-ratio: 4/3; }
  }


   @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;800;900&family=Barlow:wght@400;500;600&display=swap');

  .sg-section {
    background: #f8f9fc;
    padding: 3.5rem 1rem 4rem;
    font-family: 'Barlow', sans-serif;
  }

  .sg-header {
    max-width: 1180px;
    margin: 0 auto 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .sg-kicker {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f16522;
    margin-bottom: 0.4rem;
  }

  .sg-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #0b1f3a;
    line-height: 1;
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }

  .sg-title span { color: #f16522; }
  .sg-sub { font-size: 0.95rem; color: #4a5568; margin: 0; }

  .sg-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a0aec0;
    white-space: nowrap;
  }

  .sg-count span {
    color: #f16522;
    font-size: 1.4rem;
    font-weight: 900;
  }

  .sg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    max-width: 1180px;
    margin: 0 auto;
  }

  .sg-item {
    position: relative;
    overflow: hidden;
    background: #0d1e35;
    aspect-ratio: auto;
    cursor: pointer;
    transition: transform 280ms ease, box-shadow 280ms ease;
  }

  .sg-item:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 24px 60px rgba(7, 15, 33, 0.18);
  }

  /* ✅ FIXED: edge-to-edge images */
  .sg-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 280ms ease;
  }

  .sg-item:hover img {
    transform: scale(1.03);
  }

  .sg-item::after {
    content: "Click to View";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(7, 15, 33, 0.35);
    opacity: 0;
    transition: opacity 240ms ease;
    pointer-events: none;
  }

  .sg-item::before {
    content: "\1F50D";
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    opacity: 0;
    transition: opacity 240ms ease, transform 240ms ease;
  }

  .sg-item:hover::after,
  .sg-item:hover::before {
    opacity: 1;
  }

  .sg-item:hover::before {
    transform: translateY(-2px);
  }

  .sg-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(7,15,33,0.9) 0%, transparent 100%);
    padding: 2.5rem 1.4rem 1.1rem;
  }

  body.lightbox-open {
    overflow: hidden;
    touch-action: none;
  }

  .lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
  }

  .lightbox-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 24, 0.92);
    backdrop-filter: blur(18px);
  }

  .lightbox-card {
    position: relative;
    width: min(980px, 100%);
    max-height: min(92vh, 860px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(9, 17, 29, 0.96);
    box-shadow: 0 32px 120px rgba(0, 0, 0, 0.35);
    overflow: hidden;
  }

  .lightbox-image-wrap {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 320px;
    max-height: 72vh;
    overflow: hidden;
    border-radius: 20px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 42%), rgba(7, 12, 21, 0.95);
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 72vh;
    width: auto;
    height: auto;
    border-radius: 18px;
    transform: scale(0.98);
    transition: transform 350ms ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  }

  .lightbox-overlay.open .lightbox-image {
    transform: scale(1);
  }

  .lightbox-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .lightbox-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .lightbox-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 0.95rem 1.4rem;
    border-radius: var(--radius);
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 14px 35px rgba(241, 101, 34, 0.32);
    transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
  }

  .lightbox-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    opacity: 0.98;
  }

  .lightbox-close,
  .lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(255,255,255,0.14);
    color: #fff;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 250ms ease, background 250ms ease;
    font-size: 1.2rem;
    line-height: 1;
    transform: scale(1);
  }

  .lightbox-close:hover,
  .lightbox-nav:hover {
    background: rgba(255,255,255,0.22);
  }

  .lightbox-close:hover {
    transform: scale(1.05);
  }

  .lightbox-nav:hover {
    transform: translateY(-50%) scale(1.05);
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    z-index: 2;
  }

  .lightbox-nav {
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%) scale(1);
    z-index: 2;
  }

  .lightbox-image {
    cursor: zoom-in;
    transition: transform 350ms ease, box-shadow 350ms ease;
  }

  .lightbox-image-wrap.zoomed .lightbox-image {
    transform: scale(1.12);
    cursor: zoom-out;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-nav::before {
    font-size: 1.05rem;
    font-weight: 700;
  }

  .lightbox-prev::before { content: "←"; }
  .lightbox-next::before { content: "→"; }

  @media (max-width: 680px) {
    .lightbox-card {
      padding: 0.85rem;
      border-radius: 18px;
    }

    .lightbox-image-wrap {
      min-height: 240px;
    }

    .lightbox-meta {
      flex-direction: column;
      align-items: stretch;
    }

    .lightbox-nav {
      width: 44px;
      height: 44px;
    }

    .lightbox-prev {
      left: 0.25rem;
    }

    .lightbox-next {
      right: 0.25rem;
    }
  }

  .sg-design-no {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: #f16522;
  }

  .sg-design-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
  }

  .sg-cta-row {
    max-width: 1180px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .sg-cta-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    background: #0b1f3a;
    padding: 0.7rem 1.4rem;
    text-decoration: none;
  }

  .sg-cta-btn:hover { background: #f16522; }

  @media (max-width: 600px) {
    .sg-grid { grid-template-columns: 1fr; }
  }

  .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #c9d4ea;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--orange);
}







.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-trust span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c9d4ea;
  position: relative;
}

.footer-trust span::before {
  content: "•";
  color: var(--orange);
  margin-right: 6px;
}

/* better bottom alignment */
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-contact i {
  width: 16px;
}





 /* ── PAGE HERO ── */
    .pl-hero {
      background: var(--navy);
      padding: 5rem 1rem 4.5rem;
      position: relative;
      overflow: hidden;
    }
    .pl-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(241,101,34,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .pl-hero-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 3rem;
    }
    .pl-hero-kicker {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.9rem;
    }
    .pl-hero h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      color: #fff;
      max-width: 16ch;
      line-height: 1.05;
      margin-bottom: 1.2rem;
    }
    .pl-hero h1 span { color: var(--orange); }
    .pl-hero p {
      font-size: 1.05rem;
      color: #c9d4ea;
      max-width: 52ch;
      line-height: 1.7;
      margin: 0 0 2rem;
    }
    .pl-hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(201,212,234,0.18);
      flex-wrap: wrap;
    }
    .pl-stat-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #7a8ba8;
      margin-bottom: 0.25rem;
    }
    .pl-stat-value {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .pl-stat-value span { color: var(--orange); }

    /* badge stack on right */
    .pl-hero-badge {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex-shrink: 0;
    }
    .pl-badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 1rem;
      border: 1px solid rgba(241,101,34,0.3);
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      color: #c9d4ea;
      background: rgba(241,101,34,0.06);
      white-space: nowrap;
    }
    .pl-badge-pill i { color: var(--orange); font-size: 0.8rem; }

    @media (max-width: 800px) {
      .pl-hero-inner { grid-template-columns: 1fr; }
      .pl-hero-badge { flex-direction: row; flex-wrap: wrap; }
    }

    /* ── WHAT'S INCLUDED ── */
    .pl-included-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: 2rem;
    }
    .pl-included-item {
      background: var(--surface);
      padding: 1.75rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .pl-included-icon {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(241,101,34,0.08);
      color: var(--orange);
      font-size: 1rem;
      margin-bottom: 0.4rem;
      flex-shrink: 0;
    }
    .pl-included-item h3 {
      font-size: 0.95rem;
      margin: 0;
      color: var(--navy);
    }
    .pl-included-item p {
      font-size: 0.87rem;
      margin: 0;
      line-height: 1.55;
      color: var(--muted);
    }
    @media (max-width: 900px) {
      .pl-included-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .pl-included-grid { grid-template-columns: 1fr; }
    }

    /* ── PROCESS ── */
    .pl-process-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
      margin-top: 2rem;
    }
    .pl-process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 1rem;
      position: relative;
    }
    /* connector line */
    .pl-process-step:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 22px;
      right: -50%;
      width: 100%;
      height: 2px;
      background: linear-gradient(to right, var(--orange), rgba(241,101,34,0.2));
      z-index: 0;
    }
    .pl-step-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      margin-bottom: 1rem;
      border: 2px solid var(--orange);
      flex-shrink: 0;
    }
    .pl-process-step h3 {
      font-size: 0.88rem;
      color: var(--navy);
      margin: 0 0 0.3rem;
    }
    .pl-process-step p {
      font-size: 0.8rem;
      color: var(--muted);
      margin: 0;
      line-height: 1.5;
    }
    @media (max-width: 900px) {
      .pl-process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }
      .pl-process-step { align-items: flex-start; text-align: left; }
      .pl-process-step::after { display: none; }
    }
    @media (max-width: 560px) {
      .pl-process-grid { grid-template-columns: 1fr; }
    }

    /* ── WHY ZALAR ── */
    .pl-why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 2rem;
    }
    .pl-why-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.5rem;
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 1rem;
      align-items: start;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }
    .pl-why-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(15,23,42,0.1);
    }
    .pl-why-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--navy);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .pl-why-card h3 {
      font-size: 0.95rem;
      margin: 0 0 0.3rem;
      color: var(--navy);
    }
    .pl-why-card p {
      font-size: 0.87rem;
      margin: 0;
      line-height: 1.55;
    }
    @media (max-width: 700px) {
      .pl-why-grid { grid-template-columns: 1fr; }
    }

    /* ── FAQ ── */
    .pl-faq-list {
      margin-top: 2rem;
      display: grid;
      gap: 0;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .pl-faq-item {
      border-bottom: 1px solid var(--line);
      background: var(--surface);
    }
    .pl-faq-item:last-child { border-bottom: 0; }
    .pl-faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.3rem 1.5rem;
      background: none;
      border: 0;
      cursor: pointer;
      text-align: left;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
    }
    .pl-faq-q i {
      color: var(--orange);
      font-size: 0.85rem;
      flex-shrink: 0;
      transition: transform 0.22s ease;
    }
    .pl-faq-item.open .pl-faq-q i { transform: rotate(45deg); }
    .pl-faq-a {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .pl-faq-item.open .pl-faq-a {
      max-height: 300px;
      padding-bottom: 1.3rem;
    }
    .pl-faq-a p {
      font-size: 0.9rem;
      margin: 0;
      line-height: 1.65;
    }

    /* ── CTA STRIP ── */
    .pl-cta-strip {
      background: var(--navy);
      padding: 4rem 1rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .pl-cta-strip::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(241,101,34,0.14) 0%, transparent 70%);
      pointer-events: none;
    }
    .pl-cta-inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
    }
    .pl-cta-strip h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: #fff;
      margin-bottom: 0.75rem;
    }
    .pl-cta-strip h2 span { color: var(--orange); }
    .pl-cta-strip p {
      color: #c9d4ea;
      margin-bottom: 2rem;
      font-size: 1rem;
    }
    .pl-cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ── SECTION ALT BG ── */
    .section-alt { background: var(--surface-soft); }
    



    