:root {
  --bg: #000000;
  --text: #ffffff;
  --text2: rgba(255,255,255,0.78);
  --muted: rgba(255,255,255,0.62);
  --border: rgba(255,255,255,0.12);
  --borderHeader: rgba(255,255,255,0.08);
  --ctaBorder: rgba(255,255,255,0.22);
  --max: 1120px;
  --padDesktop: 24px;
  --padMobile: 20px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

.kcor-container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--padDesktop);
  padding-right: var(--padDesktop);
}

@media (max-width: 767px) {
  .kcor-container { padding-left: var(--padMobile); padding-right: var(--padMobile); }
}

/* Header */
.kcor-header {
  border-bottom: 1px solid var(--borderHeader);
}
.kcor-header__inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 767px) {
  .kcor-header__inner { height: 72px; }
}

.kcor-brand__link {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .kcor-brand__link { font-size: 15px; }
}

.kcor-nav { display: block; }
.kcor-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
}
.kcor-nav__link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.kcor-nav__link:hover { color: #ffffff; }

.kcor-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kcor-burger {
  width: 36px;
  height: 36px;
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.kcor-burger span {
  display: block;
  width: 16px;
  height: 2px;
  background: rgba(255,255,255,0.82);
  border-radius: 2px;
}

@media (max-width: 991px) {
  .kcor-nav { display: none; }
  .kcor-burger { display: inline-flex; }
}

.kcor-mobile-nav {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0 16px;
}
.kcor-mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kcor-mobile-nav__link {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}
.kcor-mobile-nav__link:hover { color: #ffffff; }

/* Buttons */
.kcor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  height: 56px;
  min-width: 240px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 1px solid transparent;
  white-space: nowrap;
}
.kcor-btn--primary {
  background: #ffffff;
  color: #000000;
}
.kcor-btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: var(--ctaBorder);
}
.kcor-btn--header {
  height: 44px;
  min-width: unset;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .kcor-btn { height: 52px; min-width: 100%; }
  .kcor-btn--header { height: 42px; min-width: unset; }
}

/* Typography */
.kcor-h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-size: 64px;
  line-height: 0.98;
}
.kcor-h2 {
  font-weight: 800;
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.12;
}
.kcor-h2--sentence { text-transform: none; }
.kcor-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text2);
}
.kcor-body p { margin: 0 0 14px; }
.kcor-body p:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
  .kcor-h1 { font-size: 40px; line-height: 1.02; margin-bottom: 14px; }
  .kcor-h2 { font-size: 24px; margin-bottom: 12px; }
  .kcor-body { font-size: 15.5px; }
}

/* Sections */
.kcor-section {
  padding-top: 56px;
  padding-bottom: 44px;
}
@media (max-width: 767px) {
  .kcor-section { padding-top: 40px; padding-bottom: 34px; }
}

.kcor-max860 { max-width: 860px; }
.kcor-bullets-wrap { margin-left: auto; margin-right: auto; }

.kcor-line-stack > div { margin: 0; }
.kcor-spacer { height: 14px; }
@media (max-width: 767px) { .kcor-spacer { height: 12px; } }

/* Hero */
.kcor-hero {
  padding-top: 84px;
  padding-bottom: 54px;
}
.kcor-hero__inner {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.kcor-hero__h1 {
  margin: 0 0 18px;
  font-size: 64px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.kcor-hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text2);
}
.kcor-hero__sub p { margin: 0 0 10px; }
.kcor-hero__sub p:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
  .kcor-hero { padding-top: 56px; padding-bottom: 40px; }
  .kcor-hero__inner { max-width: 420px; }
  .kcor-hero__h1 { font-size: 40px; line-height: 1.02; margin-bottom: 14px; }
  .kcor-hero__sub { font-size: 16px; }
}

.kcor-cta-row {
  margin-top: 26px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.kcor-cta-row--tight {
  margin-top: 18px;
}
@media (max-width: 767px) {
  .kcor-cta-row {
    margin-top: 20px;
    margin-bottom: 12px;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .kcor-cta-row--tight { margin-top: 14px; }
}

.kcor-micro {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 28px;
}
.kcor-micro--note { margin-bottom: 0; margin-top: 10px; }
@media (max-width: 767px) {
  .kcor-micro { font-size: 12.5px; margin-bottom: 22px; }
}

/* Bullets */
.kcor-bullets {
  margin: 0;
  padding-left: 20px;
  color: var(--text2);
  font-size: 17px;
  line-height: 1.65;
}
.kcor-bullets li { margin: 0 0 10px; }
.kcor-bullets li:last-child { margin-bottom: 0; }
.kcor-bullets--dots { list-style: disc; }

@media (max-width: 767px) {
  .kcor-bullets { font-size: 15.5px; }
}

@media (min-width: 768px) {
  .kcor-bullets-wrap { text-align: center; }
  .kcor-bullets-wrap .kcor-bullets,
  .kcor-bullets-wrap .kcor-post-bullets {
    display: inline-block;
    text-align: left;
  }
}

.kcor-post-bullets { margin-top: 14px; }

/* Final CTA section */
.kcor-final-cta {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (max-width: 767px) {
  .kcor-final-cta { padding-top: 40px; padding-bottom: 44px; }
}

/* Steps (Process) */
.kcor-step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}
.kcor-step__meta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}
.kcor-step__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}
.kcor-step__content p { margin: 0 0 14px; }
.kcor-step__content p:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
  .kcor-step { grid-template-columns: 1fr; gap: 14px; }
  .kcor-step__title { font-size: 20px; }
}

/* Services modules */
.kcor-service {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
}
.kcor-service__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .kcor-service { grid-template-columns: 1fr; gap: 12px; }
  .kcor-service__title { font-size: 20px; }
}

/* Contact form */
.kcor-notice {
  max-width: 860px;
  margin: 0 auto 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  font-weight: 700;
}

.kcor-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 28px;
}
@media (max-width: 767px) {
  .kcor-card { padding: 18px; }
}

.kcor-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767px) {
  .kcor-form__grid { grid-template-columns: 1fr; gap: 12px; }
}

.kcor-field { display: flex; flex-direction: column; gap: 8px; }
.kcor-field label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}
.kcor-field input,
.kcor-field select,
.kcor-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.30);
  color: #ffffff;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}
.kcor-field input:focus,
.kcor-field select:focus,
.kcor-field textarea:focus {
  border-color: rgba(255,255,255,0.34);
}

.kcor-field textarea { min-height: 140px; resize: vertical; }
@media (max-width: 767px) {
  .kcor-field textarea { min-height: 120px; }
}

.kcor-field--full { grid-column: 1 / -1; }

.kcor-form__actions { margin-top: 16px; }
.kcor-btn--submit {
  width: 260px;
  min-width: unset;
}
@media (max-width: 767px) {
  .kcor-btn--submit { width: 100%; }
}

.kcor-post-form {
  margin: 26px auto 0;
}
@media (max-width: 767px) {
  .kcor-post-form { margin-top: 20px; }
}

/* Footer */
.kcor-footer {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 22px 0;
}
.kcor-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.kcor-footer__left {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
}
.kcor-footer__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.kcor-footer__link {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
}
.kcor-footer__link:hover { color: #ffffff; }

@media (max-width: 767px) {
  .kcor-footer { padding: 20px 0; }
  .kcor-footer__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .kcor-footer__right { gap: 14px; }
}

/* Ensure mobile orphan control on tight stacks */
@media (max-width: 767px) {
  .kcor-max860,
  .kcor-body.kcor-max860,
  .kcor-line-stack.kcor-max860 {
    max-width: 420px;
    letter-spacing: 0;
  }
}


/* FINAL CTA — CENTER HEADLINE + COPY */
.kcor-final-cta {
  text-align: center;
}

.kcor-final-cta .kcor-h2,
.kcor-final-cta .kcor-body,
.kcor-final-cta .kcor-line-stack {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Center CTA buttons row */
.kcor-final-cta .kcor-cta-row {
  justify-content: center;
}/* FINAL CTA — CENTER HEADLINE + COPY */
.kcor-final-cta {
  text-align: center;
}

.kcor-final-cta .kcor-h2,
.kcor-final-cta .kcor-body,
.kcor-final-cta .kcor-line-stack {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Center CTA buttons row */
.kcor-final-cta .kcor-cta-row {
  justify-content: center;
}
