@charset "UTF-8";
:root {
  --font-family-main: "Parkinsans", sans-serif;
  --font-family-text: "Mona Sans", sans-serif;
  --color-set-one-1: #384538;
  --color-set-one-2: #182418;
  --color-set-one-3: #63ab45;
  --color-set-one-4: #e5af14;
  --heading-color-one: #2a2d2a;
  --content-color-one: #565c56;
  --content-color-two: #a9b2a9;
  --color-set-one-bor-1: #e1e7e1;
  --background-bg-1: #e8eee8;
  --background-bg-3: #f3f7f3;
  --background-bg-dark: #465446;
  --sidebar-width: 300px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-text);
  background: #fff;
  color: var(--content-color-one);
  display: flex;
  min-height: 100vh;
}

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--color-set-one-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
}

.sidebar-logo {
  padding: 24px 20px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-set-one-3);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-text {
  font-family: var(--font-family-main);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.logo-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Carousel */
.sidebar-hero {
  padding: 14px 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.hero-carousel {
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-set-one-1);
}

.hero-slide {
  display: none;
  padding: 16px 14px 12px;
}

.hero-slide.active {
  display: block;
}

.slide-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-set-one-3);
  display: block;
  margin-bottom: 4px;
}

.hero-slide h3 {
  font-family: var(--font-family-main);
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 4px;
}

.hero-slide p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin-bottom: 11px;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--color-set-one-3);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-family: var(--font-family-text);
  text-decoration: none;
  transition: background 0.2s;
}

.slide-btn:hover {
  background: #559a3b;
}

.slide-btn svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-dots {
  display: flex;
  gap: 5px;
  padding: 9px 14px;
  background: var(--color-set-one-1);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.carousel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.25s;
}

.carousel-dot.active {
  background: var(--color-set-one-3);
  width: 16px;
  border-radius: 3px;
}

/* Nav */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0 24px;
}

.sidebar-nav::-webkit-scrollbar {
  width: 3px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.nav-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  padding: 14px 20px 5px;
}

.nav-item {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.nav-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}

.nav-item-header:hover {
  background: rgba(255, 255, 255, 0.04);
  border-left-color: rgba(255, 255, 255, 0.1);
}

.nav-item.active > .nav-item-header {
  background: rgba(99, 171, 69, 0.1);
  border-left-color: var(--color-set-one-3);
}

.nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.nav-item.active .nav-icon {
  background: var(--color-set-one-3);
}

.nav-icon svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255, 255, 255, 0.4);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-item.active .nav-icon svg {
  stroke: #fff;
}

.nav-item-label {
  flex: 1;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s;
}

.nav-item.active .nav-item-label {
  font-weight: 600;
  color: #fff;
}

.nav-item-header:hover .nav-item-label {
  color: rgba(255, 255, 255, 0.85);
}

.nav-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: rgba(255, 255, 255, 0.2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.nav-item.open .nav-arrow {
  transform: rotate(90deg);
}

.nav-subitems {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-item.open .nav-subitems {
  max-height: 600px;
}

.nav-sub {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  padding: 6px 20px 6px 58px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-family: var(--font-family-text);
  transition: all 0.15s;
}

.nav-sub::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  margin-right: 8px;
  vertical-align: middle;
  transition: background 0.15s;
}

.nav-sub:hover {
  color: rgba(255, 255, 255, 0.65);
  border-left-color: rgba(255, 255, 255, 0.1);
}

.nav-sub:hover::before {
  background: rgba(255, 255, 255, 0.4);
}

.nav-sub.active {
  color: var(--color-set-one-3);
  border-left-color: var(--color-set-one-3);
}

.nav-sub.active::before {
  background: var(--color-set-one-3);
}

/* ── MAIN ── */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
}

/* Page Hero */
.page-hero {
  background: var(--color-set-one-2);
  padding: 52px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(99, 171, 69, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumb {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.55);
}

.page-hero h1 {
  font-family: var(--font-family-main);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.page-hero > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
  line-height: 1.65;
}

.hero-badges {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-set-one-3);
  flex-shrink: 0;
}

/* Sections */
.doc-section {
  padding: 58px 60px 48px;
  min-height: 100vh;
  border-bottom: 1px solid var(--color-set-one-bor-1);
  scroll-margin-top: 20px;
}

.doc-section:last-child {
  border-bottom: none;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}

.section-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--background-bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-set-one-1);
  flex-shrink: 0;
  margin-top: 3px;
}

.section-meta h2 {
  font-family: var(--font-family-main);
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color-one);
  letter-spacing: -0.6px;
  margin-bottom: 6px;
}

.section-meta p {
  font-size: 14px;
  color: var(--content-color-two);
  line-height: 1.6;
}

/* Subsections */
.subsection {
  margin-bottom: 32px;
  scroll-margin-top: 28px;
  min-height: 100vh;
}

.subsection h3 {
  font-family: var(--font-family-main);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color-one);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.subsection h3::before {
  content: "";
  width: 3px;
  height: 16px;
  background: var(--color-set-one-3);
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

.subsection p, .subsection li {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--content-color-one);
}

.subsection ul, .subsection ol {
  padding-left: 20px;
}

.subsection li {
  margin-bottom: 4px;
}

.divider {
  height: 1px;
  background: var(--color-set-one-bor-1);
  margin: 28px 0;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 3fr));
  gap: 13px;
  margin-top: 16px;
}

.info-card {
  background: var(--background-bg-3);
  border: 1px solid var(--color-set-one-bor-1);
  border-radius: 12px;
  padding: 17px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.info-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--background-bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.card-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-set-one-1);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h4 {
  line-height: normal;
  font-family: var(--font-family-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color-one);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 12px;
  color: var(--content-color-two);
  line-height: 1.55;
}

/* Steps */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.step-item {
  display: flex;
  gap: 13px;
  background: var(--background-bg-3);
  border: 1px solid var(--color-set-one-bor-1);
  border-radius: 10px;
  padding: 14px 15px;
}

.fd_column {
  flex-direction: column;
}

iframe {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 1rem 0;
  border-radius: 12px;
}

.flex-wrap {
  flex-wrap: wrap;
}

.d_flex {
  display: flex;
}

.gap_10 {
  gap: 10px;
}

.wd_50 {
  width: 50%;
  min-width: 50%;
}

.step-num-c {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-set-one-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-content h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color-one);
  margin-bottom: 3px;
}

.step-content p {
  font-size: 12.5px;
  color: var(--content-color-two);
  line-height: 1.5;
}

/* Callout */
.callout {
  border-radius: 10px;
  padding: 13px 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 14px;
}

.callout.info {
  background: rgba(99, 171, 69, 0.08);
  border: 1px solid rgba(99, 171, 69, 0.2);
  color: #2e5c1e;
}

.callout.warn {
  background: rgba(229, 175, 20, 0.09);
  border: 1px solid rgba(229, 175, 20, 0.3);
  color: #6b500a;
}

.callout svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.callout.info svg {
  stroke: var(--color-set-one-3);
}

.callout.warn svg {
  stroke: var(--color-set-one-4);
}

/* Image placeholder */
.img-ph {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--background-bg-1);
  border: 1.5px dashed #c8d4c8;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
  color: var(--content-color-two);
}

.img-ph svg {
  width: 30px;
  height: 30px;
  stroke: var(--content-color-two);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.4;
}

.img-ph span {
  font-size: 12px;
}

/* 2-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 4px;
}

.tag.green {
  background: rgba(99, 171, 69, 0.1);
  color: #2a5c1a;
}

.tag.yellow {
  background: rgba(229, 175, 20, 0.1);
  color: #7a5a0a;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-set-one-bor-1);
  border-radius: 3px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  width: 100%;
  border-radius: 12px;
}

.w-70 {
  width: 70%;
}

.space-20 {
  padding: 20px;
}

.space-50 {
  padding: 50px;
}

.callout-title {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ── Install Carousel ────────────────────────────── */
.install-carousel {
  position: relative;
  width: 70%;
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
}

.install-carousel-track {
  position: relative;
  width: 100%;
}

.install-slide {
  display: none;
  width: 100%;
}

.install-slide.active {
  display: block;
}

.install-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Prev / Next buttons */
.install-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: background 0.2s, box-shadow 0.2s;
}

.install-carousel-btn:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.install-carousel-btn svg {
  stroke: #333;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.install-carousel-btn.prev {
  left: 10px;
}

.install-carousel-btn.next {
  right: 10px;
}

/* Dots */
.install-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 8px;
  background: rgba(255, 255, 255, 0.85);
}

.install-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.install-dot.active {
  background: #555;
  transform: scale(1.25);
}/*# sourceMappingURL=style.css.map */