:root {
  --green: #78a22f;
  --green-light: #93bb45;
  --deepblue: #004c63;
  --bluegray: #415364;
  --cream: #f7f8f6;
  --warm-gray: #edf0ed;
  --text: #1e2a2e;
  --text-muted: #5a6b72;
  --white: #fff;
  --border: #d6ddd9;
  --step-bg: #e8f0e0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Barlow", sans-serif;
  background: var(--cream);
  color: var(--text);
}
a {
  text-decoration: none !important;
}
.gb-topbar {
  background: var(--deepblue);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 52px;
}
.gb-logo {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.gb-logo em {
  color: #93bb45;
  font-style: normal;
}
.gb-home {
  /* display: none; */
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #004c63;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}
.gb-home:hover {
  background: #e8f4f8;
  color: #004c63;
}
/* #gb-landing {
  padding-top: 52px;
} */
.gb-hero {
  background: var(--deepblue);
  padding: 80px 40px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(120, 162, 47, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 20%,
      rgba(65, 83, 100, 0.45) 0%,
      transparent 50%
    );
}
.gb-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.gb-badge {
  display: inline-block;
  background: rgba(120, 162, 47, 0.2);
  border: 1px solid rgba(120, 162, 47, 0.5);
  color: #93bb45;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.gb-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.gb-hero h1 em {
  color: #93bb45;
  font-style: italic;
}
.gb-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 40px;
}
.gb-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.gb-stat-num {
  font-size: 30px;
  font-weight: 700;
  color: #93bb45;
  display: block;
}
.gb-stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}
.gb-grid-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}
.gb-grid-head {
  text-align: center;
  margin-bottom: 48px;
}
.gb-grid-head h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--deepblue);
  margin-bottom: 8px;
}
.gb-grid-head p {
  color: var(--text-muted);
  font-size: 15px;
}
.gb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gb-grid-top {
  grid-column: 1/-1;
}
.guide-card-day1 {
  border: 2px solid #c0392b !important;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.18);
}
.day1-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c0392b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.day1-flag span {
  font-size: 13px;
}
.day1-banner {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  border-radius: 8px;
  padding: 11px 18px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.day1-banner-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.day1-banner-text {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.hero-highlight {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  margin-top: 16px;
}
.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 76, 99, 0.13);
}
.guide-card-header {
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--border);
}
.guide-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.guide-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.guide-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--deepblue);
  line-height: 1.25;
  margin-bottom: 8px;
}
.guide-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.guide-card-footer {
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.guide-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.guide-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--step-bg);
  color: var(--bluegray);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.guide-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--deepblue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
#gb-viewer {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
}
.gb-breadcrumb {
  background: var(--warm-gray);
  border-bottom: 1px solid var(--border);
  padding: 10px 32px;
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.gb-breadcrumb span {
  color: var(--deepblue);
  font-weight: 600;
}
.guide-frame {
  display: none;
  width: 100%;
  height: 100%;
  border: none;
  flex: 1;
}
.guide-frame.active {
  display: block;
}
@media (max-width: 600px) {
  .gb-hero {
    padding: 50px 20px 44px;
  }
  .gb-grid-wrap {
    padding: 36px 16px 60px;
  }
  .gb-topbar {
    padding: 12px 16px;
  }
  .gb-grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --green: #78a22f;
  --green-light: #93bb45;
  --green-pale: #eef4e0;
  --bluegray: #415364;
  --deepblue: #004c63;
  --cream: #f7f8f6;
  --warm-gray: #edf0ed;
  --text: #1e2a2e;
  --text-muted: #5a6b72;
  --white: #fff;
  --border: #d6ddd9;
  --step-bg: #e8f0e0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Barlow", sans-serif;
  background: #e8eceb;
  color: var(--text);
  min-height: 100vh;
  /* display: flex; */
  align-items: flex-start;
  /* justify-content: center;
  padding: 32px 16px; */
}
.page {
  background: var(--white);
  width: 816px;
  min-height: 1056px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 80px auto;
}

.gb-home {
  /* display: none; */
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #004c63;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}
.gb-home:hover {
  background: #e8f4f8 !important;
  color: #004c63 !important;
}

#gb-viewer {
  /* display: none; */
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
}

.gb-breadcrumb {
  background: var(--warm-gray);
  border-bottom: 1px solid var(--border);
  padding: 10px 32px;
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.gb-breadcrumb span {
  color: var(--deepblue);
  font-weight: 600;
}

.gb-topbar {
  background: var(--deepblue);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 52px;
}

.gb-logo {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.gb-logo em {
  color: #93bb45;
  font-style: normal;
}

/* HEADER */
.header {
  background: var(--deepblue);
  padding: 22px 32px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 10% 60%,
      rgba(120, 162, 47, 0.28) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 90% 20%,
      rgba(65, 83, 100, 0.4) 0%,
      transparent 50%
    );
}
.header-left {
  position: relative;
  z-index: 1;
}
.header-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 5px;
}
.header h1 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.header h1 em {
  color: var(--green-light);
  font-style: italic;
}
.header-right {
  position: relative;
  z-index: 1;
  text-align: right;
}
.header-badge {
  background: rgba(120, 162, 47, 0.2);
  border: 1px solid rgba(120, 162, 47, 0.45);
  color: var(--green-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 6px;
}
.header-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* BODY */
.body {
  padding: 18px 32px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* INTRO */
.intro {
  background: var(--green-pale);
  border: 1px solid rgba(120, 162, 47, 0.3);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.intro strong {
  color: var(--text);
}

/* SECTION LABEL */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--deepblue);
  margin-bottom: 8px;
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

/* METHOD CARD */
.method-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.method-header {
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.method-header.blue {
  background: var(--deepblue);
}
.method-header.slate {
  background: var(--bluegray);
}
.method-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.method-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
}
.method-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
}
.method-body {
  padding: 11px 13px;
}
.step-row {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-bottom: 7px;
}
.step-row:last-child {
  margin-bottom: 0;
}
.step-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--deepblue);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.slate-dot {
  background: var(--bluegray);
}
.step-text {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.step-text strong {
  color: var(--text);
}

/* STATUS GRID */
.status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.status-card {
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.status-card.success {
  background: rgba(120, 162, 47, 0.06);
  border-color: rgba(120, 162, 47, 0.3);
}
.status-card.rejected {
  background: rgba(176, 30, 30, 0.05);
  border-color: rgba(176, 30, 30, 0.25);
}
.status-card.delayed {
  background: rgba(212, 119, 42, 0.05);
  border-color: rgba(212, 119, 42, 0.3);
}
.status-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 2px 7px;
  border-radius: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.status-card.success .status-badge {
  background: rgba(120, 162, 47, 0.15);
  color: #3d6b10;
}
.status-card.rejected .status-badge {
  background: rgba(176, 30, 30, 0.12);
  color: #b01e1e;
}
.status-card.delayed .status-badge {
  background: rgba(212, 119, 42, 0.15);
  color: #a85b0a;
}
.status-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.status-desc strong {
  color: var(--text);
}

/* TIPS ROW */
.tips-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 9px;
}
.tip-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 9px 11px;
}
.tip-card.warn {
  background: rgba(212, 119, 42, 0.05);
  border-color: rgba(212, 119, 42, 0.3);
}
.tip-card.gold {
  background: var(--green-pale);
  border-color: rgba(120, 162, 47, 0.3);
}
.tip-icon {
  font-size: 14px;
  margin-bottom: 4px;
}
.tip-title {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--deepblue);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.tip-card.warn .tip-title {
  color: #b05a10;
}
.tip-card.gold .tip-title {
  color: #4a7a10;
}
.tip-desc {
  font-size: 10.5px;
  color: var(--text-muted);
  line-height: 1.45;
}
.tip-desc strong {
  color: var(--text);
}

.divider {
  height: 1px;
  background: var(--border);
}

/* FOOTER */
.footer {
  background: var(--deepblue);
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-left {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-left strong {
  color: rgba(255, 255, 255, 0.9);
}
.footer-right {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media print {
  body {
    background: #fff;
    padding: 0;
  }
  .page {
    box-shadow: none;
    width: 100%;
    min-height: auto;
  }
}
