:root {
  color-scheme: light;
  --bg: #f7fafc;
  --bg-soft: #eef4f8;
  --surface: #ffffff;
  --text: #10243d;
  --text-soft: #5d6f84;
  --line: #dbe4ee;
  --primary: #fa6353;
  --primary-strong: #e55242;
  --secondary: #2ec4a6;
  --shadow-sm: 0 8px 20px rgba(16, 36, 61, 0.06);
  --shadow-md: 0 16px 36px rgba(16, 36, 61, 0.1);
  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 26px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 0 0, #fff3ef 0%, var(--bg) 42%, #ffffff 100%);
  line-height: 1.6;
}

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

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

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1,
h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

h3 {
  font-size: 1.22rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

strong {
  font-weight: 800;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
  scroll-margin-top: 92px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(250, 99, 83, 0.04), rgba(46, 196, 166, 0.03));
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  transition: margin 0.25s ease, padding 0.25s ease, border-radius 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.logo {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.site-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.25rem;
  gap: 0.7rem;
}

.site-nav a {
  font-weight: 600;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

[data-header].nav-open .site-nav {
  display: flex;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

[data-header].nav-open .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

[data-header].nav-open .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.header-cta {
  display: none;
}

/* ── Nav dropdowns ── */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: inherit;
  color: var(--text-soft);
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  color: var(--primary);
}

/* Mobile: dropdown items shown inline when toggled */
.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 0.45rem;
  padding-left: 1rem;
  margin-top: 0.4rem;
}

.nav-dropdown.is-open > .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown.is-open > .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  font-weight: 600;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--primary);
}

/* ── END Nav dropdowns ── */

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 800;
}

.top-badge {
  margin: 0 0 1.2rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(46, 196, 166, 0.3);
  background: rgba(46, 196, 166, 0.13);
  border-radius: 999px;
  color: #0f6b58;
  font-size: 0.88rem;
  font-weight: 700;
}

.lead,
.section-lead {
  margin: 0;
  color: var(--text-soft);
  max-width: 62ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.82rem 1.35rem;
  font-weight: 700;
  font-size: 0.94rem;
  transition: 0.2s transform ease, 0.2s background ease, 0.2s color ease, 0.2s box-shadow ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff8578);
  color: #fff;
  box-shadow: 0 12px 30px rgba(250, 99, 83, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
}

.btn-secondary {
  border-color: #b8cae1;
  color: var(--text);
  background: #fff;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost {
  border-color: transparent;
  background: rgba(250, 99, 83, 0.1);
  color: var(--primary);
}

.btn-ghost:hover {
  background: rgba(250, 99, 83, 0.16);
}

.btn-whatsapp {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25);
}

.btn-whatsapp:hover {
  background: #16a34a;
  color: #ffffff;
}

.btn:focus-visible,
:focus-visible {
  outline: 3px solid rgba(250, 99, 83, 0.28);
  outline-offset: 2px;
}

.hero-light-grid {
  position: relative;
}

.hero-light-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(250, 99, 83, 0.04), rgba(46, 196, 166, 0.03)),
    radial-gradient(circle at 90% 0%, rgba(250, 99, 83, 0.15), transparent 36%);
  z-index: -1;
}

.hero-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 1.4rem;
}

.proof-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.partner-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
}

.partner-badges img {
  height: 48px;
  width: auto;
  border-radius: 10px;
  border: 1px solid #dbe4ee;
  background: #ffffff;
  padding: 0.2rem;
  box-shadow: 0 8px 16px rgba(16, 36, 61, 0.08);
}

.proof-line p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.hero-panel-title {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
}

.hero-stat-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0 1.2rem;
}

.hero-stat-value {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
}

.hero-stat-label {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.hero-chart {
  position: relative;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f6f9ff, #f0f8f6);
  padding: 0.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.hero-chart svg {
  position: relative;
  z-index: 1;
}

.chart-grid line {
  stroke: rgba(16, 36, 61, 0.12);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

.chart-bars rect {
  fill: rgba(250, 99, 83, 0.18);
  transform-origin: bottom;
  animation: graphBarLoop 4.2s ease-in-out infinite;
}

.chart-bars .bar-1 { animation-delay: 0.08s; }
.chart-bars .bar-2 { animation-delay: 0.16s; }
.chart-bars .bar-3 { animation-delay: 0.24s; }
.chart-bars .bar-4 { animation-delay: 0.32s; }
.chart-bars .bar-5 { animation-delay: 0.40s; }
.chart-bars .bar-6 { animation-delay: 0.48s; }
.chart-bars .bar-7 { animation-delay: 0.56s; }
.chart-bars .bar-8 { animation-delay: 0.64s; }

.chart-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  border: 1px solid rgba(16, 36, 61, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #26415f;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.22rem 0.55rem;
  box-shadow: 0 8px 16px rgba(16, 36, 61, 0.12);
  animation: chipFloat 3.2s ease-in-out infinite;
}

.chip-up {
  top: 10px;
  right: 12px;
}

.chip-rate {
  bottom: 10px;
  left: 12px;
  animation-delay: 0.8s;
}

.chart-line {
  fill: none;
  stroke: url(#hero-line);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 470;
  stroke-dashoffset: 470;
  animation: graphLineLoop 4.2s ease-in-out infinite;
  filter: drop-shadow(0 0 0 rgba(250, 99, 83, 0));
}

.chart-area {
  fill: rgba(46, 196, 166, 0.17);
  opacity: 0;
  animation: graphAreaLoop 4.2s ease-in-out infinite;
}

.logo-ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.9rem 0.8rem;
}

.ticker-group img {
  width: 170px;
  height: 58px;
  display: block;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(16, 36, 61, 0.07);
  filter: grayscale(1) contrast(1.04);
  opacity: 0.88;
}

.ticker-group span {
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0;
  border: 0;
  background: transparent;
  height: auto;
}

.ticker-group img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.section-heading {
  margin-bottom: 1.8rem;
}

.compact-head {
  margin-bottom: 1.2rem;
}

.audience-grid,
.benefits-grid,
.results-grid,
.process-grid,
.team-grid,
.info-grid,
.two-col {
  display: grid;
  gap: 1rem;
}

.audience-card,
.benefit-card,
.result-card,
.process-step,
.team-card,
.info-card,
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.audience-card ul {
  margin: 1rem 0;
  color: var(--text-soft);
}

.audience-tag {
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 800;
}

.expert-logo-slot {
  margin: 0 0 0.9rem;
  min-height: 84px;
  border: 1px dashed #c8d4e1;
  border-radius: 14px;
  background: linear-gradient(180deg, #f9fbfe, #f3f7fc);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.expert-logo-slot img {
  max-height: 52px;
  width: auto;
  opacity: 0.86;
}

.benefit-card p,
.info-card p,
.process-step p,
.team-card p,
.review-card p {
  margin: 0;
  color: var(--text-soft);
}

.reviews-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 280px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.review-card {
  scroll-snap-align: start;
}

.showcase-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.filter-chip {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text-soft);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
}

.filter-chip.is-active {
  background: rgba(250, 99, 83, 0.13);
  border-color: rgba(250, 99, 83, 0.35);
  color: #bf4638;
}

.newsletter-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 0.9rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.email-thumb {
  border-radius: 12px;
  border: 1px solid var(--line);
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.showcase-title {
  margin: 0.35rem 0 0.15rem;
  font-weight: 700;
}

.showcase-metric {
  margin: 0;
  color: #0d7e68;
  font-weight: 700;
}

.showcase-open {
  margin-top: 0.2rem;
  justify-self: start;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 0.4rem 0.7rem;
  font: inherit;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
}

.showcase-open:hover {
  border-color: rgba(250, 99, 83, 0.4);
  color: #c74a3a;
}

.proof-strip {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.proof-strip p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.proof-strip strong {
  color: #174c93;
}

/* ── Newsletter Ticker Showcase ── */

.nl-showcase-section {
  overflow: hidden;
}

.nl-showcase-section .section-heading {
  text-align: center;
  margin-bottom: 2.2rem;
}

.nl-showcase-section .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.nl-ticker {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0 2rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.nl-ticker-track {
  display: flex;
  width: max-content;
  animation: nlTicker 60s linear infinite;
  will-change: transform;
}

.nl-ticker:hover .nl-ticker-track {
  animation-play-state: paused;
}

.nl-ticker-group {
  display: flex;
  gap: 1.4rem;
  padding: 0 0.7rem;
}

/* ── Card ── */

.nl-card {
  width: 280px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(16, 36, 61, 0.06);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              border-color 0.3s ease;
  cursor: default;
}

.nl-card:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow:
    0 20px 50px rgba(16, 36, 61, 0.12),
    0 0 0 1px var(--nl-accent-soft),
    0 0 40px var(--nl-accent-soft);
  border-color: var(--nl-accent);
}

/* ── Card Preview (email placeholder) ── */

.nl-card-preview {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: linear-gradient(180deg, #fafcff 0%, #f4f7fb 100%);
  border-bottom: 1px solid var(--line);
  min-height: 380px;
}

.nl-card:hover .nl-card-preview {
  background: linear-gradient(180deg, #fff 0%, hsl(var(--nl-hue) 40% 97%) 100%);
}

/* ── Placeholder elements ── */

.nl-ph-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(16, 36, 61, 0.06);
}

.nl-ph-logo {
  width: 52px;
  height: 10px;
  border-radius: 4px;
  background: var(--nl-accent);
  opacity: 0.5;
}

.nl-ph-dots {
  display: flex;
  gap: 3px;
}

.nl-ph-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(16, 36, 61, 0.12);
}

.nl-ph-hero {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--nl-accent-soft), hsl(var(--nl-hue) 50% 92%));
  position: relative;
  overflow: hidden;
}

.nl-ph-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.5));
}

.nl-ph-hero.tall {
  height: 110px;
}

.nl-ph-hero.wide {
  height: 64px;
}

.nl-ph-hero.short {
  height: 44px;
}

.nl-ph-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nl-ph-line {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(16, 36, 61, 0.07);
}

.nl-ph-line.w40 { width: 40%; }
.nl-ph-line.w45 { width: 45%; }
.nl-ph-line.w50 { width: 50%; }
.nl-ph-line.w55 { width: 55%; }
.nl-ph-line.w60 { width: 60%; }
.nl-ph-line.w65 { width: 65%; }
.nl-ph-line.w70 { width: 70%; }
.nl-ph-line.w75 { width: 75%; }
.nl-ph-line.w80 { width: 80%; }
.nl-ph-line.w85 { width: 85%; }
.nl-ph-line.w90 { width: 90%; }

.nl-ph-cta-row {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0;
}

.nl-ph-btn {
  display: block;
  width: 55%;
  height: 26px;
  border-radius: 6px;
  background: var(--nl-accent);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.nl-card:hover .nl-ph-btn {
  opacity: 1;
}

.nl-ph-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.nl-ph-img-grid.triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.nl-ph-img-grid span {
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(16, 36, 61, 0.05), rgba(16, 36, 61, 0.09));
}

.nl-ph-divider {
  width: 100%;
  height: 1px;
  background: rgba(16, 36, 61, 0.06);
  margin: 0.15rem 0;
}

/* ── Card info ── */

.nl-card-info {
  padding: 0.8rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nl-card-tag {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--nl-accent);
  opacity: 0.8;
}

.nl-card-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.nl-card-metric {
  margin: 0;
  font-weight: 800;
  font-size: 0.84rem;
  color: #0d7e68;
}

@keyframes nlTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 130;
}

.newsletter-modal.is-open {
  display: block;
}

.newsletter-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 37, 0.6);
  backdrop-filter: blur(3px);
}

.newsletter-modal-panel {
  position: relative;
  width: min(900px, 92%);
  margin: 4.5rem auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
}

.newsletter-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.newsletter-modal-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.newsletter-modal-content {
  padding: 1.4rem;
  display: grid;
  align-content: center;
  gap: 0.65rem;
}

.newsletter-modal-content h3 {
  margin: 0;
}

.newsletter-modal-content p {
  margin: 0;
  color: var(--text-soft);
}

.newsletter-modal-metric {
  color: #0d7e68 !important;
  font-weight: 800;
  font-size: 0.92rem;
}

.result-top {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.result-top span {
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.result-shot {
  height: 128px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, #f2f7ff, #eef9f5),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 27px,
      rgba(250, 99, 83, 0.06) 27px,
      rgba(250, 99, 83, 0.06) 28px
    );
}

.result-main {
  margin: 0.75rem 0 0.22rem;
  color: #0f8b72;
  font-weight: 800;
}

.result-sub {
  margin: 0;
  color: var(--text-soft);
}

.results-grid + .btn {
  margin-top: 1.2rem;
  padding: 0.95rem 1.5rem;
}

.reviews-row .review-card {
  padding: 1rem;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.avatar {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #5a8dff);
}

.avatar-large {
  height: 52px;
  width: 52px;
  font-size: 0.95rem;
}

.profile-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(16, 36, 61, 0.14);
  margin-bottom: 0.6rem;
}

.review-name,
.review-company,
.review-stars,
.review-date {
  margin: 0;
}

.review-name {
  font-weight: 700;
}

.review-company,
.review-date {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.review-stars {
  margin: 0.4rem 0;
  color: #f4a825;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.review-card > p:not(.review-stars) {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  background: rgba(250, 99, 83, 0.11);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
}

.sparkcrm-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.sparkcrm-copy ul {
  margin: 1rem 0 1.1rem;
  color: var(--text-soft);
}

.sparkcrm-visual {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}

.sparkcrm-shot-logo {
  width: min(320px, 100%);
  height: auto;
  display: block;
}

.team-card .muted,
.muted {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: #fff;
  padding: 0.75rem 0.9rem;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
}

.faq-list p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
}

.final-cta {
  background: linear-gradient(140deg, rgba(250, 99, 83, 0.11), rgba(46, 196, 166, 0.09));
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.stacked-actions .btn {
  padding: 0.95rem 1.5rem;
}

.stacked-actions .btn-primary {
  background: #10243d;
  box-shadow: 0 12px 26px rgba(16, 36, 61, 0.24);
}

.trust-mini {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  font-weight: 700;
}

.footer {
  position: relative;
  background: #0a1928;
  color: #dfe9f5;
  padding: 0 0 0;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(250, 99, 83, 0.10), transparent),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(46, 196, 166, 0.07), transparent);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 1;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-top-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(250, 99, 83, 0.4) 30%, rgba(46, 196, 166, 0.3) 70%, transparent 95%);
}

.footer-inner {
  display: grid;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2.2rem;
}

.footer-brand {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer-logo {
  margin: 0 0 0.15rem;
  font-size: 1.35rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 40%, rgba(250, 99, 83, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.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;
}

.footer-note {
  margin: 0;
  color: rgba(200, 215, 235, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 32ch;
}

.footer-col a,
.footer-bottom {
  color: rgba(200, 215, 235, 0.65);
}

.footer-col a {
  font-weight: 500;
  width: fit-content;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-col a:hover::after {
  width: 100%;
}

.footer-col {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-heading {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(250, 99, 83, 0.6);
}

.footer-audit-cta {
  margin-top: 0.3rem;
  width: fit-content;
  padding: 0.72rem 1.4rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fa6353 0%, #ff8c6b 100%);
  color: #fff;
  border: none;
  box-shadow:
    0 0 0 1px rgba(250, 99, 83, 0.3),
    0 8px 24px rgba(250, 99, 83, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.footer-audit-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(250, 99, 83, 0.5),
    0 12px 32px rgba(250, 99, 83, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #e55242 0%, #fa6353 100%);
}

.footer-whatsapp {
  margin-top: 0.15rem;
  width: fit-content;
  padding: 0.62rem 1.15rem;
  border-radius: 10px;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.footer-whatsapp svg {
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-whatsapp:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
  color: #86efac;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.15);
}

.footer-whatsapp:hover svg {
  opacity: 1;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-newsletter:focus-within {
  border-color: rgba(250, 99, 83, 0.4);
  box-shadow: 0 0 0 3px rgba(250, 99, 83, 0.1);
}

.footer-newsletter input {
  border: none;
  background: transparent;
  color: #f0f5ff;
  border-radius: 0;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.88rem;
  min-height: 42px;
}

.footer-newsletter input::placeholder {
  color: rgba(200, 215, 235, 0.4);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}

.footer-newsletter button {
  border: 0;
  background: rgba(250, 99, 83, 0.9);
  color: #ffffff;
  border-radius: 0 9px 9px 0;
  padding: 0.6rem 0.9rem;
  min-height: 42px;
  font: inherit;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  transition: background 0.2s ease;
  letter-spacing: 0.01em;
}

.footer-newsletter button:hover {
  background: #fa6353;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.2rem 0 1.8rem;
  font-size: 0.8rem;
  color: rgba(200, 215, 235, 0.35);
  letter-spacing: 0.02em;
}

.footer-partner-badges {
  margin: 0.4rem 0 0;
  gap: 0.5rem;
}

.footer-partner-badges img {
  height: 52px;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  filter: brightness(1.1);
  transition: filter 0.25s ease, opacity 0.25s ease;
  opacity: 0.8;
}

.footer-partner-badges img:hover {
  filter: brightness(1.2);
  opacity: 1;
}

.floating-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  text-align: center;
  padding: 0.86rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #ff8578);
  box-shadow: 0 12px 26px rgba(250, 99, 83, 0.3);
}

.page-hero {
  display: grid;
  gap: 1rem;
}

.two-col {
  grid-template-columns: 1fr;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  font-weight: 700;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8d6e6;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(250, 99, 83, 0.14);
}

.contact-side {
  align-self: start;
}

/* ── BLOG LISTING ── */

.blog-hero {
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.blog-filters-bar {
  padding: 0 0 0.5rem;
  position: sticky;
  top: 60px;
  z-index: 10;
  background: rgba(247, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.blog-filters {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  -webkit-overflow-scrolling: touch;
}

.blog-filter {
  all: unset;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
  white-space: nowrap;
  transition: 0.2s background, 0.2s color, 0.2s border-color;
}

.blog-filter:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.blog-filter.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Featured article */
.blog-featured-section {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.blog-featured {
  display: grid;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(16, 36, 61, 0.14);
}

.blog-featured-img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #fff3ef, #fce8e5);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-img-placeholder {
  width: 80px;
  height: 80px;
  opacity: 0.7;
}

.blog-featured-body {
  padding: 0 1.5rem 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.blog-featured-body h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
}

.blog-featured-body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

/* Blog meta line */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.blog-category {
  background: rgba(250, 99, 83, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-category--teal {
  background: rgba(46, 196, 166, 0.12);
  color: #0f6b58;
}

.blog-category--dark {
  background: rgba(16, 36, 61, 0.08);
  color: var(--text);
}

.blog-read-time {
  opacity: 0.7;
}

/* Blog card grid */
.blog-grid {
  display: grid;
  gap: 1.2rem;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #f9fbfe, #f3f7fc);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-img-placeholder {
  width: 60px;
  height: 60px;
  opacity: 0.6;
}

.blog-card-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.blog-card-body h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.blog-card-body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Blog newsletter */
.blog-newsletter {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.blog-newsletter-copy h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.blog-newsletter-copy p {
  margin: 0;
  color: var(--text-soft);
}

.blog-newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.blog-newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  background: var(--bg);
}

.blog-newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(250, 99, 83, 0.15);
}

/* ── BLOG ARTICLE ── */

/* Breadcrumb */
.article-breadcrumb {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  opacity: 0.5;
}

.breadcrumb-list a {
  color: var(--text-soft);
  font-weight: 600;
}

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

.breadcrumb-list li[aria-current] {
  color: var(--text);
  font-weight: 700;
}

/* Article header */
.article-header {
  padding-bottom: clamp(1rem, 2vw, 2rem);
}

.article-header-inner {
  max-width: 760px;
  display: grid;
  gap: 0.8rem;
}

.article-header-inner h1 {
  margin-bottom: 0.3rem;
}

.article-intro {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 62ch;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.article-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff8578);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.article-author-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.article-author-role {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
}

/* Article hero image */
.article-hero-img {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.article-hero-img-placeholder {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.article-hero-img-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
}

.article-hero-img img {
  width: 100%;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* Article layout: content + TOC sidebar */
.article-layout {
  display: grid;
  gap: 2rem;
}

/* Table of contents */
.article-toc {
  order: -1;
}

.article-toc-title {
  margin: 0 0 0.65rem;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.article-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.3rem;
}

.article-toc-list li a {
  display: block;
  padding: 0.35rem 0.7rem;
  border-left: 2px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: 0.15s border-color, 0.15s color;
}

.article-toc-list li a:hover {
  border-left-color: var(--primary);
  color: var(--primary);
}

/* Article content typography */
.article-content {
  max-width: 720px;
}

.article-content p {
  margin: 0 0 1.3rem;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.article-content h2 {
  margin: 2.5rem 0 0.8rem;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  scroll-margin-top: 100px;
}

.article-content h3 {
  margin: 2rem 0 0.6rem;
}

.article-content blockquote {
  margin: 1.5rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--primary);
  background: rgba(250, 99, 83, 0.05);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
}

.article-content blockquote p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  font-style: italic;
}

.article-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content a:hover {
  color: var(--primary-strong);
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.3rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.article-content img {
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin: 1.5rem 0;
}

/* Article tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.article-tags span {
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-soft);
  background: var(--bg-soft);
}

/* Article CTA banner */
.article-cta-banner {
  background: linear-gradient(145deg, rgba(250, 99, 83, 0.08), rgba(46, 196, 166, 0.05));
}

.article-cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.article-cta-inner h2 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.article-cta-inner p {
  margin: 0;
  color: var(--text-soft);
}

/* ── END BLOG ── */

.openclaw-hero {
  position: relative;
}

.openclaw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(250, 99, 83, 0.14), transparent 42%),
    linear-gradient(160deg, rgba(16, 36, 61, 0.04), rgba(46, 196, 166, 0.06));
  z-index: -1;
}

.openclaw-hero-layout {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.openclaw-badge {
  margin: 0 0 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(16, 36, 61, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #10243d;
  padding: 0.4rem 0.78rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.openclaw-brand-panel {
  --logo-gradient-start: #fa6353;
  --logo-gradient-end: #3a76f0;
  --coral-bright: #ff8f83;
  --cyan-bright: #67e8f9;
  --bg-deep: #0b1220;
  border-radius: 18px;
  padding: 1rem;
  background: radial-gradient(circle at 85% 0%, rgba(58, 118, 240, 0.26), transparent 34%), linear-gradient(160deg, #0b1220, #101a2d 45%, #172540);
  color: #e9f0ff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 34px rgba(11, 18, 32, 0.25);
  display: grid;
  gap: 0.2rem;
}

.openclaw-logo-orb {
  width: 148px;
  height: 148px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  display: grid;
  place-items: center;
  animation: openclawLogoFloat 3.8s ease-in-out infinite;
}

.openclaw-lobster {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 8px 16px rgba(88, 130, 255, 0.26));
}

.openclaw-lobster .claw-left {
  transform-origin: 20px 55px;
  animation: clawLeft 2.7s ease-in-out infinite;
}

.openclaw-lobster .claw-right {
  transform-origin: 100px 55px;
  animation: clawRight 2.7s ease-in-out infinite;
}

.openclaw-lobster .eye-glow {
  animation: eyeBlink 2.2s ease-in-out infinite;
}

.openclaw-panel-title {
  margin: 0 0 0.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
}

.openclaw-panel-copy {
  margin: 0 0 0.8rem;
  color: rgba(233, 240, 255, 0.82);
  font-size: 0.93rem;
  text-align: center;
}

.openclaw-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.openclaw-chip-row span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(233, 240, 255, 0.95);
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.openclaw-site-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: #94bfff;
  font-weight: 700;
  font-size: 0.9rem;
  align-self: center;
}

.openclaw-site-link:hover {
  color: #b8d2ff;
}

.openclaw-brand-strip {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.openclaw-brand-kicker {
  margin: 0 0 0.55rem;
  color: #184687;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
}

.openclaw-brand-points {
  margin: 1rem 0 0;
  color: var(--text-soft);
}

.openclaw-brand-points li + li {
  margin-top: 0.35rem;
}

.section-openclaw-services {
  padding-top: 0;
}

.openclaw-normie-points {
  margin: 0;
  padding-left: 1rem;
  color: rgba(233, 240, 255, 0.9);
}

.openclaw-normie-points li + li {
  margin-top: 0.3rem;
}

.openclaw-proofbar {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.openclaw-proofbar p {
  margin: 0;
  color: var(--text-soft);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.58rem 0.75rem;
}

.openclaw-proofbar strong {
  color: #184687;
}

.openclaw-service-grid,
.openclaw-process,
.openclaw-pricing-grid {
  display: grid;
  gap: 1rem;
}

.openclaw-service-card,
.openclaw-process-step,
.openclaw-price-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.openclaw-service-card p,
.openclaw-process-step p,
.openclaw-price-card p {
  margin: 0;
  color: var(--text-soft);
}

.openclaw-process-step span {
  display: inline-flex;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  padding: 0.28rem 0.66rem;
  background: rgba(250, 99, 83, 0.11);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
}

.openclaw-price {
  margin: 0 0 0.75rem !important;
  font-size: 1.75rem;
  line-height: 1.1;
  color: #10243d !important;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
}

.openclaw-price span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 600;
}

.openclaw-includes {
  margin: 0 0 1rem;
  padding-left: 1.05rem;
  color: var(--text-soft);
}

.openclaw-includes li + li {
  margin-top: 0.35rem;
}

.openclaw-price-card.is-featured {
  border-color: rgba(250, 99, 83, 0.42);
  box-shadow: 0 14px 32px rgba(250, 99, 83, 0.16);
}

.openclaw-price-card .btn {
  width: 100%;
}

.openclaw-compare {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.openclaw-compare p {
  margin: 0;
  color: var(--text-soft);
}

.openclaw-faq {
  display: grid;
  gap: 0.7rem;
}

.openclaw-faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.75rem 0.9rem;
}

.openclaw-faq summary {
  font-weight: 700;
  cursor: pointer;
}

.openclaw-faq p {
  margin: 0.55rem 0 0;
  color: var(--text-soft);
}

.openclaw-final-cta {
  background: linear-gradient(145deg, rgba(250, 99, 83, 0.13), rgba(16, 36, 61, 0.04));
}

/* ── WHY OPENCLAW section ── */

.oc-why {
  position: relative;
  overflow: hidden;
}

.oc-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(46, 196, 166, 0.08), transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(250, 99, 83, 0.07), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.oc-why .container {
  position: relative;
  z-index: 1;
}

.oc-why-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.oc-why-header h2 {
  margin-bottom: 0.8rem;
}

.oc-why-header h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #fa6353, #e55242);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.oc-why-subtitle {
  color: var(--text-soft);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.65;
}

.oc-why-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

/* Benefit cards */

.oc-why-benefits {
  display: grid;
  gap: 1rem;
}

.oc-benefit-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.oc-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.oc-benefit-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.oc-benefit-icon svg {
  width: 100%;
  height: 100%;
}

.oc-benefit-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.oc-benefit-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* Phone mockup */

.oc-phone-mockup {
  display: flex;
  justify-content: center;
}

.oc-phone-frame {
  width: 100%;
  max-width: 340px;
  border-radius: 28px;
  background: #ffffff;
  border: 2px solid #e0e6ee;
  box-shadow:
    0 24px 48px rgba(16, 36, 61, 0.12),
    0 4px 12px rgba(16, 36, 61, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
  position: relative;
}

.oc-phone-notch {
  width: 120px;
  height: 6px;
  border-radius: 99px;
  background: #e0e6ee;
  margin: 10px auto 0;
}

.oc-wa-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  background: #075E54;
  color: #ffffff;
}

.oc-wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.oc-wa-avatar svg {
  width: 100%;
  height: 100%;
}

.oc-wa-contact {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.oc-wa-contact strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.oc-wa-contact span {
  font-size: 0.72rem;
  opacity: 0.8;
}

.oc-wa-chat {
  background: #ECE5DD;
  padding: 0.85rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 340px;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8bfb0' fill-opacity='0.08'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='40' cy='35' r='1.5'/%3E%3Ccircle cx='25' cy='50' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.oc-wa-bubble {
  max-width: 82%;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  position: relative;
  word-break: break-word;
}

.oc-wa-sent {
  background: #DCF8C6;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  color: #1a1a1a;
}

.oc-wa-received {
  background: #ffffff;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  color: #1a1a1a;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.oc-wa-received em {
  color: #5d6f84;
}

.oc-wa-input-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  background: #f0f0f0;
  border-top: 1px solid #e0e0e0;
}

.oc-wa-input-bar span {
  font-size: 0.8rem;
  color: #999;
}

/* Chat bubble stagger animation */

.oc-wa-bubble {
  opacity: 0;
  transform: translateY(12px);
  animation: ocBubbleIn 0.45s ease forwards;
}

.oc-wa-anim-1 { animation-delay: 0.3s; }
.oc-wa-anim-2 { animation-delay: 0.8s; }
.oc-wa-anim-3 { animation-delay: 1.4s; }
.oc-wa-anim-4 { animation-delay: 1.9s; }
.oc-wa-anim-5 { animation-delay: 2.6s; }
.oc-wa-anim-6 { animation-delay: 3.1s; }

@keyframes ocBubbleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Use-case ticker */

.oc-usecase-ticker {
  margin-top: 2.5rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.oc-ticker-track {
  display: flex;
  gap: 0.7rem;
  width: max-content;
  animation: ocTicker 28s linear infinite;
}

.oc-ticker-track span {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(16, 36, 61, 0.04);
}

@keyframes ocTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── END WHY OPENCLAW ── */

@media (max-width: 900px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-modal-panel {
    grid-template-columns: 1fr;
    margin: 2.8rem auto;
  }

  .newsletter-modal-image {
    min-height: 260px;
    max-height: 300px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) {
  .blog-featured {
    grid-template-columns: 1fr 1fr;
  }

  .blog-featured-body {
    padding: 1.5rem 1.5rem 1.5rem 0;
    align-self: center;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-newsletter {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .article-layout {
    grid-template-columns: 1fr 220px;
  }

  .article-toc {
    order: 1;
    position: sticky;
    top: 100px;
    align-self: start;
  }

  .article-cta-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .oc-why-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .openclaw-hero-layout {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .openclaw-proofbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .openclaw-service-grid,
  .openclaw-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .openclaw-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .audience-grid,
  .benefits-grid,
  .results-grid,
  .team-grid,
  .info-grid,
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .sparkcrm-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-whatsapp {
    margin-top: 0.1rem;
  }
}

@media (min-width: 1040px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr 240px;
    gap: 3rem;
  }

  .openclaw-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .openclaw-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .openclaw-process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0;
    background: transparent;
    gap: 0.15rem;
    justify-self: center;
    align-items: center;
  }

  .site-nav a {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.93rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(250, 99, 83, 0.12);
    color: #d34a3c;
  }

  .header-cta {
    padding: 0.7rem 1rem;
  }

  .nav-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  /* Desktop dropdown behavior */
  .nav-dropdown {
    padding: 0.3rem 0;
  }

  .nav-dropdown-trigger {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.93rem;
  }

  .nav-dropdown-trigger:hover,
  .nav-dropdown-trigger:focus-visible {
    background: rgba(250, 99, 83, 0.12);
    color: #d34a3c;
  }

  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 0;
    padding: 0.45rem 0;
    padding-top: 0.6rem;
    margin: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(16, 36, 61, 0.12);
    min-width: 200px;
    z-index: 100;
  }

  /* Invisible bridge between trigger and menu to prevent hover loss */
  .nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
  }

  .nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-soft);
    border-radius: 0;
    white-space: nowrap;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    background: rgba(250, 99, 83, 0.08);
    color: #d34a3c;
  }

  .nav-dropdown:hover > .nav-dropdown-menu,
  .nav-dropdown:focus-within > .nav-dropdown-menu {
    display: flex;
  }

  .nav-dropdown:hover > .nav-dropdown-trigger svg,
  .nav-dropdown:focus-within > .nav-dropdown-trigger svg {
    transform: rotate(180deg);
  }

  /* Override mobile is-open on desktop — hover takes precedence */
  .nav-dropdown.is-open > .nav-dropdown-menu {
    display: none;
  }
  .nav-dropdown.is-open:hover > .nav-dropdown-menu,
  .nav-dropdown.is-open:focus-within > .nav-dropdown-menu {
    display: flex;
  }

  .benefits-grid,
  .results-grid,
  .team-grid,
  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .newsletter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }

  .floating-cta {
    display: none;
  }

  .final-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-header.is-scrolled {
    top: 25px;
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
  }

  .site-header.is-scrolled .header-inner {
    margin-top: 0;
    margin-bottom: 0.45rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 36, 61, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(16, 36, 61, 0.12);
  }

  .site-header.is-scrolled .site-nav {
    background: rgba(248, 251, 255, 0.9);
    border: 1px solid rgba(16, 36, 61, 0.08);
    border-radius: 999px;
    padding: 0.2rem;
  }

  .site-header.is-scrolled .logo {
    margin-left: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@keyframes graphLineLoop {
  0% {
    stroke-dashoffset: 470;
  }
  35% {
    stroke-dashoffset: 0;
  }
  75% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 470;
  }
}

@keyframes graphAreaLoop {
  0% {
    opacity: 0.05;
  }
  35% {
    opacity: 0.35;
  }
  70% {
    opacity: 0.24;
  }
  100% {
    opacity: 0.05;
  }
}

@keyframes graphBarLoop {
  0% {
    transform: scaleY(0.3);
    opacity: 0.25;
  }
  35% {
    transform: scaleY(1);
    opacity: 0.85;
  }
  75% {
    transform: scaleY(0.72);
    opacity: 0.6;
  }
  100% {
    transform: scaleY(0.3);
    opacity: 0.25;
  }
}

@keyframes chipFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes openclawLogoFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes clawLeft {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}

@keyframes clawRight {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(8deg); }
  100% { transform: rotate(0deg); }
}

@keyframes eyeBlink {
  0% { opacity: 1; }
  42% { opacity: 1; }
  48% { opacity: 0.25; }
  54% { opacity: 1; }
  100% { opacity: 1; }
}
