/* assets/css/approach.css */

:root{
  --kc-font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --kc-ink: #0b1220;
  --kc-muted: rgba(11,18,32,.72);
  --kc-aqua: #2bc4e3;
  --kc-pink: #ff2d55;
  --kc-yellow: #ffd66b;
  --kc-purple: #7c5cff;
  --kc-line: rgba(11,18,32,.10);
  --kc-shadow: 0 18px 60px rgba(11,18,32,.14);
  --kc-shadow2: 0 12px 40px rgba(11,18,32,.10);
  --kc-radius: 22px;
  --kc-radius2: 34px;
  --kc-pad: clamp(14px, 3.5vw, 28px);
  --kc-wrap: 1120px;
}

*{
  box-sizing: border-box;
}

html{
  overflow-x: hidden;
}

body{
  margin: 0;
  font-family: var(--kc-font);
  color: var(--kc-ink);
  background: #fff7ed;
  overflow-x: hidden;
}

.kc-main{
  isolation: isolate;
  overflow-x: clip;
}

.kc-btn{
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: 0 12px 28px rgba(11,18,32,.10);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.kc-btn:focus-visible{
  outline: 3px solid rgba(43,196,227,.35);
  outline-offset: 3px;
}

.kc-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(11,18,32,.14);
}

.kc-btn:active{
  transform: translateY(0);
  filter: saturate(105%);
}

.kc-btn--primary{
  color: #0b1220;
  border: 1px solid rgba(255,255,255,.55);
  background: radial-gradient(120px 120px at 16% 50%, rgba(255,255,255,.35), transparent 62%), linear-gradient(90deg, rgba(43,196,227,1) 0%, rgba(255,45,85,1) 100%);
}

.kc-btn--ghost{
  color: var(--kc-ink);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: 0 12px 26px rgba(11,18,32,.08);
}

.kc-btn--soft{
  color: var(--kc-ink);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: 0 12px 26px rgba(11,18,32,.08);
}

.kc-btn--wide{
  min-width: min(320px, 100%);
}

.kc-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(11,18,32,.08);
  box-shadow: 0 10px 26px rgba(11,18,32,.08);
  font-weight: 800;
  color: rgba(11,18,32,.86);
  max-width: 100%;
}

.kc-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  color: rgba(11,18,32,.92);
  background: rgba(11,18,32,.05);
  border: 1px solid rgba(11,18,32,.08);
  transition: transform .18s ease, background .18s ease;
}

.kc-link:hover{
  transform: translateY(-1px);
  background: rgba(11,18,32,.07);
}

.kc-link:focus-visible{
  outline: 3px solid rgba(43,196,227,.35);
  outline-offset: 3px;
}

.kc-approachHero{
  width: 100%;
  padding: clamp(28px, 6vw, 64px) 0 clamp(24px, 5vw, 54px);
  background: radial-gradient(1200px 520px at 12% 10%, rgba(255,214,107,.34), transparent 60%), radial-gradient(900px 520px at 18% 88%, rgba(43,196,227,.16), transparent 62%), radial-gradient(900px 520px at 86% 24%, rgba(124,92,255,.14), transparent 64%), radial-gradient(900px 520px at 92% 86%, rgba(255,45,85,.10), transparent 64%), linear-gradient(180deg, rgba(255,247,237,1), rgba(255,247,237,.88));
  border-bottom: 1px solid var(--kc-line);
}

.kc-approachHero__inner{
  width: min(var(--kc-wrap), calc(100% - (var(--kc-pad) * 2)));
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.kc-approachHero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(11,18,32,.08);
  box-shadow: 0 12px 28px rgba(11,18,32,.10);
  font-weight: 900;
  color: rgba(11,18,32,.88);
}

.kc-approachHero__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--kc-aqua);
  box-shadow: 0 0 0 4px rgba(43,196,227,.14);
}

.kc-approachHero__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
  font-size: clamp(30px, 6.8vw, 60px);
  max-width: 20ch;
}

.kc-approachHero__lead{
  margin: 0;
  max-width: 72ch;
  color: var(--kc-muted);
  font-size: clamp(14px, 3.2vw, 18px);
  line-height: 1.75;
}

.kc-approachHero__ctaRow{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.kc-approachHero__trust{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.kc-section{
  width: 100%;
  padding: clamp(18px, 4.4vw, 64px) 0;
  background: #fff7ed;
}

.kc-section__inner{
  width: min(var(--kc-wrap), calc(100% - (var(--kc-pad) * 2)));
  margin: 0 auto;
}

.kc-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.kc-card{
  width: 100%;
  border-radius: var(--kc-radius2);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(11,18,32,.08);
  box-shadow: var(--kc-shadow2);
  padding: clamp(16px, 3.2vw, 26px);
  min-width: 0;
}

.kc-card__icon{
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(11,18,32,.05);
  border: 1px solid rgba(11,18,32,.08);
  margin-bottom: 12px;
}

.kc-card__icon svg{
  width: 26px;
  height: 26px;
  color: rgba(11,18,32,.84);
}

.kc-card__title{
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.kc-card__text{
  margin: 0;
  color: var(--kc-muted);
  line-height: 1.75;
}

.kc-card__actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.kc-card__hint{
  color: var(--kc-muted);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(11,18,32,.04);
  border: 1px solid rgba(11,18,32,.06);
}

.kc-cta{
  width: 100%;
  padding: clamp(18px, 4.8vw, 72px) 0 clamp(36px, 6vw, 92px);
  background: radial-gradient(900px 420px at 18% 22%, rgba(43,196,227,.14), transparent 60%), radial-gradient(900px 520px at 86% 68%, rgba(255,45,85,.10), transparent 62%), linear-gradient(180deg, rgba(255,247,237,1), rgba(255,247,237,.88));
  border-top: 1px solid var(--kc-line);
}

.kc-cta__inner{
  width: min(var(--kc-wrap), calc(100% - (var(--kc-pad) * 2)));
  margin: 0 auto;
  border-radius: var(--kc-radius2);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(11,18,32,.08);
  box-shadow: var(--kc-shadow);
  padding: clamp(16px, 3.2vw, 28px);
  display: grid;
  gap: 14px;
  text-align: center;
  justify-items: center;
}

.kc-cta__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-size: clamp(22px, 5vw, 40px);
}

.kc-cta__text{
  margin: 0;
  max-width: 70ch;
  color: var(--kc-muted);
  line-height: 1.75;
}

.kc-cta__actions{
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.kc-reveal{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease, transform .55s ease;
}

.kc-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px){
  .kc-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .kc-card__title{
    font-size: 24px;
  }

  .kc-card__actions{
    justify-content: flex-start;
  }
}

@media (min-width: 900px){
  .kc-approachHero__inner{
    text-align: center;
  }
}

@media (max-width: 360px){
  .kc-btn{
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce){
  .kc-reveal{
    transition: none;
  }

  .kc-btn{
    transition: none;
  }
}
