:root {
  --navy: #24404d;
  --navy-mid: #426573;
  --accent: #f59e0b;
  --accent-hover: #fbbf24;
  --text: #1f2933;
  --text-muted: #5c6b73;
  --bg: #eef4f6;
  --white: #fff;
  --border: #d8e3e8;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(36, 64, 77, 0.14);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

@media (max-width: 720px) {
  body {
    padding-bottom: 5.5rem;
  }
}

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

a {
  color: var(--navy-mid);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(36, 64, 77, 0.08);
}

.header-topbar {
  background: linear-gradient(180deg, #1e313a 0%, #24404d 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.22);
}

.header-topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.header-topbar-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.header-topbar-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.header-topbar-label {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.15rem;
}

.header-topbar-link {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.header-topbar-link:hover {
  color: var(--accent);
}

.header-topbar-wa {
  color: #25d366;
}

.header-topbar-wa:hover {
  color: #4fe080;
}

.header-topbar-dot {
  color: rgba(255, 255, 255, 0.35);
}

.header-main {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(36, 64, 77, 0.14);
  border-radius: 14px;
  background: #f8fbfc;
  box-shadow: 0 8px 20px rgba(36, 64, 77, 0.08);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.24rem auto;
  border-radius: 999px;
  background: var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.25rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.btn-header-call {
  background: #f2f7f9;
  color: var(--navy);
  border: 1px solid rgba(36, 64, 77, 0.15);
  box-shadow: 0 8px 18px rgba(36, 64, 77, 0.08);
}

.btn-header-call:hover {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    width: 100%;
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.75rem;
    margin-top: 0.1rem;
    background: #f8fbfc;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(36, 64, 77, 0.1);
  }

  .nav.is-open {
    display: flex;
  }

  .header-actions {
    display: none;
  }
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.nav a:hover {
  color: var(--navy);
}

@media (max-width: 720px) {
  .nav a {
    justify-content: flex-start;
    min-height: 3rem;
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    text-align: left;
    line-height: 1.25;
    font-size: 0.92rem;
    background: var(--white);
    border: 1px solid rgba(36, 64, 77, 0.08);
    box-shadow: 0 4px 14px rgba(36, 64, 77, 0.05);
  }

  .nav a:hover {
    background: #eef4f6;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1faa4d;
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--navy);
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: var(--navy);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero {
  background: linear-gradient(145deg, #dce8ed 0%, #f4f8fa 46%, #e4eef2 100%);
  color: var(--text);
  padding: 3.5rem 1.25rem 4rem;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 1.4rem;
  }
}

.hero-wrap {
  position: relative;
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #24404d 0%, #426573 100%);
  box-shadow: var(--shadow);
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 1.5rem;
  color: var(--white);
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-tagline {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.55;
  opacity: 0.95;
  max-width: 40ch;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 36ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.hero-cta-btn,
.hero-call-btn {
  flex: 1 1 220px;
}

.hero-call-btn {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.hero-call-btn:hover {
  background: #eff4f6;
  color: var(--navy);
}

.hero-phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
}

.hero-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.hero-phone-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.hero-note {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

.hero-benefits {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
}

.hero-benefit {
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-benefit strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.98rem;
}

.hero-benefit span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 700px) {
  .hero-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section {
  padding: 3.5rem 1.25rem;
}

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

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 640px;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(36, 64, 77, 0.06);
}

.section-alt .card {
  background: var(--bg);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.process-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.process-card {
  position: relative;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(36, 64, 77, 0.08);
}

.process-card h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.08rem;
}

.process-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.97rem;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--navy);
  font-weight: 800;
}

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

@media (min-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.gallery-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: var(--white);
  font: inherit;
  color: inherit;
  line-height: 0;
}

.gallery-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero-gallery-trigger {
  background: transparent;
  border-radius: inherit;
}

.gallery .gallery-trigger img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  vertical-align: middle;
}

.pro-quote {
  max-width: 640px;
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, rgba(36, 64, 77, 0.07) 0%, rgba(66, 101, 115, 0.1) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pro-quote-lead {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.pro-quote p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.gallery-hint {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gallery figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.faq summary {
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.contact-block {
  background: linear-gradient(135deg, #24404d 0%, #426573 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
}

.contact-block h2 {
  margin: 0 0 0.5rem;
  color: var(--white);
}

.contact-block p {
  margin: 0 0 1.25rem;
  opacity: 0.9;
}

.tel-link {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.tel-link:hover {
  text-decoration: underline;
}

.contact-phones {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.tel-link-secondary {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.92;
}

.contact-address {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-address strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.contact-address address {
  margin: 0;
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.contact-copy p {
  max-width: 32rem;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

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

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.contact-point {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 600;
}

.quote-form {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span {
  font-size: 0.9rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--white);
  background: rgba(24, 42, 49, 0.3);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(232, 185, 35, 0.7);
  outline-offset: 2px;
}

.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.social-hub {
  margin-top: 2.5rem;
  padding: 1.75rem 1.35rem 1.85rem;
  border-radius: var(--radius);
  background: linear-gradient(155deg, #24404d 0%, #315363 45%, #203845 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow:
    0 12px 40px rgba(36, 64, 77, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.social-hub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c97a08, var(--accent), #ffd27a, var(--accent), #c97a08);
  opacity: 0.95;
}

.social-hub-title {
  margin: 0 0 0.4rem;
  padding-top: 0.15rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  color: var(--white);
  text-align: center;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.social-hub-lead {
  margin: 0 0 1.35rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

.social-hub-grid {
  display: grid;
  gap: 0.85rem;
  max-width: 680px;
  margin: 0 auto;
}

@media (min-width: 560px) {
  .social-hub-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.social-hub-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s, transform 0.18s, box-shadow 0.2s;
}

.social-hub-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(245, 158, 11, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.social-hub-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.social-hub-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
}

.social-hub-card--ig .social-hub-icon {
  background: linear-gradient(145deg, rgba(225, 48, 108, 0.22), rgba(36, 64, 77, 0.6));
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.social-hub-card--tt .social-hub-icon {
  background: linear-gradient(145deg, rgba(105, 201, 208, 0.18), rgba(36, 64, 77, 0.55));
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.social-hub-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

.social-hub-name {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.social-hub-handle {
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.social-hub-go {
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  opacity: 0.95;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 1.25rem;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 600;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  gap: 0.75rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(36, 64, 77, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-cta .btn {
  flex: 1;
}

.btn-mobile-call {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.btn-mobile-call:hover {
  background: #f3f7f8;
  color: var(--navy);
}

@media (max-width: 720px) {
  .mobile-cta {
    display: flex;
  }
}

.list-check {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.list-check li {
  margin-bottom: 0.4rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 1.5rem;
  background: rgba(24, 42, 49, 0.94);
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 101;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

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

.lightbox-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lightbox-inner {
  position: relative;
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  cursor: default;
}

.lightbox-img {
  display: block;
  max-width: min(96vw, 1200px);
  max-height: min(82vh, 900px);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  margin: 1rem 0 0;
  padding: 0 0.5rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.lightbox-caption:empty {
  display: none;
}
