*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --dark: #1a1d26;
  --dark-2: #0f1116;
  --bg: #f8f9fc;
  --panel: #f1f3f7;
  --text: #1a1d26;
  --muted: #5c6378;
  --card: #ffffff;
  --border: #e2e6ee;
  --border2: #d0d6e2;
  --accent: #2d8a4e;
  --accent2: #247a44;
  --accent-soft: rgba(45, 138, 78, 0.08);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.04);
  --radius: 16px;
  --logo-accent: #c8f04e;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(88% 80% at 12% 0%, rgba(45, 138, 78, 0.06) 0%, transparent 55%),
    radial-gradient(75% 70% at 88% 20%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #f0f2f7 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

main {
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 26px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  text-decoration: none;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  font-family: "DM Serif Display", Georgia, serif;
  color: var(--text);
}

.logo span {
  background: #0a0a0a;
  color: var(--logo-accent);
  border-radius: 4px;
  padding: 0 5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a:hover {
  color: var(--text);
}

.btn,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  cursor: pointer;
}

.btn:focus-visible,
.cta-button:focus-visible,
.site-nav a:focus-visible,
.inline-links a:focus-visible,
.top-links a:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary,
.cta-button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45, 138, 78, 0.35);
}

.btn-primary:hover,
.cta-button:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(45, 138, 78, 0.4);
}

.btn-secondary {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--panel);
  border-color: var(--border2);
}

.hero {
  padding: 54px 0 32px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(248, 249, 252, 0.98) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.hero-story {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(45, 138, 78, 0.25);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent);
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
}

h1,
h2,
h3 {
  font-family: "DM Serif Display", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-top: 14px;
  color: var(--text);
}

h2 {
  font-size: clamp(1.45rem, 3.4vw, 2.35rem);
  color: var(--text);
}

h3 {
  font-size: 1.06rem;
}

p {
  margin: 0 0 15px;
  color: var(--text);
  font-size: 1rem;
}

.lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.65;
}

.hero-card,
.card,
.resume-preview,
.final-cta,
.example-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  padding: 22px;
}

.hero-scan-media {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.hero-score-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dark);
  background: var(--accent-soft);
  border: 1px solid rgba(45, 138, 78, 0.25);
  margin-bottom: 10px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-mini-proof {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-mini-proof span {
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.74rem;
  background: var(--card);
}

.metric-band {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  padding: 0 0 26px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}

.metric-value {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.55rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.metric-card p {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0;
}

.section {
  padding: 42px 0;
}

.section.muted {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.checklist-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.checklist-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.checklist-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.checklist-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.mobile-sticky-cta {
  display: none;
}

.card-grid,
.benefits-grid {
  display: grid;
  gap: 14px;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three,
.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  border-color: var(--border2);
}

ul {
  margin: 0;
  padding-left: 19px;
}

li {
  margin-bottom: 8px;
}

.tips-list {
  margin: 12px 0 16px;
  padding: 14px 16px 8px 30px;
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.resume-preview {
  padding: 20px;
  margin: 14px 0;
  background: var(--card);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 12px 14px;
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

details p {
  margin-top: 8px;
  margin-bottom: 2px;
  color: var(--muted);
}

.final-cta,
.cta-section {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.inline-links,
.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.inline-links a,
.top-links a {
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  font-size: 0.84rem;
  padding: 8px 14px;
  transition: all 0.18s ease;
}

.inline-links a:hover,
.top-links a:hover {
  border-color: var(--border2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.top-links {
  margin-top: 26px;
}

.example-block {
  padding: 20px;
  margin-bottom: 14px;
}

.meta-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--panel);
  margin-top: 40px;
  padding: 22px 18px 18px;
}

.footer-top {
  width: min(100%, 980px);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  padding-bottom: 6px;
}

.footer-logo {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.footer-logo span {
  background: #0a0a0a;
  color: var(--logo-accent);
  padding: 0 4px;
  border-radius: 3px;
}

.footer-logo-top {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-lang-links {
  margin-top: 0;
}

.footer-columns {
  width: min(100%, 780px);
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  column-gap: 72px;
  row-gap: 20px;
  align-items: start;
}

.footer-column h3 {
  margin: 0 0 12px;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.footer-link-list a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.footer-link-list a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-lang-links {
  min-width: 80px;
}

.footer-meta {
  border-top: 0;
  padding-top: 0;
  font-size: 0.78rem;
  color: #67676b;
}

.footer-bottom-center {
  width: min(100%, 980px);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-secure {
  font-size: 0.76rem;
  color: var(--muted);
}

.footer-cookie {
  margin: 0;
  max-width: 760px;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
}

.footer-cookie a {
  color: var(--text);
}

@media (max-width: 860px) {
  .site-footer {
    padding: 18px 16px 16px;
  }

  .footer-top {
    width: 100%;
    justify-content: center;
    gap: 22px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-columns {
    width: 100%;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    column-gap: 32px;
    row-gap: 18px;
  }

  .footer-cookie {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 18px;
  }

  .header-inner {
    min-height: 62px;
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-story {
    padding: 18px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.two,
  .card-grid.three,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .checklist-band {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .cta-button {
    width: 100%;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
  }

  main {
    padding-bottom: 82px;
  }

}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-list li {
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-left: 3px solid #c8f04e;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #333;
}

.section.muted .guide-list li {
  background: #f5f5f2;
}

/* -- CV MOCK ----------------------------------------------- */
.cv-mock-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 20px 0;
}

.cv-mock-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cv-mock-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.cv-mock {
  --cv-header: #1a1d26;
  --cv-accent: #2d8a4e;
  --cv-sidebar: #1e293b;
  --cv-tag: #334155;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1;
  font-size: 0.78rem;
}

.cv-mock-header {
  background: var(--cv-header);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.cv-mock-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cv-accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv-mock-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.cv-mock-title {
  font-size: 0.7rem;
  color: var(--cv-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.cv-mock-contact {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
}

.cv-mock-ats-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  background: var(--cv-accent);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
}

.cv-mock-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 220px;
}

.cv-mock-col-left {
  background: var(--cv-sidebar);
  padding: 14px 12px;
}

.cv-mock-col-right {
  background: #fff;
  padding: 14px 16px;
}

.cv-mock-section-title {
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cv-accent);
  margin-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 3px;
}

.cv-mock-col-right .cv-mock-section-title {
  color: #888;
  border-bottom-color: #eee;
}

.cv-mock-tags {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cv-mock-tag {
  background: var(--cv-tag);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.58rem;
  padding: 3px 7px;
  border-radius: 4px;
}

.cv-mock-edu-line {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.cv-mock-muted {
  color: rgba(255, 255, 255, 0.35) !important;
}

.cv-mock-summary {
  font-size: 0.68rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 4px;
}

.cv-mock-exp-item {
  margin-bottom: 10px;
}

.cv-mock-exp-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1px;
}

.cv-mock-exp-role {
  font-size: 0.68rem;
  font-weight: 700;
  color: #111;
}

.cv-mock-exp-date {
  font-size: 0.58rem;
  color: #999;
}

.cv-mock-exp-company {
  font-size: 0.6rem;
  color: #888;
  margin-bottom: 5px;
}

.cv-mock-bullets {
  margin: 0;
  padding-left: 14px;
}

.cv-mock-bullets li {
  font-size: 0.62rem;
  color: #333;
  line-height: 1.45;
  margin-bottom: 3px;
}

/* Minimal template */
.cv-mock-minimal {
  background: #fff;
}

.cv-mock-min-header {
  padding: 16px 18px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid #0a0a0a;
}

.cv-mock-min-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 2px;
}

.cv-mock-min-title {
  font-size: 0.66rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cv-mock-min-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 0.58rem;
  color: #999;
}

.cv-mock-min-divider {
  height: 2px;
  background: #0a0a0a;
  opacity: 0.06;
}

.cv-mock-min-section {
  padding: 10px 18px;
}

.cv-mock-min-label {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #999;
  margin-bottom: 6px;
}

.cv-mock-min-text {
  font-size: 0.65rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.cv-mock-min-exp-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1px;
}

.cv-mock-min-exp-top strong {
  font-size: 0.68rem;
  color: #111;
}

.cv-mock-min-exp-top span {
  font-size: 0.58rem;
  color: #999;
}

.cv-mock-min-company {
  font-size: 0.6rem;
  color: #888;
  margin-bottom: 5px;
}

.cv-mock-min-bullets {
  margin: 0;
  padding-left: 14px;
}

.cv-mock-min-bullets li {
  font-size: 0.62rem;
  color: #333;
  line-height: 1.45;
  margin-bottom: 3px;
}

.cv-mock-min-skills {
  font-size: 0.65rem;
  color: #444;
  line-height: 1.8;
}

.cv-mock-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
  width: fit-content;
}

.cv-mock-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 138, 78, 0.35);
}

/* -- BEFORE / AFTER ---------------------------------------- */
.section-lead {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  margin-top: -4px;
}

.ba-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ba-item {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  gap: 12px;
}

.ba-arrow {
  text-align: center;
  font-size: 1.3rem;
  color: #ccc;
  font-weight: 300;
}

.ba-before,
.ba-after {
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid var(--border);
}

.ba-before {
  background: #fff8f8;
  border-color: #fdd;
}

.ba-after {
  background: #f6fff0;
  border-color: #d4f7b0;
}

.ba-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  padding: 3px 9px;
  border-radius: 999px;
}

.ba-label-weak {
  background: #fee2e2;
  color: #dc2626;
}

.ba-label-strong {
  background: #dcfce7;
  color: #16a34a;
}

.ba-text {
  font-size: 0.88rem;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.55;
}

.ba-annotation {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
}

/* -- GUIDE LIST (onceki prompttan) ------------------------- */
.guide-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-list li {
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text);
}

.section.muted .guide-list li {
  background: var(--panel);
}

/* -- RESPONSIVE -------------------------------------------- */
@media (max-width: 900px) {
  .cv-mock-wrap {
    grid-template-columns: 1fr;
  }

  .cv-mock-body {
    grid-template-columns: 90px 1fr;
  }

  .ba-item {
    grid-template-columns: 1fr;
  }

  .ba-arrow {
    display: none;
  }
}

/* -- Salary CTA Block --------------------------------------- */
.salary-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--accent-soft);
  border: 1.5px solid rgba(45, 138, 78, 0.35);
  border-radius: 16px;
  padding: 32px 36px;
  flex-wrap: wrap;
}

.salary-cta-text h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.salary-cta-text p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.salary-cta-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
}

.btn-salary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(45, 138, 78, 0.35);
}

.btn-salary:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(45, 138, 78, 0.4);
}

@media (max-width: 640px) {
  .salary-cta-block {
    flex-direction: column;
    padding: 24px;
    text-align: center;
  }

  .salary-cta-text p {
    max-width: 100%;
  }
}

.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.internal-links-title {
  margin-bottom: 10px;
}

.internal-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-link {
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: #1c2430;
  font-size: 0.84rem;
  padding: 8px 14px;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.related-link:hover {
  border-color: var(--border2);
  background: var(--panel);
}

.related-link-salary {
  background: var(--accent-soft);
  border-color: rgba(45, 138, 78, 0.35);
}

.related-link-salary:hover {
  border-color: var(--accent);
  background: rgba(45, 138, 78, 0.12);
}

@media (max-width: 900px) {
  .internal-links-grid {
    grid-template-columns: 1fr;
  }
}

/* -- ATS Score Teaser Block (SEO pages) -------------------- */
.ats-teaser-section {
  padding: 48px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.ats-teaser-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.ats-teaser-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(45, 138, 78, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.ats-teaser-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
}

.ats-teaser-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 480px;
}

.ats-teaser-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ats-teaser-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.74rem;
  color: var(--muted);
  background: var(--card);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ats-teaser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ats-teaser-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.ats-teaser-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  pointer-events: none;
}

.ats-teaser-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.ats-teaser-card-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.2rem;
  color: var(--text);
  margin: 0 0 6px;
  position: relative;
  z-index: 1;
}

.ats-teaser-card-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.ats-teaser-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(45, 138, 78, 0.35);
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.ats-teaser-cta:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(45, 138, 78, 0.4);
}

.ats-teaser-note {
  margin: 16px 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .ats-teaser-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ats-teaser-section {
    padding: 36px 0;
  }

  .ats-teaser-card {
    padding: 28px 24px;
  }
}

body {
  overflow-x: hidden;
}

.site-nav a {
  white-space: nowrap;
}

.btn,
.cta-button {
  max-width: 100%;
}

.inline-links a,
.top-links a,
.related-link,
.footer-link-list a {
  overflow-wrap: anywhere;
}

.inline-links a,
.top-links a,
.related-link {
  text-align: center;
}

@media (max-width: 900px) {
  .site-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
  }
}
