/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1d2735;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: #1a3a5c; text-decoration: none; transition: color .15s ease; }
a:hover { color: #ff6b35; }
h1, h2, h3, h4 { margin: 0 0 .6em; line-height: 1.25; color: #0f2238; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ============ COLORS ============ */
:root {
  --brand: #1a3a5c;
  --brand-dark: #0f2238;
  --brand-light: #2a5485;
  --accent: #ff6b35;
  --accent-dark: #e55624;
  --bg-light: #f5f7fa;
  --bg-dark: #0f2238;
  --text: #1d2735;
  --text-muted: #5a6878;
  --border: #e3e8ef;
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 780px; }
@media (max-width: 880px) {
  .container { padding: 0 22px; }
}

.section { padding: 80px 0; }
.section--light { background: var(--bg-light); }
.section--dark { background: var(--bg-dark); color: #e8eef6; }
.section--dark h2, .section--dark h3 { color: #ffffff; }
.section--cta { background: linear-gradient(135deg, #1a3a5c 0%, #0f2238 100%); color: #e8eef6; }
.section--cta h2 { color: #ffffff; }
.section--cta .section__lead { color: rgba(232,238,246,.8); }

.section__title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  text-align: center;
}
.section__lead {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 50px;
}
.section--dark .section__lead { color: rgba(232,238,246,.7); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,107,53,.3);
}
.btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--ghost:hover {
  background: var(--brand);
  color: #fff;
}
.section--dark .btn--ghost, .section--cta .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.section--dark .btn--ghost:hover, .section--cta .btn--ghost:hover {
  background: #fff;
  color: var(--brand-dark);
}
.btn--large { padding: 16px 32px; font-size: 18px; }
.btn--small { padding: 8px 16px; font-size: 14px; }
.btn--block { display: block; width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 700;
  font-size: 20px;
}
.logo:hover { color: var(--accent); }
.logo__icon { color: currentColor; }
.logo__text { letter-spacing: -.02em; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}
.nav a.btn { color: #fff; }
.nav a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand);
  margin: 4px 0;
  transition: all .2s ease;
}

/* ============ HERO ============ */
.hero {
  padding: 70px 0 90px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef6 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: rgba(26,58,92,.08);
  color: var(--brand);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero__desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 560px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.hero__bullets li {
  position: relative;
  padding-left: 22px;
}
.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .85;
}
.hero__bullets li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* hero visual: dashboard mockup */
.hero__visual { display: flex; justify-content: center; }
.dashboard {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(15,34,56,.25), 0 0 0 1px rgba(15,34,56,.05);
  overflow: hidden;
  transform: rotate(-1.5deg);
}
.dashboard__head {
  background: #f5f7fa;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot--red { background: #ff5f57; }
.dot--yellow { background: #febc2e; }
.dot--green { background: #28c840; }
.dashboard__title {
  margin-left: 14px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.dashboard__body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.metric {
  display: flex;
  flex-direction: column;
}
.metric__num {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.metric:nth-child(1) .metric__num { color: var(--accent); }
.metric__label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}
.bars {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 80px;
  margin-top: 8px;
}
.bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent) 0%, var(--brand) 100%);
  border-radius: 3px 3px 0 0;
  min-height: 8px;
}

/* ============ PAINS ============ */
.pains {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.pain {
  background: #fff;
  padding: 28px 22px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all .2s ease;
}
.pain:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -8px rgba(15,34,56,.12);
  border-color: var(--accent);
}
.pain__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,107,53,.1);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pain h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.pain p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ============ FEATURES ============ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature {
  padding: 30px 26px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  transition: all .2s ease;
}
.feature:hover {
  border-color: var(--brand);
  box-shadow: 0 16px 32px -10px rgba(15,34,56,.12);
}
.feature__icon {
  width: 56px;
  height: 56px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.feature p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/* ============ PRICING ============ */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: #fff;
  color: var(--text);
  padding: 36px 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: all .2s ease;
}
.plan--featured {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(255,107,53,.35);
}
.plan__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.plan__name {
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--brand-dark);
}
.plan__tag {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.plan__price--sub { margin-bottom: 22px; }
.plan__price--sub .plan__price-num { font-size: 18px; color: var(--text-muted); }
.plan__price-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-dark);
}
.plan__price-sub {
  font-size: 14px;
  color: var(--text-muted);
}
.plan__list {
  flex: 1;
  margin: 4px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: rgba(40,200,80,.12);
  border-radius: 50%;
}
.plan__list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #1aa84a;
  border-bottom: 2px solid #1aa84a;
  transform: rotate(-45deg);
}
.pricing__note {
  text-align: center;
  margin-top: 32px;
  color: rgba(232,238,246,.6);
  font-size: 14px;
}

/* ============ CASE ============ */
.case {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  background: #fff;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--border);
  align-items: center;
}
.case__visual {
  text-align: center;
}
.case__avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.case__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.case__rating-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}
.case__rating-stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 18px;
}
.case__rating-count {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.case__lead {
  font-size: 17px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.case__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.case__metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.case__metric-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.case__metric-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}
.case__metric-num small { font-size: 14px; color: var(--text-muted); }
.case__metric-num--accent { color: var(--accent); }
.case__placeholder {
  font-size: 14px;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 14px 18px;
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  margin-bottom: 18px;
}

/* ============ WHY ============ */
.why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.why__item {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--bg-light);
  border-radius: 14px;
  border-top: 4px solid var(--accent);
}
.why__num {
  font-size: 34px;
  font-weight: 800;
  color: var(--accent);
  opacity: .35;
  line-height: 1;
  margin-bottom: 12px;
}
.why__item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.why__item p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transition: all .2s ease;
}
.faq__item[open] {
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(15,34,56,.06);
}
.faq__item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  color: var(--brand-dark);
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent);
  transition: transform .2s ease;
}
.faq__item[open] summary::after {
  content: "−";
}
.faq__item p {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ FORM ============ */
.form {
  background: rgba(255,255,255,.06);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form__row .form__field { margin-bottom: 0; }
.form__field span {
  font-size: 14px;
  color: rgba(232,238,246,.85);
  margin-bottom: 6px;
  font-weight: 500;
}
.form__field input,
.form__field textarea {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: #fff;
  width: 100%;
  transition: all .15s ease;
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: rgba(232,238,246,.4);
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.12);
}
.form__field textarea {
  resize: vertical;
  min-height: 90px;
}
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 20px;
  font-size: 13px;
  color: rgba(232,238,246,.7);
  cursor: pointer;
}
.form__check input { margin-top: 4px; flex-shrink: 0; }
.form__check a { color: var(--accent); }
.form__hint {
  text-align: center;
  margin: 16px 0 0;
  font-size: 14px;
  color: rgba(232,238,246,.6);
}
.form__hint a { color: var(--accent); font-weight: 600; }
.form__success {
  background: rgba(40,200,80,.12);
  border: 1px solid rgba(40,200,80,.4);
  padding: 28px;
  border-radius: 14px;
  margin-top: 24px;
  color: #fff;
  text-align: center;
}
.form__success h3 { color: #fff; }
.form__success a { color: var(--accent); font-weight: 600; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--brand-dark);
  color: rgba(232,238,246,.7);
  padding-top: 50px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}
.footer__col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.footer__col p {
  margin: 0 0 8px;
  font-size: 14px;
}
.footer__col a {
  color: rgba(232,238,246,.85);
}
.footer__col a:hover { color: var(--accent); }
.footer__about {
  margin-top: 14px;
  max-width: 320px;
  font-size: 14px;
}
.logo--footer { color: #fff; }
.logo--footer:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(232,238,246,.5);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============ POLICY PAGE ============ */
.policy {
  padding: 60px 0 80px;
}
.policy h1 { font-size: 32px; margin-bottom: 30px; }
.policy h2 { font-size: 22px; margin: 32px 0 12px; }
.policy p, .policy li { font-size: 15px; color: var(--text); }
.policy ul { padding-left: 22px; list-style: disc; margin-bottom: 16px; }
.policy ul li { margin-bottom: 6px; }

/* ============ MOBILE ============ */
@media (max-width: 880px) {
  .nav { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 16px 20px; gap: 14px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 16px rgba(0,0,0,.06); }
  .nav.is-open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 50px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .dashboard { transform: none; max-width: 360px; }
  .case { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .case__visual { display: flex; flex-direction: column; align-items: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 60px 0; }
  .form { padding: 24px 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form__row .form__field { margin-bottom: 16px; }
  .plan--featured { transform: none; }
  .case__metrics { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .case__metric-num { font-size: 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; max-width: 100%; box-sizing: border-box; }
  .hero { padding: 32px 0 40px; }
  .hero h1 { font-size: 22px; line-height: 1.25; word-wrap: break-word; overflow-wrap: anywhere; }
  .hero__sub { font-size: 16px; word-wrap: break-word; overflow-wrap: anywhere; }
  .hero__desc { font-size: 14px; word-wrap: break-word; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__bullets { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero__bullets li::after { display: none; }
  .dashboard { max-width: 100%; transform: none; padding: 16px; }
  .dashboard__body { gap: 8px; }
  .section { padding: 44px 0; }
  .section__title { font-size: 24px; line-height: 1.2; }
  .section__lead { font-size: 15px; margin-bottom: 28px; }
  /* Force single column for all card grids */
  .pains,
  .features,
  .pricing { grid-template-columns: 1fr !important; gap: 14px; }
  .pain, .feature, .plan { padding: 22px 18px; }
  .case__metrics { grid-template-columns: 1fr; }
  .faq__item { padding: 16px 0; }
  .form { padding: 20px 16px; }
  body, html { overflow-x: hidden; }
  img, svg { max-width: 100%; height: auto; }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999;
  background: #0f2238; color: #fff; border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; max-width: 1100px; margin: 0 auto;
  animation: cookieSlide .4s ease-out;
}
@keyframes cookieSlide { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; }
.cookie-banner__text { margin: 0; font-size: 14px; line-height: 1.5; flex: 1; }
.cookie-banner__text a { color: #ff9966; text-decoration: underline; }
.cookie-banner__text a:hover { color: #ffb088; }
.cookie-banner__btn {
  background: #ff6b35; color: #fff; border: 0;
  padding: 10px 22px; border-radius: 10px; cursor: pointer; font-weight: 600;
  font-size: 14px; transition: background .15s ease; flex-shrink: 0;
}
.cookie-banner__btn:hover { background: #ff8556; }
@media (max-width: 720px) {
  .cookie-banner { padding: 14px 16px; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 10px; }
  .cookie-banner__text { font-size: 13px; }
  .cookie-banner__btn { width: 100%; padding: 11px 18px; }
}

/* ============ STICKY CTA ============ */
.sticky-cta[hidden] { display: none !important; }
.sticky-cta {
  position: fixed; right: 20px; bottom: 92px; z-index: 9998;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  box-shadow: 0 14px 40px rgba(255,107,53,.4), 0 4px 10px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(255,107,53,.5); color: #fff; }
.sticky-cta svg { transition: transform .15s ease; }
.sticky-cta:hover svg { transform: translateX(3px); }
@media (max-width: 480px) {
  .sticky-cta { right: 14px; bottom: 80px; padding: 12px 18px; font-size: 14px; }
}

/* ============ FORM IMPROVEMENTS ============ */
.form__opt { color: var(--text-muted); font-weight: 400; font-size: 13px; }
.form__more {
  margin: 8px 0 4px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.form__more summary {
  cursor: pointer;
  color: var(--brand);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  user-select: none;
}
.form__more summary:hover { color: var(--accent); }
.form__more[open] summary { margin-bottom: 12px; }
