/* ===========================================================
   Klik — Web Design & Local SEO
   Modern dark / electric-blue theme
   =========================================================== */

:root {
  --bg:        #070B16;
  --bg-soft:   #0C1222;
  --surface:   #111A2E;
  --surface-2: #16203A;
  --border:    #1E2A45;
  --text:      #E8ECF5;
  --muted:     #9AA7C2;
  --muted-2:   #6B7896;
  --blue:      #3B82F6;
  --blue-2:    #2563EB;
  --cyan:      #22D3EE;
  --grad:      linear-gradient(100deg, #3B82F6 0%, #22D3EE 100%);
  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1160px;
  --shadow:    0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-blue: 0 18px 40px -16px rgba(59, 130, 246, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: #03060d; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .brand__mark { font-family: 'Sora', 'Inter', sans-serif; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--cyan); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad);
  color: #06101F;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -14px rgba(59,130,246,0.6); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--blue); color: #fff; background: rgba(59,130,246,0.08); }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 22, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled { border-color: var(--border); background: rgba(7, 11, 22, 0.9); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand__mark { font-size: 1.5rem; font-weight: 800; color: #fff; }
.brand__dot { position: relative; color: var(--cyan); }
.brand__dot::after {
  content: "";
  position: absolute;
  top: 2px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.nav__links { display: flex; gap: 8px; align-items: center; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer;
  color: var(--muted); font-family: inherit; font-size: 0.94rem; font-weight: 500;
  padding: 9px 14px; border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav__item:hover > .nav__link,
.nav__item.is-open > .nav__link { color: #fff; background: rgba(255,255,255,0.05); }
.caret {
  width: 7px; height: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.25s ease;
  opacity: 0.7;
}
.nav__item:hover .caret,
.nav__item.is-open .caret { transform: rotate(-135deg) translate(-1px, -1px); }

/* Dropdown panel */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 248px;
  background: rgba(16, 24, 44, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 60;
}
.dropdown::before { /* hover bridge so the menu doesn't close in the gap */
  content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.nav__item:hover .dropdown,
.nav__item.is-open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px; border-radius: 9px;
  color: var(--text); transition: background 0.18s;
}
.dropdown a:hover { background: rgba(59,130,246,0.14); }
.dropdown__title { font-size: 0.92rem; font-weight: 600; color: #fff; }
.dropdown__desc { font-size: 0.78rem; color: var(--muted-2); }
.dropdown__all {
  margin-top: 4px; border-top: 1px solid var(--border); border-radius: 0 0 9px 9px;
  color: var(--cyan) !important; font-size: 0.85rem; font-weight: 600;
}
.dropdown__all:hover { background: rgba(34,211,238,0.12); }

.nav__cta { padding: 10px 18px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ===== Hero ===== */
.hero { position: relative; padding: 90px 0 70px; overflow: hidden; }
.hero__glow {
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(closest-side, rgba(59,130,246,0.28), rgba(34,211,238,0.10) 55%, transparent 75%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.4rem); font-weight: 800; line-height: 1.05; margin-bottom: 22px; }
.hero__sub { max-width: 620px; margin: 0 auto 34px; font-size: 1.16rem; color: var(--muted); }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero__trust {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  max-width: 640px;
  margin: 0 auto;
}
.trust__item { display: flex; flex-direction: column; }
.trust__item strong { font-family: 'Sora'; font-size: 1.9rem; font-weight: 800; color: #fff; }
.trust__item span { font-size: 0.84rem; color: var(--muted-2); }

/* ===== Logo bar ===== */
.logobar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.logobar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; flex-wrap: wrap; }
.logobar__inner > span { color: var(--muted-2); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; }
.logobar__names { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--muted); font-weight: 600; }
.logobar__names .dot { color: var(--blue); }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; line-height: 1.12; }
.section__lead { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }

/* ===== Grid + cards ===== */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--blue); }
.card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* ===== Services ===== */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.service:hover { transform: translateY(-4px); }
.service--feature { border-color: rgba(59,130,246,0.6); background: linear-gradient(180deg, rgba(59,130,246,0.10), var(--surface) 60%); box-shadow: var(--shadow-blue); }
.service__num { font-family: 'Sora'; font-size: 0.9rem; font-weight: 700; color: var(--cyan); letter-spacing: 0.1em; }
.service h3 { font-size: 1.35rem; margin: 12px 0 10px; }
.service p { color: var(--muted); font-size: 0.97rem; margin-bottom: 18px; }
.service__badge {
  position: absolute; top: 18px; right: 18px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--grad); color: #06101F; padding: 5px 11px; border-radius: 999px;
}

.ticks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; color: var(--text); font-size: 0.94rem; }
.ticks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  font-size: 0.7rem; font-weight: 800;
  color: var(--cyan);
  border: 1px solid rgba(34,211,238,0.4);
  border-radius: 50%;
}

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step__num {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad);
  color: #06101F;
  font-family: 'Sora'; font-weight: 800; font-size: 1.2rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ===== Cases ===== */
.case {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s, border-color 0.2s;
}
.case:hover { transform: translateY(-4px); border-color: var(--cyan); }
.case__tag {
  display: inline-block;
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cyan);
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.25);
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.case h3 { font-size: 1.3rem; margin-bottom: 10px; }
.case p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.case__stat { font-size: 0.9rem; color: var(--muted-2); padding-top: 14px; border-top: 1px solid var(--border); }
.case__stat strong { color: var(--text); }

/* ===== Pricing ===== */
.pricing { align-items: start; }
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.plan--feature {
  border: 2px solid var(--cyan);
  background: linear-gradient(180deg, rgba(59,130,246,0.18), var(--surface) 58%);
  box-shadow: 0 24px 60px -18px rgba(34,211,238,0.5);
  transform: scale(1.05) translateY(-6px);
  z-index: 2;
}
.plan--feature .plan__name { color: #fff; }
.plan--feature .plan__amt { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.plan__badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
  background: var(--grad); color: #06101F;
  padding: 7px 18px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(34,211,238,0.6);
}
.plan__rec {
  margin: -10px 0 18px;
  color: var(--cyan); font-size: 0.86rem; font-weight: 700;
}
.plan__name { font-size: 1.3rem; }
.plan__desc { color: var(--muted); font-size: 0.92rem; margin: 6px 0 18px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.plan__amt { font-family: 'Sora'; font-size: 2.3rem; font-weight: 800; color: #fff; }
.plan__per { color: var(--muted-2); font-size: 0.9rem; }
.plan .ticks { margin-bottom: 24px; flex: 1; }
.plan .btn { margin-top: auto; }
.plan__note { text-align: center; font-size: 0.82rem; color: var(--muted-2); margin-top: 10px; }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  font-size: 1.04rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--cyan); font-size: 1.4rem; font-weight: 400; transition: transform 0.2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding-bottom: 20px; font-size: 0.97rem; }

/* ===== CTA ===== */
.cta__card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 50px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta__card h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.cta__card > p { color: var(--muted); max-width: 520px; margin: 0 auto 30px; }

.form { max-width: 560px; margin: 0 auto; text-align: left; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form input, .form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--blue); }
.form textarea { margin-bottom: 16px; resize: vertical; }
.form__status { text-align: center; margin-top: 14px; font-size: 0.92rem; min-height: 1.2em; }
.form__status.is-ok { color: var(--cyan); }
.form__status.is-err { color: #ff7a7a; }
.cta__alt { margin-top: 22px; color: var(--muted-2); font-size: 0.92rem; }
.cta__alt a { color: var(--cyan); }

/* ===== Hero micro-trust ===== */
.hero__microtrust {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin: -34px auto 56px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero__microtrust span { white-space: nowrap; }

/* ===== Rating (section head) ===== */
.rating { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.rating__stars { color: #FACC15; font-size: 1.25rem; letter-spacing: 2px; }
.rating__text { color: var(--muted); font-size: 0.95rem; }

/* ===== Testimonials ===== */
.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.quote:hover { transform: translateY(-4px); border-color: var(--blue); }
.quote__stars { color: #FACC15; font-size: 1rem; letter-spacing: 2px; }
.quote blockquote { color: var(--text); font-size: 1.02rem; line-height: 1.6; flex: 1; }
.quote figcaption { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid var(--border); }
.quote figcaption strong { color: #fff; font-size: 0.98rem; }
.quote figcaption span { color: var(--muted-2); font-size: 0.84rem; }

/* ===== Founding client offer ===== */
.offer__card {
  background: linear-gradient(160deg, rgba(59,130,246,0.12), var(--surface) 60%);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 22px;
  padding: 50px;
  text-align: center;
  box-shadow: var(--shadow-blue);
}
.offer__card h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.offer__lead { color: var(--muted); max-width: 600px; margin: 0 auto 26px; font-size: 1.06rem; }
.offer__perks {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin: 0 auto 30px;
}
.offer__perks li { position: relative; padding-left: 30px; color: var(--text); font-size: 0.98rem; }
.offer__perks li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 800;
  color: #06101F; background: var(--grad);
  border-radius: 50%;
}
.offer__note { margin-top: 18px; color: var(--cyan); font-size: 0.9rem; font-weight: 600; }

/* ===== Guarantee strip ===== */
.guarantee {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 40px auto 0;
  padding: 22px 26px;
  background: linear-gradient(120deg, rgba(59,130,246,0.10), rgba(34,211,238,0.06));
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: var(--radius);
}
.guarantee__icon { font-size: 1.8rem; line-height: 1; }
.guarantee p { color: var(--muted); font-size: 0.98rem; }
.guarantee strong { color: #fff; }

/* ===== Blog index ===== */
.blog-hero { position: relative; padding: 80px 0 30px; overflow: hidden; text-align: center; }
.blog-hero__inner { position: relative; z-index: 1; }
.blog-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.08; margin-bottom: 18px; }
.blog-hero__sub { max-width: 580px; margin: 0 auto; color: var(--muted); font-size: 1.12rem; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.post-card:hover { transform: translateY(-5px); border-color: var(--blue); }
.post-card__tag {
  align-self: flex-start;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cyan); background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.25);
  padding: 4px 12px; border-radius: 999px;
}
.post-card h2 { font-family: 'Sora'; font-size: 1.22rem; line-height: 1.25; color: #fff; }
.post-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.post-card__meta { color: var(--muted-2); font-size: 0.82rem; padding-top: 12px; border-top: 1px solid var(--border); }

/* ===== Blog article ===== */
.article { padding: 70px 0 90px; }
.article__back { display: inline-block; color: var(--cyan); font-size: 0.9rem; font-weight: 600; margin-bottom: 22px; }
.article__back:hover { text-decoration: underline; }
.article__title { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; line-height: 1.12; margin: 6px 0 14px; }
.article__meta { color: var(--muted-2); font-size: 0.9rem; padding-bottom: 26px; margin-bottom: 30px; border-bottom: 1px solid var(--border); }

.prose { color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.prose p { margin-bottom: 22px; }
.prose h2 { font-family: 'Sora'; color: #fff; font-size: 1.5rem; line-height: 1.25; margin: 38px 0 14px; }
.prose ul { margin: 0 0 22px; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 12px; }
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: 11px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--grad);
}
.prose strong { color: var(--text); }
.prose em { color: var(--cyan); font-style: normal; }

.article__cta {
  margin-top: 48px; padding: 36px;
  text-align: center;
  background: linear-gradient(160deg, rgba(59,130,246,0.12), var(--surface) 60%);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 20px;
}
.article__cta h3 { font-family: 'Sora'; font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
.article__cta p { color: var(--muted); margin-bottom: 22px; }

/* ===== Centered CTA row ===== */
.center-cta { text-align: center; margin-top: 38px; }

/* ===== Active nav link ===== */
.nav__item.is-active > .nav__link { color: #fff; }
.nav__item.is-active > .nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--grad);
}
.nav__item.is-active > .nav__link { position: relative; }

/* ===== Inner page hero ===== */
.page-hero { position: relative; padding: 72px 0 26px; overflow: hidden; text-align: center; }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 800; line-height: 1.08; margin-bottom: 16px; }
.page-hero p { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 1.12rem; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--muted-2); margin-bottom: 18px; }
.breadcrumb a { color: var(--cyan); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Plan detail page ===== */
.plan-detail { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: start; }
.plan-detail__main h2 { font-family: 'Sora'; font-size: 1.5rem; color: #fff; margin: 30px 0 14px; }
.plan-detail__main h2:first-child { margin-top: 0; }
.plan-detail__main p { color: var(--muted); margin-bottom: 16px; }
.plan-detail__buy {
  position: sticky; top: 90px;
  background: linear-gradient(160deg, rgba(59,130,246,0.14), var(--surface) 60%);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 20px; padding: 30px; text-align: center;
  box-shadow: var(--shadow-blue);
}
.plan-detail__buy .plan__price { justify-content: center; margin-bottom: 8px; }
.plan-detail__buy .plan__rec { margin-bottom: 18px; }
.plan-detail__buy .btn { margin-top: 6px; }
.plan-detail__buy .plan__note { margin-top: 12px; }

/* ===== Homepage pricing teaser ===== */
.teaser-card .plan__price { margin-bottom: 16px; }
.teaser-card .plan__feats { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.teaser-card .plan__feats li { position: relative; padding-left: 24px; color: var(--muted); font-size: 0.92rem; }
.teaser-card .plan__feats li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; font-size: 0.8rem; }

/* ===== Form select ===== */
.form select {
  width: 100%;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 16px; color: var(--text); font-family: inherit; font-size: 0.96rem;
  margin-bottom: 14px; cursor: pointer;
}
.form select:focus { outline: none; border-color: var(--blue); }
.form label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 7px; font-weight: 500; }

/* ===== Footer columns ===== */
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 4px; }
.footer__col a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer__col a:hover { color: #fff; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); background: var(--bg-soft); padding-top: 50px; }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 36px; }
.footer__brand .brand__mark { font-size: 1.4rem; }
.footer__brand p { color: var(--muted); margin-top: 10px; font-size: 0.92rem; max-width: 280px; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px 24px; border-top: 1px solid var(--border);
  color: var(--muted-2); font-size: 0.84rem;
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .grid-3, .services, .steps, .post-grid { grid-template-columns: 1fr 1fr; }
  .plan--feature { transform: none; }
}
@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 0; align-items: stretch;
    position: absolute; top: 70px; left: 0; right: 0;
    max-height: calc(100vh - 70px); overflow-y: auto;
    background: rgba(11, 17, 33, 0.99); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 10px 18px 22px;
  }
  /* Mobile: each menu becomes an accordion */
  .nav.is-open .nav__item { width: 100%; border-bottom: 1px solid var(--border); }
  .nav.is-open .nav__link {
    width: 100%; justify-content: space-between;
    padding: 16px 6px; font-size: 1.02rem; border-radius: 0;
  }
  .nav.is-open .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    min-width: 0; background: none; backdrop-filter: none;
    border: 0; box-shadow: none; padding: 0 0 10px 12px;
    display: none;
  }
  .nav.is-open .nav__item.is-open .dropdown { display: block; }
  .nav.is-open .dropdown a { padding: 11px 8px; }

  .grid-3, .services, .steps, .post-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__trust { gap: 30px; }
  .cta__card { padding: 34px 22px; }
  .section { padding: 70px 0; }
}
