/*
 * IK Academy main page redesign v1.0.0
 * Scope: #ikHomePage and .ik-site-footer
 * Compatible with the existing Bootstrap 3 / jQuery environment.
 */
#ikHomePage,
#ikHomePage *,
.ik-site-footer,
.ik-site-footer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#ikHomePage {
  --ik-navy: #0e355b;
  --ik-navy-deep: #071d31;
  --ik-navy-soft: #163f66;
  --ik-gold: #e5871d;
  --ik-gold-dark: #cc7414;
  --ik-ink: #1b2c3d;
  --ik-text: #425466;
  --ik-muted: #718096;
  --ik-line: #dfe7ee;
  --ik-bg: #f4f7fa;
  --ik-white: #ffffff;
  width: 100%;
  margin: 0;
  color: var(--ik-ink);
  font-family: "Pretendard GOV Variable", "Pretendard GOV", Pretendard, "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}
#ikHomePage a { color: inherit; text-decoration: none; }
#ikHomePage a:hover,
#ikHomePage a:focus { text-decoration: none; }
#ikHomePage button,
#ikHomePage input,
#ikHomePage select { font: inherit; }
#ikHomePage button { cursor: pointer; }
#ikHomePage h1,
#ikHomePage h2,
#ikHomePage h3,
#ikHomePage p,
#ikHomePage ul { margin-top: 0; }
#ikHomePage ul { padding-left: 0; list-style: none; }
#ikHomePage svg { display: block; }
#ikHomePage .ikh-wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}
#ikHomePage .ikh-section { padding: 88px 0; }
#ikHomePage .ikh-section.is-alt { background: var(--ik-bg); }
#ikHomePage .ikh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: #bd660e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
#ikHomePage .ikh-kicker:before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--ik-gold);
}
#ikHomePage .ikh-section-head {
  margin-bottom: 34px;
}
#ikHomePage .ikh-section-head.is-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#ikHomePage .ikh-section-head.is-center .ikh-kicker:before { display: none; }
#ikHomePage .ikh-section-head h2 {
  margin-bottom: 14px;
  color: var(--ik-navy-deep);
  font-size: 35px;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0em;
}
#ikHomePage .ikh-section-head p {
  margin-bottom: 0;
  color: var(--ik-text);
  font-size: 16px;
  line-height: 1.8;
}
#ikHomePage .ikh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
#ikHomePage .ikh-btn:hover,
#ikHomePage .ikh-btn:focus { transform: translateY(-2px); outline: none; }
#ikHomePage .ikh-btn.is-gold {
  color: #fff;
  background: var(--ik-gold);
  box-shadow: 0 12px 26px rgba(229, 135, 29, .22);
}
#ikHomePage .ikh-btn.is-gold:hover,
#ikHomePage .ikh-btn.is-gold:focus { background: var(--ik-gold-dark); box-shadow: 0 15px 30px rgba(229, 135, 29, .28); }
#ikHomePage .ikh-btn.is-white {
  color: var(--ik-navy-deep);
  background: #fff;
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 12px 28px rgba(4, 18, 31, .16);
}
#ikHomePage .ikh-btn.is-outline {
  color: var(--ik-navy);
  background: transparent;
  border-color: #cfdbe5;
}
#ikHomePage .ikh-btn.is-outline:hover,
#ikHomePage .ikh-btn.is-outline:focus { border-color: var(--ik-navy); background: #f8fafc; }
#ikHomePage .ikh-btn svg { width: 17px; height: 17px; }

/* Hero */
#ikHomePage .ikh-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 17%, rgba(229,135,29,.22) 0, rgba(229,135,29,0) 30%),
    radial-gradient(circle at 8% 88%, rgba(76,137,190,.18) 0, rgba(76,137,190,0) 32%),
    linear-gradient(125deg, #071d31 0%, #0e355b 53%, #123f68 100%);
}
#ikHomePage .ikh-hero:before,
#ikHomePage .ikh-hero:after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
#ikHomePage .ikh-hero:before { width: 520px; height: 520px; right: -250px; top: -215px; }
#ikHomePage .ikh-hero:after { width: 300px; height: 300px; left: -170px; bottom: -170px; }
#ikHomePage .ikh-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.20fr) minmax(340px, .70fr);
  gap: 54px;
  align-items: center;
  min-height: 650px;
  padding-top: 72px;
  padding-bottom: 72px;
}
#ikHomePage .ikh-hero-copy { max-width: 690px; }
#ikHomePage .ikh-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #ffd2a0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .05em;
}
#ikHomePage .ikh-hero-label:before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--ik-gold);
}
#ikHomePage .ikh-hero h1 {
  margin-bottom: 50px;
  color: #fff;
  font-size: 50px;
  line-height: 1.19;
  font-weight: 800;
  letter-spacing: 0em;
}
#ikHomePage .ikh-hero h1 em { color: #ffb65f; font-style: normal; }
#ikHomePage .ikh-hero-copy > p {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.8;
}
#ikHomePage .ikh-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 80px; }
#ikHomePage .ikh-hero-points { display: flex; flex-wrap: wrap; gap: 10px 18px; }
#ikHomePage .ikh-hero-point {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 650;
}
#ikHomePage .ikh-hero-point:before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  background: rgba(229,135,29,.86);
}
#ikHomePage .ikh-quick-form {
  position: relative;
  padding: 30px;
  color: var(--ik-ink);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 28px 70px rgba(2,15,27,.28);
}
#ikHomePage .ikh-quick-form:before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 70px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--ik-gold);
}
#ikHomePage .ikh-quick-form .ikh-form-kicker {
  display: block;
  margin-bottom: 7px;
  color: #b7620d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}
#ikHomePage .ikh-quick-form h2 {
  margin-bottom: 7px;
  color: var(--ik-navy-deep);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -.035em;
}
#ikHomePage .ikh-quick-form > p {
  margin-bottom: 21px;
  color: var(--ik-muted);
  font-size: 13px;
  line-height: 1.65;
}
#ikHomePage .ikh-field { margin-bottom: 13px; }
#ikHomePage .ikh-field label {
  display: block;
  margin-bottom: 6px;
  color: #2d4053;
  font-size: 12px;
  font-weight: 800;
}
#ikHomePage .ikh-field select {
  display: block;
  width: 100%;
  height: 47px;
  padding: 0 40px 0 13px;
  color: #26394c;
  border: 1px solid #d6e0e8;
  border-radius: 7px;
  outline: none;
  background-color: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
  font-size: 14px;
}
#ikHomePage .ikh-field select:focus { border-color: #6d91b2; box-shadow: 0 0 0 3px rgba(14,53,91,.09); }
#ikHomePage .ikh-quick-form .ikh-submit { width: 100%; margin-top: 4px; border: 0; }
#ikHomePage .ikh-form-alert {
  display: none;
  margin: 10px 0 0;
  color: #b23b36;
  font-size: 12px;
  font-weight: 700;
}
#ikHomePage .ikh-form-alert.is-visible { display: block; }
#ikHomePage .ikh-form-note {
  margin: 11px 0 0 !important;
  color: #8491a0 !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  text-align: center;
}

/* Facts */
#ikHomePage .ikh-facts { border-bottom: 1px solid var(--ik-line); background: #fff; }
#ikHomePage .ikh-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 25px 0;
}
#ikHomePage .ikh-fact {
  min-height: 68px;
  padding: 6px 26px;
  border-right: 1px solid var(--ik-line);
}
#ikHomePage .ikh-fact:first-child { padding-left: 0; }
#ikHomePage .ikh-fact:last-child { border-right: 0; }
#ikHomePage .ikh-fact strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ik-navy);
  font-size: 35px;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -.01em;
}
#ikHomePage .ikh-fact span { color: #878787; font-size: 17px; font-weight: 650; }

/* Service selector */
#ikHomePage .ikh-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
  padding: 5px;
  border: 1px solid var(--ik-line);
  border-radius: 10px;
  background: #fff;
}
#ikHomePage .ikh-tab {
  min-height: 42px;
  padding: 0 18px;
  color: #5f7182;
  border: 0;
  border-radius: 7px;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
}
#ikHomePage .ikh-tab.is-active { color: #fff; background: var(--ik-navy); box-shadow: 0 8px 18px rgba(14,53,91,.18); }
#ikHomePage .ikh-service-panel + .ikh-service-panel { margin-top: 42px; }
#ikHomePage .ikh-service-panel.is-hidden { display: none; }
#ikHomePage .ikh-panel-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
#ikHomePage .ikh-panel-title h3 {
  margin-bottom: 0;
  color: var(--ik-navy-deep);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.035em;
}
#ikHomePage .ikh-panel-title span { color: var(--ik-muted); font-size: 13px; }
#ikHomePage .ikh-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
#ikHomePage .ikh-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--ik-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(11,38,62,.055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
#ikHomePage .ikh-service-card:before {
  content: "";
  position: absolute;
  right: -38px;
  top: -46px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: rgba(14,53,91,.035);
}
#ikHomePage .ikh-service-card:hover,
#ikHomePage .ikh-service-card:focus-within {
  transform: translateY(-4px);
  border-color: #c7d6e2;
  box-shadow: 0 18px 40px rgba(11,38,62,.11);
}
#ikHomePage .ikh-service-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 38px;
  margin-bottom: 18px;
  color: #0039b4;
  font-size: 12px;
  font-weight: 800;
  border-radius: 7px;
  background: #edf4f9;
}
#ikHomePage .ikh-service-card.is-product .ikh-service-code { color: #a75408; background: #fff3e4; }
#ikHomePage .ikh-service-card h3 {
  margin-bottom: 8px;
  color: #114171;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0em;
}
#ikHomePage .ikh-service-card p {
  margin-bottom: 17px;
  color: var(--ik-text);
  font-size: 14px;
  line-height: 1.7;
}
#ikHomePage .ikh-service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
#ikHomePage .ikh-service-tags span {
  padding: 5px 8px;
  color: #66798b;
  font-size: 10px;
  font-weight: 800;
  border-radius: 5px;
  background: #f2f5f8;
}
#ikHomePage .ikh-service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--ik-navy);
  font-size: 13px;
  font-weight: 900;
}
#ikHomePage .ikh-service-link:after { content: "→"; color: var(--ik-gold); transition: transform .18s ease; }
#ikHomePage .ikh-service-card:hover .ikh-service-link:after { transform: translateX(4px); }

/* Need cards */
#ikHomePage .ikh-needs-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
#ikHomePage .ikh-need-card {
  padding: 25px;
  border: 1px solid #dae4ec;
  border-radius: 12px;
  background: #fff;
}
#ikHomePage .ikh-need-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 17px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  border-radius: 10px;
  background: var(--ik-navy);
}
#ikHomePage .ikh-need-card:nth-child(even) .ikh-need-icon { background: var(--ik-gold); }
#ikHomePage .ikh-need-card h3 { margin-bottom: 8px; color: var(--ik-navy-deep); font-size: 18px; font-weight: 800; }
#ikHomePage .ikh-need-card p { margin-bottom: 14px; color: var(--ik-text); font-size: 14px; line-height: 1.7; }
#ikHomePage .ikh-need-card a { color: var(--ik-navy); font-size: 12px; font-weight: 750; }

/* Why */
#ikHomePage .ikh-why-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 46px; align-items: center; }
#ikHomePage .ikh-why-summary {
  position: relative;
  min-height: 410px;
  padding: 42px;
  overflow: hidden;
  color: #fff;
  border-radius: 17px;
  background: linear-gradient(145deg, #071d31, #0e355b 62%, #194f7d);
  box-shadow: 0 25px 55px rgba(7,29,49,.18);
}
#ikHomePage .ikh-why-summary:after {
  content: "IK";
  position: absolute;
  right: -15px;
  bottom: -48px;
  color: rgba(255,255,255,.05);
  font-size: 190px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.12em;
}
#ikHomePage .ikh-why-summary .ikh-kicker { color: #ffc782; }
#ikHomePage .ikh-why-summary h2 { margin-bottom: 18px; color: #fff; font-size: 34px; line-height: 1.3; font-weight: 800; letter-spacing: 0em; }
#ikHomePage .ikh-why-summary p { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.8; }
#ikHomePage .ikh-why-summary .ikh-btn { position: relative; z-index: 1; margin-top: 50px; }
#ikHomePage .ikh-why-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
#ikHomePage .ikh-why-item {
  min-height: 185px;
  padding: 25px;
  border: 1px solid var(--ik-line);
  border-radius: 12px;
  background: #fff;
}
#ikHomePage .ikh-why-item b { display: block; margin-bottom: 15px; color: var(--ik-gold); font-size: 13px; letter-spacing: .08em; }
#ikHomePage .ikh-why-item h3 { margin-bottom: 15px; color: var(--ik-navy-deep); font-size: 18px; font-weight: 800; }
#ikHomePage .ikh-why-item p { margin-bottom: 0; color: var(--ik-text); font-size: 14px; line-height: 1.7; }

/* Process */
#ikHomePage .ikh-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; counter-reset: ikhstep; }
#ikHomePage .ikh-process-step {
  position: relative;
  min-height: 240px;
  padding: 30px 23px 23px;
  overflow: hidden;
  border: 1px solid var(--ik-line);
  border-radius: 12px;
  background: #fff;
  counter-increment: ikhstep;
}
#ikHomePage .ikh-process-step:before {
  content: "0" counter(ikhstep);
  display: block;
  margin-bottom: 32px;
  color: var(--ik-gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}
#ikHomePage .ikh-process-step:after {
  content: "";
  position: absolute;
  top: 42px;
  right: -18px;
  width: 36px;
  height: 1px;
  background: #cbd7e1;
}
#ikHomePage .ikh-process-step:last-child:after { display: none; }
#ikHomePage .ikh-process-step h3 { margin-bottom: 10px; color: var(--ik-navy-deep); font-size: 18px; line-height: 1.4; font-weight: 800; }
#ikHomePage .ikh-process-step p { margin-bottom: 0; color: var(--ik-text); font-size: 14px; line-height: 1.75; }
#ikHomePage .ikh-process-note {
  margin-top: 20px;
  padding: 17px 20px;
  color: #53677a;
  font-size: 13px;
  line-height: 1.65;
  border-left: 3px solid var(--ik-gold);
  background: #f7f9fb;
}

/* Records */
#ikHomePage .ikh-records-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
#ikHomePage .ikh-records-head .ikh-section-head { margin-bottom: 0; }
#ikHomePage .ikh-records-status { margin-top: 8px; color: var(--ik-muted); font-size: 12px; }
#ikHomePage .ikh-records-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
#ikHomePage .ikh-record-card {
  min-height: 158px;
  padding: 22px;
  border: 1px solid var(--ik-line);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(11,38,62,.045);
}
#ikHomePage .ikh-record-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
#ikHomePage .ikh-record-no { color: #a0adba; font-size: 10px; font-weight: 900; letter-spacing: .06em; }
#ikHomePage .ikh-record-region { color: #718296; font-size: 11px; font-weight: 700; }
#ikHomePage .ikh-record-card h3 { margin-bottom: 14px; color: var(--ik-navy-deep); font-size: 16px; line-height: 1.45; font-weight: 900; }
#ikHomePage .ikh-record-badges { display: flex; flex-wrap: wrap; gap: 5px; }
#ikHomePage .ikh-record-badge {
  padding: 5px 7px;
  color: var(--ik-navy);
  font-size: 10px;
  font-weight: 900;
  border-radius: 5px;
  background: #edf4f9;
}
#ikHomePage .ikh-record-badge.is-green { color: #207244; background: #eaf7ef; }
#ikHomePage .ikh-record-badge.is-gold { color: #a6540a; background: #fff1df; }
#ikHomePage .ikh-record-badge.is-purple { color: #6943a3; background: #f2edfb; }
#ikHomePage .ikh-record-badge.is-gray { color: #526476; background: #eef2f5; }

/* ACMS */
#ikHomePage .ikh-acms {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(128deg, #071d31 0%, #0d3153 54%, #174d78 100%);
}
#ikHomePage .ikh-acms:after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -220px;
  bottom: -260px;
  border-radius: 50%;
  background: rgba(229,135,29,.13);
}
#ikHomePage .ikh-acms-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center; }
#ikHomePage .ikh-acms-copy .ikh-kicker { color: #ffca89; }
#ikHomePage .ikh-acms-copy h2 { margin-bottom: 16px; color: #fff; font-size: 35px; line-height: 1.28; font-weight: 800; letter-spacing: 0em; }
#ikHomePage .ikh-acms-copy > p { margin-bottom: 24px; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.8; }
#ikHomePage .ikh-acms-points { margin-bottom: 27px; }
#ikHomePage .ikh-acms-points li { position: relative; margin-bottom: 9px; padding-left: 23px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.6; }
#ikHomePage .ikh-acms-points li:before { content: "✓"; position: absolute; left: 0; top: 0; color: #ffb65f; font-weight: 900; }
#ikHomePage .ikh-acms-actions { display: flex; flex-wrap: wrap; gap: 10px; }
#ikHomePage .ikh-acms-screen {
  padding: 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 25px 55px rgba(0,0,0,.22);
}
#ikHomePage .ikh-screen-bar { display: flex; align-items: center; gap: 6px; height: 28px; padding: 0 5px; }
#ikHomePage .ikh-screen-bar span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.45); }
#ikHomePage .ikh-screen-body { display: grid; grid-template-columns: 120px 1fr; min-height: 305px; overflow: hidden; border-radius: 10px; background: #f7f9fb; }
#ikHomePage .ikh-screen-nav { padding: 20px 12px; background: #0c2d4c; }
#ikHomePage .ikh-screen-nav strong { display: block; margin: 0 7px 18px; color: #fff; font-size: 14px; }
#ikHomePage .ikh-screen-nav i { display: block; height: 9px; margin: 0 7px 12px; border-radius: 5px; background: rgba(255,255,255,.18); }
#ikHomePage .ikh-screen-nav i:nth-child(3) { width: 72%; background: rgba(229,135,29,.85); }
#ikHomePage .ikh-screen-main { padding: 24px; }
#ikHomePage .ikh-screen-title { width: 42%; height: 13px; margin-bottom: 19px; border-radius: 6px; background: #1d4569; }
#ikHomePage .ikh-screen-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 15px; }
#ikHomePage .ikh-screen-card { height: 72px; padding: 13px; border: 1px solid #dde6ed; border-radius: 8px; background: #fff; }
#ikHomePage .ikh-screen-card:before { content: ""; display: block; width: 55%; height: 7px; margin-bottom: 13px; border-radius: 4px; background: #b7c7d4; }
#ikHomePage .ikh-screen-card:after { content: ""; display: block; width: 78%; height: 12px; border-radius: 5px; background: #e5871d; opacity: .72; }
#ikHomePage .ikh-screen-table { padding: 13px; border: 1px solid #dde6ed; border-radius: 8px; background: #fff; }
#ikHomePage .ikh-screen-row { height: 9px; margin-bottom: 9px; border-radius: 5px; background: #e5ebf0; }
#ikHomePage .ikh-screen-row:first-child { width: 88%; background: #aabcc9; }
#ikHomePage .ikh-screen-row:nth-child(3) { width: 76%; }
#ikHomePage .ikh-screen-row:nth-child(4) { width: 92%; }

/* FAQ */
#ikHomePage .ikh-faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 46px; align-items: start; }
#ikHomePage .ikh-faq-side {
  position: sticky;
  top: 110px;
  padding: 32px;
  color: #fff;
  border-radius: 15px;
  background: var(--ik-navy);
}
#ikHomePage .ikh-faq-side h2 { margin-bottom: 13px; color: #fff; font-size: 29px; line-height: 1.35; font-weight: 800; letter-spacing: 0em; }
#ikHomePage .ikh-faq-side p { margin-bottom: 22px; color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.75; }
#ikHomePage .ikh-faq-list { border-top: 1px solid var(--ik-line); }
#ikHomePage .ikh-faq-item { border-bottom: 1px solid var(--ik-line); }
#ikHomePage .ikh-faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 78px;
  padding: 18px 4px;
  color: var(--ik-navy-deep);
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 15px;
  font-weight: 750;
}
#ikHomePage .ikh-faq-button span:first-child { display: flex; gap: 12px; line-height: 1.55; }
#ikHomePage .ikh-faq-button span:first-child:before { content: "Q"; color: var(--ik-gold); font-weight: 900; }
#ikHomePage .ikh-faq-icon { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid #cdd9e3; border-radius: 50%; }
#ikHomePage .ikh-faq-icon:before,
#ikHomePage .ikh-faq-icon:after { content: ""; position: absolute; left: 8px; right: 8px; top: 13px; height: 1px; background: var(--ik-navy); transition: transform .18s ease; }
#ikHomePage .ikh-faq-icon:after { transform: rotate(90deg); }
#ikHomePage .ikh-faq-button[aria-expanded="true"] .ikh-faq-icon:after { transform: rotate(0); }
#ikHomePage .ikh-faq-answer { display: none; padding: 0 44px 22px; color: var(--ik-text); font-size: 14px; line-height: 1.8; }
#ikHomePage .ikh-faq-answer.is-open { display: block; }

/* Final CTA */
#ikHomePage .ikh-final { padding: 66px 0; color: #fff; background: #0e355b; }
#ikHomePage .ikh-final-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
#ikHomePage .ikh-final h2 { margin-bottom: 9px; color: #fff; font-size: 31px; line-height: 1.35; font-weight: 800; letter-spacing: 0em; }
#ikHomePage .ikh-final p { margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.7; }
#ikHomePage .ikh-final-actions { display: flex; flex: 0 0 auto; gap: 10px; }
#ikHomePage .ikh-mobile-cta { display: none; }

@media (max-width: 1100px) {
  #ikHomePage .ikh-hero-inner { grid-template-columns: 1fr 380px; gap: 34px; }
  #ikHomePage .ikh-hero h1 { font-size: 45px; }
  #ikHomePage .ikh-service-grid,
  #ikHomePage .ikh-needs-grid,
  #ikHomePage .ikh-records-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #ikHomePage .ikh-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #ikHomePage .ikh-process-step:after { display: none; }
}
@media (max-width: 900px) {
  #ikHomePage .ikh-section { padding: 72px 0; }
  #ikHomePage .ikh-hero-inner { grid-template-columns: 1fr; min-height: 0; }
  #ikHomePage .ikh-hero-copy { max-width: 760px; }
  #ikHomePage .ikh-quick-form { max-width: 650px; }
  #ikHomePage .ikh-facts-grid { grid-template-columns: repeat(2, 1fr); }
  #ikHomePage .ikh-fact:nth-child(2) { border-right: 0; }
  #ikHomePage .ikh-fact:nth-child(-n+2) { border-bottom: 1px solid var(--ik-line); padding-bottom: 20px; }
  #ikHomePage .ikh-fact:nth-child(n+3) { padding-top: 20px; }
  #ikHomePage .ikh-fact:nth-child(3) { padding-left: 0; }
  #ikHomePage .ikh-why-layout,
  #ikHomePage .ikh-acms-layout,
  #ikHomePage .ikh-faq-layout { grid-template-columns: 1fr; }
  #ikHomePage .ikh-faq-side { position: static; }
  #ikHomePage .ikh-acms-screen { max-width: 660px; }
}
@media (max-width: 767px) {
  #ikHomePage { padding-bottom: 67px; }
  #ikHomePage .ikh-wrap { padding-left: 17px; padding-right: 17px; }
  #ikHomePage .ikh-section { padding: 58px 0; }
  #ikHomePage .ikh-section-head { margin-bottom: 27px; }
  #ikHomePage .ikh-section-head h2 { font-size: 29px; }
  #ikHomePage .ikh-section-head p { font-size: 14px; }
  #ikHomePage .ikh-hero-inner { gap: 35px; padding-top: 53px; padding-bottom: 52px; }
  #ikHomePage .ikh-hero h1 { font-size: 37px; line-height: 1.23; }
  #ikHomePage .ikh-hero-copy > p { font-size: 15px; }
  #ikHomePage .ikh-hero-label { font-size: 14px; }
  #ikHomePage .ikh-hero-actions { display: grid; grid-template-columns: 1fr; margin-bottom: 50px; }
  #ikHomePage .ikh-hero-actions .ikh-btn { width: 100%; }
  #ikHomePage .ikh-hero-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
  #ikHomePage .ikh-hero-point { font-size: 13px; }
  #ikHomePage .ikh-quick-form { padding: 25px 20px; border-radius: 13px; }
  #ikHomePage .ikh-quick-form h2 { font-size: 21px; }
  #ikHomePage .ikh-facts-grid { padding: 16px 0; }
  #ikHomePage .ikh-fact { min-height: 62px; padding: 10px 14px; }
  #ikHomePage .ikh-fact strong { font-size: 27px; }
  #ikHomePage .ikh-fact span { font-size: 13px; }
  #ikHomePage .ikh-tabs { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  #ikHomePage .ikh-tab { padding: 0 7px; font-size: 11px; }
  #ikHomePage .ikh-panel-title { align-items: flex-start; flex-direction: column; gap: 5px; }
  #ikHomePage .ikh-service-grid,
  #ikHomePage .ikh-needs-grid,
  #ikHomePage .ikh-records-grid,
  #ikHomePage .ikh-why-list,
  #ikHomePage .ikh-process-grid { grid-template-columns: 1fr; }
  #ikHomePage .ikh-service-card { min-height: 0; }
  #ikHomePage .ikh-why-summary { min-height: 350px; padding: 31px 24px; }
  #ikHomePage .ikh-why-summary h2 { font-size: 29px; }
  #ikHomePage .ikh-process-step { min-height: 0; }
  #ikHomePage .ikh-records-head { align-items: flex-start; flex-direction: column; }
  #ikHomePage .ikh-acms-copy h2 { font-size: 30px; }
  #ikHomePage .ikh-screen-body { grid-template-columns: 82px 1fr; min-height: 250px; }
  #ikHomePage .ikh-screen-main { padding: 16px; }
  #ikHomePage .ikh-screen-cards { grid-template-columns: 1fr; }
  #ikHomePage .ikh-screen-card:nth-child(n+2) { display: none; }
  #ikHomePage .ikh-final-inner { align-items: flex-start; flex-direction: column; }
  #ikHomePage .ikh-final h2 { font-size: 26px; }
  #ikHomePage .ikh-final-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  #ikHomePage .ikh-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 970;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid #d7e0e8;
    background: rgba(255,255,255,.98);
    box-shadow: 0 -10px 30px rgba(7,29,49,.13);
  }
  #ikHomePage .ikh-mobile-cta .ikh-btn { min-height: 48px; padding: 0 10px; font-size: 13px; }
}
@media (max-width: 430px) {
  #ikHomePage .ikh-hero h1 { font-size: 32px; }
  #ikHomePage .ikh-hero-points { grid-template-columns: 1fr; }
  #ikHomePage .ikh-facts-grid { grid-template-columns: 1fr 1fr; }
  #ikHomePage .ikh-fact { padding-left: 8px; padding-right: 8px; }
  #ikHomePage .ikh-fact:first-child,
  #ikHomePage .ikh-fact:nth-child(3) { padding-left: 0; }
  #ikHomePage .ikh-fact strong { font-size: 22px; }
  #ikHomePage .ikh-why-summary .ikh-btn {margin-top: 30px;}
}
@media (prefers-reduced-motion: reduce) {
  #ikHomePage *,
  #ikHomePage *:before,
  #ikHomePage *:after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
