/* === Custom Properties === */
:root {
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --duration-press: 160ms;
  --duration-hover: 200ms;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #212529;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  line-height: 1.2;
  font-weight: 700;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* === Layout === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
section { padding: 5rem 0; }

/* === Buttons === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #FE7C6E;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 80px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: transform var(--duration-press) var(--ease-out), background var(--duration-hover) ease;
  text-align: center;
  text-decoration: none;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  will-change: transform;
}
.btn-primary:active { transform: scale(0.97); }
.btn-primary:focus-visible {
  outline: 3px solid #FE7C6E;
  outline-offset: 2px;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: #fd6a5a; transform: translateY(-1px); }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 8px 24px;
  border-radius: 40px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: transform var(--duration-press) var(--ease-out), background var(--duration-hover) ease;
  text-decoration: none;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  will-change: transform;
}
.btn-secondary:active { transform: scale(0.97); }
.btn-secondary:focus-visible {
  outline: 3px solid #FE7C6E;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .btn-secondary:hover { background: rgba(255,255,255,0.1); }
}


/* === Header / Nav === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(39, 46, 51, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: block;
  height: 40px;
  width: auto;
}

/* === Hero === */
.hero {
  background: radial-gradient(ellipse at 30% 20%, rgba(254,124,110,0.06) 0%, transparent 50%), #272E33;
  color: #fff;
  padding: 120px 0 4rem;
}
.hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}
.hero .audience {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.hero .trust {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* === Browser Mockup === */
.browser-mockup {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1d21;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #2a2d32;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  width: 52px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a3d42;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.browser-url {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 12px;
  margin: 0 12px;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-lock {
  font-size: 0.6rem;
  margin-right: 4px;
  opacity: 0.7;
}
.browser-content {
  padding: 16px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Wireframe elements */
.wf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.wf-logo {
  width: 48px;
  height: 8px;
  background: rgba(254,124,110,0.5);
  border-radius: 4px;
}
.wf-nav-btn {
  width: 40px;
  height: 8px;
  background: rgba(254,124,110,0.35);
  border-radius: 10px;
}
.wf-hero-block {
  display: flex;
  gap: 12px;
  align-items: center;
}
.wf-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wf-hero-img {
  width: 38%;
  height: 64px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  flex-shrink: 0;
}
.wf-line {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.wf-line-lg { width: 90%; }
.wf-line-md { width: 65%; }
.wf-line-sm { width: 40%; }
.wf-line-full { width: 100%; }
.wf-cta-btn {
  width: 60px;
  height: 10px;
  background: rgba(254,124,110,0.45);
  border-radius: 10px;
  margin-top: 4px;
}
.wf-cta-center { margin: 0 auto; }
.wf-cards-row {
  display: flex;
  gap: 8px;
}
.wf-card {
  flex: 1;
  height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(254,124,110,0.1);
  border-radius: 6px;
}
.wf-text-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0;
}
.wf-cta-block {
  padding: 6px 0;
}
.wf-footer-block {
  height: 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  margin-top: auto;
}

/* === Interactive Section === */
.interactive-section {
  background: #2F2F2F;
  color: #fff;
  padding: 3rem 0;
}
.interactive-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}
.interactive-section .section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}
.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
}
.form-group {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.form-group input {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  transition: border-color 200ms ease;
}
.form-group input::placeholder { color: rgba(255,255,255,0.5); }
.form-group input:focus {
  outline: none;
  border-color: #FE7C6E;
}
.form-group input:focus-visible {
  outline: 3px solid #FE7C6E;
  outline-offset: 2px;
}
.search-btn {
  flex: 0 0 auto;
  align-self: flex-end;
  background: #FE7C6E;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: transform var(--duration-press) var(--ease-out), background var(--duration-hover) ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  will-change: transform;
}
.search-btn:active { transform: scale(0.97); }
.search-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.search-btn:focus-visible {
  outline: 3px solid #FE7C6E;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .search-btn:hover { background: #fd6a5a; }
}


/* Results */
.results-area { margin-top: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.result-card {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: border-color var(--duration-hover) ease, background var(--duration-hover) ease, transform var(--duration-press) var(--ease-out);
  will-change: transform;
}
.result-card:active { transform: scale(0.98); }
.result-card:focus-visible {
  border-color: #FE7C6E;
  background: rgba(254,124,110,0.1);
  outline: 3px solid #FE7C6E;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .result-card:hover {
    border-color: #FE7C6E;
    background: rgba(254,124,110,0.1);
  }
}
.result-card .rc-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.25rem; }
.result-card .rc-address { font-size: 0.875rem; opacity: 0.75; margin-bottom: 0.25rem; }
.result-card .rc-rating { font-size: 0.875rem; color: #FE7C6E; }

/* States */
.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #FE7C6E;
  border-radius: 50%;
  animation: spin 0.55s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Site-building animation */
.site-builder {
  width: 260px;
  margin: 0 auto 1.25rem;
  background: #1e2226;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px;
  overflow: hidden;
  position: relative;
}
.site-builder::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(254,124,110,0.06), transparent);
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer { to { left: 100%; } }

.sb-bar {
  border-radius: 4px;
  opacity: 0;
  transform: translateY(4px);
  animation: buildIn 2.4s var(--ease-out) infinite;
}
.sb-header {
  height: 10px;
  background: rgba(254,124,110,0.5);
  margin-bottom: 10px;
  animation-delay: 0s;
}
.sb-hero {
  height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  margin-bottom: 10px;
  animation-delay: 0.2s;
}
.sb-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.sb-col {
  flex: 1;
  height: 28px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(4px);
  animation: buildIn 2.4s var(--ease-out) infinite;
}
.sb-col:nth-child(1) { animation-delay: 0.4s; }
.sb-col:nth-child(2) { animation-delay: 0.5s; }
.sb-col:nth-child(3) { animation-delay: 0.6s; }
.sb-text {
  height: 6px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 6px;
  animation-delay: 0.8s;
}
.sb-text:nth-child(2) { width: 75%; animation-delay: 0.9s; }
.sb-text:nth-child(3) { width: 50%; animation-delay: 1.0s; }
.sb-cta-bar {
  height: 12px;
  width: 80px;
  background: rgba(254,124,110,0.4);
  border-radius: 20px;
  margin: 8px auto 4px;
  animation-delay: 1.1s;
}
.sb-footer {
  height: 8px;
  background: rgba(255,255,255,0.05);
  margin-top: 8px;
  animation-delay: 1.3s;
}

@keyframes buildIn {
  0%   { opacity: 0; transform: translateY(4px); }
  15%  { opacity: 1; transform: translateY(0); }
  75%  { opacity: 1; transform: translateY(0); }
  90%  { opacity: 0; transform: translateY(-2px); }
  100% { opacity: 0; transform: translateY(4px); }
}
.state-msg {
  text-align: center;
  padding: 1.5rem;
  font-size: 1rem;
}
.state-msg.error { color: #FE7C6E; }
.generated-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FE7C6E;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 12px 50px;
  border-radius: 40px;
  transition: transform var(--duration-press) var(--ease-out), background var(--duration-hover) ease;
  text-decoration: none;
  will-change: transform;
}
.generated-link:active { transform: scale(0.97); }
.generated-link:focus-visible {
  outline: 3px solid #FE7C6E;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .generated-link:hover { background: #fd6a5a; }
}

/* === Pain Section === */
.pain-section { background: #fff; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FE7C6E;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}
.pain-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.pain-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: #fafafa;
  border-left: 4px solid #FE7C6E;
}
.pain-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: #212529; }
.pain-card p { font-size: 0.95rem; color: #555; line-height: 1.6; }

/* === Solution Section === */
.solution-section {
  background: radial-gradient(ellipse at 50% 50%, rgba(254,124,110,0.04) 0%, transparent 60%), #272E33;
  color: #fff;
}
.solution-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.solution-card {
  background: linear-gradient(145deg, rgba(254, 124, 110, 0.1) 0%, rgba(145, 47, 37, 0.05) 100%);
  border-radius: 24px;
  padding: 40px 30px;
  border: 1px solid rgba(254,124,110,0.2);
}
.solution-card .benefit-label {
  font-size: 0.85rem;
  color: #FE7C6E;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.solution-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.solution-card p { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.6; }


/* === Mid CTA === */
.cta-section {
  background: radial-gradient(ellipse at 50% 50%, rgba(254,124,110,0.05) 0%, transparent 50%), #272E33;
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}
.cta-section.mid-cta {
  background: radial-gradient(ellipse at 30% 50%, rgba(254,124,110,0.06) 0%, transparent 50%), linear-gradient(135deg, #272E33 0%, #1e2428 100%);
  border-top: 1px solid rgba(254,124,110,0.15);
}
.cta-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
}
.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === Proof Section === */
.proof-section { background: #fff; }
.proof-metric {
  text-align: center;
  margin-bottom: 2.5rem;
}
.proof-metric .big-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #FE7C6E;
  font-family: 'Nunito Sans', system-ui, sans-serif;
}
.proof-metric p { font-size: 1rem; color: #555; margin-top: 0.25rem; }
.testimonial-card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1.5px solid rgb(246,157,149);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #FE7C6E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-stars { color: #FE7C6E; font-size: 0.9rem; letter-spacing: 0.05em; }
.testimonial-text { font-size: 0.95rem; line-height: 1.6; font-style: italic; color: #444; }

/* === FAQ Section === */
.faq-section { background: #f8f9fa; }
.faq-list {
  max-width: 700px;
  margin: 2rem auto 0;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(254,124,110,0.12);
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: #212529;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: #FE7C6E;
  transition: transform 200ms var(--ease-out);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible {
  outline: 3px solid #FE7C6E;
  outline-offset: -3px;
}
.faq-item .faq-answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* === Footer === */
.site-footer {
  background: #1e2226;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.85rem;
}

/* === Visually Hidden (SR only) === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* === Scroll Reveal Animations === */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 60ms; }
.reveal-delay-2 { transition-delay: 120ms; }

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* === How It Works === */
.how-section { background: #fff; }
.steps-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
.step-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; border-radius: 24px; background: linear-gradient(145deg, rgba(254,124,110,0.08) 0%, rgba(145,47,37,0.03) 100%); border: 1px solid rgba(254,124,110,0.15); }
.step-number { flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(254,124,110,0.15); color: #FE7C6E; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.step-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; color: #212529; }
.step-card p { font-size: 0.95rem; color: #555; line-height: 1.6; }

/* === Included Section === */
.included-section { background: radial-gradient(ellipse at 70% 80%, rgba(254,124,110,0.05) 0%, transparent 50%), #272E33; color: #fff; }
.checklist { margin-top: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.checklist-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.75rem 1rem; font-size: 0.95rem; color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; margin-bottom: 0.5rem; text-align: left; }
.checklist-icon { color: #FE7C6E; font-weight: 700; flex-shrink: 0; font-size: 1.1rem; }
.included-ctas { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* === Audience Section === */
.audience-section { background: #f8f9fa; }
.audience-subtitle { font-size: 1.05rem; color: #555; margin-bottom: 1.5rem; max-width: 600px; }
.audience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
.audience-card { display: flex; gap: 0.75rem; align-items: center; padding: 1rem 1.25rem; background: linear-gradient(145deg, rgba(254,124,110,0.08) 0%, rgba(145,47,37,0.03) 100%); border: 1px solid rgba(254,124,110,0.15); border-radius: 16px; font-size: 0.95rem; color: #333; font-weight: 600; }
.audience-card-icon { font-size: 1.25rem; flex-shrink: 0; }
.segment-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.segment-tag { background: linear-gradient(145deg, rgba(254,124,110,0.08) 0%, rgba(145,47,37,0.03) 100%); border: 1px solid rgba(254,124,110,0.2); border-radius: 20px; padding: 0.4rem 1rem; font-size: 0.85rem; color: #333; font-weight: 600; }

/* === Institutional Section === */
.institutional-section { background: radial-gradient(ellipse at 70% 30%, rgba(254,124,110,0.05) 0%, transparent 50%), #272E33; color: #fff; }
.institutional-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 700px; margin-bottom: 2rem; }
.institutional-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === Pricing Section === */
.pricing-section { background: #fff; }
.pricing-card { max-width: 480px; margin: 2rem auto 0; background: linear-gradient(145deg, rgba(254,124,110,0.06) 0%, rgba(145,47,37,0.02) 100%); border: 1px solid rgba(254,124,110,0.15); border-radius: 24px; padding: 2.5rem 2rem; text-align: center; }
.pricing-price { font-size: 2.5rem; font-weight: 900; color: #212529; font-family: 'Nunito Sans', system-ui, sans-serif; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: #888; }
.pricing-desc { font-size: 0.9rem; color: #666; margin: 0.5rem 0 1.5rem; line-height: 1.5; }
.pricing-setup { font-size: 0.9rem; color: #333; margin-bottom: 0.25rem; font-weight: 600; }
.pricing-setup-sub { font-size: 0.85rem; color: #888; margin-bottom: 1rem; }
.pricing-badge { display: inline-block; background: rgba(254,124,110,0.15); color: #FE7C6E; font-weight: 700; font-size: 0.8rem; padding: 0.35rem 1.25rem; border-radius: 20px; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.04em; border: 1px solid rgba(254,124,110,0.25); }
.pricing-methods { margin: 1.5rem 0; text-align: left; }
.pricing-methods h4 { font-size: 0.85rem; color: #888; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.75rem; }
.pricing-method { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.9rem; color: #333; }
.pricing-method::before { content: '✓'; color: #FE7C6E; font-weight: 700; }

/* === Final CTA with search === */
.final-interactive { background: radial-gradient(ellipse at 50% 30%, rgba(254,124,110,0.06) 0%, transparent 50%), #2F2F2F; color: #fff; padding: 4rem 0; }
.final-interactive h2 { text-align: center; margin-bottom: 0.5rem; font-size: clamp(1.25rem, 3vw, 1.75rem); }
.final-interactive .section-subtitle { text-align: center; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* === Responsive === */
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .solution-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  section { padding: 3.5rem 0; }
  .search-form { flex-direction: column; }
  .search-form .form-group { flex: none; }
  .search-btn { width: 100%; justify-content: center; }
  .hero { padding: 100px 0 2rem; }
  .btn-primary { padding: 12px 40px; }
  .audience-cards { grid-template-columns: 1fr; }
}

/* === Ana Chat Widget === */
.ana-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #FE7C6E;
  color: #fff;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(254,124,110,0.35), 0 2px 8px rgba(0,0,0,0.1);
  transition: transform var(--duration-press) var(--ease-out), box-shadow var(--duration-hover) ease;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .ana-fab:hover {
    box-shadow: 0 6px 28px rgba(254,124,110,0.45), 0 3px 12px rgba(0,0,0,0.12);
  }
}
.ana-fab:active { transform: scale(0.97); }
.ana-fab:focus-visible { outline: 3px solid #FE7C6E; outline-offset: 3px; }
.ana-fab-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
}
.ana-fab.is-hidden { display: none; }

/* Panel */
.ana-panel {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 901;
  width: 370px;
  max-width: calc(100vw - 2.5rem);
  height: 520px;
  max-height: calc(100vh - 2.5rem);
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  transform-origin: bottom right;
  opacity: 0;
  transform: scale(0.95) translateY(8px);
  pointer-events: none;
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
  will-change: transform, opacity;
}
.ana-panel.is-open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  transition-duration: 250ms;
}

/* Header */
.ana-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  background: #FE7C6E;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
  border-radius: 1rem 1rem 0 0;
}
.ana-panel-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.375rem;
  cursor: pointer;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  line-height: 1;
  transition: transform var(--duration-press) var(--ease-out), opacity var(--duration-press) ease;
  opacity: 0.85;
}
@media (hover: hover) and (pointer: fine) {
  .ana-panel-header button:hover { opacity: 1; }
}
.ana-panel-header button:active { transform: scale(0.93); }

/* Messages */
.ana-messages {
  flex: 1 1 0%;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  min-height: 0;
  scroll-behavior: smooth;
}
.ana-msg {
  max-width: 85%;
  padding: 0.625rem 0.875rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  word-wrap: break-word;
  flex-shrink: 0;
}
.ana-msg-user {
  align-self: flex-end;
  background: #FE7C6E;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.ana-msg-ana {
  align-self: flex-start;
  background: #f5f5f5;
  color: #212529;
  border-bottom-left-radius: 4px;
}
.ana-msg-error {
  align-self: flex-start;
  background: #fff0f0;
  color: #c0392b;
  border-bottom-left-radius: 4px;
  font-size: 0.8125rem;
}

/* Typing indicator */
.ana-typing {
  display: none;
  align-self: flex-start;
  padding: 0.625rem 0.875rem;
  background: #f5f5f5;
  border-radius: 1rem;
  border-bottom-left-radius: 4px;
  gap: 4px;
  flex-shrink: 0;
}
.ana-typing.is-visible { display: flex; }
.ana-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bbb;
  animation: anaDot 1.2s ease-in-out infinite;
}
.ana-typing span:nth-child(2) { animation-delay: 0.15s; }
.ana-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes anaDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* Input */
.ana-input-row {
  display: flex;
  align-items: stretch;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  min-height: 48px;
}
.ana-input-row input {
  flex: 1 1 0%;
  min-width: 0;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  background: #fff;
  border-radius: 0 0 0 1rem;
}
.ana-input-row input::placeholder { color: #aaa; }
.ana-input-row input:focus-visible { box-shadow: inset 0 0 0 2px #FE7C6E; }
.ana-input-row button {
  flex-shrink: 0;
  background: #FE7C6E;
  color: #fff;
  border: none;
  padding: 0.75rem 1.125rem;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  border-radius: 0 0 1rem 0;
  transition: background var(--duration-hover) ease, transform var(--duration-press) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .ana-input-row button:hover { background: #fd6a5a; }
}
.ana-input-row button:active { transform: scale(0.97); }
.ana-input-row button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ana-panel { transition-duration: 0ms !important; }
  .ana-fab { transition-duration: 0ms !important; }
  .ana-typing span { animation: none; opacity: 0.5; }
}

/* === Disclaimer === */
.disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}

/* === Utility classes (replacing inline styles) === */
.text-white { color: #fff; }
.text-dark { color: #212529; }
.text-bold { font-weight: 700; }
.mb-1 { margin-bottom: 1rem; }
.mb-half { margin-bottom: 0.5rem; }
.w-full-center { width: 100%; justify-content: center; }
.visibility-hidden { visibility: hidden; }
.link-accent { color: #FE7C6E; text-decoration: underline; }
