/* ============================================================
   BRANDMAKERS × amoCRM
   Design system: Headspace-inspired (calm, professional, playful)
   refero.design/style/035a098b-5a27-48a3-8a3a-c68a698e3eab
   ============================================================ */

:root {
  /* Headspace palette */
  --sky-connect:    #0061ef;   /* primary CTA blue */
  --sky-hover:      #004fc4;
  --sunshine:       #ffce00;   /* yellow accent */
  --plum:           #3b197f;   /* deep purple */
  --ocean:          #00a4ff;   /* light blue */

  --cloud-whisper:  #f9f4f2;   /* warm off-white section bg */
  --pure-white:     #ffffff;
  --inkwell:        #4b4c4d;   /* body text */
  --charcoal:       #1c1c1c;   /* headings */
  --pale-ash:       #e2ded9;
  --light-stone:    #d0d0d0;

  --shadow-soft:    0 2px 0 0 rgba(65, 61, 69, 0.2);
  --shadow-card:    0 4px 24px rgba(65, 61, 69, 0.08);
  --shadow-card-h:  0 12px 32px rgba(65, 61, 69, 0.14);

  --r-input: 8px;
  --r-card:  16px;
  --r-btn:   24px;
  --r-cta:   32px;
  --r-pill:  800px;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--pure-white);
  color: var(--inkwell);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- typography ---------- */
.display {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}
.display--md { font-size: clamp(36px, 4.5vw, 56px); }
.display__accent { color: var(--sky-connect); }
.display--cream { color: var(--cloud-whisper); }

.heading {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}
.heading--light { color: var(--pure-white); }
.heading__accent { color: var(--sky-connect); }
.heading__accent-yellow { color: var(--sunshine); }

.lead {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--inkwell);
  max-width: 560px;
}
.lead--light { color: rgba(255, 255, 255, 0.85); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
  font-family: var(--font);
}
.btn--lg {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: var(--r-cta);
}
.btn--full { width: 100%; justify-content: center; }
.btn--primary {
  background: var(--sky-connect);
  color: var(--pure-white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover {
  background: var(--sky-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 0 rgba(65,61,69,0.25);
}
.btn--ghost {
  background: var(--pure-white);
  color: var(--charcoal);
  border: 1px solid var(--light-stone);
  box-shadow: var(--shadow-soft);
}
.btn--ghost:hover {
  background: var(--cloud-whisper);
  transform: translateY(-1px);
}
.btn--accent {
  background: var(--sunshine);
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
}
.btn--accent:hover {
  background: #ffd933;
  transform: translateY(-1px);
}

/* ---------- pill / badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: var(--cloud-whisper);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.pill--accent {
  background: var(--sunshine);
  color: var(--charcoal);
}

/* ============================================================
   TOPBAR (yellow announcement)
   ============================================================ */
.topbar {
  background: var(--sunshine);
  font-size: 14px;
  font-weight: 500;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 32px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--charcoal);
}
.topbar__link {
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--pale-ash);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 40px; height: 40px;
  background: var(--sky-connect);
  color: var(--pure-white);
  border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 22px;
}
.logo__text {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.logo__text em {
  font-style: normal;
  color: var(--sky-connect);
  font-weight: 600;
}
.logo--light .logo__text { color: var(--pure-white); }
.logo--light .logo__text em { color: var(--sunshine); }

.nav { display: flex; gap: 28px; }
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--inkwell);
  transition: color .15s ease;
}
.nav__link:hover { color: var(--sky-connect); }

.burger { display: none; flex-direction: column; gap: 5px; }
.burger span { width: 26px; height: 2px; background: var(--charcoal); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 100px;
  background: var(--pure-white);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__copy {
  display: flex; flex-direction: column;
  gap: 24px;
}
.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 8px;
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--pale-ash);
}
.trust__num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sky-connect);
  line-height: 1;
}
.trust__num small { font-size: 0.5em; color: var(--inkwell); margin-left: 2px; }
.trust__label {
  display: block;
  font-size: 13px;
  color: var(--inkwell);
  margin-top: 6px;
  line-height: 1.3;
}

/* ---- dashboard mockup ---- */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}
.dashboard {
  width: 100%;
  max-width: 540px;
  background: var(--pure-white);
  border-radius: 20px;
  border: 1px solid var(--pale-ash);
  box-shadow: 0 30px 80px rgba(65, 61, 69, 0.12);
  overflow: hidden;
}
.dashboard__topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--pale-ash);
  background: var(--cloud-whisper);
}
.dashboard__dots { display: flex; gap: 6px; }
.dashboard__dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--light-stone);
}
.dashboard__dots span:nth-child(1) { background: #ff6b6b; }
.dashboard__dots span:nth-child(2) { background: #ffce00; }
.dashboard__dots span:nth-child(3) { background: #4ade80; }
.dashboard__url {
  font-size: 12px;
  color: var(--inkwell);
  background: var(--pure-white);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--pale-ash);
}
.dashboard__body {
  display: grid;
  grid-template-columns: 130px 1fr;
}
.dashboard__sidebar {
  background: var(--cloud-whisper);
  padding: 16px 8px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.d-tab {
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 8px;
  color: var(--inkwell);
}
.d-tab--active {
  background: var(--sky-connect);
  color: var(--pure-white);
  font-weight: 600;
}
.d-tab--ai {
  background: var(--sunshine);
  color: var(--charcoal);
  font-weight: 700;
  margin-top: 4px;
}
.dashboard__main {
  padding: 16px;
  background: var(--pure-white);
}
.d-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.d-stage {
  background: var(--cloud-whisper);
  border-radius: 10px;
  padding: 10px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.d-stage__name {
  font-size: 11px;
  font-weight: 700;
  color: var(--inkwell);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.d-stage__count {
  font-size: 22px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.d-card {
  background: var(--pure-white);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 11px;
  color: var(--charcoal);
  border: 1px solid var(--pale-ash);
}
.d-card--ai {
  background: var(--sunshine);
  font-weight: 700;
  border-color: var(--sunshine);
}
.d-card--hot {
  background: #ffe5e5;
  border-color: #ffb3b3;
  font-weight: 700;
}
.d-ai-banner {
  margin-top: 12px;
  background: var(--plum);
  color: var(--pure-white);
  padding: 12px;
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
}
.d-ai-banner__icon { font-size: 22px; }
.d-ai-banner__title { font-size: 12px; font-weight: 700; opacity: 0.85; }
.d-ai-banner__text { font-size: 11px; opacity: 0.92; line-height: 1.3; margin-top: 2px; }
.d-ai-banner__btn {
  background: var(--sunshine);
  color: var(--charcoal);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: auto;
}

/* floating stickers */
.hero__sticker {
  position: absolute;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  box-shadow: var(--shadow-card-h);
  animation: float 5s ease-in-out infinite;
}
.hero__sticker--1 {
  top: -10px; left: -20px;
  width: 110px; height: 110px;
  background: var(--sunshine);
  color: var(--charcoal);
  flex-direction: column;
  display: flex;
  justify-content: center;
  padding: 8px;
}
.hero__sticker-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.hero__sticker-label {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.8;
}
.hero__sticker--2 {
  bottom: 0; right: -20px;
  width: 70px; height: 70px;
  background: var(--ocean);
  color: var(--pure-white);
  font-size: 30px;
  animation-delay: 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}

/* ============================================================
   LOGOBAR
   ============================================================ */
.logobar {
  background: var(--cloud-whisper);
  padding: 40px 0;
  border-top: 1px solid var(--pale-ash);
  border-bottom: 1px solid var(--pale-ash);
}
.logobar__title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--inkwell);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.logobar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
}
.logobar__item {
  background: var(--pure-white);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--pale-ash);
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section { padding: 100px 0; }
.section--cream { background: var(--cloud-whisper); }
.section--plum {
  background: var(--plum);
  color: var(--pure-white);
}

.section__head {
  display: flex; flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
  max-width: 880px;
}
.section__head--center {
  margin: 0 auto 56px;
  align-items: center;
  text-align: center;
}
.section__head--center .lead { margin: 0 auto; }

/* ============================================================
   PAINS
   ============================================================ */
.pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--pure-white);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-h);
}
.pain-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cloud-whisper);
  display: grid; place-items: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.pain-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.pain-card__desc {
  font-size: 15px;
  color: var(--inkwell);
  line-height: 1.5;
}

/* ============================================================
   PILLARS (4 solution principles)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--cloud-whisper);
  border-radius: var(--r-card);
  padding: 32px 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: transform .25s ease;
}
.pillar:hover { transform: translateY(-4px); }
.pillar__num {
  font-size: 14px;
  font-weight: 700;
  color: var(--sky-connect);
  letter-spacing: 0.05em;
}
.pillar__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.pillar__desc {
  font-size: 14px;
  color: var(--inkwell);
  line-height: 1.5;
}

/* ============================================================
   AI SECTION (purple)
   ============================================================ */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.ai-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-card);
  padding: 32px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, background .25s ease;
}
.ai-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}
.ai-card__icon {
  width: 56px; height: 56px;
  background: var(--sunshine);
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 28px;
  color: var(--charcoal);
}
.ai-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--pure-white);
  letter-spacing: -0.02em;
}
.ai-card__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.ai-card__metric {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex; align-items: baseline; gap: 12px;
}
.ai-card__metric-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--sunshine);
  letter-spacing: -0.03em;
  line-height: 1;
}
.ai-card__metric-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.ai-cta {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
}
.ai-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   INCLUDES (8 work blocks)
   ============================================================ */
.includes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.include {
  background: var(--cloud-whisper);
  border-radius: var(--r-card);
  padding: 24px;
  transition: transform .25s ease, background .25s ease;
}
.include:hover {
  transform: translateY(-3px);
  background: var(--pure-white);
  box-shadow: var(--shadow-card);
}
.include__icon {
  width: 48px; height: 48px;
  background: var(--pure-white);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
}
.include__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.25;
}
.include__desc {
  font-size: 13px;
  color: var(--inkwell);
  line-height: 1.5;
}

/* ============================================================
   INDUSTRIES (tabbed)
   ============================================================ */
.ind-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}
.ind-tab {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: var(--pure-white);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--pale-ash);
  transition: all .2s ease;
}
.ind-tab:hover { border-color: var(--sky-connect); }
.ind-tab--active {
  background: var(--sky-connect);
  color: var(--pure-white);
  border-color: var(--sky-connect);
}
.ind-content {
  background: var(--pure-white);
  border-radius: var(--r-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
  min-height: 280px;
}
.ind-panel { display: none; }
.ind-panel--active { display: block; }
.ind-panel h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ind-panel > p {
  font-size: 17px;
  color: var(--inkwell);
  margin-bottom: 20px;
  max-width: 720px;
  line-height: 1.5;
}
.ind-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}
.ind-panel li {
  padding: 12px 16px;
  background: var(--cloud-whisper);
  border-radius: 10px;
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 500;
}

/* ============================================================
   CASES
   ============================================================ */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case {
  background: var(--pure-white);
  border-radius: var(--r-card);
  padding: 32px 28px;
  border: 1px solid var(--pale-ash);
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.case:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-h);
}
.case--featured {
  background: var(--sky-connect);
  color: var(--pure-white);
  border-color: var(--sky-connect);
}
.case__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--cloud-whisper);
  color: var(--inkwell);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.case__tag--accent {
  background: var(--sunshine);
  color: var(--charcoal);
}
.case--featured .case__tag {
  background: rgba(255,255,255,0.18);
  color: var(--pure-white);
}
.case--featured .case__tag--accent {
  background: var(--sunshine);
  color: var(--charcoal);
}
.case__big {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--sky-connect);
}
.case__big small { font-size: 0.42em; opacity: 0.6; margin-left: 4px; }
.case--featured .case__big { color: var(--sunshine); }
.case--featured .case__big small { opacity: 0.85; }
.case__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.case--featured .case__title { color: var(--pure-white); }
.case__desc {
  font-size: 14px;
  color: var(--inkwell);
  line-height: 1.5;
}
.case--featured .case__desc { color: rgba(255,255,255,0.85); }
.case__meta {
  display: flex; gap: 6px;
  font-size: 12px;
  color: var(--inkwell);
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}
.case--featured .case__meta { color: rgba(255,255,255,0.7); }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  background: var(--pure-white);
  border-radius: var(--r-card);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  border: 1px solid var(--pale-ash);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.step__day {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: var(--sky-connect);
  background: rgba(0, 97, 239, 0.1);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.step__num {
  font-size: 36px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  line-height: 1;
}
.step__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.step__desc {
  font-size: 14px;
  color: var(--inkwell);
  line-height: 1.5;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: var(--pure-white);
  border-radius: var(--r-card);
  padding: 36px 30px;
  border: 2px solid var(--pale-ash);
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--sky-connect);
  box-shadow: var(--shadow-card-h);
}
.plan--featured {
  background: var(--sky-connect);
  color: var(--pure-white);
  border-color: var(--sky-connect);
  transform: scale(1.04);
}
.plan--featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--sunshine);
  color: var(--charcoal);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}
.plan__name {
  font-size: 24px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.plan--featured .plan__name { color: var(--pure-white); }
.plan__for {
  font-size: 13px;
  color: var(--inkwell);
}
.plan--featured .plan__for { color: rgba(255,255,255,0.8); }
.plan__price {
  font-size: 14px;
  color: var(--inkwell);
  margin-top: 4px;
}
.plan--featured .plan__price { color: rgba(255,255,255,0.85); }
.plan__price b {
  font-size: 36px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  margin-right: 2px;
}
.plan--featured .plan__price b { color: var(--pure-white); }
.plan__time {
  font-size: 13px;
  color: var(--sky-connect);
  font-weight: 600;
}
.plan--featured .plan__time { color: var(--sunshine); }
.plan__list {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  font-size: 14px;
  flex: 1;
}
.plan__list li { line-height: 1.4; }
.plan__list-muted {
  color: var(--inkwell);
  font-style: italic;
  opacity: 0.7;
  font-size: 13px;
}
.plan--featured .plan__list-muted { color: rgba(255,255,255,0.6); }
.plan--featured .btn--primary {
  background: var(--sunshine);
  color: var(--charcoal);
}
.plan--featured .btn--primary:hover { background: #ffd933; }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc__form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--pure-white);
  border-radius: var(--r-card);
  padding: 40px;
  display: flex; flex-direction: column;
  gap: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  color: var(--charcoal);
}
.calc__step {
  display: flex; flex-direction: column;
  gap: 10px;
}
.calc__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
}
.calc__opts {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.calc__opt {
  flex: 1; min-width: 120px;
  cursor: pointer;
}
.calc__opt input { display: none; }
.calc__opt span {
  display: block;
  padding: 12px 14px;
  border-radius: var(--r-pill);
  background: var(--cloud-whisper);
  border: 2px solid var(--pale-ash);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all .15s ease;
}
.calc__opt input:checked + span {
  background: var(--sky-connect);
  color: var(--pure-white);
  border-color: var(--sky-connect);
}
.calc__opt:hover span { border-color: var(--sky-connect); }
.calc__result {
  background: var(--cloud-whisper);
  border-radius: var(--r-card);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  text-align: center;
}
.calc__result-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--inkwell);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.calc__result-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--sky-connect);
  letter-spacing: -0.03em;
  line-height: 1;
}
.calc__result-note {
  font-size: 13px;
  color: var(--inkwell);
}

/* ============================================================
   SUPPORT TARIFFS
   ============================================================ */
.support {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sup-card {
  background: var(--cloud-whisper);
  border-radius: var(--r-card);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  gap: 14px;
  border: 2px solid transparent;
  transition: transform .25s ease, border-color .25s ease;
}
.sup-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky-connect);
}
.sup-card--accent {
  background: var(--sky-connect);
  color: var(--pure-white);
}
.sup-card--ai {
  background: var(--plum);
  color: var(--pure-white);
}
.sup-card__name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.sup-card--accent .sup-card__name,
.sup-card--ai .sup-card__name { color: var(--pure-white); }
.sup-card__price {
  font-size: 14px;
  color: var(--inkwell);
}
.sup-card--accent .sup-card__price,
.sup-card--ai .sup-card__price { color: rgba(255,255,255,0.8); }
.sup-card__price b {
  font-size: 28px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.03em;
}
.sup-card--accent .sup-card__price b,
.sup-card--ai .sup-card__price b { color: var(--pure-white); }
.sup-card__list {
  display: flex; flex-direction: column;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
}
.sup-card__list li::before {
  content: "✓ ";
  color: var(--sky-connect);
  font-weight: 700;
}
.sup-card--accent .sup-card__list li::before,
.sup-card--ai .sup-card__list li::before { color: var(--sunshine); }

/* ============================================================
   GUARANTEES
   ============================================================ */
.guars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.guar {
  background: var(--pure-white);
  border-radius: var(--r-card);
  padding: 24px 20px;
  display: flex; flex-direction: column;
  gap: 10px;
  text-align: center;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.guar__icon {
  width: 56px; height: 56px;
  background: var(--cloud-whisper);
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 26px;
}
.guar h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.guar p {
  font-size: 13px;
  color: var(--inkwell);
  line-height: 1.5;
}

/* ============================================================
   MIGRATION
   ============================================================ */
.migration {
  background: linear-gradient(135deg, var(--sunshine) 0%, #ffe066 100%);
  padding: 100px 0;
}
.migration__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.migration__copy { display: flex; flex-direction: column; gap: 20px; }
.migration__list {
  display: flex; flex-direction: column;
  gap: 8px;
  font-size: 16px;
}
.migration__price {
  font-size: 18px;
  color: var(--charcoal);
}
.migration__price b {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.migration__visual { display: grid; place-items: center; }
.migration__chart {
  display: flex; align-items: center;
  gap: 24px;
  background: var(--pure-white);
  padding: 36px;
  border-radius: var(--r-card);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.m-side {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.m-side__logo {
  width: 88px; height: 88px;
  border-radius: 22px;
  display: grid; place-items: center;
  font-size: 28px;
  font-weight: 800;
  background: #ff6b00;
  color: white;
  letter-spacing: -0.02em;
}
.m-side__logo--amo { background: var(--sky-connect); }
.m-side__label { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.m-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.m-arrow svg { width: 100px; height: 40px; }
.m-arrow__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--sky-connect);
  background: rgba(0, 97, 239, 0.1);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.team__copy { display: flex; flex-direction: column; gap: 16px; }
.team__lead { font-size: 17px; line-height: 1.6; color: var(--inkwell); }
.team__list {
  display: flex; flex-direction: column;
  gap: 10px;
  font-size: 15px;
  padding-left: 20px;
  list-style: disc;
  color: var(--inkwell);
}
.team__list li { line-height: 1.5; }
.team__list b { color: var(--charcoal); }
.team__partners h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.team__logos {
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.team-logo {
  background: var(--pure-white);
  border: 1px solid var(--pale-ash);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 920px; }
.faq {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--pale-ash);
}
.faq__item {
  border-bottom: 1px solid var(--pale-ash);
  padding: 20px 0;
}
.faq__item summary {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.015em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--sky-connect);
  transition: transform .25s ease;
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--cloud-whisper);
  border-radius: 50%;
  display: grid; place-items: center;
  line-height: 1;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
  background: var(--sky-connect);
  color: var(--pure-white);
}
.faq__item p {
  padding-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--inkwell);
  max-width: 760px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  background: var(--sky-connect);
  color: var(--pure-white);
  padding: 100px 0;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cta__copy { display: flex; flex-direction: column; gap: 20px; }
.cta__copy .pill { background: var(--sunshine); color: var(--charcoal); }
.cta__copy .display { color: var(--pure-white); }
.cta__copy .lead { color: rgba(255,255,255,0.85); }
.cta__list {
  display: flex; flex-direction: column;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.cta__contacts {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.cta__contact {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 6px;
  width: fit-content;
  transition: color .2s ease;
}
.cta__contact:hover { color: var(--sunshine); }

.form {
  background: var(--pure-white);
  border-radius: var(--r-card);
  padding: 36px;
  display: flex; flex-direction: column;
  gap: 16px;
  color: var(--charcoal);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}
.form__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--charcoal);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--inkwell);
}
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: var(--r-input);
  border: 1px solid var(--light-stone);
  background: var(--pure-white);
  font: inherit;
  color: var(--charcoal);
  transition: border-color .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky-connect);
  box-shadow: 0 0 0 3px rgba(0,97,239,0.12);
}
.form__note {
  font-size: 12px;
  color: var(--inkwell);
  text-align: center;
  margin-top: 4px;
}
.form__note a { color: var(--sky-connect); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: var(--pure-white);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer__brand {
  display: flex; flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer__brand .logo__mark {
  background: var(--sky-connect);
}
.footer__tag {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
  line-height: 1.5;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--sunshine);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer__cols a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color .15s ease;
}
.footer__cols a:hover { color: var(--pure-white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-inner a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}
.footer__bottom-inner a:hover { color: var(--pure-white); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--sky-connect);
  color: var(--pure-white);
  padding: 16px 20px;
  border-radius: var(--r-cta);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0, 97, 239, 0.4);
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__grid       { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual     { order: -1; max-width: 540px; margin: 0 auto; }
  .hero__trust      { grid-template-columns: repeat(2, 1fr); }
  .pains            { grid-template-columns: repeat(2, 1fr); }
  .pillars          { grid-template-columns: repeat(2, 1fr); }
  .ai-grid          { grid-template-columns: 1fr; }
  .includes         { grid-template-columns: repeat(2, 1fr); }
  .cases            { grid-template-columns: repeat(2, 1fr); }
  .process          { grid-template-columns: repeat(2, 1fr); }
  .pricing          { grid-template-columns: 1fr; }
  .plan--featured   { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
  .support          { grid-template-columns: repeat(2, 1fr); }
  .guars            { grid-template-columns: repeat(3, 1fr); }
  .migration__inner { grid-template-columns: 1fr; gap: 40px; }
  .team             { grid-template-columns: 1fr; gap: 40px; }
  .cta__inner       { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner    { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container        { padding: 0 20px; }
  .nav              { display: none; }
  .burger           { display: flex; }
  .header__inner    { height: 64px; }
  .topbar__inner    { font-size: 12px; padding: 8px 16px; }
  .hero             { padding: 40px 0 60px; }
  .section          { padding: 64px 0; }
  .cta              { padding: 64px 0; }
  .migration        { padding: 64px 0; }
  .pains            { grid-template-columns: 1fr; }
  .pillars          { grid-template-columns: 1fr; }
  .includes         { grid-template-columns: 1fr; }
  .cases            { grid-template-columns: 1fr; }
  .process          { grid-template-columns: 1fr; }
  .support          { grid-template-columns: 1fr; }
  .guars            { grid-template-columns: 1fr; }
  .ind-content      { padding: 24px 20px; }
  .ind-panel ul     { grid-template-columns: 1fr; }
  .calc__form       { padding: 24px 20px; }
  .calc__opts       { flex-direction: column; }
  .calc__opt        { min-width: auto; }
  .form             { padding: 24px 20px; }
  .footer__cols     { grid-template-columns: 1fr; gap: 24px; }
  .sticky-cta       { display: block; }
  body              { padding-bottom: 80px; }
  .hero__sticker--1 { width: 80px; height: 80px; top: -10px; left: -10px; }
  .hero__sticker-num { font-size: 22px; }
  .hero__sticker--2 { width: 50px; height: 50px; font-size: 22px; right: -10px; }
}
