@font-face {
  font-family: 'Nunito Sans Local';
  src: url('public/assets/fonts/nunito-sans-regular.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'Rajdhani Local';
  src: url('public/assets/fonts/rajdhani-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

:root {
  --gnb-bg: #04070d;
  --gnb-surface: #0a0f18;
  --gnb-surface-soft: #0f1621;
  --gnb-line: #1f2a3a;
  --gnb-text: #eaf1ff;
  --gnb-muted: #b5c1d6;
  --gnb-accent: #1fc7f4;
  --gnb-accent-soft: #0b7ea6;
  --gnb-danger: #f15c63;
  --gnb-warning: #ffbd47;
  --gnb-shadow: 0 18px 38px rgba(0, 0, 0, 0.44);
  --gnb-space: clamp(16px, 2vw, 24px);
  --gnb-radius-xl: 22px;
  --gnb-radius-lg: 16px;
  --gnb-radius-md: 12px;
  --gnb-radius-sm: 10px;
  --gnb-sidebar-w: 252px;
  --gnb-main-max: 1540px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at 18% 8%, #3f1010 0%, #111827 28%, #04070d 64%);
  color: var(--gnb-text);
  font-family: 'Nunito Sans Local', 'Segoe UI', sans-serif;
  line-height: 1.58;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
}

img,
picture,
iframe {
  max-width: 100%;
}

.gnb-page {
  min-height: 100vh;
}

.gnb-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 35;
  width: var(--gnb-sidebar-w);
  height: 100vh;
  overflow-y: auto;
  padding: 18px 12px 18px;
  background: linear-gradient(180deg, rgba(4, 8, 15, 0.98), rgba(2, 6, 11, 0.98));
  border-right: 1px solid rgba(35, 49, 70, 0.6);
  scrollbar-width: thin;
}

.gnb-sidebar::-webkit-scrollbar {
  width: 8px;
}

.gnb-sidebar::-webkit-scrollbar-thumb {
  background: rgba(58, 77, 103, 0.8);
  border-radius: 999px;
}

.gnb-logo-link {
  display: block;
  margin-inline: auto;
  width: 100%;
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.gnb-logo {
  display: block;
  width: min(100%, 208px);
  margin-inline: auto;
  height: 72px;
  object-fit: contain;
}

.gnb-sidebar-cta {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.gnb-btn,
.gnb-side-btn,
.gnb-hero-btn,
.gnb-cta-btn,
.gnb-slot-btn,
.gnb-floating-btn,
.gnb-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: 'Rajdhani Local', 'Nunito Sans Local', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.gnb-btn:focus-visible,
.gnb-side-btn:focus-visible,
.gnb-hero-btn:focus-visible,
.gnb-cta-btn:focus-visible,
.gnb-slot-btn:focus-visible,
.gnb-floating-btn:focus-visible,
.gnb-modal-btn:focus-visible,
.gnb-icon-btn:focus-visible,
.gnb-review-arrow:focus-visible,
.gnb-accordion-trigger:focus-visible {
  outline: 2px solid #6fdfff;
  outline-offset: 2px;
}

.gnb-side-btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 1.15rem;
}

.gnb-side-btn--ghost {
  background: rgba(16, 25, 39, 0.86);
  border-color: rgba(100, 125, 160, 0.52);
  color: var(--gnb-text);
}

.gnb-side-btn--accent {
  background: linear-gradient(135deg, #1fc7f4, #059ed0);
  border-color: rgba(84, 223, 255, 0.65);
  color: #03111d;
  box-shadow: 0 10px 26px rgba(5, 143, 193, 0.42);
}

.gnb-side-btn:hover,
.gnb-btn:hover,
.gnb-hero-btn:hover,
.gnb-cta-btn:hover,
.gnb-slot-btn:hover,
.gnb-floating-btn:hover,
.gnb-modal-btn:hover {
  transform: translateY(-1px);
}

.de-sidebar-nav,
.gnb-sidebar-nav {
  margin-top: 18px;
  padding: 10px;
  border-radius: var(--gnb-radius-lg);
  background: rgba(10, 16, 28, 0.9);
  border: 1px solid rgba(46, 65, 92, 0.7);
}

.gnb-sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.gnb-sidebar-nav a {
  display: block;
  padding: 9px 10px;
  border-radius: 9px;
  color: #d5deed;
  text-decoration: none;
  font-size: 0.94rem;
  border: 1px solid transparent;
}

.gnb-sidebar-nav a:hover,
.gnb-sidebar-nav a:focus-visible {
  background: rgba(31, 199, 244, 0.11);
  border-color: rgba(31, 199, 244, 0.36);
  color: #ecf8ff;
}

.gnb-sidebar-note {
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--gnb-radius-md);
  background: rgba(10, 16, 25, 0.9);
  border: 1px solid rgba(53, 72, 98, 0.72);
  color: var(--gnb-muted);
  font-size: 0.84rem;
}

.gnb-main-column {
  margin-left: var(--gnb-sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gnb-main {
  flex: 1;
  width: min(var(--gnb-main-max), 100%);
  margin-inline: auto;
  padding: var(--gnb-space);
  padding-bottom: var(--gnb-space);
}

.gnb-main > section {
  margin-block: var(--gnb-space);
}

.gnb-main > section:first-child {
  margin-top: 0;
}

.gnb-main > section:last-child {
  margin-bottom: 0;
}

.gnb-panel {
  background: linear-gradient(180deg, rgba(11, 18, 29, 0.93), rgba(8, 12, 20, 0.93));
  border: 1px solid rgba(43, 61, 86, 0.65);
  border-radius: var(--gnb-radius-lg);
  box-shadow: var(--gnb-shadow);
}

.gnb-section {
  padding: clamp(14px, 2.2vw, 22px);
}

.gnb-section h2,
.gnb-section h3 {
  margin: 0 0 10px;
  font-family: 'Rajdhani Local', 'Nunito Sans Local', sans-serif;
  letter-spacing: 0.25px;
}

.gnb-section p {
  margin: 0 0 12px;
  color: #d7e0ef;
}

.gnb-kicker {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 199, 244, 0.42);
  background: rgba(9, 40, 56, 0.66);
  color: #b8ecff;
  font-size: 0.84rem;
}

.gnb-hero {
  margin: 0;
}

.gnb-hero-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}

.gnb-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: clamp(220px, 40vw, 410px);
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(60, 82, 114, 0.75);
  background: rgba(9, 14, 22, 0.88);
  color: #c2cfe3;
}

.gnb-search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.gnb-search input:focus {
  outline: none;
}

.gnb-topbar-btn {
  min-height: 44px;
  min-width: 124px;
  padding-inline: 18px;
  font-size: 1.08rem;
}

.gnb-topbar-btn--ghost {
  background: rgba(10, 18, 30, 0.86);
  border-color: rgba(238, 92, 103, 0.68);
  color: #f6d4d6;
}

.gnb-topbar-btn--accent {
  background: rgba(10, 18, 30, 0.86);
  border-color: rgba(33, 193, 246, 0.86);
  color: #d6f4ff;
}

.gnb-hero-banner {
  position: relative;
  border-radius: var(--gnb-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(58, 78, 105, 0.74);
  min-height: clamp(300px, 42vw, 510px);
}

.gnb-hero-banner picture,
.gnb-hero-banner img {
  display: block;
  width: 100%;
  height: 100%;
}

.gnb-hero-banner img {
  object-fit: cover;
}

.gnb-hero-card {
  position: absolute;
  top: 50%;
  left: auto;
  right: clamp(22px, 4vw, 62px);
  transform: translateY(-50%);
  width: min(540px, 56%);
  padding: clamp(16px, 2.4vw, 26px);
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.74), rgba(5, 11, 20, 0.82));
  border: 1px solid rgba(96, 121, 155, 0.52);
  border-radius: var(--gnb-radius-lg);
}

.gnb-hero-card h1 {
  margin: 8px 0 12px;
  font-family: 'Rajdhani Local', 'Nunito Sans Local', sans-serif;
  font-size: clamp(1.95rem, 3.2vw, 3.05rem);
  line-height: 1.04;
}

.gnb-hero-card p {
  margin: 0 0 12px;
}

.gnb-hero-btn {
  min-height: 54px;
  min-width: clamp(220px, 25vw, 280px);
  padding-inline: 26px;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  background: linear-gradient(135deg, #2ad8ff, #0f99ca);
  border-color: rgba(137, 241, 255, 0.7);
  color: #04101d;
  box-shadow: 0 14px 26px rgba(11, 136, 176, 0.45);
}

.gnb-nav-accordion {
  padding: 0;
}

.gnb-accordion-trigger {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, rgba(14, 23, 36, 0.98), rgba(12, 19, 30, 0.98));
  color: var(--gnb-text);
  border-radius: var(--gnb-radius-lg);
  padding: 15px 18px;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(47, 66, 93, 0.72);
}

.gnb-accordion-panel {
  margin-top: 10px;
  padding: 0 8px 12px;
}

.gnb-accordion-panel[hidden] {
  display: none;
}

.gnb-accordion-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gnb-accordion-panel a {
  display: block;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(14, 21, 34, 0.9);
  border: 1px solid rgba(55, 77, 106, 0.68);
  color: #d8e4f6;
  text-decoration: none;
  font-size: 0.92rem;
}

.gnb-accordion-panel a:hover,
.gnb-accordion-panel a:focus-visible {
  background: rgba(18, 45, 65, 0.9);
  border-color: rgba(33, 198, 245, 0.54);
}

.gnb-slot-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.gnb-slot-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--gnb-radius-md);
  background: linear-gradient(180deg, rgba(15, 23, 37, 0.96), rgba(10, 16, 25, 0.96));
  box-shadow: 0 11px 24px rgba(0, 0, 0, 0.42);
}

.gnb-slot-media {
  width: 100%;
  aspect-ratio: 432 / 580;
}

.gnb-slot-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gnb-slot-reveal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(158, 221, 255, 0.65);
  background: rgba(7, 13, 22, 0.56);
  color: #e0f7ff;
  font-size: 1.85rem;
  cursor: pointer;
}

.gnb-slot-actions {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gnb-slot-btn,
.gnb-slot-demo {
  min-height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(121, 223, 255, 0.5);
  color: #04111f;
  font-size: 1.06rem;
  line-height: 1;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.36);
}

.gnb-slot-btn {
  background: linear-gradient(135deg, #39ddff, #079dcf);
}

.gnb-slot-demo {
  background: linear-gradient(135deg, #ffc96b, #f59f3a);
  cursor: pointer;
}

.gnb-slot-card.gnb-is-active .gnb-slot-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gnb-slot-card.gnb-is-active .gnb-slot-reveal {
  opacity: 0;
  pointer-events: none;
}

.gnb-hover-ready .gnb-slot-card:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
}

.gnb-hover-ready .gnb-slot-card:hover .gnb-slot-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gnb-hover-ready .gnb-slot-card:hover .gnb-slot-reveal {
  opacity: 0;
  pointer-events: none;
}

.gnb-table-wrap {
  overflow-x: auto;
  border-radius: var(--gnb-radius-md);
}

.gnb-table {
  width: 100%;
  font-size: 0.93rem;
  border-collapse: collapse;
  background: rgba(10, 16, 24, 0.95);
  border: 1px solid rgba(46, 64, 90, 0.7);
}

.gnb-table th,
.gnb-table td {
  padding: 11px 13px;
  border-bottom: 1px solid rgba(44, 60, 83, 0.7);
  text-align: left;
  vertical-align: top;
}

.gnb-table th {
  color: #d8e7fb;
  font-size: 0.93rem;
  width: auto;
}

.gnb-table td {
  color: #edf4ff;
}

.gnb-table tbody > tr > th {
  width: 36%;
}

.gnb-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gnb-card-soft {
  padding: 14px;
  border-radius: var(--gnb-radius-md);
  border: 1px solid rgba(52, 71, 97, 0.7);
  background: rgba(12, 20, 31, 0.92);
}

.gnb-list {
  margin: 0;
  padding-left: 18px;
  color: #dbe7fb;
}

.gnb-list li {
  margin-bottom: 8px;
}

.gnb-auth-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.gnb-auth-shot {
  width: min(100%, 560px);
  border-radius: var(--gnb-radius-md);
  overflow: hidden;
  border: 1px solid rgba(56, 76, 106, 0.75);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.38);
}

.gnb-auth-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gnb-cta-banner {
  position: relative;
  min-height: clamp(260px, 34vw, 370px);
  border-radius: var(--gnb-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(56, 76, 104, 0.75);
  box-shadow: var(--gnb-shadow);
}

.gnb-cta-banner picture,
.gnb-cta-banner img {
  display: block;
  width: 100%;
  height: 100%;
}

.gnb-cta-banner img {
  object-fit: cover;
}

.gnb-cta-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 28px));
  text-align: center;
  padding: 18px;
  border-radius: var(--gnb-radius-lg);
  border: 1px solid rgba(95, 119, 154, 0.64);
  background: rgba(6, 14, 24, 0.74);
}

.gnb-cta-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.58rem, 2.4vw, 2.1rem);
}

.gnb-cta-content p {
  margin: 0 0 12px;
}

.gnb-cta-btn {
  min-height: 50px;
  min-width: clamp(210px, 30vw, 240px);
  padding-inline: 20px;
  font-size: 1.3rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #34dcff, #0699cb);
  color: #04101d;
  border-color: rgba(135, 236, 255, 0.7);
  box-shadow: 0 12px 26px rgba(6, 139, 184, 0.42);
}

.gnb-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gnb-pros-cons h3 {
  margin: 0 0 8px;
}

.gnb-pros {
  border-color: rgba(61, 179, 123, 0.65);
}

.gnb-cons {
  border-color: rgba(194, 104, 111, 0.65);
}

.gnb-calc {
  display: grid;
  gap: 12px;
}

.gnb-calc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gnb-calc-field {
  display: grid;
  gap: 6px;
}

.gnb-calc-field label {
  font-size: 0.93rem;
  color: #d0dcef;
}

.gnb-calc-field input {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(67, 89, 119, 0.75);
  background: rgba(10, 16, 25, 0.95);
  color: var(--gnb-text);
  padding: 0 11px;
  font: inherit;
}

.gnb-calc-result {
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(52, 188, 226, 0.65);
  background: rgba(10, 31, 44, 0.78);
  font-size: 1.03rem;
}

.gnb-reviews-shell {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 10px;
}

.gnb-review-arrow {
  width: 36px;
  height: 86px;
  min-height: 86px;
  border: 1px solid rgba(90, 113, 146, 0.75);
  background: rgba(10, 16, 26, 0.95);
  color: #d5e7ff;
  border-radius: 13px;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.gnb-reviews-track-wrap {
  overflow: hidden;
}

.gnb-reviews-track {
  display: flex;
  gap: 12px;
  transition: transform 0.26s ease;
}

.gnb-review-card {
  min-width: calc((100% - 24px) / 3);
  padding: 14px;
  border-radius: var(--gnb-radius-md);
  border: 1px solid rgba(56, 75, 102, 0.76);
  background: rgba(11, 18, 28, 0.95);
}

.gnb-review-card p {
  margin: 0 0 9px;
}

.gnb-review-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #bfd0eb;
  font-size: 0.86rem;
}

.gnb-stars {
  color: var(--gnb-warning);
  letter-spacing: 0.6px;
  font-size: 0.92rem;
}

.gnb-faq details {
  border: 1px solid rgba(53, 72, 99, 0.72);
  border-radius: 12px;
  background: rgba(11, 17, 27, 0.94);
  padding: 10px 12px;
  margin-bottom: 10px;
}

.gnb-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #e4efff;
}

.gnb-footer {
  border-top: 1px solid rgba(35, 49, 69, 0.8);
  background: rgba(4, 7, 13, 0.98);
}

.gnb-footer-inner {
  width: min(var(--gnb-main-max), 100%);
  margin-inline: auto;
  padding: 10px var(--gnb-space);
  display: grid;
  gap: 6px;
}

.gnb-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gnb-footer-inner p {
  margin: 0;
  line-height: 1.35;
}

.gnb-footer-links a,
.gnb-footer-support a,
.gnb-footer-domain a {
  color: #b8d0f5;
}

.gnb-footer-support {
  color: #d7e4fb;
}

.gnb-floating {
  position: fixed;
  left: calc(var(--gnb-sidebar-w) + 14px);
  right: 14px;
  bottom: 12px;
  z-index: 50;
  padding: 12px 56px 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(80, 110, 146, 0.78);
  background: linear-gradient(135deg, rgba(6, 14, 24, 0.95), rgba(17, 35, 56, 0.95));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.48);
}

.gnb-floating[hidden] {
  display: none;
}

.gnb-floating-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.gnb-floating p {
  margin: 0;
  color: #e7f4ff;
  padding-right: 4px;
}

.gnb-floating-btn {
  min-height: 44px;
  min-width: 190px;
  border-radius: 13px;
  padding-inline: 18px;
  background: linear-gradient(135deg, #2ad8ff, #0699cb);
  border-color: rgba(134, 235, 255, 0.7);
  color: #04111d;
  font-size: 1.2rem;
}

.gnb-floating [data-floating-bonus-close] {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  padding: 0;
  font-size: 1.85rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gnb-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(80, 106, 139, 0.8);
  background: rgba(10, 16, 26, 0.9);
  color: #d7e8ff;
  cursor: pointer;
  font-size: 1.38rem;
  line-height: 1;
}

.gnb-slot-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  background: rgba(3, 7, 13, 0.86);
  padding: 16px;
}

.gnb-slot-modal[hidden] {
  display: none;
}

.gnb-slot-modal-box {
  width: min(1040px, 100%);
  max-height: min(92vh, 820px);
  background: #09111d;
  border: 1px solid rgba(63, 84, 111, 0.75);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.gnb-slot-modal-top,
.gnb-slot-modal-bottom {
  padding: 12px;
  display: flex;
  justify-content: flex-end;
  background: rgba(9, 15, 24, 0.98);
}

.gnb-slot-modal-frame {
  width: 100%;
  height: min(74vh, 620px);
  border: 0;
  background: #02050a;
}

.gnb-modal-btn {
  min-height: 46px;
  min-width: 230px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2ad8ff, #0699cb);
  border-color: rgba(134, 235, 255, 0.72);
  color: #04111c;
  font-size: 1.24rem;
}

.gnb-contact-form {
  display: grid;
  gap: 10px;
}

.gnb-contact-form label {
  display: grid;
  gap: 6px;
  color: #d7e4f9;
}

.gnb-contact-form input,
.gnb-contact-form textarea {
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(66, 88, 117, 0.75);
  background: rgba(10, 17, 27, 0.95);
  color: var(--gnb-text);
  font: inherit;
}

.gnb-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.gnb-contact-msg {
  margin: 0;
  color: #a7dfff;
  min-height: 1.2em;
}

@media (min-width: 1024px) {
  .gnb-table--support {
    table-layout: fixed;
  }

  .gnb-table--support thead th:nth-child(1),
  .gnb-table--support tbody td:nth-child(1) {
    width: 20%;
  }

  .gnb-table--support thead th:nth-child(2),
  .gnb-table--support tbody td:nth-child(2) {
    width: 18%;
  }

  .gnb-table--support thead th:nth-child(3),
  .gnb-table--support tbody td:nth-child(3) {
    width: 16%;
  }

  .gnb-table--support thead th:nth-child(4),
  .gnb-table--support tbody td:nth-child(4) {
    width: 46%;
  }

  .gnb-table--support thead th:nth-child(-n + 3),
  .gnb-table--support tbody td:nth-child(-n + 3) {
    white-space: nowrap;
  }

  .gnb-table--support tbody td:nth-child(4) {
    white-space: normal;
    overflow-wrap: break-word;
  }
}

/* Stable spacing after heavy blocks to avoid post-block text sticking. */
:where(main, [data-main-content], [role='main'], .cp-main, .rb-main)
  :is(
    table,
    [class*='table'],
    [class*='grid'],
    [class*='review'],
    [class*='banner'],
    [data-review-slider],
    [data-cta-banner],
    [class*='slot']:not([data-slot-card]):not([class*='slot-card']):not([class*='slot__card'])
  )
  + :is(p, ul, ol, div, section, article) {
  margin-top: clamp(16px, 2vw, 24px);
}

@media (max-width: 1330px) {
  :root {
    --gnb-sidebar-w: 236px;
  }

  .gnb-slot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gnb-review-card {
    min-width: calc((100% - 12px) / 2);
  }
}

@media (max-width: 1023px) {
  :root {
    --gnb-sidebar-w: 0px;
  }

  .gnb-sidebar {
    position: sticky;
    width: 100%;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(35, 49, 70, 0.7);
    padding: 6px 10px 8px;
  }

  .gnb-sidebar-nav,
  .gnb-sidebar-note {
    display: none;
  }

  .gnb-logo-link {
    padding: 0;
  }

  .gnb-logo {
    height: 60px;
  }

  .gnb-sidebar-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 6px;
    gap: 8px;
  }

  .gnb-main-column {
    margin-left: 0;
  }

  .gnb-main {
    padding-top: var(--gnb-space);
  }

  .gnb-hero-topbar {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .gnb-search {
    min-width: 100%;
  }

  .gnb-topbar-btn {
    flex: 1;
    min-width: 140px;
  }

  .gnb-hero-card {
    width: min(92%, 560px);
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: clamp(14px, 2.8vw, 20px);
  }

  .gnb-hero-banner {
    min-height: clamp(520px, 96vw, 700px);
  }

  .gnb-accordion-panel ul {
    grid-template-columns: 1fr;
  }

  .gnb-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gnb-grid-two,
  .gnb-pros-cons,
  .gnb-calc-grid {
    grid-template-columns: 1fr;
  }

  .gnb-reviews-shell {
    grid-template-columns: 30px 1fr 30px;
    gap: 7px;
  }

  .gnb-review-arrow {
    width: 30px;
    height: 64px;
    min-height: 64px;
    border-radius: 12px;
    align-self: center;
    font-size: 1.24rem;
  }

  .gnb-review-card {
    min-width: 100%;
  }

  .gnb-table th,
  .gnb-table td {
    font-size: 0.83rem;
    padding: 6px 8px;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .gnb-table {
    font-size: 0.82rem;
    min-width: 0;
  }

  .gnb-table--stack-mobile thead {
    display: none;
  }

  .gnb-table--stack-mobile,
  .gnb-table--stack-mobile tbody {
    display: block;
    width: 100%;
  }

  .gnb-table--stack-mobile tr {
    display: block;
    border: 1px solid rgba(50, 70, 98, 0.72);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
    background: rgba(11, 18, 29, 0.96);
  }

  .gnb-table--stack-mobile tr:last-child {
    margin-bottom: 0;
  }

  .gnb-table--stack-mobile td {
    display: grid;
    grid-template-columns: minmax(122px, 44%) 1fr;
    gap: 8px;
    align-items: start;
    border-bottom: 1px solid rgba(44, 60, 83, 0.65);
    padding: 8px 10px;
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .gnb-table--stack-mobile td::before {
    content: attr(data-label);
    color: #d4e5ff;
    font-weight: 700;
    line-height: 1.3;
  }

  .gnb-table--stack-mobile td:last-child {
    border-bottom: 0;
  }

  .gnb-floating {
    left: 12px;
    right: 12px;
    bottom: 10px;
    padding: 10px 46px 10px 10px;
  }

  .gnb-floating-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gnb-floating-btn {
    width: 100%;
    min-width: 0;
  }

  .gnb-floating [data-floating-bonus-close] {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
  }

  .gnb-slot-modal {
    padding: 0;
  }

  .gnb-slot-modal-box {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .gnb-slot-modal-frame {
    height: calc(100vh - 128px);
  }
}

@media (max-width: 640px) {
  .gnb-hero-banner {
    min-height: clamp(560px, 138vw, 760px);
  }

  .gnb-hero-card {
    width: calc(100% - 18px);
  }

  .gnb-hero-card h1 {
    font-size: clamp(1.6rem, 10vw, 2rem);
  }

  .gnb-hero-btn {
    min-width: 0;
    width: 100%;
    font-size: 1.35rem;
  }

  .gnb-cta-content {
    width: calc(100% - 20px);
    padding: 16px;
  }

  .gnb-cta-btn {
    width: 100%;
    min-width: 0;
  }
}
