/* ============================================================
   ACRO MEDICAL — PAGE STYLES
   Homepage, solutions landing, per-page content styles
   ============================================================ */

/* ===== Per-page styles (combined) ===== */
/* === index.html === */

  /* ===== Homepage-specific ===== */
  .hero {
    max-width: 1360px;
    margin: 0 auto;
    padding: 80px 48px 100px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 28px;
    font-weight: 600;
  }
  .hero-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--accent);
  }
  h1.hero-title {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: clamp(2.5rem, 5.2vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 28px;
  }
  h1.hero-title em { font-style: italic; font-weight: 360; color: var(--accent); }
  h1.hero-title .underline { position: relative; display: inline-block; }
  h1.hero-title .underline::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 8px;
    background: var(--accent-soft);
    opacity: 0.55;
    z-index: -1;
    border-radius: 4px;
  }
  .hero-sub {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 38px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-meta {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
  }
  .hero-meta .stat .num {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
  }
  .hero-meta .stat .num sup {
    font-size: 16px;
    color: var(--accent);
    margin-left: 2px;
    font-style: italic;
  }
  .hero-meta .stat .lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-top: 8px;
    font-weight: 500;
  }
  .hero-visual-wrap {
    position: relative;
  }
  .hero-visual {
    position: relative;
    aspect-ratio: 4/4.3;
    border-radius: 280px 24px 24px 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a3866 0%, #1A2336 100%);
  }
  .hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.95) contrast(1.02);
  }
  .hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14, 27, 58, 0.25) 100%);
  }
  .hero-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--paper);
    padding: 16px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 50px -15px rgba(14, 27, 58, 0.4);
  }
  .hero-badge .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #2D8F5F;
    box-shadow: 0 0 0 4px rgba(45, 143, 95, 0.18);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(45, 143, 95, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(45, 143, 95, 0.05); }
  }
  .hero-badge .label { font-size: 13px; color: var(--ink); font-weight: 500; }
  .hero-badge .label small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
    font-weight: 400;
  }
  .floating-tag {
    position: absolute;
    top: 28px;
    left: -16px;
    background: var(--paper-warm);
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 12px;
    color: var(--ink);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px -10px rgba(14, 27, 58, 0.2);
  }
  .floating-tag svg { color: var(--accent); }

  .services {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .services-inner { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;
    margin-bottom: 64px;
    flex-wrap: wrap;
  }
  .section-sub {
    color: var(--ink-soft);
    font-size: 16px;
    max-width: 420px;
    line-height: 1.6;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .service-card {
    background: var(--white);
    padding: 44px 38px 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.35s ease;
    text-decoration: none;
    color: var(--ink);
  }
  .service-card:hover { background: var(--paper); }
  .service-num {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
  }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--ink);
    color: var(--paper);
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    transition: all 0.35s ease;
  }
  .service-card:hover .service-icon {
    background: var(--accent);
    transform: rotate(-4deg) scale(1.05);
  }
  .service-title {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 420;
    font-size: 26px;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.15;
  }
  .service-desc {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .service-list {
    list-style: none;
    border-top: 1px solid var(--line);
    padding-top: 22px;
    margin-bottom: 28px;
    flex: 1;
  }
  .service-list li {
    font-size: 14px;
    color: var(--ink);
    padding: 9px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .service-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 8px;
    flex-shrink: 0;
  }
  .service-link {
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
  }
  .service-link .arr { transition: transform 0.3s; }
  .service-card:hover .service-link { color: var(--accent); }
  .service-card:hover .service-link .arr { transform: translateX(4px); }

  .approach {
    background: var(--ink);
    color: var(--paper);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
  }
  .approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(45, 79, 174, 0.10) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(163, 86, 57, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .approach-inner { max-width: 1360px; margin: 0 auto; padding: 0 48px; position: relative; }
  .approach .section-eyebrow { color: var(--accent-soft); }
  .approach .section-eyebrow::before { background: var(--accent-soft); }
  .approach-title {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 360;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 880px;
    margin-bottom: 60px;
  }
  .approach-title em { font-style: italic; color: var(--accent-soft); }
  .approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .approach-item { border-top: 1px solid rgba(246, 247, 250, 0.18); padding-top: 24px; }
  .approach-item .num {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--accent-soft);
    margin-bottom: 16px;
  }
  .approach-item h4 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 420;
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .approach-item p {
    font-size: 14px;
    color: rgba(246, 247, 250, 0.7);
    line-height: 1.6;
  }

  .below { padding: 100px 0; background: var(--paper); }
  .below-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
  }
  .col-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    gap: 24px;
  }
  .col-title h3 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: 38px;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .col-title h3 em { font-style: italic; color: var(--accent); }
  .view-all {
    font-size: 13px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: all 0.2s;
  }
  .view-all:hover { color: var(--accent); border-color: var(--accent); }

  .about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .about-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    display: block;
  }
  .about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -20px rgba(14, 27, 58, 0.25);
  }
  .about-card .img { aspect-ratio: 1/1.05; overflow: hidden; position: relative; }
  .about-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
  .about-card:hover .img img { transform: scale(1.06); }
  .about-card .meta { padding: 22px 22px 24px; }
  .about-card .meta h4 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .about-card .meta .link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .about-card:hover .meta .link { color: var(--accent); }

  .insight-list { display: flex; flex-direction: column; gap: 4px; }
  .insight-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 22px 4px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: padding 0.3s ease;
  }
  .insight-item:hover { padding-left: 12px; }
  .insight-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
  }
  .insight-title {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 420;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }
  .insight-arr { color: var(--muted); transition: transform 0.3s, color 0.3s; }
  .insight-item:hover .insight-arr { transform: translateX(4px); color: var(--accent); }

  .cta {
    background: var(--paper-warm);
    padding: 90px 0;
    border-top: 1px solid var(--line);
  }
  .cta-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .cta h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 360;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: var(--ink);
  }
  .cta h2 em { font-style: italic; color: var(--accent); }
  .cta-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .cta-right p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding: 60px 32px 80px; gap: 56px; }
    .services-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
    .below-inner { grid-template-columns: 1fr; gap: 60px; }
    .cta-inner { grid-template-columns: 1fr; gap: 30px; }
    .approach-inner, .services-inner, .below-inner, .cta-inner { padding: 0 32px; }
    .services, .approach, .below, .cta { padding: 70px 0; }
  }
  @media (max-width: 640px) {
    .about-cards { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .insight-item { grid-template-columns: 1fr; gap: 8px; }
    .hero-meta { gap: 36px; }
    .hero-visual { border-radius: 24px; }
  }


/* === about.html === */

  /* Section sub-nav */
  .sub-nav {
    position: sticky;
    top: 82px;
    z-index: 50;
    background: rgba(246, 247, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .sub-nav-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    gap: 40px;
    overflow-x: auto;
  }
  .sub-nav a {
    padding: 18px 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
  }
  .sub-nav a:hover, .sub-nav a.active { color: var(--ink); }
  .sub-nav a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--accent);
  }

  /* Overview */
  .overview {
    padding: 100px 0;
  }
  .overview-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .overview h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .overview h2 em { font-style: italic; color: var(--accent); }
  .overview .body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 18px;
  }
  .overview .body p:first-child {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-size: 22px;
    line-height: 1.45;
    color: var(--ink);
    font-weight: 360;
    letter-spacing: -0.01em;
  }
  .overview-stats {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
  }
  .overview-stats .num {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-size: 44px;
    font-weight: 380;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
  }
  .overview-stats .num em { color: var(--accent); font-style: italic; }
  .overview-stats .lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-top: 10px;
    font-weight: 600;
  }

  /* History timeline */
  .history {
    background: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .history-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .history .section-head {
    text-align: center;
    margin-bottom: 80px;
  }
  .history .section-head h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .history .section-head h2 em { font-style: italic; color: var(--accent); }
  .history .section-head p {
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 auto;
  }
  .timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: var(--line);
    transform: translateX(-50%);
  }
  .tl-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: 56px;
  }
  .tl-item:last-child { margin-bottom: 0; }
  .tl-content {
    padding: 24px 32px;
    background: var(--paper);
    border-radius: 16px;
    border: 1px solid var(--line);
  }
  .tl-item:nth-child(odd) .tl-content {
    grid-column: 1;
    text-align: right;
  }
  .tl-item:nth-child(even) .tl-content {
    grid-column: 3;
  }
  .tl-content .year {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 400;
  }
  .tl-content h4 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .tl-content p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .tl-dot {
    grid-column: 2;
    width: 16px; height: 16px;
    background: var(--paper);
    border: 3px solid var(--accent);
    border-radius: 50%;
    margin: 30px auto 0;
    position: relative;
    z-index: 1;
  }

  /* Vision & Mission */
  .vision {
    background: var(--ink);
    color: var(--paper);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(45, 79, 174, 0.10) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(163, 86, 57, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .vision-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
  }
  .vision .section-eyebrow { color: var(--accent-soft); }
  .vision .section-eyebrow::before { background: var(--accent-soft); }
  .vision-title {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 360;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin-bottom: 64px;
  }
  .vision-title em { font-style: italic; color: var(--accent-soft); }
  .vmc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(246, 247, 250, 0.18);
    border: 1px solid rgba(246, 247, 250, 0.18);
    border-radius: 20px;
    overflow: hidden;
  }
  .vmc-card {
    background: var(--ink);
    padding: 40px 36px;
  }
  .vmc-card .tag {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    color: var(--accent-soft);
    margin-bottom: 20px;
  }
  .vmc-card h3 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: 26px;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
    line-height: 1.15;
  }
  .vmc-card p {
    font-size: 15px;
    color: rgba(246, 247, 250, 0.75);
    line-height: 1.65;
  }
  .core-values {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .core-value {
    border-top: 1px solid rgba(246, 247, 250, 0.2);
    padding-top: 20px;
  }
  .core-value .num {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: var(--accent-soft);
    margin-bottom: 12px;
  }
  .core-value h5 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 19px;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .core-value p {
    font-size: 13.5px;
    color: rgba(246, 247, 250, 0.65);
    line-height: 1.55;
  }

  /* Experts grid */
  .experts {
    padding: 100px 0;
    background: var(--paper);
  }
  .experts-inner { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
  .experts .head {
    text-align: center;
    margin-bottom: 64px;
  }
  .experts .head h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .experts .head h2 em { font-style: italic; color: var(--accent); }
  .experts .head p {
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto;
  }
  .experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .expert {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
  }
  .expert:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -20px rgba(14, 27, 58, 0.25);
  }
  .expert .photo {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #2a3866, #1A2336);
    position: relative;
    overflow: hidden;
  }
  .expert .photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s, transform 0.7s;
  }
  .expert:hover .photo img { filter: grayscale(0%); transform: scale(1.04); }
  .expert .info { padding: 22px; }
  .expert .info h4 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 20px;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .expert .info .role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .expert .info .credentials {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
  }

  /* Expert detail page */
  .expert-detail-wrap { max-width: 1000px; margin: 0 auto; padding: 90px 48px 110px; }
  .expert-profile { display: none; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
  .expert-profile.show { display: grid; }
  .expert-profile .ep-photo {
    width: 100%; aspect-ratio: 3 / 4; border-radius: 6px; overflow: hidden;
    background: linear-gradient(135deg, #2a3866, #1A2336); display: grid; place-items: center;
  }
  .expert-profile .ep-photo img { width: 100%; height: 100%; object-fit: cover; }
  .expert-profile .ep-mono { font-family: 'Source Serif 4', 'Noto Serif KR', serif; color: var(--paper); font-size: 92px; font-weight: 500; font-style: italic; }
  .expert-profile .ep-eyebrow {
    color: var(--accent); font-size: 0.78rem; letter-spacing: 0.14em;
    text-transform: uppercase; font-weight: 600; margin-bottom: 12px;
  }
  .expert-profile h1 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif; font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 500; color: var(--ink); margin: 0 0 8px; line-height: 1.04;
  }
  .expert-profile .ep-role { font-weight: 600; color: var(--ink); font-size: 1.05rem; margin-bottom: 30px; }
  .expert-profile .ep-bio p { color: var(--ink-soft); line-height: 1.75; margin: 0 0 18px; max-width: 62ch; }
  .expert-profile .ep-back {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
    color: var(--accent); font-weight: 600; text-decoration: none; font-size: 0.95rem;
    transition: gap 0.25s ease;
  }
  .expert-profile .ep-back:hover { gap: 13px; }
  @media (max-width: 760px) {
    .expert-detail-wrap { padding: 60px 28px 80px; }
    .expert-profile.show { grid-template-columns: 1fr; gap: 30px; }
    .expert-profile .ep-photo { max-width: 240px; }
  }

  /* Partners */
  .partners {
    padding: 100px 0;
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
  }
  .partners-inner { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
  .partners .head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
  .partners h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .partners h2 em { font-style: italic; color: var(--accent); }
  .partners .sub {
    color: var(--ink-soft);
    max-width: 420px;
    line-height: 1.6;
  }
  .partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }
  .partner {
    background: var(--paper);
    aspect-ratio: 2/1;
    display: grid;
    place-items: center;
    padding: 24px;
    transition: background 0.3s;
  }
  .partner:hover { background: var(--white); }
  .partner .name {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 16px;
    color: var(--ink);
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .partner .name small {
    display: block;
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 11px;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  @media (max-width: 1024px) {
    .overview-inner { grid-template-columns: 1fr; gap: 40px; }
    .overview-stats { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 16px; }
    .tl-item { grid-template-columns: 32px 1fr; gap: 16px; }
    .tl-item:nth-child(odd) .tl-content,
    .tl-item:nth-child(even) .tl-content {
      grid-column: 2;
      text-align: left;
    }
    .tl-dot { grid-column: 1; margin: 30px 0 0; }
    .vmc-grid { grid-template-columns: 1fr; }
    .core-values { grid-template-columns: repeat(2, 1fr); }
    .experts-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .overview, .history, .vision, .experts, .partners { padding: 70px 0; }
    .overview-inner, .history-inner, .vision-inner, .experts-inner, .partners-inner { padding: 0 32px; }
    .sub-nav-inner { padding: 0 32px; }
  }
  @media (max-width: 640px) {
    .experts-grid { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: 1fr; }
    .core-values { grid-template-columns: 1fr; }
  }


/* === insights.html === */

  .filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    position: sticky;
    top: 82px;
    z-index: 50;
  }
  .filter-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
  .filter-tab {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }
  .filter-tab:hover { border-color: var(--ink); }
  .filter-tab.active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .filter-controls { display: flex; gap: 12px; align-items: center; }
  .filter-controls select {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 13px;
    color: var(--ink);
    cursor: pointer;
  }

  .articles {
    padding: 80px 0 100px;
  }
  .articles-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .featured-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    margin-bottom: 70px;
  }
  .feat-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
  }
  .feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -25px rgba(14, 27, 58, 0.3);
  }
  .feat-card .img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #2a3866, #1A2336);
  }
  .feat-card.large .img { aspect-ratio: 16/10; }
  .feat-card .img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .feat-card:hover .img img { transform: scale(1.05); }
  .feat-card .meta {
    padding: 28px 30px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .feat-card .tag-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
  }
  .feat-card .tag-row .cat { color: var(--accent); }
  .feat-card .tag-row .date { color: var(--muted); }
  .feat-card.large h3 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
  }
  .feat-card h3 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 420;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }
  .feat-card p {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
  }
  .feat-card .read {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .feat-card:hover .read { color: var(--accent); }
  .small-grid { display: grid; gap: 32px; }

  .list-section {
    border-top: 1px solid var(--line);
    padding-top: 50px;
  }
  .list-section h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
  .list-section h2 em { font-style: italic; color: var(--accent); }
  .article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .art-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .art-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(14, 27, 58, 0.2);
  }
  .art-card .img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--paper-warm), var(--paper));
  }
  .art-card .img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .art-card:hover .img img { transform: scale(1.05); }
  .art-card .meta {
    padding: 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .art-card .tag-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
  }
  .art-card .tag-row .cat { color: var(--accent); }
  .art-card .tag-row .date { color: var(--muted); }
  .art-card h3 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 440;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    flex: 1;
  }
  .art-card .read-time {
    font-size: 12px;
    color: var(--muted);
    margin-top: auto;
  }

  @media (max-width: 1024px) {
    .featured-grid { grid-template-columns: 1fr; }
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .filter-inner, .articles-inner { padding: 0 32px; }
    .articles { padding: 50px 0 70px; }
  }
  @media (max-width: 640px) {
    .article-grid { grid-template-columns: 1fr; }
    .filter-inner { flex-direction: column; align-items: stretch; }
  }


/* === insights-detail.html === */

  .article-hero {
    background: var(--ink);
    color: var(--paper);
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
  }
  .article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 30%, rgba(45, 79, 174, 0.12) 0%, transparent 50%),
      radial-gradient(circle at 85% 70%, rgba(163, 86, 57, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .article-hero-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
  }
  .article-hero .breadcrumb { color: rgba(246, 247, 250, 0.55); margin-bottom: 32px; }
  .article-hero .breadcrumb a { color: rgba(246, 247, 250, 0.7); }
  .article-hero .breadcrumb .sep { color: rgba(246, 247, 250, 0.3); }
  .article-hero .tag-row {
    display: flex;
    gap: 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 22px;
  }
  .article-hero .tag-row .cat { color: var(--accent-soft); }
  .article-hero .tag-row .date { color: rgba(246, 247, 250, 0.6); }
  .article-hero h1 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 360;
    font-size: clamp(2.2rem, 4.4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .article-hero h1 em { font-style: italic; color: var(--accent-soft); }
  .article-hero .deck {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(246, 247, 250, 0.82);
    max-width: 720px;
  }
  .article-hero .author {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(246, 247, 250, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .author-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--paper-warm);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    flex-shrink: 0;
  }
  .author-meta .name {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 17px;
    margin-bottom: 4px;
  }
  .author-meta .role {
    font-size: 12px;
    color: rgba(246, 247, 250, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .article-meta-extra {
    margin-left: auto;
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: rgba(246, 247, 250, 0.65);
  }
  .article-meta-extra div span { display: block; color: rgba(246, 247, 250, 0.95); font-weight: 600; font-size: 14px; margin-top: 4px; }

  .article-body {
    max-width: 740px;
    margin: 0 auto;
    padding: 80px 48px 100px;
  }
  .article-body p {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: 19px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.005em;
  }
  .article-body p:first-of-type::first-letter {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: 4.5em;
    float: left;
    line-height: 0.85;
    padding: 4px 14px 0 0;
    color: var(--accent);
  }
  .article-body h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 56px 0 20px;
  }
  .article-body h2 em { font-style: italic; color: var(--accent); }
  .article-body h3 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 22px;
    color: var(--ink);
    margin: 36px 0 14px;
  }
  .article-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 20px 28px;
    margin: 36px 0;
    background: var(--paper-warm);
    border-radius: 0 12px 12px 0;
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink);
  }
  .article-body ul, .article-body ol {
    margin: 16px 0 24px 0;
    padding-left: 0;
    list-style: none;
  }
  .article-body ul li, .article-body ol li {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
    padding: 8px 0 8px 28px;
    position: relative;
  }
  .article-body ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 22px;
    width: 14px; height: 1px;
    background: var(--accent);
  }
  .article-body ol { counter-reset: li; }
  .article-body ol li::before {
    counter-increment: li;
    content: counter(li) ".";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
  }
  .article-body .figure {
    margin: 40px -40px;
    background: var(--paper-warm);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--line);
  }
  .article-body .figure .caption {
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin-top: 16px;
    font-style: normal;
    font-weight: 500;
  }
  .article-body .figure img,
  .article-body .figure svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }
  .article-body .key-takeaway {
    background: var(--ink);
    color: var(--paper);
    padding: 32px 36px;
    border-radius: 16px;
    margin: 40px 0;
  }
  .article-body .key-takeaway .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-soft);
    margin-bottom: 14px;
    font-weight: 600;
  }
  .article-body .key-takeaway p {
    color: var(--paper);
    font-size: 18px;
    margin: 0;
  }

  .article-share {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 48px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .share-buttons { display: flex; gap: 10px; }
  .share-buttons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.2s;
  }
  .share-buttons a:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .tags-row { display: flex; gap: 8px; flex-wrap: wrap; }
  .tags-row span {
    padding: 6px 14px;
    background: var(--paper-warm);
    border-radius: 999px;
    font-size: 12px;
    color: var(--ink);
    font-weight: 500;
  }

  .related {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--line);
  }
  .related-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .related h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: 36px;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
  }
  .related h2 em { font-style: italic; color: var(--accent); }
  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .rel-card {
    background: var(--paper);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .rel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(14, 27, 58, 0.2);
  }
  .rel-card .meta {
    padding: 24px 26px 28px;
  }
  .rel-card .tag-row {
    display: flex;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .rel-card .tag-row .cat { color: var(--accent); }
  .rel-card .tag-row .date { color: var(--muted); }
  .rel-card h3 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 440;
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  @media (max-width: 1024px) {
    .article-hero-inner, .article-body, .article-share { padding-left: 32px; padding-right: 32px; }
    .article-body .figure { margin: 40px 0; }
    .article-meta-extra { margin-left: 0; flex-basis: 100%; }
    .article-hero .author { flex-wrap: wrap; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .related-inner { padding: 0 32px; }
    .related { padding: 60px 0; }
  }
  @media (max-width: 640px) {
    .related-grid { grid-template-columns: 1fr; }
    .article-body p:first-of-type::first-letter { font-size: 3.5em; }
  }


/* === careers.html === */

  .careers-hero {
    padding: 80px 0 70px;
    background: var(--paper);
  }
  .careers-hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: end;
  }
  .careers-hero .breadcrumb { margin-bottom: 28px; }
  .careers-hero .eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 18px;
  }
  .careers-hero h1 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 360;
    font-size: clamp(2.4rem, 4.6vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
  }
  .careers-hero h1 em { font-style: italic; color: var(--accent); }
  .process-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: var(--accent);
    color: var(--paper);
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s;
    align-self: end;
    justify-self: end;
  }
  .process-btn:hover { background: var(--ink); transform: translateY(-2px); }
  .process-btn .arr { transition: transform 0.3s; }
  .process-btn:hover .arr { transform: translateX(3px); }

  .culture-strip {
    background: var(--ink);
    color: var(--paper);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
  }
  .culture-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 30%, rgba(45, 79, 174, 0.10) 0%, transparent 50%),
      radial-gradient(circle at 85% 70%, rgba(163, 86, 57, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .culture-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
  }
  .culture-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .culture-grid h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 360;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .culture-grid h2 em { font-style: italic; color: var(--accent-soft); }
  .culture-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .culture-point {
    border-top: 1px solid rgba(246, 247, 250, 0.2);
    padding-top: 18px;
  }
  .culture-point h4 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .culture-point p {
    font-size: 13.5px;
    color: rgba(246, 247, 250, 0.7);
    line-height: 1.6;
  }

  /* Filter bar */
  .jobs-filter {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
    position: sticky;
    top: 82px;
    z-index: 50;
  }
  .jobs-filter-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr auto;
    gap: 16px;
    align-items: center;
  }
  .jobs-filter select, .jobs-filter input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
  }
  .jobs-filter input { cursor: text; }
  .jobs-filter input::placeholder { color: var(--muted); }
  .filter-count {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
    padding-left: 8px;
  }
  .filter-count span { color: var(--ink); font-weight: 700; }

  /* Job list */
  .jobs {
    padding: 60px 0 100px;
    background: var(--paper);
  }
  .jobs-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .job-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 32px 4px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: padding 0.3s ease;
  }
  .job-card:first-of-type { border-top: 1px solid var(--line); }
  .job-card:hover { padding-left: 16px; }
  .job-card h3 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 24px;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    line-height: 1.2;
    transition: color 0.2s;
  }
  .job-card:hover h3 { color: var(--accent); }
  .job-card h3 .prefix {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
    margin-right: 8px;
  }
  .job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .job-tags span {
    padding: 5px 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    color: var(--ink);
    font-weight: 500;
  }
  .job-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }
  .job-status .status {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
  }
  .job-status .arr-circle {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: grid;
    place-items: center;
    transition: all 0.25s;
  }
  .job-card:hover .arr-circle {
    background: var(--accent);
    transform: rotate(-45deg);
  }

  @media (max-width: 1024px) {
    .careers-hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .process-btn { justify-self: start; }
    .culture-grid { grid-template-columns: 1fr; gap: 32px; }
    .culture-points { grid-template-columns: 1fr; }
    .jobs-filter-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
    .filter-count { grid-column: 1 / -1; }
    .careers-hero-inner, .culture-inner, .jobs-filter-inner, .jobs-inner { padding: 0 32px; }
    .careers-hero, .culture-strip, .jobs { padding-left: 0; padding-right: 0; }
    .careers-hero { padding-top: 50px; padding-bottom: 50px; }
    .jobs { padding: 40px 0 70px; }
    .culture-strip { padding: 50px 0; }
    .job-card { grid-template-columns: 1fr; gap: 20px; }
    .job-status { flex-direction: row; align-items: center; }
  }
  @media (max-width: 640px) {
    .jobs-filter-inner { grid-template-columns: 1fr; }
  }


/* === careers-detail.html === */

  .job-banner {
    background: var(--paper-warm);
    padding: 70px 0 50px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .job-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(45, 79, 174, 0.15), transparent 60%);
    pointer-events: none;
  }
  .job-banner::after {
    content: 'Join the crew';
    position: absolute;
    bottom: -20px;
    right: 40px;
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(60px, 9vw, 140px);
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
    pointer-events: none;
  }
  .job-banner-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
  }
  .job-banner .breadcrumb { margin-bottom: 32px; }

  .job-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .job-title-row h1 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 420;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .job-title-row h1 .prefix {
    color: var(--accent);
    font-style: italic;
    font-weight: 380;
    margin-right: 10px;
  }
  .apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: var(--accent);
    color: var(--paper);
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s;
    white-space: nowrap;
  }
  .apply-btn:hover {
    background: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(14, 27, 58, 0.4);
  }
  .apply-btn .arr { transition: transform 0.3s; }
  .apply-btn:hover .arr { transform: translateX(3px); }

  .job-meta-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  .job-meta-tags span {
    padding: 6px 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 500;
  }
  .job-meta-tags .sep-dot {
    width: 4px; height: 4px;
    background: var(--line);
    border-radius: 50%;
    border: none;
    padding: 0;
  }

  .job-body {
    max-width: 1080px;
    margin: 0 auto;
    padding: 70px 48px 60px;
  }
  .job-section {
    margin-bottom: 60px;
  }
  .job-section:last-child { margin-bottom: 0; }
  .job-section h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 420;
    font-size: 26px;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .job-section h2 .emoji {
    font-style: normal;
    font-size: 24px;
    filter: grayscale(20%);
  }
  .job-section h2 em { font-style: italic; color: var(--accent); }
  .job-section > p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 16px;
  }
  .job-section ul {
    list-style: none;
    margin: 12px 0;
  }
  .job-section ul li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    border-bottom: 1px dashed var(--line);
  }
  .job-section ul li:last-child { border-bottom: none; }
  .job-section ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 22px;
    width: 14px; height: 1px;
    background: var(--accent);
  }
  .job-section ul li strong {
    color: var(--ink);
    font-weight: 600;
  }

  .bonus-section {
    background: var(--ink);
    color: var(--paper);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
  }
  .bonus-section::before {
    content: '';
    position: absolute;
    top: -50px; right: -30px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(45, 79, 174, 0.18), transparent 60%);
    pointer-events: none;
  }
  .bonus-section h3 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 22px;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
    position: relative;
  }
  .bonus-section ul { position: relative; }
  .bonus-section ul li {
    border-bottom-color: rgba(246, 247, 250, 0.18);
    color: rgba(246, 247, 250, 0.85);
  }
  .bonus-section ul li::before { background: var(--accent-soft); }
  .bonus-section ul li strong { color: var(--paper); }

  .apply-footer {
    border-top: 1px solid var(--line);
    padding: 32px 0;
    background: var(--paper-warm);
  }
  .apply-footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .apply-footer h3 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 22px;
    letter-spacing: -0.01em;
  }
  .apply-footer h3 .prefix {
    color: var(--accent);
    font-style: italic;
    font-weight: 380;
    margin-right: 8px;
  }

  @media (max-width: 1024px) {
    .job-banner-inner, .job-body, .apply-footer-inner { padding-left: 32px; padding-right: 32px; }
    .job-title-row { flex-direction: column; align-items: flex-start; }
    .apply-btn { align-self: stretch; justify-content: center; }
    .job-banner { padding: 50px 0 40px; }
    .job-body { padding-top: 50px; padding-bottom: 40px; }
    .bonus-section { padding: 28px; }
  }


/* === contact.html === */

  .contact-section {
    padding: 80px 0 100px;
  }
  .contact-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
  }
  .contact-left .breadcrumb { margin-bottom: 28px; }
  .contact-left h1 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 360;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .contact-left h1 em { font-style: italic; color: var(--accent); }
  .contact-left .lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 50px;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact-block h3 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .contact-block .value {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .contact-block .meta {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
  }
  .contact-block a { color: var(--ink); text-decoration: none; }
  .contact-block a:hover { color: var(--accent); }

  /* Form */
  .form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 30px 60px -30px rgba(14, 27, 58, 0.2);
  }
  .form-card h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
  }
  .form-card h2 em { font-style: italic; color: var(--accent); }
  .form-card .form-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .form-field { margin-bottom: 16px; }
  .form-field label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.2s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 79, 174, 0.1);
  }
  .form-field textarea {
    min-height: 130px;
    resize: vertical;
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
  }
  .inquiry-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }
  .inquiry-radio {
    position: relative;
  }
  .inquiry-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .inquiry-radio label {
    display: block;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    transition: all 0.2s;
  }
  .inquiry-radio input:checked + label {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .inquiry-radio label:hover {
    border-color: var(--ink);
  }
  .form-submit {
    width: 100%;
    padding: 18px;
    background: var(--ink);
    color: var(--paper);
    border: none;
    border-radius: 999px;
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .form-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(45, 79, 174, 0.5);
  }
  .form-submit .arr { transition: transform 0.3s; }
  .form-submit:hover .arr { transform: translateX(4px); }
  .form-disclaimer {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
  }

  /* Django contact form — .form-group / .form-control structure */
  .contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 30px 60px -30px rgba(14, 27, 58, 0.2);
  }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .form-group label .req { color: var(--emphasis); margin-left: 2px; }
  .form-errors {
    background: #fff5f5;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #b91c1c;
  }
  .field-error {
    font-size: 12px;
    color: var(--emphasis);
    margin-top: 6px;
  }
  .has-error .form-control { border-color: var(--emphasis) !important; }
  input.form-control,
  select.form-control,
  textarea.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.2s;
    box-sizing: border-box;
  }
  input.form-control:focus,
  select.form-control:focus,
  textarea.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(45, 79, 174, 0.1);
  }
  textarea.form-control {
    min-height: 130px;
    resize: vertical;
  }
  .inquiry-radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .inquiry-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
    transition: all 0.2s;
    user-select: none;
  }
  .inquiry-radio-label:hover { border-color: var(--ink); }
  .inquiry-radio-label input.inquiry-radio-input { accent-color: var(--ink); }
  .file-upload-hint {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--ink);
    color: var(--paper);
    border: none;
    border-radius: 999px;
    font-family: 'Source Sans 3', 'Pretendard Variable', Pretendard, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
  }
  .submit-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(45, 79, 174, 0.5);
  }
  .submit-btn .arr { transition: transform 0.3s; }
  .submit-btn:hover .arr { transform: translateX(4px); }
  .contact-info { padding-top: 12px; }
  .contact-info h3 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .contact-detail .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
  }
  .contact-services { margin-top: 24px; }
  .contact-services h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .contact-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-services li {
    font-size: 14px;
    color: var(--ink-soft);
    padding-left: 16px;
    position: relative;
  }
  .contact-services li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--muted);
  }

  /* Other channels */
  .channels {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .channels-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .channels h2 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 380;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    letter-spacing: -0.02em;
    margin-bottom: 50px;
    text-align: center;
  }
  .channels h2 em { font-style: italic; color: var(--accent); }
  .channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }
  .channel-card {
    background: var(--paper);
    padding: 36px 32px;
    text-decoration: none;
    color: var(--ink);
    transition: background 0.25s;
    display: flex;
    flex-direction: column;
  }
  .channel-card:hover { background: var(--white); }
  .channel-card .icon {
    width: 48px; height: 48px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: all 0.3s;
  }
  .channel-card:hover .icon {
    background: var(--accent);
    transform: rotate(-4deg);
  }
  .channel-card h4 {
    font-family: 'Source Serif 4', 'Noto Serif KR', serif;
    font-weight: 460;
    font-size: 22px;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }
  .channel-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
  }
  .channel-card .link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .channel-card:hover .link { color: var(--accent); }

  @media (max-width: 1024px) {
    .contact-inner { grid-template-columns: 1fr; gap: 50px; padding: 0 32px; }
    .contact-section { padding: 50px 0 70px; }
    .form-card { padding: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .inquiry-types { grid-template-columns: 1fr; }
    .channels-grid { grid-template-columns: 1fr; }
    .channels-inner { padding: 0 32px; }
    .channels { padding: 60px 0; }
  }


/* ===== SOLUTIONS LANDING (card grid) ===== */
.solutions-overview {
  background: var(--paper);
  padding: 60px 0 100px;
}
.solutions-overview-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.solution-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(45, 79, 174, 0.04));
  opacity: 0;
  transition: opacity 0.4s;
}
.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -18px rgba(14, 27, 58, 0.18);
  border-color: var(--accent);
}
.solution-card:hover::before { opacity: 1; }
.solution-card-num {
  font-family: 'Source Serif 4', 'Noto Serif KR', serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 500;
  font-feature-settings: "tnum";
}
.solution-card h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 18px 0 28px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.solution-card-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s, transform 0.3s;
  position: relative;
  z-index: 1;
}
.solution-card:hover .solution-card-link {
  color: var(--accent);
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .solutions-overview-inner { padding: 0 32px; }
  .solution-card { min-height: 180px; padding: 28px 24px; }
}

/* ===== Contact button highlight when on contact page ===== */
.contact-btn.on-contact {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}
