/**
 * style.css
 * ---------
 * 이 페이지(또는 이 사이트) 전용 스타일입니다.
 * header·intro 등 섹션별로 주석을 나눠 두면 유지보수하기 좋습니다.
 */

/* ========================================
   Header — 모든 페이지에서 동일 블록 재사용
   다른 HTML 파일을 만들 때도 아래 구조를 복사해 넣으면 됩니다.
   (나중에 빌드 도구나 서버 include로 한 곳만 고치게 할 수도 있습니다.)
   ======================================== */

.site-header {
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 22px rgba(103, 118, 178, 0.12);
}

/**
 * .header-inner: flex로 로고(왼쪽) + 네비(오른쪽) 배치
 * flex-wrap으로 좁은 화면에서 자연스럽게 줄바꿈되도록 할 수 있음
 */
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* 로고 */
.site-logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #5663a6;
}

.site-logo:hover,
.site-logo:focus-visible {
  text-decoration: underline;
  outline: none;
}

/* 네비게이션: 가로 메뉴 */
.site-nav {
  display: flex;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 18px rgba(105, 121, 185, 0.13);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.nav-list a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4d5988;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  transition: background-color 0.2s, color 0.2s;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: #3d4a7e;
  background: #eef2ff;
  outline: none;
}

.nav-list a.active {
  color: #ffffff;
  background: #6b7dd8;
}

/* 모바일용 햄버거 버튼 — 데스크톱에서는 숨김 */
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  color: #333;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background-color: #eef1ff;
  outline: 2px solid #7f90dd;
  outline-offset: 2px;
}

/* 햄버거 아이콘 (CSS로 3줄) */
.nav-toggle-icon {
  display: block;
  width: 1.25rem;
  height: 2px;
  background-color: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

/* ----- 반응형: 좁은 화면에서 햄버거 + 드롭다운 메뉴 ----- */
@media (max-width: 768px) {
  /* 첫 줄: 로고(왼쪽) + 햄버거(오른쪽) */
  .site-logo {
    flex: 1;
    min-width: 0;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .site-nav {
    /* 전체 너비를 쓰고, 아래 줄에 메뉴 표시 */
    width: 100%;
    flex-basis: 100%;
    order: 3;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
  }

  /* JS로 .is-open 붙이면 메뉴 펼침 */
  .site-nav.is-open {
    max-height: 240px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid #eee;
  }
}

/* ========================================
   Intro 섹션
   ======================================== */

.intro {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, #fefefe 0%, #f7f8ff 55%, #f8fbff 100%);
}

.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  max-width: 980px;
}

.hero-card {
  width: 100%;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 22px 46px rgba(102, 116, 175, 0.18);
  padding: 2.4rem 1.8rem 2.2rem;
}

.intro-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
  background-color: #edf1ff;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
}

.intro-title {
  margin-top: 1rem;
  font-size: clamp(2.05rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #222;
  max-width: 17ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.intro-title-keep {
  white-space: nowrap;
}

.intro-desc {
  margin: 1.65rem auto 0;
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  color: #555;
  line-height: 1.78;
  max-width: 42rem;
  text-wrap: pretty;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.feature-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-card {
  display: block;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(108, 123, 184, 0.16);
  padding: 1rem 0.95rem 1.05rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(108, 123, 184, 0.2);
  outline: none;
}

.feature-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888;
}

.feature-title {
  margin-top: 0.38rem;
  font-size: clamp(1.22rem, 2vw, 1.42rem);
  line-height: 1.3;
  color: #222;
  font-weight: 800;
}

.feature-desc {
  margin-top: 0.62rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.68;
  text-wrap: pretty;
}

/* 버튼 스타일 (공통으로 빼도 됨) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.2rem;
  font-size: clamp(0.875rem, 1.45vw, 0.975rem);
  font-weight: 600;
  border-radius: 14px;
  border: 0;
  box-shadow: 0 10px 22px rgba(96, 110, 171, 0.16);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.desktop-break {
  display: inline;
}

.btn-primary {
  background: linear-gradient(135deg, #9ba9ff 0%, #88b5ff 100%);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(96, 110, 171, 0.2);
  outline: none;
}

.btn-secondary {
  background-color: #f0f4ff;
  color: #4c5a90;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(96, 110, 171, 0.2);
  outline: none;
}

@media (max-width: 768px) {
  .site-nav {
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

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

  .hero-card {
    border-radius: 14px;
    padding: 1.6rem 1rem 1.5rem;
  }

  .intro {
    padding-top: 1.8rem;
    padding-bottom: 2.6rem;
  }

  .intro-title {
    font-size: clamp(1.85rem, 7.6vw, 2.2rem);
    line-height: 1.32;
    max-width: 12ch;
  }

  .intro-title-keep {
    white-space: normal;
  }

  .intro-desc {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.74;
    max-width: 31rem;
  }

  .intro-actions {
    margin-top: 1.35rem;
  }

  .feature-title {
    font-size: 1.22rem;
  }

  .feature-desc {
    font-size: 0.875rem;
  }

  .desktop-break {
    display: none;
  }
}

/* ========================================
  Content page layout
  ======================================== */
.content-page {
  background: linear-gradient(180deg, #fefefe 0%, #f7f8ff 45%, #f8fbff 100%);
}

.content-main {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.content-wrap {
  max-width: 980px;
}

.content-hero,
.content-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(102, 116, 175, 0.14);
  padding: 1.4rem 1.2rem;
}

.content-hero {
  margin-bottom: 1rem;
}

.content-hero h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  color: #2f3e74;
}

.content-hero p {
  margin-top: 0.7rem;
  color: #4b5476;
  line-height: 1.8;
}

.content-nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-nav-list a {
  display: block;
  font-size: 0.92rem;
  color: #4d5988;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
}

.content-nav-list a:hover,
.content-nav-list a:focus-visible {
  background: #eef2ff;
  outline: none;
}

.content-card + .content-card {
  margin-top: 1rem;
}

.content-card h2 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  color: #2f3e74;
  font-size: 1.18rem;
}

.content-card p {
  margin: 0.55rem 0 0;
  color: #444f73;
  line-height: 1.86;
}

.seo-article {
  display: grid;
  gap: 1rem;
}

.seo-article .content-card h3 {
  margin-top: 1rem;
  font-size: 1.02rem;
  color: #33427a;
}

.seo-article .content-card ul,
.seo-article .content-card ol {
  margin-top: 0.7rem;
  padding-left: 1.15rem;
  color: #44507a;
}

.seo-article .content-card li + li {
  margin-top: 0.4rem;
}

.breadcrumb-card {
  background: #f8faff;
  border: 1px solid #e8edff;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: #5a648b;
}

.breadcrumb-list li + li::before {
  content: ">";
  color: #98a2cf;
  font-size: 0.85rem;
}

.breadcrumb-list a {
  color: #4b5888;
  border-radius: 8px;
  padding: 0.15rem 0.35rem;
}

.breadcrumb-list a:hover,
.breadcrumb-list a:focus-visible {
  background: #edf2ff;
  outline: none;
}

.breadcrumb-list a[aria-current="page"] {
  color: #2f3e74;
  font-weight: 700;
}

.faq-list {
  margin-top: 0.8rem;
}

.faq-list dt {
  margin-top: 0.7rem;
  font-weight: 700;
  color: #2f3e74;
}

.faq-list dd {
  margin: 0.35rem 0 0;
  color: #44507a;
  line-height: 1.78;
}

.quick-links a {
  background: #f8faff;
  border: 1px solid #e9eeff;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  background: #eef2ff;
  border-color: #d9e2ff;
}

@media (max-width: 768px) {
  .content-main {
    padding-top: 1.35rem;
    padding-bottom: 2.2rem;
  }

  .content-hero,
  .content-card {
    border-radius: 14px;
    padding: 1.1rem 0.95rem;
  }

  .content-nav-list {
    grid-template-columns: 1fr;
  }

  .breadcrumb-list {
    gap: 0.3rem;
  }
}

/* =========================================================
   New common components: header / footer
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 22px rgba(24, 39, 75, 0.08);
}

.site-header-inner {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  row-gap: 12px;
}

.site-logo {
  font-size: 24px;
  font-weight: 800;
  color: #252f5f;
}

.site-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  row-gap: 8px;
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #32407b;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-link.is-active {
  background: #eef0ff;
}

.site-nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eef0ff;
  color: #32407b;
}

.site-nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.site-footer {
  background: #14182a;
  color: #e6ebff;
  padding: 28px 0;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer-copy {
  font-size: 14px;
  color: #ccd4ff;
}

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

.site-footer-link {
  font-size: 14px;
  color: #e6ebff;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}

.site-footer-logo {
  display: inline-block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.site-footer-desc {
  margin-top: 10px;
  color: #c7d2ff;
  line-height: 1.8;
  max-width: 560px;
}

.site-footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #d9e1ff;
  margin-bottom: 10px;
}

.site-footer-list {
  display: grid;
  gap: 8px;
}

.site-footer-link {
  transition: color 0.2s ease;
}

.site-footer-link:hover,
.site-footer-link:focus-visible {
  color: #8fb2ff;
}

.site-footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(231, 238, 255, 0.16);
  text-align: center;
}

/* =========================================================
   privacy.html
   ========================================================= */
.privacy-main {
  padding: 56px 20px 72px;
}

.privacy-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(24, 39, 75, 0.1);
  padding: 30px 28px;
}

.privacy-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #24315e;
}

.privacy-summary {
  margin-top: 12px;
  color: #4d597f;
  line-height: 1.9;
}

.privacy-section {
  margin-top: 22px;
}

.privacy-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #2e3f78;
  margin-bottom: 10px;
}

.privacy-section p,
.privacy-section li {
  color: #44507a;
  line-height: 1.9;
}

.privacy-section ul {
  list-style: disc;
  margin-left: 18px;
  display: grid;
  gap: 6px;
}

/* =========================================================
   index.html
   ========================================================= */
.home-hero {
  padding-top: 84px;
}

.hero-card {
  text-align: center;
  padding: 54px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef0ff;
  color: #4551a4;
  font-size: 13px;
  font-weight: 700;
}

.hero-title {
  margin-top: 14px;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 18px auto 0;
  max-width: 700px;
  font-size: clamp(15px, 2vw, 18px);
  color: #4f596f;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  font-weight: 800;
}

.section-heading p {
  margin-top: 8px;
  color: #57607a;
  font-size: 16px;
}

.benefit-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card,
.category-card {
  padding: 22px 18px;
}

.benefit-icon {
  font-size: 28px;
}

.benefit-card h3,
.category-card h3 {
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.4;
}

.benefit-card p,
.category-card p {
  margin-top: 8px;
  color: #57607a;
  font-size: 15px;
}

.category-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-label {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef0ff;
  color: #4551a4;
  font-size: 12px;
  font-weight: 700;
}

.home-seo-section {
  padding-top: 12px;
}

.home-seo-article {
  gap: 16px;
}

/* =========================================================
   subpage/kana.html
   ========================================================= */
.kana-page-main {
  min-height: calc(100vh - 180px);
}

.kana-layout {
  max-width: 760px;
}

.kana-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border-radius: 14px;
  background: #eef0ff;
}

.kana-tab-btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  color: #2f3a7b;
  font-size: 15px;
  font-weight: 700;
}

.kana-tab-btn.is-active {
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(24, 39, 75, 0.12);
}

.kana-card-wrap {
  margin-top: 18px;
  padding: 28px;
  text-align: center;
}

.kana-char {
  font-size: clamp(84px, 16vw, 128px);
  font-weight: 800;
  line-height: 1.15;
}

.kana-roman {
  margin-top: 10px;
  font-size: clamp(22px, 3vw, 28px);
  color: #4f596f;
}

.kana-controls {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.kana-info {
  margin-top: 14px;
  color: #606a83;
  font-size: 14px;
}

.practice-seo-hero {
  margin-bottom: 14px;
}

.practice-seo-article {
  margin-top: 16px;
  margin-bottom: 92px;
}

@media (max-width: 900px) {
  .benefit-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(24, 39, 75, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }

  .site-nav.is-open {
    max-height: min(85vh, 720px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav-list {
    display: grid;
    gap: 0;
    padding: 8px 14px 14px;
  }

  .site-nav-link {
    min-height: 44px;
    border-bottom: 1px solid #f0f2fb;
    border-radius: 0;
  }

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

  .privacy-main {
    padding: 34px 14px 52px;
  }

  .privacy-wrap {
    border-radius: 14px;
    padding: 22px 16px;
  }

  .privacy-section h2 {
    font-size: 19px;
  }

  .hero-card {
    padding: 34px 16px;
  }

  .benefit-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .kana-card-wrap {
    padding: 20px 14px;
  }
}

/* =========================================================
   Global UI refresh (site-wide)
   ========================================================= */
:root {
  --ui-bg: linear-gradient(180deg, #f5f7ff 0%, #f8faff 46%, #f3f7ff 100%);
  --ui-text: #1e2b52;
  --ui-muted: #586485;
  --ui-surface: #ffffff;
  --ui-border: #e8edff;
  --ui-primary: #4b63d1;
  --ui-primary-strong: #334aa8;
  --ui-shadow: 0 14px 32px rgba(24, 39, 75, 0.12);
  --ui-shadow-hover: 0 20px 42px rgba(24, 39, 75, 0.16);
}

body {
  background: var(--ui-bg);
  color: var(--ui-text);
}

.card,
.content-card,
.content-hero,
.hero-card,
.practice-panel,
.practice-actions-bar,
.privacy-wrap {
  border: 1px solid var(--ui-border);
  box-shadow: var(--ui-shadow);
}

.content-card,
.content-hero {
  border-radius: 18px;
}

.section-heading p,
.hero-subtitle,
.content-card p,
.content-hero p,
.site-footer-desc {
  color: var(--ui-muted);
}

.btn {
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ui-primary) 0%, #6b7ef0 100%);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--ui-primary-strong) 0%, #5f73e8 100%);
}

.btn-secondary {
  border: 1px solid #d7defd;
  background: #eef2ff;
}

.site-header {
  border-bottom: 1px solid #e7ecff;
}

.site-logo {
  color: #27366d;
}

.site-nav-link,
.nav-list a {
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-link.is-active,
.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.active {
  color: #2a3f9a;
  background: #e8eeff;
  transform: translateY(-1px);
}

.benefit-card,
.category-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.benefit-card:hover,
.category-card:hover,
.benefit-card:focus-within,
.category-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--ui-shadow-hover);
  border-color: #d6defe;
}

.content-card h2,
.content-hero h1,
.privacy-title {
  color: #22366f;
}

.seo-article .content-card ul,
.seo-article .content-card ol,
.faq-list dd,
.privacy-section p,
.privacy-section li {
  color: #46537d;
}

.quick-links a,
.content-nav-list a {
  border: 1px solid #e6ecff;
  background: #f8faff;
}

.quick-links a:hover,
.quick-links a:focus-visible,
.content-nav-list a:hover,
.content-nav-list a:focus-visible {
  border-color: #ced9ff;
  background: #edf2ff;
}

.site-footer {
  background: linear-gradient(180deg, #141c35 0%, #10172c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-logo,
.site-footer-copy {
  color: #f1f4ff;
}

.site-footer-link:hover,
.site-footer-link:focus-visible {
  color: #9fc0ff;
}

.privacy-wrap {
  border-radius: 18px;
}

@media (max-width: 1024px) {
  .site-header-inner {
    gap: 14px;
  }

  .hero-card {
    padding: 42px 20px;
  }

  .benefit-grid,
  .category-grid {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .content-card,
  .content-hero,
  .hero-card,
  .privacy-wrap {
    border-radius: 14px;
  }

  .hero-title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .site-footer {
    padding: 22px 0;
  }

  .site-footer-logo {
    font-size: 20px;
  }
}

/* =========================================================
   Menu bar tidy-up
   ========================================================= */
@media (min-width: 769px) {
  .site-header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-nav {
    min-width: 0;
    width: 100%;
  }

  .site-nav-list {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 8px;
    overflow: visible;
    padding: 2px 0;
  }

  .site-nav-link {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid #dde5ff;
    background: #f9fbff;
  }

  .site-nav-link:hover,
  .site-nav-link:focus-visible,
  .site-nav-link.is-active {
    border-color: #c6d3ff;
    background: #eaf0ff;
  }
}

@media (max-width: 768px) {
  .site-nav-link {
    font-size: 14px;
    padding: 0 4px;
  }
}
