/* ─── Palette ───────────────────────────────────────────
   Navy   #000B26
   Blue   #52AAFF
   Choc   #402924
   Camel  #CBE290
─────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #000B26;
  --blue:    #52AAFF;
  --choc:    #402924;
  --camel:   #CBE290;
  --page-bg: #F0EFF6;
  --white:   #FFFFFF;
  --text:    #1A1F30;
  --sub:     #4A4F62;
  --muted:   #8A8E9B;
  --border:  #DCDAE6;
  --tint:    #E8E6F2;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--page-bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--blue); }
strong { font-weight: 700; }

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--blue);
}

.header-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* ─── LOGO ───────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.logo:hover { text-decoration: none; opacity: .88; }

.logo-icon {
  flex-shrink: 0;
  height: 64px;
  width: auto;
  display: block;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.logo-main {
  font-size: 26px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-sub-line {
  font-size: 26px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.1;
}

/* ─── PAGE CONTAINER ─────────────────────────────────── */
.page-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 20px 60px;
}

/* ─── AUTHOR BLOCK (top) ─────────────────────────────── */
.author-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  padding: 8px 24px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.author-photo {
  width: 80px;
  height: 80px;
  background: var(--tint);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  overflow: hidden;
}

.author-info-name {
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 3px;
}

.author-info-role {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.author-info-desc {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.5;
  margin-bottom: 6px;
}

.author-info-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.author-info-meta span { display: flex; align-items: center; gap: 4px; }

/* ─── HERO IMAGE ─────────────────────────────────────── */
.hero-image {
  width: 100%;
  height: 260px;
  background: var(--navy);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-image-inner {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-image-title {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-image-title em { font-style: normal; color: var(--blue); }

.hero-image-sub {
  font-size: 14px;
  color: var(--muted);
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(124,167,235,.04) 40px,
    rgba(124,167,235,.04) 80px
  );
}

.hero-image-suits {
  font-size: 80px;
  color: rgba(124,167,235,.08);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}

.hero-image-suits-right {
  font-size: 80px;
  color: rgba(124,167,235,.08);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}

/* ─── PAGE TITLE ─────────────────────────────────────── */
.page-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* ─── ARTICLE TEXT ───────────────────────────────────── */
.art-p {
  font-size: 15px;
  color: var(--sub);
  margin-bottom: 16px;
  line-height: 1.75;
}

.art-p strong { color: var(--text); }

.section-h2 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  margin: 40px 0 12px;
}

.section-h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 26px 0 10px;
}

/* ─── CATEGORY CARDS ─────────────────────────────────── */
.cat-cards { margin: 24px 0 36px; }

.cat-card {
  display: grid;
  grid-template-columns: 155px 1fr 210px auto;
  border: 1px solid var(--border);
  margin-bottom: 10px;
  background: var(--white);
}

@media (max-width: 580px) {
  .cat-card { grid-template-columns: 110px 1fr; }
  .cat-cta-wrap { display: none; }
}

.cat-label {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.cat-label-1 { background: #FFF8DC; }
.cat-label-2 { background: #E3F0FF; }
.cat-label-3 { background: #E5F7EC; }
.cat-label-4 { background: #FDE8E8; }
.cat-label-5 { background: #EDE8FF; }
.cat-label-6 { background: #E0F7F4; }

.cat-label-text { font-size: 12px; font-weight: 900; color: var(--navy); line-height: 1.3; }
.cat-icon { font-size: 26px; }

.cat-body {
  background: var(--navy);
  padding: 18px 22px;
  display: flex;
  align-items: center;
}

.cat-body-name { font-size: 13.5px; font-weight: 900; color: var(--white); line-height: 1.3; }

.cat-checks {
  list-style: none;
  background: var(--navy);
  padding: 18px 0 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-checks li {
  font-size: 12.5px;
  color: #b8c8e0;
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cat-checks li::before { content: '✓'; color: var(--camel); font-weight: 900; flex-shrink: 0; }

.cat-cta-wrap { background: var(--navy); padding: 0 18px; display: flex; align-items: center; }

.btn-cta {
  display: inline-block;
  background: var(--camel);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  padding: 11px 20px;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.btn-cta:hover { opacity: 0.85; text-decoration: none; color: var(--navy); }

/* ─── TABLES ─────────────────────────────────────────── */
.t-wrap { overflow-x: auto; border: 1px solid var(--border); margin: 18px 0 30px; }

table { width: 100%; border-collapse: collapse; font-size: 13.5px; }

table thead tr { background: var(--navy); }

table thead th {
  padding: 11px 14px;
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: left;
  white-space: nowrap;
}

table tbody tr { border-bottom: 1px solid var(--border); background: var(--white); }
table tbody tr:nth-child(even) { background: #F7F6FC; }

table tbody td { padding: 10px 14px; color: var(--sub); vertical-align: middle; }

.td-rank { font-weight: 700; color: var(--text); }
.td-name { color: var(--blue); font-weight: 700; }
.td-yes  { color: #2a8c4a; font-weight: 700; }
.td-no   { color: #c0392b; font-weight: 700; }
.td-bold { font-weight: 700; color: var(--text); }

/* ─── QUICK FACTS ────────────────────────────────────── */
.quick-facts {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  padding: 22px 26px;
  margin: 26px 0;
}

.quick-facts h3 { font-size: 1.05rem; font-weight: 900; color: var(--text); margin-bottom: 14px; }

.qf-list { list-style: none; }

.qf-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.55;
}

.qf-list li:last-child { border-bottom: none; }

.qf-icon {
  width: 21px;
  height: 21px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.qf-list strong { color: var(--text); }

/* ─── PROS CONS ──────────────────────────────────────── */
.pros-cons-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 22px 26px;
  margin: 22px 0;
}

.pros-cons-wrap h3 { font-size: 1.05rem; font-weight: 900; margin-bottom: 18px; color: var(--text); }

.pros-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

@media (max-width: 520px) { .pros-cols { grid-template-columns: 1fr; } }

.pros-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 10px;
}

.title-pros { color: #2a8c4a; }
.title-cons { color: #c0392b; }

.pros-list { list-style: none; }

.pros-list li {
  font-size: 13.5px;
  color: var(--sub);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}

.pros-list li:last-child { border-bottom: none; }
.pros-list li::before { content: '•'; color: var(--blue); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* ─── NOTICE BOXES ───────────────────────────────────── */
.notice {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--sub);
  margin: 18px 0;
  line-height: 1.7;
}

.notice.warn  { border-left-color: #e6a817; background: #fffdf5; }
.notice.green { border-left-color: #2a8c4a; background: #f5fdf7; }

.notice-title { font-weight: 900; font-size: 13px; color: var(--text); margin-bottom: 5px; }

/* ─── BLOCKQUOTE ─────────────────────────────────────── */
.art-quote {
  border-left: 4px solid var(--blue);
  padding: 14px 20px;
  background: var(--white);
  margin: 22px 0;
  font-size: 14.5px;
  font-style: italic;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.6;
}

/* ─── ACCORDION ──────────────────────────────────────── */
.accordion { margin: 18px 0; }

.acc-item {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 4px;
}

.acc-head {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.acc-head:hover { background: var(--tint); }

.acc-arrow { font-size: 11px; color: var(--muted); transition: transform 0.2s; flex-shrink: 0; }
.acc-item.open .acc-arrow { transform: rotate(180deg); }

.acc-body {
  display: none;
  padding: 0 18px 15px;
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

.acc-item.open .acc-body { display: block; }
.acc-body p { margin-top: 12px; }

/* ─── RATING BARS ────────────────────────────────────── */
.rating-rows { margin: 14px 0 26px; }

.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.rating-row:last-child { border-bottom: none; }

.r-label { width: 150px; flex-shrink: 0; color: var(--sub); }
.r-bar { flex: 1; height: 7px; background: var(--tint); }
.r-fill { height: 100%; background: var(--blue); }
.r-val { width: 36px; text-align: right; font-weight: 700; color: var(--navy); }

/* ─── PAYMENT ────────────────────────────────────────── */
.pay-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }

.pay-chip {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 13px;
  font-size: 13px;
  color: var(--text);
}

/* ─── ARTICLE IMAGE ROW ─────────────────────────────── */
.art-with-img {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.art-with-img.img-right {
  grid-template-columns: 1fr 180px;
}

.art-with-img.img-right .art-img { order: 2; }
.art-with-img.img-right .art-p   { order: 1; }

.art-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--navy);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  flex-shrink: 0;
}

.art-img-icon { font-size: 28px; color: var(--blue); opacity: 0.5; }

@media (max-width: 600px) {
  .art-with-img,
  .art-with-img.img-right { grid-template-columns: 1fr; }
  .art-with-img.img-right .art-img,
  .art-with-img.img-right .art-p { order: unset; }
  .art-img { aspect-ratio: 16 / 6; }
}

/* ─── INLINE BANNER ─────────────────────────────────── */
.hero-banner {
  width: 100%;
  height: 180px;
  background: var(--navy);
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(124,167,235,.04) 40px,
    rgba(124,167,235,.04) 80px
  );
}

.hero-banner .hero-image-suits       { font-size: 64px; }
.hero-banner .hero-image-suits-right { font-size: 64px; }
.hero-banner .hero-image-inner       { z-index: 2; position: relative; text-align: center; }
.hero-banner .hero-image-title       { font-size: clamp(1.1rem, 3vw, 1.7rem); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.hero-banner .hero-image-title em    { font-style: normal; color: var(--blue); }
.hero-banner .hero-image-sub         { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.hero-banner .btn-cta                { display: inline-block; }

/* ─── TRUST SECTION ──────────────────────────────────── */
.trust-section {
  background: var(--tint);
  border: 1px solid var(--border);
  padding: 30px 26px;
  margin: 36px 0;
}

.trust-section .section-h2 { margin-top: 0; }

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  margin-top: 40px;
}

.footer-logo-only {
  padding: 28px 20px;
  display: flex;
  justify-content: center;
}

.footer-logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-logo-link:hover { text-decoration: none; }

.footer-emblem {
  width: 42px;
  height: 42px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  flex-shrink: 0;
  position: relative;
}

.footer-emblem::after {
  content: '✦';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 16px;
  height: 16px;
  background: var(--camel);
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  line-height: 16px;
  text-align: center;
}

.footer-logo-txt { font-size: 15px; font-weight: 900; color: var(--white); line-height: 1.2; }
.footer-logo-txt span { display: block; font-size: 10px; font-weight: 400; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }

/* ─── MOBILE: TABLET (≤768px) ────────────────────────── */
@media (max-width: 768px) {
  .page-container { padding: 24px 16px 48px; }

  .hero-image { height: 200px; }
  .hero-image-suits,
  .hero-image-suits-right { font-size: 56px; }

  .author-block { grid-template-columns: 80px 1fr; gap: 14px; }
  .author-photo  { width: 80px; height: 80px; }

  .cat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { display: flex; flex-direction: column; margin-bottom: 0; }
  .cat-label { padding: 16px 12px; min-height: 80px; }
  .cat-body { flex: 1; flex-direction: column; align-items: flex-start; padding: 14px 14px; gap: 8px; }
  .cat-body-name { font-size: 12.5px; min-width: unset; width: 100%; color: var(--blue); }
  .cat-checks { width: 100%; }
  .cat-cta-wrap { display: flex; padding: 10px 12px; justify-content: center; }
  .btn-cta { width: 100%; text-align: center; padding: 11px 8px; font-size: 13px; }

  .pros-cols { grid-template-columns: 1fr; gap: 16px; }

  .t-wrap table { font-size: 12.5px; }
  table thead th { padding: 9px 11px; font-size: 11px; }
  table tbody td { padding: 9px 11px; }

  .trust-section { padding: 22px 20px; }
}

/* ─── MOBILE: PHONE (≤480px) ─────────────────────────── */
@media (max-width: 480px) {
  .header-inner { padding: 6px 14px; }
  .logo-icon { height: 48px; }

  .page-container { padding: 16px 12px 36px; }

  .hero-image { height: 150px; }
  .hero-image-suits,
  .hero-image-suits-right { display: none; }
  .hero-image-title { font-size: 1.35rem; margin-bottom: 6px; }
  .hero-image-sub { font-size: 12px; }

  .author-block { grid-template-columns: 64px 1fr; gap: 12px; padding: 8px 14px; }
  .author-photo  { width: 64px; height: 64px; }
  .author-info-name { font-size: 14px; }
  .author-info-desc { font-size: 12px; }
  .author-info-meta { flex-direction: column; gap: 3px; }

  .page-title { font-size: 1.35rem; }
  .section-h2  { font-size: 1.1rem; margin: 28px 0 10px; }
  .section-h3  { font-size: 1rem; margin: 20px 0 8px; }
  .art-p       { font-size: 14px; }

  .cat-cards { margin: 16px 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { display: flex; flex-direction: column; border: 1px solid var(--border); margin-bottom: 0; }
  .cat-label { padding: 16px 10px; min-height: 80px; }
  .cat-icon { font-size: 22px; }
  .cat-label-text { font-size: 11px; }
  .cat-body { flex: 1; flex-direction: column; align-items: flex-start; padding: 12px 10px; gap: 6px; }
  .cat-body-name { font-size: 12px; min-width: unset; width: 100%; color: var(--blue); }
  .cat-checks { width: 100%; }
  .cat-checks li { font-size: 11px; }
  .cat-cta-wrap { display: flex; padding: 10px; justify-content: center; }
  .btn-cta { width: 100%; text-align: center; padding: 10px 6px; font-size: 12.5px; }

  .quick-facts { padding: 16px 14px; }
  .qf-list li { font-size: 12.5px; }

  .pros-cons-wrap { padding: 16px 14px; }
  .pros-cols { grid-template-columns: 1fr; }
  .pros-list li { font-size: 12.5px; }

  .t-wrap { font-size: 12px; }
  table thead th { padding: 8px 9px; font-size: 10px; white-space: normal; }
  table tbody td { padding: 8px 9px; font-size: 12px; }

  .art-quote { padding: 12px 14px; font-size: 13px; }

  .notice { padding: 11px 14px; font-size: 13px; }

  .pay-wrap { gap: 6px; margin: 10px 0; }
  .pay-chip { font-size: 12px; padding: 5px 10px; }

  .trust-section { padding: 18px 14px; margin: 24px 0; }

  .acc-head { padding: 12px 14px; font-size: 13px; }
  .acc-body { padding: 0 14px 12px; font-size: 13px; }

  .footer-logo-only { padding: 20px 16px; }
}
