:root {
  --ink: #111113;
  --ink-soft: #242428;
  --paper: #f5f5f3;
  --surface: #ffffff;
  --muted: #626269;
  --line: #dedee2;
  --line-dark: #c7c7cd;
  --blue: #1769e0;
  --blue-dark: #0d4faa;
  --whatsapp: #20bd5f;
  --whatsapp-dark: #138f45;
  --amber: #f2b84b;
  --white: #ffffff;
  --radius: 7px;
  --shadow: 0 18px 55px rgba(17, 17, 19, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink-soft);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-dark);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  font-weight: 730;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  font-size: 64px;
  line-height: 1.04;
}

h2 {
  font-size: 42px;
  line-height: 1.12;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
}

p {
  margin: 0 0 18px;
}

ul,
ol {
  padding-left: 1.2rem;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid rgba(23, 105, 224, 0.32);
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: 92px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow,
.article-container {
  width: min(820px, calc(100% - 48px));
}

.skip-link {
  position: fixed;
  top: -90px;
  left: 16px;
  z-index: 1200;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1300;
  width: 0;
  height: 3px;
  background: var(--whatsapp);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(222, 222, 226, 0.86);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  white-space: nowrap;
}

.brand:hover,
.footer-brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav > a:not(.btn) {
  color: #343438;
}

.primary-nav > a:not(.btn):hover {
  color: var(--blue);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-arrow {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.btn,
.card-whatsapp {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.card-whatsapp:hover {
  color: var(--white);
  background: #2b2b2f;
  border-color: #2b2b2f;
  transform: translateY(-1px);
}

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 13px;
}

.btn-large {
  min-height: 54px;
  padding: 15px 22px;
  font-size: 16px;
}

.btn-whatsapp,
.card-whatsapp {
  color: var(--white);
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  border-radius: 999px;
  box-shadow: 0 9px 22px rgba(32, 189, 95, 0.2);
}

.btn-whatsapp:hover,
.card-whatsapp:hover {
  color: var(--white);
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  box-shadow: 0 11px 28px rgba(19, 143, 69, 0.25);
}

.btn-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line-dark);
  box-shadow: none;
}

.btn-secondary:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--ink);
}

.btn-ghost-light,
.btn-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.btn-ghost-light:hover,
.btn-light:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.btn:hover .icon-arrow,
.text-link:hover .icon-arrow,
.card-link-label:hover .icon-arrow,
.contact-option:hover .icon-arrow {
  transform: translateX(3px);
}

.btn-inline {
  width: auto;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 19px;
  color: var(--white);
  background: var(--whatsapp);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(17, 17, 19, 0.24), 0 6px 16px rgba(32, 189, 95, 0.28);
  font-size: 14px;
  font-weight: 750;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float::before {
  position: absolute;
  inset: -1px;
  content: "";
  border: 2px solid rgba(32, 189, 95, 0.5);
  border-radius: inherit;
  animation: whatsapp-ring 3.2s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float .icon {
  width: 22px;
  height: 22px;
}

.whatsapp-float:hover {
  color: var(--white);
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(17, 17, 19, 0.28), 0 8px 20px rgba(19, 143, 69, 0.32);
}

.quiet-stats {
  position: fixed;
  top: 84px;
  right: 14px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 7px;
  color: rgba(17, 17, 19, 0.48);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(222, 222, 226, 0.72);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.quiet-stats[hidden] {
  display: none;
}

.quiet-stats span {
  min-width: 1.65em;
  text-align: right;
}

@keyframes whatsapp-ring {
  0%, 68% { opacity: 0; transform: scale(1); }
  75% { opacity: 0.65; }
  100% { opacity: 0; transform: scale(1.16); }
}

.hero {
  position: relative;
  min-height: 640px;
  height: calc(100svh - 132px);
  max-height: 790px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #191b1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 58px 0 58px 0;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #1769e0 0 34%, #20bd5f 34% 68%, #f4bd4b 68% 100%);
}

.hero-background,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.015);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.94) 0%, rgba(8, 10, 13, 0.82) 34%, rgba(8, 10, 13, 0.38) 61%, rgba(8, 10, 13, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 10, 13, 0.36) 0%, rgba(8, 10, 13, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: 76px 0 82px;
}

.hero-copy {
  max-width: 730px;
  padding-left: 28px;
  border-left: 4px solid #f4bd4b;
}

.hero h1 {
  max-width: 720px;
  color: var(--white);
  font-size: 66px;
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  color: #ffffff;
}

.hero-copy > p {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.52;
}

.hero .breadcrumb {
  display: none;
}

.hero .eyebrow {
  color: #93e9b6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 620;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-assurance .icon {
  width: 15px;
  height: 15px;
  color: #73e5a1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.breadcrumb {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb a {
  color: inherit;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  color: #a2a2a8;
  content: "/";
}

.trust-bar {
  min-height: 60px;
  display: flex;
  align-items: center;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-bar p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.trust-bar strong {
  color: var(--ink);
}

.journal-finder-section {
  position: relative;
  padding: 82px 0;
  color: var(--white);
  background: #111113;
  border-bottom: 1px solid #2d2d31;
}

.journal-finder-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, #f2b84b 0 34%, #20bd5f 34% 68%, #1769e0 68% 100%);
}

.journal-finder-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 1080px;
  gap: 24px;
  align-items: start;
}

.journal-finder-head {
  padding: 28px 30px;
  background: #18181c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 7px solid #f2b84b;
  border-radius: var(--radius);
}

.journal-finder-head h2 {
  max-width: 920px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 48px;
  line-height: 1.06;
}

.journal-finder-head p {
  max-width: 850px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.journal-finder-head .eyebrow {
  color: #f2b84b;
}

.journal-finder-panel {
  padding: 28px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.journal-finder-form {
  display: grid;
  gap: 14px;
}

.journal-query-field textarea {
  width: 100%;
  min-height: 182px;
  resize: vertical;
  padding: 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  font-size: 15px;
  line-height: 1.55;
}

.journal-query-field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(23, 105, 224, 0.13);
}

.journal-filter-row,
.journal-finder-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.48fr);
  gap: 12px;
  align-items: end;
}

.journal-area-field span {
  color: var(--muted);
  font-weight: 600;
}

.journal-finder-controls {
  grid-template-columns: minmax(0, 1fr) 156px;
}

.quartile-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.quartile-toggle button {
  min-width: 48px;
  min-height: 46px;
  padding: 9px 12px;
  color: var(--ink);
  background: #f5f7f9;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}

.quartile-toggle button:hover,
.quartile-toggle button.is-active {
  color: var(--white);
  background: #1769e0;
  border-color: #1769e0;
}

.journal-sort-field,
.journal-area-field {
  gap: 6px;
}

.journal-finder-submit {
  min-height: 46px;
  justify-content: center;
  color: var(--ink);
  background: #f2b84b;
  border-color: #f2b84b;
  box-shadow: 0 12px 28px rgba(242, 184, 75, 0.28);
}

.journal-finder-submit:hover {
  color: var(--ink);
  background: #ffcb5c;
  border-color: #ffcb5c;
}

.journal-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.journal-keywords[hidden] {
  display: none;
}

.journal-keywords span {
  padding: 6px 9px;
  color: #1b4f36;
  background: #e8f8ef;
  border: 1px solid #bee8cf;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
}

.journal-finder-status {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.journal-results {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.journal-match-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-left: 5px solid #1769e0;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(17, 17, 19, 0.06);
}

.journal-match-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.journal-match-rank {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.journal-quartile-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

.journal-match-card h3 {
  margin: 0;
  font-size: 21px;
}

.journal-warning {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  color: #8d1515;
  background: #fff0f0;
  border: 1px solid #efb4b4;
  border-left: 4px solid #dc2626;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.35;
}

.journal-warning strong {
  color: #b91c1c;
  font-size: 12px;
  text-transform: uppercase;
}

.journal-warning span {
  color: #8d1515;
  font-weight: 680;
}

.journal-match-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.journal-score {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.journal-score span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.journal-score strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.journal-score i {
  position: relative;
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  background: #eef0f2;
  border-radius: 999px;
}

.journal-score b {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
}

.journal-score-opportunity b {
  background: #f2b84b;
}

.journal-score-speed b {
  background: #20bd5f;
}

.journal-match-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.journal-match-meta div {
  padding: 9px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.journal-match-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
}

.journal-match-meta dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.journal-match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  font-weight: 720;
}

.journal-empty-state {
  padding: 18px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
}

.journal-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.journal-pagination[hidden] {
  display: none;
}

.journal-pagination button {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}

.journal-pagination button:not(:disabled):hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.journal-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.journal-pagination span {
  min-width: 58px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  text-align: center;
}

.section {
  padding: 88px 0;
}

.section:nth-of-type(even) {
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.split-grid,
.optin-inner,
.cta-inner,
.content-grid,
.article-layout,
.contact-privacy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 76px;
  align-items: start;
}

.split-grid h2 {
  max-width: 520px;
}

.prose {
  color: #3c3c42;
}

.prose p,
.prose li {
  font-size: 17px;
}

.prose a {
  font-weight: 680;
  text-decoration: underline;
  text-decoration-color: rgba(23, 105, 224, 0.3);
  text-underline-offset: 3px;
}

.long-form h2,
.article-content h2 {
  margin-top: 48px;
  font-size: 32px;
}

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

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  grid-template-areas:
    "number media"
    "title title"
    "copy copy"
    "actions actions";
  min-height: 410px;
  column-gap: 24px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: var(--line-dark);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-number {
  grid-area: number;
  color: var(--blue);
  font-size: 13px;
  font-weight: 780;
}

.service-card img {
  width: 210px;
  height: 145px;
  grid-area: media;
  object-fit: cover;
  border-radius: 5px;
}

.service-card h3 {
  grid-area: title;
  align-self: end;
  margin: 28px 0 10px;
  font-size: 28px;
}

.service-card > p {
  grid-area: copy;
  color: var(--muted);
}

.card-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.text-link,
.card-link-label,
.contact-option-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 740;
}

.text-link:hover,
.card-link-label:hover {
  color: var(--blue);
}

.card-whatsapp {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
}

.card-whatsapp .icon {
  width: 16px;
  height: 16px;
}

.process-section {
  background: var(--ink) !important;
  color: rgba(255, 255, 255, 0.72);
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-section .eyebrow {
  color: #75aaf3;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.process-list li > span {
  display: block;
  margin-bottom: 34px;
  color: #72e29d;
  font-size: 13px;
  font-weight: 780;
}

.process-list h3 {
  min-height: 54px;
  font-size: 18px;
}

.process-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.optin {
  padding: 88px 0;
  color: var(--white);
  background: #222226;
}

.optin-inner {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
}

.optin h2,
.optin p,
.optin .eyebrow {
  color: var(--white);
}

.optin-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.optin-form {
  padding: 28px;
  color: var(--ink);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  font-size: 15px;
}

input:focus,
select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(23, 105, 224, 0.13);
}

.form-wide {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 17px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.consent input {
  min-height: auto;
  margin-top: 3px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted) !important;
  font-size: 12px;
}

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

.review-card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-card p {
  margin-bottom: 0;
  color: #3f3f44;
}

.stars {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 0;
}

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

.article-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  border-color: var(--line-dark);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.article-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--paper);
}

.article-card-body {
  min-height: 310px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.article-card-body > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 10px 0 12px;
  font-size: 21px;
}

.article-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.card-link-label {
  margin-top: auto;
}

.page-hero,
.article-header-section {
  position: relative;
  overflow: hidden;
  padding: 68px 0 76px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
}

.page-hero-grid > div {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero-grid > img {
  position: absolute;
  right: -60px;
  bottom: -150px;
  z-index: 1;
  width: 560px;
  max-width: 48%;
  opacity: 0.14;
  filter: grayscale(1);
}

.page-hero p,
.article-header-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.content-grid,
.article-layout {
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 68px;
}

.toc-box {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 11px;
  padding: 18px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.toc-box strong {
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.toc-box a {
  color: var(--muted);
}

.toc-box a:hover {
  color: var(--blue);
}

.highlight-box {
  padding: 22px;
  margin: 32px 0;
  background: #fff9eb;
  border-left: 3px solid var(--amber);
}

.highlight-box strong {
  color: var(--ink);
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

.checklist-contents-section {
  background: var(--paper) !important;
}

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

.checklist-group {
  min-height: 350px;
  padding: 25px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checklist-index {
  display: block;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
}

.checklist-group h3 {
  min-height: 56px;
  margin-bottom: 18px;
  font-size: 22px;
}

.checklist-group ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checklist-group li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.checklist-group li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--whatsapp-dark);
  content: "\2713";
  font-size: 14px;
  font-weight: 800;
}

.checklist-download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.checklist-download-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
}

.checklist-download-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  padding: 72px 0;
  color: var(--white);
  background: var(--blue-dark);
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.cta-inner h2 {
  margin-bottom: 10px;
}

.faq-section {
  background: var(--surface) !important;
}

.faq-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 690;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  font-size: 19px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-answer {
  display: none;
  max-width: 720px;
  padding: 0 48px 18px 0;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.article-header-section h1 {
  max-width: 900px;
  font-size: 56px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 21px 0 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.article-meta span:not(:last-child)::after {
  margin-left: 10px;
  content: "/";
}

.article-hero-img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-content {
  max-width: 820px;
}

.article-content p,
.article-content li {
  font-size: 18px;
  line-height: 1.78;
}

.article-content li + li {
  margin-top: 8px;
}

.inline-cta {
  padding: 28px;
  margin: 38px 0;
  background: #eefaf2;
  border: 1px solid #bee6cb;
  border-radius: var(--radius);
}

.inline-cta h2 {
  margin-top: 0;
  font-size: 28px;
}

.article-contact-item {
  margin-top: 20px !important;
  list-style: none;
}

.contact-hero {
  padding: 72px 0 88px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 76px;
  align-items: center;
}

.contact-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.contact-copy .btn {
  margin-top: 10px;
}

.contact-copy .contact-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-panel {
  padding: 30px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: var(--white);
  font-size: 28px;
}

.contact-panel-label,
.contact-option-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #75aaf3;
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.contact-checklist {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-checklist li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-checklist li > span {
  color: #72e29d;
  font-size: 12px;
  font-weight: 750;
}

.contact-checklist strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.contact-checklist p {
  margin: 3px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.contact-options-section {
  background: var(--surface) !important;
}

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

.contact-option {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-option:hover {
  color: var(--ink);
  border-color: var(--whatsapp);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.contact-option-label {
  color: var(--blue);
}

.contact-option h3 {
  font-size: 24px;
}

.contact-option p {
  color: var(--muted);
}

.contact-option-action {
  margin-top: auto;
  color: var(--whatsapp-dark);
}

.contact-privacy-section {
  background: var(--paper) !important;
}

.contact-privacy {
  align-items: center;
}

.contact-privacy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  padding: 54px 0 20px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink);
}

.site-footer h2 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer .footer-brand {
  margin-bottom: 15px;
  color: var(--white);
}

.site-footer .brand-mark {
  color: var(--ink);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(150px, 0.6fr) minmax(150px, 0.6fr);
  gap: 70px;
}

.footer-intro {
  max-width: 520px;
}

.footer-intro p {
  max-width: 470px;
  font-size: 15px;
}

.footer-intro .btn {
  margin-top: 5px;
  color: var(--white);
}

.footer-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 9px;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Colorful editorial refresh */
.service-card,
.article-card,
.checklist-group,
.contact-option,
.optin-form {
  border: 0;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  box-shadow: inset 0 0 0 1px var(--line);
}

.service-card:nth-child(4n + 1) {
  background: #f1f6ff;
}

.service-card:nth-child(4n + 2) {
  background: #edf9f7;
}

.service-card:nth-child(4n + 3) {
  background: #fff7e8;
}

.service-card:nth-child(4n + 4) {
  background: #f5effc;
}

.article-card:nth-child(6n + 1) .article-card-body {
  background: #fbfdff;
}

.article-card:nth-child(6n + 2) .article-card-body {
  background: #fafffc;
}

.article-card:nth-child(6n + 3) .article-card-body {
  background: #fffdf9;
}

.article-card:nth-child(6n + 4) .article-card-body {
  background: #fbf9ff;
}

.checklist-group:nth-child(3n + 1) {
  background: #f1f6ff;
}

.checklist-group:nth-child(3n + 2) {
  background: #fff8e9;
}

.checklist-group:nth-child(3n + 3) {
  background: #edf9f4;
}

.optin {
  position: relative;
  overflow: hidden;
  border-top: 8px solid #f0b63f;
}

.optin-inner {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: 52px;
}

.report-offer {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.report-preview-stack {
  position: relative;
  width: 190px;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.28));
  transform: rotate(-2deg);
}

.report-preview-stack img {
  width: 100%;
  aspect-ratio: 0.707 / 1;
  object-fit: cover;
  object-position: top;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.report-preview-stack > span {
  position: absolute;
  right: -14px;
  bottom: 24px;
  padding: 8px 11px;
  color: #171719;
  background: #f5bd48;
  font-size: 11px;
  font-weight: 800;
  transform: rotate(2deg);
}

.report-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.report-mini-stats span {
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 2px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  line-height: 1.35;
}

.report-mini-stats strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 17px;
}

.report-form {
  border-top: 7px solid #54c98a;
}

.report-form .btn {
  background: #0c6572;
  border-color: #0c6572;
}

.report-form .btn:hover {
  background: #084e58;
  border-color: #084e58;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #157a48 !important;
  font-size: 12px;
  font-weight: 700;
}

.journal-experience-section {
  padding: 96px 0 84px;
  overflow: hidden;
  background: #fff4e8;
  border-top: 1px solid #f0d7ba;
  border-bottom: 1px solid #f0d7ba;
}

.journal-section-head {
  max-width: 820px;
}

.journal-section-head > div:first-child {
  max-width: 790px;
}

.journal-section-head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.journal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 48px 0 26px;
}

.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.journal-filters button {
  padding: 8px 0;
  color: #766654;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
}

.journal-filters button:hover,
.journal-filters button.is-active {
  color: #171719;
  border-bottom-color: #e06643;
}

.journal-controls {
  display: flex;
  gap: 8px;
}

.journal-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #171719;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.journal-arrow:hover {
  background: #e06643;
}

.journal-prev .icon {
  transform: rotate(180deg);
}

.journal-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 266px;
  gap: 24px;
  padding: 6px 2px 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: #e06643 transparent;
  scrollbar-width: thin;
}

.journal-item {
  min-width: 0;
  scroll-snap-align: start;
}

.journal-item[hidden] {
  display: none;
}

.journal-stage {
  position: relative;
  height: 386px;
  display: grid;
  place-items: center;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.journal-field-engineering .journal-stage {
  background: #cfe1ff;
}

.journal-field-medicine .journal-stage {
  background: #ffd7d0;
}

.journal-field-social .journal-stage {
  background: #e5d8ff;
}

.journal-cover {
  width: 196px;
  height: 282px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 22px 34px rgba(35, 26, 18, 0.22);
  transform: translateY(-8px) rotate(-1.5deg);
}

.journal-quartile {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  min-width: 48px;
  padding: 8px 10px;
  color: #ffffff;
  background: #171719;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.journal-metric {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 94px;
  height: 94px;
  object-fit: cover;
  object-position: top left;
  box-shadow: 0 12px 24px rgba(35, 26, 18, 0.2);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.journal-caption {
  padding: 18px 4px 0;
}

.journal-caption > span {
  color: #a14a33;
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.journal-caption h3 {
  margin-top: 7px;
  font-size: 19px;
}

.journal-disclaimer {
  max-width: 900px;
  margin: 22px 0 0;
  color: #806f5f;
  font-size: 11px;
  line-height: 1.55;
}

.journal-conversion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #d9b991;
}

.journal-conversion-copy {
  max-width: 760px;
}

.journal-conversion h3 {
  margin: 0 0 7px;
  color: #171719;
  font-size: 28px;
  line-height: 1.18;
}

.journal-conversion p {
  margin: 0;
  color: #806f5f;
  font-size: 16px;
  line-height: 1.55;
}

.review-section {
  background: #fffaf0 !important;
}

.review-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  align-items: stretch;
}

.review-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-quote {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.review-tone-1 {
  background: #dff5eb;
}

.review-tone-2 {
  background: #e3efff;
}

.review-tone-3 {
  background: #fff0c9;
}

.review-tone-4 {
  background: #ffe4df;
}

.review-tone-5 {
  background: #ede4ff;
}

.review-mark {
  position: absolute;
  top: -26px;
  right: 18px;
  color: rgba(17, 17, 19, 0.08);
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
}

.review-quote .stars {
  position: relative;
  z-index: 1;
  color: #b67500;
}

.review-quote > p {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  color: #2f2f34;
  font-size: 15px;
  line-height: 1.62;
}

.review-featured {
  min-height: 476px;
  padding: 42px;
}

.review-featured > p {
  max-width: 620px;
  font-size: 27px;
  line-height: 1.42;
}

.review-source {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 19, 0.16);
}

.review-id {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #171719;
  font-size: 11px;
  font-weight: 800;
}

.review-source strong,
.review-source small {
  display: block;
}

.review-source strong {
  color: #171719;
  font-size: 13px;
}

.review-source small {
  margin-top: 1px;
  color: #626269;
  font-size: 11px;
}

.review-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #171719;
  font-size: 14px;
  font-weight: 760;
}

.review-wall {
  column-count: 3;
  column-gap: 18px;
}

.review-wall .review-quote {
  width: 100%;
  min-height: 0;
  display: inline-flex;
  margin-bottom: 18px;
  break-inside: avoid;
}

.review-wall .review-featured {
  padding: 34px;
}

.review-wall .review-featured > p {
  font-size: 21px;
}

.report-hero {
  position: relative;
  min-height: 670px;
  padding: 72px 0 88px;
  overflow: hidden;
  background: #e8f5f7;
  border-bottom: 1px solid #bddde2;
}

.report-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  gap: 60px;
  align-items: center;
}

.report-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.report-hero h1 {
  font-size: 64px;
}

.report-hero-copy > p:not(.report-caveat) {
  color: #4f6065;
  font-size: 20px;
}

.report-caveat {
  margin-top: 16px;
  color: #68777b;
  font-size: 12px;
}

.report-hero-visual {
  position: relative;
  min-height: 550px;
}

.report-page {
  position: absolute;
  width: 310px;
  aspect-ratio: 0.707 / 1;
  object-fit: cover;
  object-position: top;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  box-shadow: 0 28px 58px rgba(7, 57, 65, 0.2);
}

.report-page-cover {
  top: 16px;
  left: 10px;
  z-index: 2;
  transform: rotate(-4deg);
}

.report-page-insights {
  right: 0;
  bottom: 4px;
  z-index: 1;
  transform: rotate(6deg);
}

.report-stat-band {
  padding: 30px 0;
  color: #ffffff;
  background: #0b6875;
}

.report-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.report-stat-grid div {
  padding-left: 18px;
  border-left: 3px solid #f4bd4b;
}

.report-stat-grid strong,
.report-stat-grid span {
  display: block;
}

.report-stat-grid strong {
  font-size: 30px;
}

.report-stat-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.report-contents-section {
  background: #fffaf0 !important;
}

/* Chromatic section system: bright, varied, and calm enough for long-form reading. */
.hero {
  background: #0b6a86;
  border-bottom-color: rgba(30, 105, 142, 0.24);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(10, 75, 137, 0.96) 0%, rgba(15, 104, 137, 0.86) 36%, rgba(18, 132, 134, 0.48) 66%, rgba(31, 154, 130, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 84, 123, 0.42) 0%, rgba(12, 84, 123, 0) 52%);
}

.trust-bar {
  background: linear-gradient(100deg, #fff1b8 0%, #efffcf 48%, #d9f8ee 100%);
  border-bottom-color: #c9e6d7;
}

.journal-finder-section {
  overflow: hidden;
  color: var(--ink-soft);
  background: linear-gradient(132deg, #dff5ff 0%, #eef0ff 46%, #fff0e2 100%);
  border-bottom: 1px solid #d9ddeb;
}

.journal-finder-section::before {
  height: 8px;
  background: linear-gradient(90deg, #1269e5 0 31%, #13a38d 31% 62%, #ff765f 62% 82%, #f7bf3c 82% 100%);
}

.journal-finder-section::after {
  position: absolute;
  top: 46px;
  right: -70px;
  width: 360px;
  height: 190px;
  content: "";
  background: repeating-linear-gradient(135deg, rgba(18, 105, 229, 0.09) 0 2px, transparent 2px 17px);
  transform: rotate(-7deg);
  pointer-events: none;
}

.journal-finder-layout {
  z-index: 1;
  gap: 30px;
}

.journal-finder-head {
  position: relative;
  max-width: 940px;
  padding: 6px 0 8px 28px;
  background: transparent;
  border: 0;
  border-left: 6px solid #ff765f;
  border-radius: 0;
}

.journal-finder-kicker {
  display: inline-flex;
  align-items: stretch;
  margin-bottom: 18px;
  border: 1px solid rgba(16, 73, 111, 0.16);
  box-shadow: 0 8px 20px rgba(41, 74, 112, 0.08);
}

.journal-finder-kicker span,
.journal-finder-kicker strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

.journal-finder-kicker span {
  color: #ffffff;
  background: #1269e5;
}

.journal-finder-kicker strong {
  color: #073e4c;
  background: #baf3e5;
}

.journal-finder-head h2 {
  max-width: 930px;
  margin-bottom: 17px;
  color: #102f50;
  font-size: 54px;
  line-height: 1.03;
}

.journal-finder-head h2 span {
  color: #1269e5;
  background: linear-gradient(90deg, #1269e5 0%, #087d91 48%, #d84f4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journal-finder-head p {
  max-width: 830px;
  color: #405a6e;
  font-size: 18px;
}

.journal-finder-head p strong {
  color: #d4433f;
}

.journal-finder-panel {
  border: 1px solid rgba(22, 76, 115, 0.15);
  border-top: 7px solid transparent;
  border-image: linear-gradient(90deg, #1269e5, #15aa91, #f5bd48, #f06b5a) 1;
  box-shadow: 0 28px 70px rgba(36, 77, 117, 0.16);
}

.journal-finder-submit {
  color: #ffffff;
  background: linear-gradient(100deg, #e84f52 0%, #f47b49 100%);
  border-color: #e84f52;
  box-shadow: 0 14px 30px rgba(224, 73, 73, 0.27);
}

.journal-finder-submit:hover {
  color: #ffffff;
  background: linear-gradient(100deg, #c93842 0%, #df5c36 100%);
  border-color: #c93842;
}

.split-section {
  background: linear-gradient(118deg, #f1edff 0%, #f8f6ff 46%, #eef9ff 100%) !important;
}

#layanan {
  background: linear-gradient(125deg, #e8fbf3 0%, #f6fffb 52%, #e9f3ff 100%) !important;
}

.journal-experience-section {
  background: linear-gradient(122deg, #fff0e8 0%, #fff8e8 48%, #ffe9ed 100%);
  border-color: #efd4cb;
}

.process-section {
  color: #3f5068;
  background: linear-gradient(124deg, #e7e2ff 0%, #e6f5ff 50%, #ddf8ee 100%) !important;
}

.process-section h2,
.process-section h3 {
  color: #15385a;
}

.process-section .eyebrow {
  color: #6a3fc4;
}

.process-list li {
  border-top-color: rgba(29, 76, 119, 0.28);
}

.process-list li > span {
  color: #c9434c;
}

.optin {
  color: #253c53;
  background: linear-gradient(120deg, #dff7f3 0%, #e4f1ff 48%, #f1eaff 100%);
  border-top-color: #13a38d;
}

.optin h2,
.optin p,
.optin .eyebrow {
  color: #173a58;
}

.optin .eyebrow {
  color: #087d72;
}

.optin-copy p,
.report-mini-stats span {
  color: #52677c;
}

.report-mini-stats span {
  border-top-color: rgba(34, 88, 122, 0.23);
}

.report-mini-stats strong {
  color: #173a58;
}

.report-preview-stack {
  filter: drop-shadow(0 22px 30px rgba(38, 76, 112, 0.22));
}

.review-section {
  background: linear-gradient(126deg, #fff3db 0%, #fff8ec 48%, #ffe8e5 100%) !important;
}

.home-articles-section {
  background: linear-gradient(120deg, #e8f7ff 0%, #f4f5ff 50%, #f2edff 100%) !important;
}

.faq-section {
  background: linear-gradient(125deg, #f1fae8 0%, #fffbea 48%, #fff2df 100%) !important;
}

.cta-band {
  color: #ffffff;
  background: linear-gradient(105deg, #1669d8 0%, #0b8b9c 52%, #12a47f 100%);
}

.site-footer {
  color: #435a6c;
  background: linear-gradient(125deg, #dff6ec 0%, #e5f4ff 50%, #eeeaff 100%);
  border-top: 1px solid #c8dedb;
}

.site-footer h2,
.site-footer .footer-brand {
  color: #173b58;
}

.site-footer a {
  color: #325a75;
}

.site-footer a:hover {
  color: #0c6c85;
}

.site-footer .brand-mark {
  color: #ffffff;
  background: linear-gradient(135deg, #1269e5, #0b9b87);
}

.site-footer .footer-intro .btn {
  color: #ffffff;
}

.footer-bottom {
  border-top-color: rgba(38, 86, 111, 0.18);
}

.report-content-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.report-content-list article {
  min-height: 260px;
  padding: 28px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.report-content-list article:nth-child(1) {
  background: #dfeeff;
}

.report-content-list article:nth-child(2) {
  background: #ffedc8;
}

.report-content-list article:nth-child(3) {
  background: #dff5eb;
}

.report-content-list article > span {
  color: #0b6875;
  font-size: 12px;
  font-weight: 800;
}

.report-content-list h3 {
  margin-top: 34px;
}

.report-content-list p {
  color: #5f5f65;
  font-size: 15px;
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 15px;
  }

  .report-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
    gap: 36px;
  }

  .report-hero h1 {
    font-size: 56px;
  }

  .report-page {
    width: 270px;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  h1,
  .hero h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 36px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.btn) {
    padding: 10px 8px;
  }

  .primary-nav .btn {
    margin-top: 7px;
  }

  .split-grid,
  .optin-inner,
  .cta-inner,
  .content-grid,
  .article-layout,
  .contact-hero-grid,
  .contact-privacy,
  .review-showcase,
  .journal-finder-layout,
  .report-hero-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .journal-finder-controls {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 0.6fr);
  }

  .journal-filter-row {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.62fr);
  }

  .review-featured {
    min-height: 390px;
  }

  .review-wall {
    column-count: 2;
  }

  .report-hero {
    padding-top: 58px;
  }

  .report-hero-copy {
    max-width: 760px;
  }

  .report-hero-visual {
    width: min(100%, 630px);
    min-height: 510px;
    margin: 0 auto;
  }

  .report-content-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-content-list article:last-child {
    grid-column: 1 / -1;
  }

  .contact-panel {
    max-width: 660px;
  }

  .content-grid,
  .article-layout {
    gap: 30px;
  }

  .toc-box {
    position: static;
  }

  .contact-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checklist-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    gap: 36px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow,
  .article-container {
    width: min(100% - 28px, 1180px);
  }

  h1,
  .hero h1,
  .article-header-section h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  h2 {
    font-size: 32px;
  }

  .header-inner {
    min-height: 64px;
  }

  .primary-nav {
    top: 64px;
    right: 14px;
    left: 14px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .section,
  .optin,
  .journal-finder-section,
  .cta-band,
  .contact-hero {
    padding: 58px 0;
  }

  .journal-finder-panel {
    padding: 18px;
  }

  .journal-finder-head {
    padding: 22px;
  }

  .journal-finder-head h2 {
    font-size: 34px;
  }

  .journal-query-field textarea {
    min-height: 176px;
  }

  .journal-filter-row,
  .journal-finder-controls {
    grid-template-columns: 1fr;
  }

  .journal-area-field,
  .journal-sort-field,
  .journal-finder-submit {
    width: 100%;
  }

  .journal-score-grid,
  .journal-match-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-pagination {
    justify-content: center;
  }

  .journal-experience-section {
    padding: 62px 0 54px;
  }

  .journal-section-head p {
    font-size: 16px;
  }

  .journal-toolbar {
    align-items: flex-end;
    margin: 34px 0 20px;
  }

  .journal-filters {
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .journal-filters::-webkit-scrollbar {
    display: none;
  }

  .journal-filters button {
    flex: 0 0 auto;
  }

  .journal-controls {
    display: none;
  }

  .journal-conversion {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .journal-conversion .btn {
    width: 100%;
  }

  .journal-conversion h3 {
    font-size: 24px;
  }

  .journal-conversion p {
    font-size: 15px;
  }

  .journal-rail {
    grid-auto-columns: min(78vw, 246px);
    gap: 16px;
  }

  .journal-stage {
    height: 348px;
  }

  .journal-cover {
    width: 175px;
    height: 252px;
  }

  .journal-metric {
    width: 82px;
    height: 82px;
  }

  .review-stack {
    grid-template-columns: 1fr;
  }

  .review-featured {
    min-height: 0;
    padding: 29px;
  }

  .review-featured > p {
    font-size: 21px;
  }

  .review-wall {
    column-count: 1;
  }

  .report-offer {
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 20px;
  }

  .report-preview-stack {
    width: 138px;
  }

  .report-preview-stack > span {
    right: -8px;
    bottom: 18px;
  }

  .report-mini-stats {
    gap: 8px;
    margin-top: 20px;
  }

  .report-mini-stats strong {
    font-size: 15px;
  }

  .report-hero {
    min-height: 0;
    padding: 48px 0 62px;
  }

  .report-hero h1 {
    font-size: 40px;
  }

  .report-hero-copy > p:not(.report-caveat) {
    font-size: 17px;
  }

  .report-hero-visual {
    min-height: 420px;
  }

  .report-page {
    width: 235px;
  }

  .report-page-cover {
    left: 2px;
  }

  .report-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

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

  .report-content-list article,
  .report-content-list article:last-child {
    min-height: 220px;
    grid-column: auto;
  }

  .hero {
    min-height: 590px;
    height: calc(100svh - 104px);
    max-height: 720px;
    border-radius: 34px 0 34px 0;
  }

  .hero-background {
    object-position: 69% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(10, 75, 137, 0.96) 0%, rgba(15, 104, 137, 0.88) 62%, rgba(18, 132, 134, 0.62) 100%),
      linear-gradient(0deg, rgba(12, 84, 123, 0.48) 0%, rgba(12, 84, 123, 0) 58%);
  }

  .hero-content {
    align-items: flex-end;
    padding: 52px 0;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    border-left-width: 3px;
  }

  .hero h1,
  .hero-copy > p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-copy > p {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .hero-assurance {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    font-size: 11px;
  }

  .trust-bar {
    min-height: 54px;
    overflow: hidden;
  }

  .trust-bar p {
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .trust-bar p::-webkit-scrollbar {
    display: none;
  }

  .service-grid,
  .review-grid,
  .article-grid,
  .contact-option-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
  }

  .service-card {
    min-height: 350px;
    grid-template-columns: minmax(0, 1fr) 142px;
    column-gap: 16px;
  }

  .service-card img {
    width: 142px;
    height: 98px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-list li > span {
    margin-bottom: 13px;
  }

  .process-list h3 {
    min-height: auto;
  }

  .optin-form,
  .contact-panel {
    padding: 21px;
  }

  .page-hero,
  .article-header-section {
    padding: 48px 0 56px;
  }

  .page-hero-grid {
    min-height: 340px;
  }

  .page-hero-grid > img {
    right: -120px;
    max-width: 76%;
    opacity: 0.1;
  }

  .page-hero p,
  .article-header-section p,
  .contact-copy > p {
    font-size: 17px;
  }

  .article-card-body {
    min-height: 280px;
  }

  .article-content p,
  .article-content li {
    font-size: 17px;
  }

  .long-form h2,
  .article-content h2 {
    font-size: 28px;
  }

  .cta-inner {
    align-items: stretch;
  }

  .cta-inner .btn {
    width: 100%;
  }

  .contact-option {
    min-height: 250px;
  }

  .checklist-groups {
    grid-template-columns: 1fr;
  }

  .checklist-group,
  .checklist-group h3 {
    min-height: auto;
  }

  .checklist-download-row {
    align-items: stretch;
    flex-direction: column;
  }

  .checklist-download-row .btn {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: auto;
    height: auto;
    min-height: 52px;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 13px;
  }

  .whatsapp-float span {
    display: inline;
  }

  .quiet-stats {
    top: 76px;
    right: 8px;
    gap: 6px;
    padding: 4px 6px;
    font-size: 10px;
  }
}

@media (max-width: 390px) {
  h1,
  .hero h1,
  .article-header-section h1 {
    font-size: 35px;
  }

  .hero-assurance {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: minmax(0, 1fr) 110px;
    padding: 21px;
  }

  .service-card img {
    width: 110px;
    height: 76px;
  }

  .service-card h3 {
    font-size: 25px;
  }

  .card-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-offer {
    grid-template-columns: 1fr;
  }

  .report-preview-stack {
    width: 146px;
    margin-left: 4px;
  }

  .report-mini-stats {
    grid-template-columns: 1fr;
  }

  .journal-finder-head {
    padding: 18px;
  }

  .journal-finder-head h2 {
    font-size: 29px;
  }

  .journal-score-grid,
  .journal-match-meta {
    grid-template-columns: 1fr;
  }

  .report-hero-visual {
    min-height: 370px;
  }

  .report-page {
    width: 205px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
