/* ============================================================
   ArtisanLine — Landing styles
   ============================================================ */

:root {
  color-scheme: light;
  --primary: #D85A30;
  --primary-dark: #B8441E;
  --primary-light: #F4A285;
  --primary-tint: #FCEFE8;

  --ink: #1F2024;
  --ink-soft: #4A4A52;
  --muted: #7A7A82;

  --bg: #FAF7F4;
  --bg-alt: #F2EEE8;
  --card: #FFFFFF;
  --border: #E8E2DA;

  --accept: #2BA579;
  --accept-soft: #E0F3EB;
  --warn: #C9540A;
  --warn-soft: #FCE9D8;
  --neutral: #5C6168;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(31, 32, 36, 0.05);
  --shadow: 0 8px 24px rgba(31, 32, 36, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 32, 36, 0.14);

  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Netlify honeypot — visually hidden but accessible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.btn--sm { padding: 9px 16px; font-size: 0.875rem; }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(216, 90, 48, 0.28);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(216, 90, 48, 0.34);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ============================================================
   Nav
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 244, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(232, 226, 218, 0.6);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo__mark {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.logo__text {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.nav__links a:hover { color: var(--primary); }

.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__actions .btn--ghost { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--primary) 0%, #C04E2A 100%);
  color: #fff;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.hero__circle--lg {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -100px;
}
.hero__circle--sm {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -40px;
  background: rgba(0, 0, 0, 0.1);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  column-gap: 60px;
  row-gap: 20px;
  align-items: center;
}

@media (max-width: 920px) {
  .hero { padding: 60px 0 70px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
}

.hero__kicker {
  grid-column: 1 / -1;
  justify-self: end;
  display: inline-block;
  margin: 0;
  padding: 12px 22px;
  background: #fff;
  color: var(--primary-dark);
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

@media (max-width: 760px) {
  .hero__kicker {
    font-size: 0.95rem;
    padding: 10px 18px;
    transform: none;
  }
}

.hero__title {
  color: #fff;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin-bottom: 30px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.hero__tags li {
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
}

/* Lead form */
.lead-form {
  background: #fff;
  padding: 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 520px;
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}

.lead-form input[type="email"] {
  border: 0;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  outline: none;
  min-width: 0;
  width: 100%;
}
.lead-form input::placeholder { color: var(--muted); }
.lead-form input:focus { background: var(--bg); }

.lead-form__note {
  margin: 6px 8px 4px;
  font-size: 0.82rem;
  color: var(--muted);
}

.lead-form--lg input[type="email"] { padding: 16px 18px; font-size: 1.05rem; }

.hero__demo-link {
  margin: 14px 0 0;
  padding-left: 8px;
  font-size: 0.95rem;
}
.hero__demo-link a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.hero__demo-link a:hover {
  border-bottom-color: #fff;
}
.hero__demo-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.hero__demo-link a:hover span {
  transform: translateX(3px);
}

.lead-form.is-success {
  background: var(--accept-soft);
  border: 1px solid var(--accept);
}
.lead-form.is-success .lead-form__note {
  color: var(--accept);
  font-weight: 600;
}
.lead-form.is-error .lead-form__note {
  color: var(--primary-dark);
  font-weight: 600;
}

@media (max-width: 540px) {
  .lead-form__row { grid-template-columns: 1fr; }
  .lead-form .btn { width: 100%; }
}

/* Phone mockup */
.hero__phone {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__bubble {
  position: absolute;
  z-index: 2;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.hero__bubble::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: inherit;
  transform: rotate(45deg);
}

.hero__bubble--accept {
  top: 6%;
  right: 4%;
  background: var(--accept);
  color: #fff;
  transform: rotate(4deg);
}
.hero__bubble--accept::after {
  bottom: -5px;
  left: 28px;
}

.hero__bubble--transfer {
  bottom: 8%;
  left: 0;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(31, 32, 36, 0.12);
  transform: rotate(-3deg);
}
.hero__bubble--transfer::after {
  top: -7px;
  right: 32px;
  background: #fff;
  border-top: 1px solid rgba(31, 32, 36, 0.12);
  border-left: 1px solid rgba(31, 32, 36, 0.12);
}

.hero__bubble--inbound {
  bottom: -8%;
  right: 4%;
  background: var(--accept-soft);
  color: #1F7A57;
  border: 1px solid rgba(43, 165, 121, 0.25);
  transform: rotate(3deg);
}
.hero__bubble--inbound::after {
  top: -7px;
  left: 28px;
  background: var(--accept-soft);
  border-top: 1px solid rgba(43, 165, 121, 0.25);
  border-left: 1px solid rgba(43, 165, 121, 0.25);
}

@media (max-width: 920px) {
  .hero__bubble { font-size: 0.95rem; padding: 10px 16px; }
  .hero__bubble--accept { top: 0; right: 8%; }
  .hero__bubble--transfer { bottom: 4%; left: 4%; }
  .hero__bubble--inbound { bottom: -6%; right: 8%; }
}

@media (max-width: 540px) {
  .hero__bubble { font-size: 0.85rem; padding: 8px 14px; }
}

.phone {
  width: 320px;
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(0, 0, 0, 0.15);
  padding: 14px 14px 22px;
  position: relative;
  transform: rotate(-2deg);
}

.phone__notch {
  width: 80px;
  height: 6px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  margin: 4px auto 14px;
}

.phone__screen {
  background: var(--bg);
  border-radius: 18px;
  padding: 14px;
}

.phone__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.phone__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
}
.phone__status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6FE2A6;
  display: inline-block;
}

.phone__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.phone__stats > div {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.phone__stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--ink);
}
.phone__stats span {
  font-size: 0.7rem;
  color: var(--muted);
}
.phone__stat--alert strong { color: var(--primary); }
.phone__stat--ok strong { color: var(--accept); }

.phone__call {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
}
.phone__call--urgent {
  border: 1px solid var(--primary);
  background: var(--primary-tint);
}

.phone__call-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.phone__call-head strong { color: var(--ink); }
.phone__call-head span { color: var(--muted); font-size: 0.75rem; }

.phone__call p {
  margin: 6px 0 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}
.tag--urgent { background: #FBDDD0; color: var(--primary-dark); }
.tag--devis { background: var(--warn-soft); color: var(--warn); }

.phone__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.btn-mini {
  padding: 8px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
}
.btn-mini--accept {
  background: var(--accept);
  color: #fff;
  border-color: var(--accept);
}

@media (max-width: 920px) {
  .phone { transform: rotate(0); width: 300px; }
}

/* ============================================================
   Showcase (images sous le hero)
   ============================================================ */

.showcase {
  padding: 60px 0 20px;
  background: var(--bg);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.showcase__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
  border: 1px solid var(--border);
}

.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

@media (max-width: 760px) {
  .showcase { padding: 40px 0 10px; }
  .showcase__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   Problem / Solution
   ============================================================ */

.problem {
  padding: 80px 0;
  background: var(--bg);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.problem__card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

.problem__card h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.problem__card--issue h2 { color: var(--ink); }
.problem__card--solution {
  background: var(--primary-tint);
  border-color: rgba(216, 90, 48, 0.2);
}
.problem__card--solution h2 { color: var(--primary); }

.problem__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.problem__card ul li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-soft);
}
.problem__card--issue ul li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  background: #FBDDD0;
  color: var(--primary-dark);
  border-radius: 50%;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .problem { padding: 60px 0; }
  .problem__grid { grid-template-columns: 1fr; }
  .problem__card { padding: 28px; }
}

/* ============================================================
   Section heads
   ============================================================ */

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ============================================================
   How it works
   ============================================================ */

.how {
  padding: 100px 0;
  background: var(--bg-alt);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.how__step {
  background: var(--card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}

.how__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.how__num--2 { background: var(--warn); }
.how__num--3 { background: var(--neutral); }

.how__step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.how__step p { color: var(--ink-soft); margin-bottom: 16px; }

.how__arrow {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (max-width: 760px) {
  .how { padding: 70px 0; }
  .how__steps { grid-template-columns: 1fr; }
}

/* Detailed flow */
.flow {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 40px;
  align-items: center;
}
.flow__visual {
  display: flex;
  justify-content: center;
}
.flow__visual img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius-lg);
}
.flow h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.flow__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
}
.flow__list li:first-child { border-top: 0; padding-top: 0; }
.flow__list li > span:first-child {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.flow__list li:nth-child(2) > span:first-child { background: #D24C2A; }
.flow__list li:nth-child(3) > span:first-child { background: #B8441E; }
.flow__list--ok > span:first-child { background: var(--accept) !important; }
.flow__list--ko > span:first-child { background: var(--neutral) !important; }
.flow__list li:nth-child(6) > span:first-child { background: var(--neutral); }

@media (max-width: 860px) {
  .flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .flow__visual img { max-width: 220px; }
}

@media (max-width: 760px) {
  .flow__visual { display: none; }
  .flow { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .flow { padding: 24px; }
}

/* ============================================================
   Features
   ============================================================ */

.features {
  padding: 100px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(216, 90, 48, 0.3);
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature__icon svg { width: 22px; height: 22px; }

.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

.badge--v2 {
  display: inline-block;
  padding: 2px 8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 920px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features { padding: 70px 0; }
  .features__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Pricing
   ============================================================ */

.pricing {
  padding: 100px 0;
  background: var(--bg-alt);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan h3 {
  font-size: 1.15rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.plan__lede {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 18px;
  min-height: 2.6em;
}

.plan__price {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.plan__price span {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.plan__price em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 4px;
}

.plan__fineprint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: -14px 0 22px;
}

.plan ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  flex: 1;
  align-content: start;
}
.plan ul li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}
.plan ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accept);
  font-weight: 700;
}

.plan--featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
}
.plan--featured h3 { color: var(--primary); }

.plan__tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.plan .btn { width: 100%; }

@media (max-width: 700px) {
  .pricing { padding: 70px 0; }
  .pricing__grid { grid-template-columns: 1fr; }
  .plan { padding: 28px; }
}

/* ============================================================
   Final CTA
   ============================================================ */

.cta {
  padding: 80px 0 100px;
}

.cta__card {
  background: linear-gradient(135deg, var(--primary) 0%, #B8441E 100%);
  color: #fff;
  padding: 64px 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__card::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

.cta__card h2 {
  color: #fff;
  position: relative;
  margin-bottom: 14px;
}
.cta__card p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 540px;
  margin: 0 auto 30px;
  position: relative;
}

.cta__card .lead-form {
  margin: 0 auto;
  position: relative;
}

@media (max-width: 600px) {
  .cta__card { padding: 44px 24px; }
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}
