/* ==========================================================
   おとなの関係相談室 LP
   Palette:
     navy  #1f2f4a (header)
     gold  #b39355
     ink   #2a2a2a
     ink-2 #6b6b6b
     beige #f3ecde (section bg)
     cream #faf6ee
   ========================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #2a2a2a;
  line-height: 1.7;
  background: #fff;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Section title pattern ===== */
.section-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  text-align: center;
  color: #1f2f4a;
  letter-spacing: .05em;
  margin-bottom: 40px;
  position: relative;
}
.section-title.left { text-align: left; margin-bottom: 0; }
.section-title::after {
  content: "";
  display: block;
  width: 44px; height: 1px;
  background: #b39355;
  margin: 14px auto 0;
}
.section-title.left::after { margin-left: 0; }
.title-accent { color: #b39355; }

/* ========================================================
   HEADER
   ======================================================== */
.site-header {
  background: #1f2f4a;
  color: #fff;
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 28px;
  max-width: 1400px;
  margin: 0 auto;
}
.brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: .08em;
  font-weight: 500;
}
.brand-sub {
  font-size: 10px;
  color: #d7ccb2;
  margin-top: 3px;
  letter-spacing: .04em;
}
.nav-primary ul {
  display: flex; gap: 26px; justify-content: center;
}
.nav-primary a {
  font-size: 12.5px;
  color: #fff;
  letter-spacing: .04em;
  opacity: .9;
  transition: color .2s;
}
.nav-primary a:hover { color: #e6d3a3; opacity: 1; }

.header-cta {
  display: flex; align-items: center; gap: 10px;
}
.header-tel { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
.tel-label { font-size: 10px; color: #d7ccb2; letter-spacing: .04em; }
.tel-number {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  display: flex; align-items: center; gap: 6px;
  letter-spacing: .02em;
}
.btn-mail-sm {
  background: #334560;
  border: 1px solid #4a5d7a;
  color: #fff;
  font-size: 10.5px;
  line-height: 1.25;
  padding: 7px 12px;
  border-radius: 3px;
  display: flex; align-items: center; gap: 6px;
  text-align: left;
  transition: background .2s;
}
.btn-mail-sm:hover { background: #3f547a; }

/* ========================================================
   HERO — フルスクリーン背景
   ======================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,35,60,0.88) 0%, rgba(20,35,60,0.75) 30%, rgba(20,35,60,0.4) 55%, rgba(20,35,60,0.1) 75%, transparent 100%);
}
.hero::before {
  display: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  align-items: center;
}
.hero-copy {
  max-width: 520px;
}
.hero-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.5;
  color: #fff;
  letter-spacing: .04em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero-title .accent {
  color: #e6d3a3;
  position: relative;
  padding: 0 2px;
}
.hero-lead {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.hero-pills {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-pills li {
  text-align: center;
  padding: 14px 8px;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.pill-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #e6d3a3;
}
.pill-icon svg { width: 22px; height: 22px; }
.pill-title {
  font-size: 12.5px;
  color: #fff;
  font-weight: 700;
}
.pill-sub { font-size: 10.5px; color: rgba(255,255,255,0.7); }

/* hero CTA */
.hero-cta-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-cta-card {
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  padding: 22px 26px 20px;
  box-shadow: 0 6px 24px rgba(31,47,74,.15);
  max-width: 420px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.cta-badge {
  display: inline-block;
  background: #1f2f4a;
  color: #fff;
  font-size: 11.5px;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.cta-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #1f2f4a;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.cta-tel {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 500;
  color: #1f2f4a;
  letter-spacing: .02em;
  padding: 4px 0;
}
.cta-tel.large { font-size: 34px; }
.cta-mail {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #c7a265, #a88447);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 4px;
  margin-top: 10px;
  transition: filter .2s;
}
.cta-mail:hover { filter: brightness(1.08); }
.cta-note {
  font-size: 10.5px;
  color: #8a8a8a;
  margin-top: 10px;
}

/* ========================================================
   WORRIES
   ======================================================== */
.worries {
  padding: 80px 24px 90px;
  background: #fff;
}
.worry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.worry-card {
  background: #faf6ee;
  border: 1px solid #eadfc4;
  border-radius: 4px;
  padding: 22px 12px 18px;
  text-align: center;
  position: relative;
}
.worry-illus {
  color: #b39355;
  margin-bottom: 10px;
  display: grid; place-items: center;
}
.worry-svg { width: 72px; height: 72px; }
.worry-text {
  font-size: 13px;
  color: #2a2a2a;
  font-weight: 500;
  line-height: 1.6;
}
.worry-note {
  background: #faf6ee;
  border: 1px solid #eadfc4;
  border-radius: 4px;
  padding: 22px 26px;
  text-align: center;
  font-size: 13.5px;
  color: #4a4a4a;
  line-height: 2;
}
.worry-note strong { color: #b39355; font-weight: 500; }

/* ========================================================
   REASONS
   ======================================================== */
.reasons {
  padding: 80px 24px;
  background: #f6efe0;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reason-card {
  background: #fff;
  border-radius: 4px;
  padding: 32px 22px 28px;
  text-align: center;
}
.reason-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  color: #b39355;
  display: grid; place-items: center;
}
.reason-icon svg { width: 54px; height: 54px; }
.reason-title {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #1f2f4a;
  margin-bottom: 12px;
  font-weight: 500;
}
.reason-text {
  font-size: 12.5px;
  color: #555;
  line-height: 1.9;
  text-align: left;
}

/* ========================================================
   FLOW
   ======================================================== */
.flow {
  padding: 80px 24px;
  background: #fff;
}
.flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 12px;
}
.flow-step { text-align: center; padding: 0 6px; }
.flow-icon {
  width: 70px; height: 70px;
  border: 1.5px solid #b39355;
  border-radius: 50%;
  margin: 0 auto 16px;
  color: #1f2f4a;
  display: grid; place-items: center;
  background: #fff;
}
.flow-icon svg { width: 34px; height: 34px; }
.flow-title {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: #1f2f4a;
  margin-bottom: 10px;
  font-weight: 500;
}
.flow-text {
  font-size: 12px;
  color: #555;
  line-height: 1.85;
  text-align: left;
  padding: 0 6px;
}
.flow-arrow {
  color: #c8b380;
  display: grid; place-items: center;
  padding-top: 22px;
}

/* ========================================================
   COLUMN
   ======================================================== */
.column {
  padding: 80px 24px;
  background: #f6efe0;
}
.column-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 32px;
}
.more-link {
  font-size: 12px;
  color: #1f2f4a;
  letter-spacing: .06em;
  border-bottom: 1px solid #b39355;
  padding-bottom: 2px;
}
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.column-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.column-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.column-card a { display: block; }
.column-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #ddd;
}
.column-img img { width: 100%; height: 100%; object-fit: cover; }
.column-tag {
  position: absolute;
  left: 0; bottom: 0;
  background: rgba(31,47,74,.92);
  color: #fff;
  font-size: 10.5px;
  padding: 4px 10px;
  letter-spacing: .04em;
}
.column-date {
  display: block;
  font-size: 11.5px;
  color: #888;
  padding: 14px 18px 4px;
  letter-spacing: .04em;
}
.column-title {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: #1f2f4a;
  padding: 0 18px 10px;
  line-height: 1.55;
  font-weight: 500;
}
.column-excerpt {
  font-size: 12px;
  color: #666;
  padding: 0 18px 20px;
  line-height: 1.8;
}

/* ========================================================
   BOTTOM CTA
   ======================================================== */
.bottom-cta {
  padding: 60px 24px;
  background: #1f2f4a;
  color: #fff;
}
.bcta-wrap {
  background: linear-gradient(180deg, #233553 0%, #1b2a42 100%);
  border: 1px solid #3a4d6e;
  border-radius: 6px;
  padding: 32px 40px;
  display: block;
  text-align: center;
}
.bcta-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  margin-bottom: 18px;
  letter-spacing: .04em;
  font-weight: 500;
  text-align: center;
}
.bcta-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.bcta-points li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 2.1;
  color: #e6dec8;
}
.bcta-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 14px; height: 8px;
  border-left: 2px solid #c7a265;
  border-bottom: 2px solid #c7a265;
  transform: rotate(-45deg);
}
.bcta-actions {
  background: #fff;
  color: #1f2f4a;
  border-radius: 4px;
  padding: 18px 20px;
  text-align: center;
}
.bcta-label {
  font-size: 11px;
  color: #6b6b6b;
  margin-bottom: 4px;
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
  background: #1a263c;
  color: #c9d0de;
  padding-top: 50px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}
.f-name {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .06em;
}
.f-sub {
  font-size: 10.5px;
  color: #8fa0b8;
  margin-top: 3px;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.f-desc { font-size: 11.5px; line-height: 1.9; color: #a8b3c6; }
.f-head {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(179,147,85,.3);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a {
  font-size: 11.5px;
  color: #a8b3c6;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.footer-contact .footer-tel {
  display: flex; align-items: center; gap: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}
.footer-mail-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #2a4870;
  color: #fff;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 3px;
}
.footer-copy {
  background: #141e30;
  color: #6f7b91;
  font-size: 11px;
  padding: 14px 0;
  text-align: center;
  letter-spacing: .04em;
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1060px) {
  .header-inner { grid-template-columns: 1fr auto; gap: 12px; padding: 10px 16px; }
  .nav-primary { display: none; grid-column: 1 / -1; }
  .worry-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: 1fr; gap: 20px; }
  .flow-arrow { transform: rotate(90deg); padding: 0; }
}

@media (max-width: 780px) {
  .hero { min-height: 420px; }
  .hero-bg-img { object-position: 55% top; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; padding: 50px 18px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(31,47,74,0.7) 0%, rgba(31,47,74,0.4) 60%, transparent 100%);
  }
  .hero-pills { grid-template-columns: 1fr; }
  .hero-pills li { flex-direction: row; justify-content: flex-start; padding: 10px 14px; }
  .pill-title, .pill-sub { text-align: left; }
  .hero-cta-area { justify-content: center; }
  .hero-cta-card { margin: 0 auto; }

  .worries, .reasons, .flow, .column, .bottom-cta { padding: 50px 18px; }
  .worry-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .reason-grid { grid-template-columns: 1fr; }
  .column-grid { grid-template-columns: 1fr; }

  .bcta-wrap { padding: 22px 18px; }
  .bcta-cols { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 22px; }

  .header-cta .header-tel { display: none; }
  .btn-mail-sm { padding: 6px 10px; }
  .brand-name { font-size: 15px; }
  .brand-sub { display: none; }

  .section-title { font-size: 22px; }
  .cta-tel { font-size: 24px; }
  .cta-tel.large { font-size: 26px; }
}

/* REST API loading state */
.column-loading {
  text-align: center;
  padding: 40px;
  color: #888;
  font-size: 13px;
  grid-column: 1 / -1;
}

/* ========================================================
   HERO BUTTONS
   ======================================================== */
.hero-btns {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .2s;
  text-align: center;
}
.hero-btn-primary {
  background: linear-gradient(180deg, #c7a265, #a88447);
  color: #fff;
}
.hero-btn-primary:hover { filter: brightness(1.08); }
.hero-btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.25); }

/* ========================================================
   CATEGORY CARDS
   ======================================================== */
.categories {
  padding: 80px 24px;
  background: #f6efe0;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat-card a {
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid #eadfc4;
}
.cat-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.cat-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  color: #b39355;
  display: grid; place-items: center;
}
.cat-icon svg { width: 44px; height: 44px; }
.cat-name {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: #1f2f4a;
  font-weight: 500;
  margin-bottom: 6px;
}
.cat-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

/* ========================================================
   RANKING
   ======================================================== */
.ranking {
  padding: 80px 24px;
  background: #fff;
}
.ranking-lead {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: -24px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rank-card {
  display: flex;
  background: #fff;
  border: 1px solid #e5dccb;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.rank-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.rank-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 72px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 20px 0;
}
.rank-badge span {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  line-height: 1;
}
.rank-1 { background: linear-gradient(180deg, #d4a54a, #b8922f); }
.rank-2 { background: linear-gradient(180deg, #a8a8a8, #8a8a8a); }
.rank-3 { background: linear-gradient(180deg, #c08850, #a07040); }
.rank-4 { background: linear-gradient(180deg, #6b7b94, #536178); }
.rank-body {
  flex: 1;
  padding: 24px 28px;
}
.rank-name {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  color: #1f2f4a;
  font-weight: 500;
  margin-bottom: 10px;
}
.rank-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.rank-tag {
  display: inline-block;
  background: #f3ecde;
  color: #7a6840;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.rank-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 14px;
}
.rank-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.rank-features li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  color: #4a4a4a;
}
.rank-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 10px; height: 6px;
  border-left: 2px solid #b39355;
  border-bottom: 2px solid #b39355;
  transform: rotate(-45deg);
}
.rank-cta {
  display: flex;
  align-items: center;
}
.rank-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #c7a265, #a88447);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 4px;
  letter-spacing: .04em;
  transition: filter .2s;
}
.rank-btn:hover { filter: brightness(1.08); }

/* ========================================================
   CATEGORY LINKS IN COLUMN SECTION
   ======================================================== */
.cat-links {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(179,147,85,.2);
}
.cat-links-title {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.cat-links ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cat-links a {
  display: inline-block;
  font-size: 12px;
  color: #1f2f4a;
  background: #fff;
  border: 1px solid #e5dccb;
  padding: 6px 14px;
  border-radius: 999px;
  transition: all .2s;
}
.cat-links a:hover {
  background: #1f2f4a;
  color: #fff;
  border-color: #1f2f4a;
}

/* ========================================================
   BOTTOM CTA (redesigned)
   ======================================================== */
.bcta-sub {
  font-size: 14px;
  color: #c9d0de;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.8;
}
.bcta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.bcta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #c7a265, #a88447);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 4px;
  transition: filter .2s;
}
.bcta-btn-primary:hover { filter: brightness(1.08); }
.bcta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.4);
  transition: background .2s;
}
.bcta-btn-secondary:hover { background: rgba(255,255,255,.1); }

.footer-links-extra {
  margin-top: 16px;
}
.footer-links-extra li { margin-bottom: 6px; }
.footer-links-extra a {
  font-size: 11.5px;
  color: #a8b3c6;
  transition: color .2s;
}
.footer-links-extra a:hover { color: #fff; }

/* ========================================================
   RESPONSIVE ADDITIONS
   ======================================================== */
@media (max-width: 780px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .rank-card { flex-direction: column; }
  .rank-badge {
    flex-direction: row;
    min-width: auto;
    padding: 12px 20px;
    gap: 6px;
  }
  .rank-badge span { font-size: 22px; }
  .rank-body { padding: 18px 16px; }
  .rank-name { font-size: 17px; }
  .rank-features { flex-direction: column; gap: 6px; }
  .hero-btns { flex-direction: column; }
  .hero-btn { width: 100%; }
  .bcta-btns { flex-direction: column; align-items: center; }
  .bcta-btn-primary, .bcta-btn-secondary { width: 100%; max-width: 320px; }
  .categories { padding: 50px 18px; }
  .ranking { padding: 50px 18px; }
}
