:root {
      --navy: #112240;
      --navy-light: #1b3b6f;
      --blue: #2d5fa3;
      --gold: #d4af37;
      --gold-light: #f2d06b;
      --white: #ffffff;
      --soft: #f8f6f0;
      --text: #44444a;
      --muted: #6a6a72;
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--soft);
      color: var(--text);
      overflow-x: hidden;
    }

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

    a {
      text-decoration: none;
    }

    .container {
      width: 100%;
      max-width: 1240px;
      margin: auto;
      padding: 0 20px;
    }

    /* HERO */

    .hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
      padding: 110px 0 90px;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
      top: -200px;
      left: -120px;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.16);
      color: rgba(255,255,255,0.92);
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 22px;
      backdrop-filter: blur(8px);
    }

    .hero__title {
      font-family: 'Montserrat', sans-serif;
      font-size: 4rem;
      line-height: 1.15;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 22px;
      text-shadow: 0 4px 18px rgba(0,0,0,0.18);
    }

    .hero__text {
      font-size: 1.08rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.82);
      margin-bottom: 34px;
      max-width: 650px;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--navy);
      box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
    }

    .btn-outline {
      border: 1px solid rgba(255,255,255,0.24);
      color: var(--white);
      background: rgba(255,255,255,0.08);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.14);
    }

    /* SECTION */

    .section {
      padding: 90px 0;
    }

    .section-head {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-kicker {
      display: inline-block;
      color: var(--gold);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.7rem;
      line-height: 1.2;
      color: var(--text);
      margin-bottom: 16px;
      font-weight: 800;
    }

    .section-text {
      max-width: 760px;
      margin: auto;
      color: var(--muted);
      line-height: 1.8;
    }

    /* MEDIA GRID */

    .media-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .media-card {
      background: var(--white);
      border-radius: 24px;
      min-height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px;
      box-shadow: 0 10px 26px rgba(0,0,0,0.06);
      transition: 0.3s ease;
    }

    .media-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 34px rgba(0,0,0,0.12);
    }

    .media-card img {
      max-width: 160px;
      max-height: 80px;
      object-fit: contain;
      filter: grayscale(0%);
    }

    /* VIDEO SECTION */

    .video-section {
      background: linear-gradient(180deg, #f5f4ef 0%, #ffffff 100%);
    }

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

    .video-card {
      background: var(--white);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
      transition: 0.3s ease;
    }

    .video-card:hover {
      transform: translateY(-6px);
    }

    .video-card iframe {
      width: 100%;
      height: 320px;
      border: none;
    }

    .video-card__body {
      padding: 24px;
    }

    .video-card__title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: var(--text);
    }

    .video-card__text {
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.95rem;
    }

    /* TRUST */

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

    .trust-card {
      background: var(--white);
      border-radius: 24px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    }

    .trust-card__value {
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      color: var(--gold);
      font-weight: 800;
      margin-bottom: 10px;
    }

    .trust-card__label {
      color: var(--muted);
      font-size: 1rem;
    }

    /* CTA */

    .cta {
      padding: 100px 0;
    }

    .cta-box {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: 32px;
      padding: 70px 50px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%);
    }

    .cta-box__title {
      position: relative;
      z-index: 2;
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 20px;
      font-weight: 800;
    }

    .cta-box__text {
      position: relative;
      z-index: 2;
      color: rgba(255,255,255,0.76);
      max-width: 700px;
      margin: auto auto 30px;
      line-height: 1.8;
    }

    /* MOBILE */

    @media (max-width: 1024px) {

      .hero__title {
        font-size: 3rem;
      }

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

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

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

    }

    @media (max-width: 767px) {

      .hero {
        padding: 84px 0 70px;
      }

      .hero__title {
        font-size: 2.2rem;
      }

      .hero__text {
        font-size: 0.96rem;
      }

      .hero__actions {
        flex-direction: column;
      }

      .hero__actions .btn {
        width: 100%;
      }

      .section {
        padding: 70px 0;
      }

      .section-title {
        font-size: 2rem;
      }

      .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .media-card {
        min-height: 100px;
        padding: 18px;
      }

      .media-card img {
        max-width: 100px;
      }

      .video-card iframe {
        height: 220px;
      }

      .cta-box {
        padding: 50px 24px;
      }

      .cta-box__title {
        font-size: 2rem;
      }

    }

  
/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(12px);
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

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

.logo img{
  width:92px;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-menu a{
  color:#44444a;
  font-size:0.95rem;
  font-weight:600;
  transition:0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active{
  color:var(--gold);
}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%);
  color:var(--navy);
  font-size:0.92rem;
  font-weight:700;
}

/* FOOTER */

.footer{
  background:#0f172a;
  padding:80px 0 30px;
  color:#ffffff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
  margin-bottom:50px;
}

.footer-logo{
  width:95px;
  margin-bottom:20px;
}

.footer-text{
  color:rgba(255,255,255,0.72);
  line-height:1.8;
  max-width:380px;
}

.footer-title{
  font-family:'Montserrat',sans-serif;
  font-size:1.1rem;
  margin-bottom:20px;
  color:#ffffff;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-links a{
  color:#f2d06b;
  transition:0.3s ease;
}

.footer-links a:hover{
  color:#ffffff;
}

.footer-copy{
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  color:rgba(255,255,255,0.58);
  font-size:0.9rem;
}

@media(max-width:767px){

  .navbar{
    min-height:66px;
  }

  .logo img{
    width:78px;
  }

  .nav-menu{
    gap:14px;
    overflow:auto;
    padding-left:14px;
  }

  .nav-menu a{
    font-size:0.82rem;
    white-space:nowrap;
  }

  .nav-cta{
    display:none;
  }

  .footer{
    padding:60px 0 24px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

}


/* ============================================
DOCUMENTATION CAROUSEL
============================================ */

.gallery-section{
  padding:90px 0;
  background:linear-gradient(180deg,#ffffff 0%,#f8f6f0 100%);
}

.gallery-slider{
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:12px;
}

.gallery-slider::-webkit-scrollbar{
  height:8px;
}

.gallery-slider::-webkit-scrollbar-thumb{
  background:#d4af37;
  border-radius:999px;
}

.gallery-card{
  min-width:340px;
  background:#ffffff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  scroll-snap-align:start;
  transition:0.35s ease;
  flex-shrink:0;
}

.gallery-card:hover{
  transform:translateY(-8px);
}

.gallery-card img{
  width:100%;
  height:auto;
  display:block;
}

.gallery-body{
  padding:22px;
}

.gallery-title{
  font-family:'Montserrat',sans-serif;
  font-size:1rem;
  line-height:1.5;
  color:#44444a;
}

/* ============================================
TESTIMONI
============================================ */

.testimonial-section{
  padding:90px 0;
}

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

.testimonial-card{
  background:#ffffff;
  border-radius:24px;
  padding:34px 28px;
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
}

.testimonial-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:20px;
}

.testimonial-avatar{
  width:58px;
  height:58px;
  border-radius:50%;
  object-fit:cover;
}

.testimonial-name{
  font-family:'Montserrat',sans-serif;
  font-size:1rem;
  font-weight:700;
}

.testimonial-role{
  font-size:0.86rem;
  color:#777;
}

.testimonial-text{
  color:#666;
  line-height:1.8;
  font-size:0.94rem;
}

@media(max-width:1024px){

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

}

@media(max-width:767px){

  .gallery-section,
  .testimonial-section{
    padding:70px 0;
  }

  .gallery-card{
    min-width:86%;
  }

}
body{
    -webkit-user-select:none;
    -ms-user-select:none;
    user-select:none;
}