    :root {
      --orange: #f05a24;
      --orange-dark: #d94812;
      --dark: #111820;
      --dark-soft: #1b2530;
      --text: #1f2933;
      --muted: #667085;
      --light: #f5f6f7;
      --line: #e5e7eb;
      --white: #ffffff;
      --shadow: 0 18px 50px rgba(17, 24, 32, 0.12);
      --radius: 18px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Inter", sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
    }

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

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

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

    .eyebrow {
      font-size: 0.78rem;
      color: var(--orange);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 8px;
    }

    .highlight {
      color: var(--orange);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 22px;
      border-radius: 10px;
      font-size: 0.92rem;
      font-weight: 700;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .btn-primary {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 12px 30px rgba(240, 90, 36, 0.25);
    }

    .btn-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--text);
      border-color: rgba(240, 90, 36, 0.45);
    }

    .btn-outline:hover {
      background: rgba(240, 90, 36, 0.08);
      color: var(--orange);
    }

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(229, 231, 235, 0.75);
    }

    .navbar {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

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

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      position: relative;
      background:
        linear-gradient(135deg, var(--orange) 0 45%, transparent 45%),
        linear-gradient(315deg, #5c6670 0 45%, transparent 45%);
    }

    .logo-text strong {
      display: block;
      font-size: 1.75rem;
      letter-spacing: -0.06em;
      color: var(--text);
      line-height: 1;
    }

    .logo-text strong span {
      color: var(--orange);
    }

    .logo-text small {
      display: block;
      font-size: 0.56rem;
      letter-spacing: 0.15em;
      font-weight: 800;
      color: #4b5563;
      text-transform: uppercase;
      margin-top: 3px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 34px;
      align-items: center;
    }

    nav a {
      font-size: 0.92rem;
      font-weight: 600;
      color: #26313d;
      position: relative;
      padding: 30px 0;
    }

    nav a.active::after {
      content: "";
      width: 100%;
      height: 2px;
      background: var(--orange);
      position: absolute;
      left: 0;
      bottom: 18px;
      border-radius: 20px;
    }

    .mobile-menu {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      background: var(--white);
      border-radius: 10px;
      font-size: 1.4rem;
    }

    .hero {
      background:
        radial-gradient(circle at 80% 5%, rgba(240, 90, 36, 0.08), transparent 35%),
        linear-gradient(180deg, #f6f7f8 0%, #ffffff 100%);
      padding: 42px 0 62px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.45fr;
      align-items: center;
      gap: 54px;
    }

    .hero-content h1 {
      font-size: clamp(2.35rem, 4.1vw, 4.2rem);
      line-height: 0.98;
      letter-spacing: -0.055em;
      margin-bottom: 22px;
      color: #202933;
      max-width: 560px;
    }

    .hero-content p {
      font-size: 1.13rem;
      color: #364150;
      margin-bottom: 28px;
      font-weight: 500;
    }

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

    .hero-device {
      position: relative;
      margin: 0;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      min-width: 0;
    }

    .hero-device::before {
      content: "";
      position: absolute;
      inset: 8% 2% 10% 6%;
      border: 1.5px solid rgba(240, 90, 36, 0.35);
      border-radius: 44px;
      transform: rotate(7deg);
      z-index: 0;
      pointer-events: none;
    }

    .hero-device img {
      position: relative;
      z-index: 1;
      width: min(100%, 920px);
      height: auto;
      display: block;
      filter: drop-shadow(0 28px 60px rgba(17, 24, 32, 0.32));
    }

    .dashboard-frame {
      position: relative;
      padding: 18px;
    }

    .dashboard-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      border: 1.5px solid rgba(240, 90, 36, 0.45);
      border-radius: 44px;
      transform: rotate(8deg) translateY(8px);
      z-index: 0;
    }

    .dashboard {
      position: relative;
      z-index: 1;
      background: #0f1822;
      color: var(--white);
      border-radius: 18px;
      padding: 22px;
      min-height: 395px;
      box-shadow: 0 34px 80px rgba(17, 24, 32, 0.38);
      display: grid;
      grid-template-columns: 155px 1fr;
      gap: 22px;
      overflow: hidden;
    }

    .dash-sidebar {
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      padding-right: 14px;
    }

    .dash-brand {
      font-weight: 800;
      font-size: 0.95rem;
      margin-bottom: 25px;
      color: #e8edf3;
    }

    .dash-menu {
      display: grid;
      gap: 12px;
    }

    .dash-menu span {
      font-size: 0.78rem;
      color: #95a3b3;
      padding: 8px 10px;
      border-radius: 8px;
    }

    .dash-menu span.active {
      color: var(--white);
      background: rgba(255, 255, 255, 0.08);
    }

    .dash-main {
      min-width: 0;
    }

    .dash-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      gap: 14px;
    }

    .dash-search {
      height: 32px;
      width: 230px;
      border-radius: 8px;
      background: #111f2d;
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #6d7b8b;
      font-size: 0.72rem;
      display: flex;
      align-items: center;
      padding: 0 12px;
    }

    .dash-user {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.78rem;
      color: #c9d2dc;
    }

    .avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #3249ff;
      display: grid;
      place-items: center;
      font-weight: 800;
    }

    .dash-content {
      display: grid;
      grid-template-columns: 1fr 250px;
      gap: 24px;
    }

    .dash-kicker {
      color: #97a6b7;
      font-size: 0.75rem;
      margin-bottom: 8px;
    }

    .dash-content h2 {
      font-size: 1.25rem;
      margin-bottom: 20px;
    }

    .dash-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .tag {
      font-size: 0.68rem;
      padding: 6px 9px;
      border-radius: 99px;
      background: rgba(255, 255, 255, 0.07);
      color: #bec9d6;
    }

    .tag.orange {
      color: #ffbb8d;
      background: rgba(240, 90, 36, 0.14);
    }

    .dash-title {
      font-size: clamp(1.25rem, 2.1vw, 1.9rem);
      line-height: 1.12;
      max-width: 390px;
      font-weight: 800;
      letter-spacing: -0.04em;
      margin-bottom: 22px;
    }

    .dash-text {
      font-size: 0.78rem;
      color: #a8b4c0;
      max-width: 370px;
      margin-bottom: 24px;
    }

    .dash-buttons {
      display: flex;
      gap: 10px;
    }

    .dash-btn {
      padding: 9px 14px;
      border-radius: 7px;
      background: #3047ff;
      color: white;
      font-size: 0.72rem;
      font-weight: 700;
    }

    .dash-btn.secondary {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.12);
      color: #bfc9d3;
    }

    .health-card {
      background: rgba(10, 18, 27, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 16px;
      padding: 22px;
      align-self: start;
    }

    .health-card h3 {
      font-size: 0.74rem;
      color: #c8d0da;
      margin-bottom: 14px;
      text-transform: uppercase;
    }

    .score {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 16px;
    }

    .score strong {
      font-size: 3rem;
      color: #ff5b76;
      line-height: 1;
    }

    .score span {
      color: #a4afbb;
      font-size: 0.78rem;
    }

    .progress {
      height: 7px;
      background: #263443;
      border-radius: 99px;
      overflow: hidden;
      margin-bottom: 24px;
    }

    .progress i {
      display: block;
      width: 41%;
      height: 100%;
      background: #ff4c68;
    }

    .health-metrics {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: #cbd5df;
      font-size: 0.78rem;
    }

    .health-metrics small {
      display: block;
      color: #748191;
      margin-bottom: 4px;
      text-transform: uppercase;
      font-size: 0.58rem;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
    }

    .slider-dots span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #d5d9de;
    }

    .slider-dots span.active {
      width: 18px;
      background: var(--orange);
      border-radius: 99px;
    }

    .essence {
      padding: 70px 0 52px;
      background: var(--white);
      position: relative;
    }

    .essence-grid {
      display: grid;
      grid-template-columns: 0.88fr 1.2fr;
      gap: 70px;
      align-items: center;
    }

    .section-title {
      font-size: clamp(1.7rem, 2.7vw, 2.5rem);
      line-height: 1.1;
      letter-spacing: -0.04em;
      margin-bottom: 14px;
    }

    .section-description {
      color: #344051;
      font-size: 1rem;
      max-width: 510px;
      margin-bottom: 34px;
    }

    .values {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .value-icon {
      width: 44px;
      height: 44px;
      color: var(--orange);
      margin-bottom: 13px;
    }

    .value-card h3 {
      font-size: 0.95rem;
      margin-bottom: 8px;
    }

    .value-card p {
      color: #4f5f70;
      font-size: 0.84rem;
    }

    .image-card {
      position: relative;
    }

    .image-card img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      border-radius: 14px;
    }

    .floating-card {
      position: absolute;
      right: -24px;
      bottom: 28px;
      background: var(--dark);
      color: white;
      border-radius: 14px;
      padding: 20px 24px;
      display: flex;
      gap: 14px;
      align-items: center;
      min-width: 260px;
      box-shadow: var(--shadow);
    }

    .floating-card svg {
      color: var(--orange);
      flex-shrink: 0;
    }

    .floating-card strong {
      display: block;
      font-size: 0.95rem;
    }

    .floating-card span {
      display: block;
      font-size: 0.84rem;
      color: #d0d7df;
    }

    .dots-pattern {
      position: absolute;
      right: 54px;
      top: 125px;
      width: 120px;
      height: 120px;
      background-image: radial-gradient(rgba(240, 90, 36, 0.65) 1.2px, transparent 1.2px);
      background-size: 18px 18px;
      opacity: 0.65;
    }

    .solutions {
      padding: 40px 0 62px;
      background: #f7f8f9;
      position: relative;
      overflow: hidden;
    }

    .solutions .center {
      text-align: center;
    }

    .solution-grid {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .solution-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 22px 24px;
      box-shadow: 0 12px 34px rgba(17, 24, 32, 0.06);
      display: grid;
      grid-template-columns: 50px 1fr;
      gap: 16px;
      align-items: center;
      min-height: 115px;
      position: relative;
    }

    .solution-card::after {
      content: "";
      position: absolute;
      left: 83px;
      bottom: 18px;
      width: 38px;
      height: 2px;
      background: var(--orange);
      border-radius: 99px;
    }

    .solution-icon {
      width: 52px;
      height: 52px;
      border: 1px solid rgba(240, 90, 36, 0.18);
      border-radius: 50%;
      color: var(--orange);
      display: grid;
      place-items: center;
    }

    .solution-content strong {
      display: block;
      color: var(--orange);
      font-size: 1.65rem;
      line-height: 1;
      margin-bottom: 5px;
    }

    .solution-content p {
      font-size: 0.82rem;
      color: #384555;
      font-weight: 600;
    }

    .leadership-note {
      margin: 28px auto 0;
      background: white;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 18px 26px;
      max-width: 680px;
      display: flex;
      align-items: center;
      gap: 22px;
      box-shadow: 0 12px 34px rgba(17, 24, 32, 0.05);
      color: #344051;
      font-size: 0.94rem;
    }

    .leadership-note svg {
      color: var(--orange);
      flex-shrink: 0;
    }

    .leadership-note b {
      color: var(--orange);
    }

    .content-section {
      padding: 58px 0 46px;
    }

    .content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 18px;
    }

    .video-card img,
    .gallery-card img {
      width: 100%;
      height: 112px;
      object-fit: cover;
      border-radius: 9px;
    }

    .thumb {
      position: relative;
      overflow: hidden;
      border-radius: 9px;
    }

    .play {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
    }

    .play span {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.88);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--orange);
      font-weight: 900;
    }

    .duration {
      position: absolute;
      right: 8px;
      bottom: 8px;
      background: rgba(17, 24, 32, 0.88);
      color: white;
      font-size: 0.7rem;
      border-radius: 5px;
      padding: 3px 6px;
    }

    .video-card h3 {
      font-size: 0.92rem;
      line-height: 1.25;
      margin-top: 10px;
    }

    .small-btn-row {
      text-align: center;
      margin-top: 22px;
    }

    .btn-small {
      padding: 8px 18px;
      font-size: 0.78rem;
      border-radius: 7px;
      background: white;
      border: 1px solid #d7dce2;
      color: #26313d;
      font-weight: 700;
      display: inline-flex;
      gap: 8px;
      align-items: center;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 18px;
    }

    .gallery-card img {
      height: 92px;
    }

    .contact {
      padding: 36px 0 38px;
      background: #f8f9fa;
      position: relative;
      overflow: hidden;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.7fr 1.1fr 0.9fr;
      gap: 42px;
      align-items: center;
    }

    .contact p {
      color: #4f5f70;
      font-size: 0.95rem;
      max-width: 280px;
      margin-bottom: 24px;
    }

    .socials {
      display: flex;
      gap: 14px;
    }

    .socials a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--dark);
      color: white;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 0.82rem;
    }

    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid #dce1e6;
      border-radius: 7px;
      padding: 12px 14px;
      font-family: inherit;
      font-size: 0.86rem;
      outline: none;
      background: white;
    }

    textarea {
      grid-column: 1 / -1;
      min-height: 74px;
      resize: vertical;
    }

    form .btn {
      grid-column: 1 / -1;
      justify-self: center;
      padding: 11px 24px;
      border: none;
    }

    .map {
      height: 170px;
      opacity: 0.45;
      background:
        radial-gradient(circle at 20% 40%, rgba(240, 90, 36, 0.6) 2px, transparent 3px),
        radial-gradient(circle at 55% 30%, rgba(240, 90, 36, 0.6) 2px, transparent 3px),
        radial-gradient(circle at 70% 60%, rgba(240, 90, 36, 0.6) 2px, transparent 3px),
        radial-gradient(circle at 40% 70%, rgba(240, 90, 36, 0.6) 2px, transparent 3px),
        linear-gradient(135deg, transparent 0 48%, rgba(150,160,170,0.4) 48% 49%, transparent 49%),
        linear-gradient(25deg, transparent 0 52%, rgba(150,160,170,0.35) 52% 53%, transparent 53%);
      border-radius: 20px;
    }

    footer {
      background: var(--dark);
      color: white;
      padding: 38px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.2fr 0.8fr;
      gap: 42px;
      padding-bottom: 28px;
    }

    .footer-logo .logo-text strong {
      color: white;
    }

    .footer-logo {
      margin-bottom: 16px;
    }

    .footer-about p {
      color: #aeb9c5;
      font-size: 0.92rem;
      max-width: 260px;
    }

    footer h4 {
      font-size: 0.82rem;
      text-transform: uppercase;
      margin-bottom: 14px;
      color: #ffffff;
    }

    footer ul {
      list-style: none;
      display: grid;
      gap: 7px;
    }

    footer li,
    footer a {
      color: #aeb9c5;
      font-size: 0.86rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 12px 0;
      color: #98a5b3;
      font-size: 0.8rem;
      text-align: center;
      position: relative;
    }

    .footer-bottom::after {
      content: "";
      height: 3px;
      background: var(--orange);
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
    }

    @media (max-width: 980px) {
      nav,
      .navbar .btn {
        display: none;
      }

      .hero-device {
        justify-content: center;
        margin-top: 8px;
      }

      .hero-device img {
        width: min(100%, 760px);
      }

      .logo-image {
        height: 52px;
        max-width: min(60vw, 260px);
      }

      .mobile-menu {
        display: block;
      }

      .hero-grid,
      .essence-grid,
      .content-grid,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

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

      .dash-sidebar {
        display: none;
      }

      .dash-content {
        grid-template-columns: 1fr;
      }

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

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

      .floating-card {
        right: 18px;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .navbar {
        height: 68px;
      }

      .hero-device::before {
        display: none;
      }

      .hero-device img {
        width: min(100%, 540px);
      }

      .logo-image-wrap {
        padding: 6px 0;
      }

      .logo-image {
        height: 42px;
        max-width: min(62vw, 220px);
      }

      .logo-text strong {
        font-size: 1.45rem;
      }

      .hero {
        padding-top: 28px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .dashboard-frame {
        padding: 4px;
      }

      .dashboard-frame::before {
        display: none;
      }

      .dashboard {
        padding: 18px;
        min-height: auto;
      }

      .dash-top {
        flex-direction: column;
        align-items: flex-start;
      }

      .dash-search {
        width: 100%;
      }

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

      .leadership-note {
        align-items: flex-start;
      }

      form {
        grid-template-columns: 1fr;
      }

      .image-card img {
        height: 260px;
      }
    }

.contact-messages {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.logo-image-wrap {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 8px 0;
  flex-shrink: 0;
}

.logo-image {
  display: block;
  width: auto;
  height: 56px;
  max-width: min(42vw, 250px);
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}

.contact-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-alert.success {
  background: #e8fff4;
  border: 1px solid #95e6bf;
  color: #06693f;
}

.contact-alert.error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
}

.contact-alert.warn {
  background: #fff8eb;
  border: 1px solid #f5d68e;
  color: #8f5d00;
}

.social-icon {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.social-linkedin {
  background: #0a66c2 !important;
  color: #fff !important;
}

.social-instagram {
  background: radial-gradient(circle at 20% 110%, #feda75 0%, #fa7e1e 30%, #d62976 55%, #962fbf 72%, #4f5bd5 100%) !important;
  color: #fff !important;
}

.social-youtube {
  background: #ff0000 !important;
  color: #fff !important;
}

/* ---------------------------------------------------------- */
/* Logo override — bigger header + footer image                */
/* ---------------------------------------------------------- */

.logo-image {
  height: 96px;
  max-width: min(52vw, 380px);
}

.logo-image-wrap {
  padding: 6px 0;
}

@media (max-width: 980px) {
  .logo-image {
    height: 76px;
    max-width: min(60vw, 320px);
  }
}

@media (max-width: 640px) {
  .logo-image {
    height: 58px;
    max-width: min(64vw, 240px);
  }
}

.footer-logo img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 220px;
  margin-bottom: 14px;
}

@media (max-width: 640px) {
  .footer-logo img {
    height: 56px;
  }
}

/* ---------------------------------------------------------- */
/* Hero CTAs — force single row on desktop                     */
/* ---------------------------------------------------------- */

.hero-actions {
  flex-wrap: nowrap;
}

.hero-actions .btn {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-wrap: wrap;
  }
}

/* ---------------------------------------------------------- */
/* Thumb / duration containment fix                            */
/* ---------------------------------------------------------- */

.thumb {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  line-height: 0;
}

.thumb img {
  display: block;
  width: 100%;
}

.duration {
  z-index: 2;
  line-height: 1;
}

/* ---------------------------------------------------------- */
/* Social icons — SVG instead of letters                       */
/* ---------------------------------------------------------- */

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ---------------------------------------------------------- */
/* Lightbox (modal viewer for gallery images)                  */
/* ---------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 32px;
  cursor: zoom-out;
}

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

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  font-size: 28px;
  line-height: 1;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: #fff;
}

/* ---------------------------------------------------------- */
/* WhatsApp floating button                                    */
/* ---------------------------------------------------------- */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  z-index: 1000;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wp-pulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes wp-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18), 0 0 0 14px rgba(37, 211, 102, 0); }
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ---------------------------------------------------------- */
/* Inner public pages (Vlog, Galería)                          */
/* ---------------------------------------------------------- */

.page-hero {
  padding: 96px 0 36px;
  background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
  border-bottom: 1px solid #eef0f3;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #7a8492;
  margin-bottom: 12px;
}

.breadcrumbs a {
  color: #7a8492;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--orange, #f97316);
}

.breadcrumbs span {
  color: #c5cbd4;
}

.page-hero .section-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.page-hero .section-description {
  font-size: 1.02rem;
  color: #4b5563;
  max-width: 640px;
}

.page-content-section {
  padding: 56px 0 96px;
  background: #ffffff;
}

.page-content-section .video-grid,
.page-content-section .gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.page-content-section .video-card img,
.page-content-section .gallery-card img {
  height: 168px;
}

.page-content-section .video-card h3 {
  font-size: 1rem;
  line-height: 1.3;
  margin-top: 12px;
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: #6b7280;
  border: 1px dashed #d7dce2;
  border-radius: 16px;
  background: #fafafa;
}

.empty-state p {
  font-size: 0.98rem;
  margin: 0;
}

.page-back-cta {
  text-align: center;
  margin-top: 56px;
}

.page-back-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #26313d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 18px;
  border: 1px solid #d7dce2;
  border-radius: 7px;
  background: white;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-back-cta a:hover {
  border-color: var(--orange, #f97316);
  color: var(--orange, #f97316);
}

@media (max-width: 640px) {
  .page-hero {
    padding: 64px 0 24px;
  }

  .page-content-section {
    padding: 32px 0 64px;
  }

  .page-content-section .video-grid,
  .page-content-section .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------- */
/* Logo boxes — bordered, rounded, with shadow                 */
/* (applies to both header .logo-image-wrap and footer .footer-logo) */
/* ---------------------------------------------------------- */

.logo-image-wrap {
  height: auto;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 14px;
}

.footer-logo img {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .logo-image-wrap {
    padding: 4px 12px;
    border-radius: 10px;
  }
  .footer-logo {
    padding: 6px 14px;
    border-radius: 10px;
  }
}

/* ---------------------------------------------------------- */
/* Gallery caption — hover overlay on photos                   */
/* ---------------------------------------------------------- */

.gallery-card {
  position: relative;
}

.gallery-card > a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 9px;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 14px 10px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-card:hover .gallery-caption,
.gallery-card:focus-within .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  }
}

/* Lightbox figure (caption support) */
.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
}

.lightbox-figure .lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
}

.lightbox-caption {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
  max-width: 720px;
  padding: 0 16px;
  margin: 0;
}

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