@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');





/* ===== Design tokens (from the NISSCORP · Sentinel X reference) ===== */
:root {
  --forest: #0a3d1f;
  --gold: #c9a227;
  --page-bg: #f4f7fc;
  --ink: #1e2b3c;
  --soft: #f5f7f5;
}

/* ----- reset & base ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
  background: var(--page-bg);
  color: var(--ink);
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ----- container ----- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- header (fixed) ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s;
  height: 64px;
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-desktop a,
.nav-desktop button {
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: 0.2s;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #4b5563;
}
.nav-desktop a:hover,
.nav-desktop button:hover {
  background: #f0f7f0;
  color: var(--forest);
}
.nav-desktop .active {
  background: #e6f0e6;
  color: var(--forest);
  font-weight: 600;
}
.btn-register {
  background: var(--forest) !important;
  color: white !important;
  padding: 8px 20px !important;
  font-weight: 600;
  border-radius: 8px;
  margin-left: 8px;
}
.btn-register:hover {
  opacity: 0.9;
  background: var(--forest) !important;
}
.menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1f2937;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

/* ----- hero section ----- */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-left: 22px;
  padding-right: 22px;
}
.hero-bg {
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    opacity:0;
    transition:opacity 1s ease-in-out;

    z-index:0;
}
.hero-bg.active{
    opacity:1;
    z-index:1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 45, 20, 0.62);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 40px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.hero-left h1 {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.2;
  color: white;
  margin-bottom: 16px;
}
.hero-left h1 img {
  display: inline-block;
  width: 250px;
  vertical-align: middle;
  margin-top: -0.1em;
}
.hero-left h1 .gold {
  color: var(--gold);
}
.hero-left p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
  margin-bottom: 24px;
  font-size: 1rem;
}
.btn-gold {
  background: var(--gold);
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: 0.2s;
}
.btn-gold:hover {
  opacity: 0.9;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 20px 16px;
  color: white;
}
.stat-card .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
  font-weight: 600;
}
.stat-card .value {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
}
.stat-card .sub {
  font-size: 0.7rem;
  opacity: 0.5;
}

.hero-footer {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .hero-footer {
    flex-direction: row;
    align-items: center;
  }
}
.hero-footer img {
  height: 32px;
  object-fit: contain;
}
.hero-footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  flex: 1;
}
.hero-footer .badge-group {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.hero-footer .badge-item {
  text-align: center;
}
.hero-footer .badge-item .small {
  font-size: 0.6rem;
  opacity: 0.5;
  color: white;
}
.hero-footer .badge-item .strong {
  font-weight: 700;
  color: white;
  font-size: 0.8rem;
}

/* carousel arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}
.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}
.carousel-btn.left {
  left: 16px;
}
.carousel-btn.right {
  right: 16px;
}
.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}
.carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.2s;
  cursor: pointer;
}
.carousel-dots .active-dot {
  background: var(--gold);
  width: 14px;
}

/* section spacing */
section {
  padding: 60px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title .tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
}
.section-title p {
  color: #6b7280;
  max-width: 500px;
  margin: 8px auto 0;
}

/* pillars */
.pillars-section{

    background:#fff;

    padding:100px 0;

}

.container{

    width:100%;

    max-width:1200px;

    margin:auto;

    padding:0 15px;

}

.section-title{

    text-align:center;

    margin-bottom:0px;

}

.section-title .tag{

    display:block;

    font-size:12px;

    font-weight:700;

    letter-spacing:5px;

    text-transform:uppercase;

    color:var(--gold);

    margin-bottom:20px;

}

.section-title h2{

    font: 2.25em;

    line-height:1.1;

    font-weight:900;

    color:#061B3A;

    max-width:760px;

    margin:auto;

}

.pillars-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.pillar-card{

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:28px;

    padding:32px;

    min-height:300px;

    position:relative;

    transition:.3s;

}

.pillar-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.icon{

    width:56px;

    height:56px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    margin-bottom:28px;

}

.icon.green{

    background:var(--forest);

    color:var(--gold);

}

.icon.gold{

    background:var(--gold);

    color:var(--forest);

}

.pillar-card h3{

    font-size:18px;

    font-weight:800;

    color:#061B3A;

    margin-bottom:16px;

}

.pillar-card p{

    font-size:17px;

    line-height:1.8;

    color:#667085;

}

.bottom-line{

    position:absolute;

    left:32px;

    bottom:28px;

    width:32px;

    height:2px;

}

.bottom-line.green{

    background:var(--forest);

}

.bottom-line.gold{

    background:var(--gold);

}


/* Tablet */

@media(max-width:991px){

    .pillars-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .section-title h2{

        font-size:42px;

    }

}


/* Mobile */

@media(max-width:576px){

    .pillars-grid{

        grid-template-columns:1fr;

    }

    .section-title h2{

        font-size:32px;

    }

    .pillar-card{

        min-height:auto;

    }

}

/* news */
.news-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.news-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid #f0f0f0;
}
.news-card .head {
  background: var(--forest);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.news-card .head .badge {
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 30px;
}
.news-card .body {
  padding: 24px;
}
.news-card .body h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.news-card .body .highlights {
  background: #f9fafb;
  padding: 16px;
  border-radius: 16px;
  margin: 16px 0;
}
.news-card .body .highlights li {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: #374151;
}
.news-card .body .highlights li::before {
  content: '✓';
  font-weight: 700;
  color: var(--forest);
}
.btn-outline {
  border: 2px solid #e5e7eb;
  background: transparent;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  background: #f9fafb;
}



/* subscriptions */
.bg-dark {
  background: var(--forest);
  color: white;
}
.bg-dark .section-title h2 {
  color: white;
}
.bg-dark .section-title .tag {
  color: var(--gold);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.plan-card {
  background: white;
  border-radius: 24px;
  padding: 28px 20px;
  color: #111827;
  position: relative;
  transition: 0.2s;
}
.plan-card.popular {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.plan-card .popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plan-card h4 {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--forest);
}
.plan-card .sub {
  font-weight: 600;
  margin-bottom: 12px;
}
.plan-card p {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 20px;
}
.plan-card .btn-plan {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  border: 2px solid var(--forest);
  color: var(--forest);
  transition: 0.2s;
  background: transparent;
  cursor: pointer;
}
.plan-card .btn-plan:hover {
  background: #f0f7f0;
}
.plan-card .btn-plan.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.plan-card .btn-plan.gold:hover {
  opacity: 0.9;
}

/* steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.step-card {
  background: white;
  border-radius: 24px;
  padding: 24px 16px;
  border: 1px solid #f0f0f0;
  text-align: center;
  position: relative;
}
.step-card .step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.step-card .icon-circle {
  width: 48px;
  height: 48px;
  background: var(--forest);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 12px;
  color: white;
  font-size: 1.2rem;
}
.step-card h4 {
  font-size: 0.9rem;
  font-weight: 900;
}
.step-card p {
  font-size: 0.75rem;
  color: #6b7280;
}

/* testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #f0f0f0;
}
.testimonial-card .quote {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.testimonial-card p {
  font-size: 0.85rem;
  color: #374151;
  margin-bottom: 16px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}
.testimonial-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form {
  background: #f9fafb;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #f0f0f0;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: white;
  font-size: 0.9rem;
  font-family: inherit;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  display: block;
  margin-bottom: 4px;
}
.contact-form .btn-submit {
  background: var(--forest);
  color: white;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.contact-form .btn-submit:hover {
  opacity: 0.9;
}

/* footer */
.footer {
  background: var(--forest);
  color: white;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}
.footer a:hover {
  color: white;
}
.footer .social-icons a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  margin-right: 6px;
}

/* section background utilities */
.bg-white {
  background: white;
}
.bg-soft {
  background: var(--soft);
}

/* mobile menu */
.mobile-menu {
  display: none;
  background: white;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
}
.mobile-menu.open {
  display: flex;
}



/* footer social icon */
