/* =====================================================================
   TULGA — таныстыру беті (landing)
   app.css-тегі дизайн жүйесін мұралайды: slate реңктер, индиго акцент,
   Instrument Sans. Логотиптің өз түстері (алтын + жасыл) екпін ретінде.
   ===================================================================== */

:root {
  --gold:  #f0ae20;
  --green: #4d7034;
  --green-soft: #f2f7ee;
  --gold-soft:  #fff8e9;

  --lp-max: 1120px;
  --lp-gap: 96px;
}

body.lp {
  background: var(--card);
  color: var(--ink);
}

.lp-wrap {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------------------------------------- үстіңгі жол */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.lp-nav-in {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.lp-nav img { height: 30px; width: auto; display: block; }

.lp-links {
  display: flex;
  gap: 26px;
  margin-left: 12px;
}
.lp-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s;
}
.lp-links a:hover { color: var(--accent); }

.lp-nav .spacer { flex: 1; }

/* ----------------------------------------------------------------- түймелер */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, transform .1s, box-shadow .15s;
  box-shadow: var(--shadow);
}
.lp-btn:hover { background: var(--accent-hover); box-shadow: var(--shadow-md); }
.lp-btn:active { transform: translateY(1px); }

.lp-btn.ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.lp-btn.ghost:hover { border-color: var(--ink-4); background: var(--line-soft); }

.lp-btn.lg { height: 50px; padding: 0 28px; font-size: 15.5px; border-radius: 12px; }

/* -------------------------------------------------------------------- бөлім */
.lp-sec { padding: var(--lp-gap) 0; }
.lp-sec.tinted { background: var(--bg); }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-text);
  background: var(--accent-soft);
  border-radius: 20px;
  padding: 5px 13px;
  margin-bottom: 18px;
}
.lp-eyebrow.leaf { color: var(--green); background: var(--green-soft); }

.lp-h2 {
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}
.lp-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 62ch;
  margin: 0;
}
.lp-head { max-width: 760px; margin-bottom: 46px; }

/* --------------------------------------------------------------------- hero */
.lp-hero {
  padding: 84px 0 76px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -220px; right: -180px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 68%);
  pointer-events: none;
}
.lp-hero-in {
  position: relative;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.lp-h1 {
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 22px;
}
.lp-h1 .hl {
  background: linear-gradient(180deg, transparent 62%, var(--gold-soft) 62%);
  box-shadow: inset 0 -3px 0 var(--gold);
}
.lp-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0 auto 34px;
  max-width: 58ch;
}
.lp-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lp-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--ink-4);
}

/* Түймелердің астындағы сандар жолағы */
.lp-stats {
  margin-top: 52px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-stats .st {
  flex: 1 1 0;
  min-width: 130px;
  padding: 0 18px;
  position: relative;
}
.lp-stats .st + .st::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 38px;
  background: var(--line);
}
.lp-stats b {
  display: block;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.lp-stats .st:nth-child(odd) b { color: var(--accent); }
.lp-stats .st:nth-child(even) b { color: var(--green); }
.lp-stats span { font-size: 13px; color: var(--ink-3); line-height: 1.4; }

/* -------------------------------------------------------------- карточкалар */
.lp-grid { display: grid; gap: 20px; }
.lp-grid.c3 { grid-template-columns: repeat(3, 1fr); }
.lp-grid.c2 { grid-template-columns: repeat(2, 1fr); }

.lp-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.lp-card:hover {
  border-color: var(--accent-ring);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.lp-card h3 { font-size: 18px; margin: 0 0 10px; letter-spacing: -.01em; }
.lp-card p { margin: 0; color: var(--ink-3); font-size: 14.5px; line-height: 1.6; }

.lp-ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}
.lp-ico svg { width: 23px; height: 23px; }
.lp-ico.leaf { background: var(--green-soft); color: var(--green); }
.lp-ico.sun  { background: var(--gold-soft);  color: #b07d09; }

.lp-card .num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}

/* --------------------------------------------------------- мүмкіндік тізімі */
.lp-feat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}
.lp-feat li {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.lp-feat .chk {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  margin-top: 2px;
}
.lp-feat .chk svg { width: 13px; height: 13px; }
.lp-feat b { display: block; font-size: 15px; margin-bottom: 3px; }
.lp-feat span { font-size: 14px; color: var(--ink-3); line-height: 1.55; }
.lp-feat ul { margin: 0; padding: 0; }

/* ------------------------------------------------------------------- пәндер */
.lp-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-chip {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 22px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.lp-chip.on { border-color: var(--accent-ring); background: var(--accent-soft); color: var(--accent-text); }

/* ---------------------------------------------------------------- шақыру жол */
.lp-band {
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 56px 52px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.lp-band h2 { font-size: 29px; margin: 0 0 10px; letter-spacing: -.02em; color: #fff; }
.lp-band p { margin: 0; color: #cbd5e1; font-size: 16px; max-width: 52ch; line-height: 1.6; }
.lp-band .spacer { flex: 1; min-width: 20px; }
.lp-band .lp-btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
}
.lp-band .lp-btn.ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .5); }

/* ------------------------------------------------------------------- төменгі */
.lp-foot {
  border-top: 1px solid var(--line);
  padding: 52px 0 40px;
  font-size: 14px;
  color: var(--ink-3);
}
.lp-foot-in { display: flex; gap: 48px; flex-wrap: wrap; }
.lp-foot img { height: 28px; margin-bottom: 14px; display: block; }
.lp-foot h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-4); margin: 0 0 12px; }
.lp-foot a { color: var(--ink-2); text-decoration: none; }
.lp-foot a:hover { color: var(--accent); text-decoration: underline; }
.lp-foot ul { margin: 0; padding: 0; list-style: none; }
.lp-foot li { margin-bottom: 8px; }
/* Байланыс тізімі — белгішесімен */
.lp-contact li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.lp-contact .ci {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 7px;
  display: grid; place-items: center;
  background: var(--green-soft);
  color: var(--green);
  margin-top: 1px;
}
.lp-contact .ci svg { width: 14px; height: 14px; }
.lp-contact a { line-height: 1.4; }
.lp-contact .xs { font-size: 12px; color: var(--ink-4); }

.lp-copy {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-4);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------- бейімделу */
@media (max-width: 940px) {
  :root { --lp-gap: 68px; }
  .lp-h1 { font-size: 38px; }
  .lp-h2 { font-size: 28px; }
  .lp-grid.c3, .lp-grid.c2 { grid-template-columns: 1fr; }
  .lp-feat { grid-template-columns: 1fr; }
  .lp-links { display: none; }
  .lp-band { padding: 40px 30px; }
  /* Сандар екі-екіден тұрсын */
  .lp-stats .st { flex: 0 0 50%; min-width: 0; padding: 14px 12px; }
  .lp-stats .st:nth-child(odd)::before { display: none; }
  .lp-stats .st:nth-child(3)::before,
  .lp-stats .st:nth-child(4)::before { top: 0; transform: none; }
}

@media (max-width: 560px) {
  :root { --lp-gap: 52px; }
  .lp-wrap { padding: 0 16px; }
  .lp-hero { padding: 52px 0 46px; }
  .lp-h1 { font-size: 31px; }
  .lp-hero p { font-size: 16px; }
  .lp-h2 { font-size: 24px; }
  .lp-lead { font-size: 15.5px; }
  .lp-cta { flex-direction: column; align-items: stretch; }
  .lp-cta .lp-btn { width: 100%; }
  .lp-stats { margin-top: 34px; padding: 14px 0; }
  .lp-stats b { font-size: 26px; margin-bottom: 5px; }
  .lp-stats span { font-size: 12px; }
  .lp-band h2 { font-size: 23px; }
  .lp-foot-in { gap: 28px; }
}
