/* ==========================================================
   <REDACTED-AGENCY> — Dark + Gold Brand System
   Adapted from <edacted-agency-blog>
   ========================================================== */

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

@font-face {
  font-family: "Paperlogy-2ExtraLight";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2")
    format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy-8ExtraBold";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   Design tokens — 라이트 기본, [data-theme="dark"]로 스왑
   ============================================================ */
:root {
  /* base */
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f3f3f1;
  --bg-card: #ffffff;
  --accent-gold: #d4a017;
  --accent-gold-soft: #e8b929;
  --accent-gold-deep: #a87d0a;
  --accent-gold-pale: rgba(212, 160, 23, 0.10);
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --line-color: rgba(212, 160, 23, 0.22);
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 14px 36px rgba(0, 0, 0, 0.10);

  /* nav / mobile menu */
  --nav-bg: rgba(255, 255, 255, 0.92);
  --nav-bg-mobile: rgba(255, 255, 255, 0.98);

  /* section composites */
  --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f7f5ef 50%, #ffffff 100%);
  --gradient-hero-radial: rgba(212, 160, 23, 0.10);
  --pattern-color: rgba(212, 160, 23, 0.05);
  --hit-text-color: rgba(212, 160, 23, 0.07);
  --gradient-persona: linear-gradient(135deg, #f7f5ef, #ece8de);
  --badge-bg: #1a1a1a;
  --badge-color: #ffffff;
  --badge-border: #1a1a1a;
  --logo-decor-color: rgba(0, 0, 0, 0.08);
  --gradient-industry-card: linear-gradient(160deg, #ffffff, #fafaf6);
  --glow-card: rgba(212, 160, 23, 0.16);
  --quote-color: rgba(212, 160, 23, 0.22);
  --gradient-cta: linear-gradient(135deg, #fafaf6, #f3f0e6);
  --gradient-cta-radial: rgba(212, 160, 23, 0.12);
  --cta-outline-border: rgba(0, 0, 0, 0.18);
  --footer-bg: #1a1a1a;
  --footer-divider: rgba(255, 255, 255, 0.08);

  /* shape & motion */
  --radius-pill: 999px;
  --radius-card: 18px;
  --duration: 0.6s;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #232323;
  --bg-card: #2a2a2a;
  --accent-gold: #ffd43b;
  --accent-gold-soft: #f5c842;
  --accent-gold-deep: #d4a017;
  --accent-gold-pale: rgba(255, 212, 59, 0.12);
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #777777;
  --line-color: rgba(255, 212, 59, 0.18);
  --border-color: rgba(255, 255, 255, 0.05);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-card-hover: 0 24px 50px rgba(0, 0, 0, 0.55);

  --nav-bg: rgba(13, 13, 13, 0.92);
  --nav-bg-mobile: rgba(13, 13, 13, 0.96);

  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #181818 50%, #0a0a0a 100%);
  --gradient-hero-radial: rgba(255, 212, 59, 0.08);
  --pattern-color: rgba(255, 212, 59, 0.04);
  --hit-text-color: rgba(255, 212, 59, 0.045);
  --gradient-persona: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  --badge-bg: rgba(0, 0, 0, 0.6);
  --badge-color: #ffffff;
  --badge-border: rgba(255, 255, 255, 0.08);
  --logo-decor-color: rgba(255, 255, 255, 0.06);
  --gradient-industry-card: linear-gradient(160deg, #2a2a2a, #232323);
  --glow-card: rgba(255, 212, 59, 0.12);
  --quote-color: rgba(255, 212, 59, 0.18);
  --gradient-cta: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  --gradient-cta-radial: rgba(255, 212, 59, 0.1);
  --cta-outline-border: rgba(255, 255, 255, 0.18);
  --footer-bg: #050505;
  --footer-divider: rgba(255, 255, 255, 0.08);
}

/* 테마 전환 부드럽게 */
html { transition: background-color 0.3s var(--ease); }
body { transition: background-color 0.3s var(--ease), color 0.3s var(--ease); }

/* === Theme toggle button === */
.theme-toggle {
  margin-left: 16px;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--accent-gold-pale);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: rotate(15deg);
}
.theme-toggle .icon-light { display: none; }
.theme-toggle .icon-dark { display: inline; }
[data-theme="dark"] .theme-toggle .icon-light { display: inline; }
[data-theme="dark"] .theme-toggle .icon-dark { display: none; }

@media (max-width: 900px) {
  .theme-toggle {
    margin-left: 0;
    margin-right: 12px;
  }
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Paperlogy-2ExtraLight", "Pretendard", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* === Loader === */
#loadings {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--bg-primary);
  z-index: 999999;
}
#loading_api {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 212, 59, 0.15);
  border-radius: 50%;
  border-top-color: var(--accent-gold);
  animation: spin 1s ease-in-out infinite;
  margin: auto;
  inset: 0;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === Layout === */
#wrap {
  position: relative;
  overflow: hidden;
}
.container {
  width: min(1240px, 100% - 40px);
  margin: 0 auto;
}
.row {
  padding: 10px 0;
}
.br { display: none; }

/* === Navigation === */
.navigation {
  position: fixed;
  width: 100%;
  height: 84px;
  top: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  border-bottom: 1px solid var(--border-color);
}
.nav-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Paperlogy-8ExtraBold";
  font-size: 22px;
  letter-spacing: 0.02em;
}
.brand .brand-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--accent-gold);
  border-radius: 8px;
  color: #000;
  font-size: 18px;
}
.brand .brand-name span {
  color: var(--accent-gold);
}
nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
nav ul li a,
nav ul li a:visited {
  display: inline-block;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 16px;
  font-family: "Paperlogy-8ExtraBold";
  position: relative;
  transition: color 0.3s var(--ease);
}
nav ul li a:hover {
  color: var(--accent-gold);
}
nav ul li a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-mobile {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-mobile span,
.nav-mobile span::before,
.nav-mobile span::after {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: 0.3s var(--ease);
}
.nav-mobile span::before {
  content: "";
  position: absolute;
  top: -8px;
}
.nav-mobile span::after {
  content: "";
  position: absolute;
  top: 8px;
}
@media (max-width: 900px) {
  .nav-mobile { display: flex; }
  nav ul {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    background: var(--nav-bg-mobile);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }
  nav ul li {
    width: 100%;
  }
  nav ul li a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
  }
}

/* === Section 01 — HERO === */
#section01 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, var(--gradient-hero-radial), transparent 50%),
    var(--gradient-hero);
  overflow: hidden;
  padding-top: 84px;
}
#section01::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      var(--pattern-color) 0,
      var(--pattern-color) 1px,
      transparent 1px,
      transparent 80px
    );
  pointer-events: none;
}
#section01::after {
  content: "HIT";
  position: absolute;
  right: -40px;
  bottom: 40px;
  font-family: "Paperlogy-8ExtraBold";
  font-size: clamp(180px, 22vw, 360px);
  color: var(--hit-text-color);
  letter-spacing: -0.04em;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
}

.sec1_layout {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: 60px 0 100px;
}
.hero_persona {
  position: relative;
  align-self: end;
}
.hero_persona .persona-frame {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero_persona .persona-frame img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}
.hero_persona .persona-caption {
  margin-top: 14px;
  text-align: center;
  font-family: "Paperlogy-8ExtraBold";
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero_main {
  position: relative;
}
.hero_main .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Paperlogy-8ExtraBold";
  color: var(--accent-gold);
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero_main .hero-tag .tag-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--accent-gold-pale);
  border-radius: 8px;
  font-size: 22px;
}
.hero_main h1 {
  font-family: "Paperlogy-8ExtraBold";
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero_main h1 .gold {
  color: var(--accent-gold);
}
.hero_main .hero-sub-badge {
  display: inline-block;
  padding: 14px 28px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: 6px;
  font-family: "Paperlogy-8ExtraBold";
  font-size: 22px;
  color: var(--badge-color);
  margin-bottom: 60px;
}
.hero_main .hero-services-line {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 22px;
  line-height: 1.7;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.hero_main .hero-services-line .dot {
  color: var(--accent-gold);
  margin: 0 6px;
}

.hero_aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}
.hero_socials {
  display: flex;
  gap: 10px;
}
.hero_socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.3s var(--ease);
}
.hero_socials a:hover { transform: translateY(-3px); }
.hero_socials .talk { background: #fae100; color: #3c1e1e; }
.hero_socials .insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.hero_socials .ch { background: #5468ff; color: #fff; }

.hero_phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Paperlogy-8ExtraBold";
  color: var(--text-primary);
  font-size: 26px;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.hero_phone .phone-circle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--accent-gold);
  color: #000;
  border-radius: 50%;
  font-size: 18px;
}

.hero_logo_decor {
  text-align: right;
  font-family: "Paperlogy-8ExtraBold";
  font-size: 38px;
  letter-spacing: -0.01em;
  color: var(--logo-decor-color);
  line-height: 1;
}

/* Service tabs row */
.service_tabs {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
  flex-wrap: wrap;
  justify-content: center;
  width: min(100%, 960px);
}
.service_tab {
  min-width: 110px;
  padding: 18px 22px;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  text-align: center;
  font-family: "Paperlogy-8ExtraBold";
  font-size: 17px;
  line-height: 1.35;
  color: var(--text-primary);
  text-decoration: none;
  transition: 0.3s var(--ease);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}
.service_tab.active,
.service_tab:hover {
  background: var(--accent-gold);
  color: #1a1a1a;
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* === Section 02 — 효과 3가지 === */
#section02 {
  background: var(--bg-secondary);
  padding: 120px 0;
  position: relative;
}
.center_tit {
  text-align: center;
  margin-bottom: 60px;
}
.center_tit h2 {
  color: var(--text-primary);
  font-size: clamp(32px, 4vw, 52px);
  font-family: "Paperlogy-8ExtraBold";
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.center_tit h2 span {
  color: var(--accent-gold);
}
.center_tit p {
  font-size: 17px;
  color: var(--text-secondary);
  font-family: "Paperlogy-2ExtraLight";
  margin-top: 16px;
}

.sec2_layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature_card {
  padding: 40px 32px;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: 0.4s var(--ease);
}
.feature_card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-card-hover);
}
.feature_card .icon-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--accent-gold-pale);
  color: var(--accent-gold);
  display: grid;
  place-items: center;
  font-size: 32px;
  margin-bottom: 22px;
}
.feature_card h3 {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.feature_card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* === Section 03 — 광고 만족도 === */
#section03 {
  background:
    radial-gradient(circle at 20% 50%, var(--gradient-hero-radial), transparent 60%),
    var(--bg-primary);
  padding: 120px 0;
  position: relative;
}
.stats_layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.stat_card {
  padding: 36px 24px;
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}
.stat_card .num {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 56px;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.stat_card .label {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 16px;
  color: var(--text-primary);
}
.stat_card .desc {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* === Section 04 — 업종별 마케팅 === */
#section04 {
  background: var(--bg-secondary);
  padding: 120px 0;
}
.sec4_layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.industry_card {
  position: relative;
  padding: 48px 32px;
  background: var(--gradient-industry-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: 0.4s var(--ease);
}
.industry_card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--glow-card), transparent 70%);
  transition: 0.4s var(--ease);
}
.industry_card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.industry_card:hover::before {
  top: -20%;
  right: -20%;
}
.industry_card .num {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 14px;
  color: var(--accent-gold);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.industry_card h3 {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.industry_card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* === Process === */
#process {
  background: var(--bg-primary);
  padding: 120px 0;
}
.pro_layout {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.pro_box {
  position: relative;
  padding: 30px 18px 28px;
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--line-color);
  box-shadow: var(--shadow-card);
}
.pro_box .step {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: var(--accent-gold-pale);
  color: var(--accent-gold);
  font-family: "Paperlogy-8ExtraBold";
  font-size: 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.1em;
}
.pro_box .icon {
  width: 56px;
  height: 56px;
  margin: 8px auto 16px;
  display: grid;
  place-items: center;
  background: var(--accent-gold-pale);
  border-radius: 50%;
  color: var(--accent-gold);
  font-size: 28px;
}
.pro_box .label {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.4;
}

/* === Section 05 — 후기 === */
#section05 {
  background: var(--bg-secondary);
  padding: 120px 0;
}
.sec5_layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.review_card {
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  position: relative;
}
.review_card .quote {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: "Paperlogy-8ExtraBold";
  font-size: 64px;
  color: var(--quote-color);
  line-height: 1;
}
.review_card .stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 14px;
}
.review_card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
.review_card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review_card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #000;
  display: grid;
  place-items: center;
  font-family: "Paperlogy-8ExtraBold";
  font-size: 16px;
}
.review_card .author-info strong {
  display: block;
  color: var(--text-primary);
  font-family: "Paperlogy-8ExtraBold";
  font-size: 14px;
}
.review_card .author-info span {
  color: var(--text-muted);
  font-size: 13px;
}

/* === Section — 마케팅 인사이트 === */
#section-insights {
  background: var(--bg-secondary);
  padding: 120px 0;
}
.insights_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.post_card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: 0.4s var(--ease);
}
.post_card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-gold);
}
.post_image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-tertiary);
  overflow: hidden;
}
.post_image::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-family: "Paperlogy-8ExtraBold";
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 12px;
  pointer-events: none;
}
.post_image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.post_card:hover .post_image img {
  transform: scale(1.05);
}
.post_info {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.post_tag {
  align-self: flex-start;
  font-family: "Paperlogy-8ExtraBold";
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  background: var(--accent-gold-pale);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.post_title {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-primary);
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.post_date {
  font-family: "Paperlogy-2ExtraLight";
  font-size: 13px;
  color: var(--text-muted);
  margin-top: auto;
}

@media (max-width: 1100px) {
  .insights_grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  #section-insights { padding: 80px 0; }
  .insights_grid { grid-template-columns: repeat(2, 1fr); }
  .post_title { font-size: 15px; }
}
@media (max-width: 520px) {
  .insights_grid { grid-template-columns: 1fr; gap: 18px; }
}

/* === Section 06 — CTA === */
#section06 {
  background:
    radial-gradient(circle at 50% 50%, var(--gradient-cta-radial), transparent 60%),
    var(--gradient-cta);
  padding: 120px 0;
  text-align: center;
}
#section06 .center_tit {
  text-align: center;
}
#section06 .center_tit p.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-gold-pale);
  color: var(--accent-gold);
  font-family: "Paperlogy-8ExtraBold";
  font-size: 13px;
  letter-spacing: 0.2em;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
#section06 .center_tit h2 {
  font-size: clamp(34px, 4.4vw, 56px);
}
#section06 .center_tit p.lead {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: 20px;
}
.cta_buttons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  font-family: "Paperlogy-8ExtraBold";
  font-size: 18px;
  text-decoration: none;
  transition: 0.4s var(--ease);
  border: 1px solid transparent;
}
.cta_btn.primary {
  background: var(--accent-gold);
  color: #ffffff;
}
.cta_btn.primary:hover {
  background: var(--accent-gold-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 160, 23, 0.35);
}
.cta_btn.outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--cta-outline-border);
}
.cta_btn.outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* === Footer === */
#sh_ft {
  background: var(--footer-bg);
  padding: 80px 20px 0;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  color: #999999;
}
#sh_ft .footer_logo {
  font-family: "Paperlogy-8ExtraBold";
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 24px;
}
#sh_ft .footer_logo span { color: var(--accent-gold); }
#sh_ft .info {
  margin-bottom: 60px;
  word-break: keep-all;
}
#sh_ft .info span {
  display: block;
  margin-bottom: 16px;
  font-size: 17px;
  color: #ffffff;
  font-family: "Paperlogy-8ExtraBold";
}
#sh_ft .copy {
  height: 60px;
  font-size: 13px;
  color: #777;
  line-height: 60px;
  border-top: 1px solid var(--footer-divider);
}
