:root {
  --bg: #f4f6f8;
  --text: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --dark: #111827;
  --accent: #344054;
  --danger: #b42318;
  --ok: #027a48;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc, #f4f6f8 65%, #f2f4f7);
}
.bg-orb { position: fixed; width: 34rem; height: 34rem; border-radius: 999px; filter: blur(80px); z-index: -1; opacity: .16; animation: float 24s ease-in-out infinite; }
.orb-1 { background: #d0d5dd; top: -12rem; right: -8rem; }
.orb-2 { background: #eaecf0; bottom: -14rem; left: -10rem; animation-delay: -8s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-18px) translateX(8px); }
}

.nav-wrap { position: sticky; top: 0; z-index: 20; background: rgba(249,250,251,.9); border-bottom: 1px solid #eaecf0; backdrop-filter: blur(10px); }
.nav { width: min(1160px, 92vw); margin: 0 auto; min-height: 72px; display: flex; align-items: center; justify-content: space-between; }
.brand { text-decoration: none; color: var(--text); font-weight: 800; letter-spacing: .2px; display: inline-flex; align-items: center; }
.brand img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 1.1rem; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: .95rem; position: relative; transition: color .2s ease; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--accent); transition: width .2s ease; }
.nav-links a:hover { color: #1e293b; }
.nav-links a:hover::after { width: 100%; }

main { width: min(1160px, 92vw); margin: 0 auto; }
.hero { padding: 5.4rem 0 2.2rem; animation: fadeUp .6s ease both; }
.section { animation: fadeUp .55s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.kicker { color: #274690; font-size: .78rem; font-weight: 700; letter-spacing: .1em; }
h1 {
  font-family: 'Syne', 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  max-width: 1080px;
  margin: .5rem 0 1rem;
}
h1 span { color: var(--accent); }
.hero-sub { max-width: 830px; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.hero-cta { margin-top: 1.3rem; display: flex; gap: .72rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: .75rem 1.06rem; border-radius: .8rem; text-decoration: none; font-weight: 700; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(16,24,40,.10); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #0b1220; }
.btn-light { background: #fff; border-color: #d8e2f1; color: #111827; }
.btn-ghost { background: transparent; border-color: #d6dff0; color: #22304a; }
.btn-ghost:hover { background: #f2f4f7; }
.full { width: 100%; }

.hero-metrics { margin-top: 1.8rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.hero-metrics article { background: #fff; border: 1px solid var(--line); border-radius: .95rem; padding: .9rem 1rem; box-shadow: 0 1px 2px rgba(15,23,42,.05); }
.hero-metrics strong { display: block; font-size: 1.4rem; }
.hero-metrics span { color: var(--muted); font-size: .9rem; }

.section { margin-top: 3.6rem; }
.section-alt { background: linear-gradient(180deg, #f8fafc, #f2f4f7); border: 1px solid #eaecf0; border-radius: 1rem; padding: 1.15rem; }
.section-alt-2 { background: linear-gradient(180deg, #f9fafb, #f3f4f6); border: 1px solid #eaecf0; border-radius: 1rem; padding: 1.15rem; }
.section-head h2 { margin: 0 0 .4rem; font-size: 2rem; }
.section-head p { margin: 0; color: var(--muted); }

.problem-grid { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.stack-grid { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }

.timeline { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 1rem; position: relative; box-shadow: 0 6px 14px rgba(16,24,40,.06); }
.step-badge { width: 30px; height: 30px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; background: #eaecf0; color: #344054; margin-bottom: .45rem; }
.step-card h3 { margin: 0 0 .35rem; }
.step-card p { margin: 0 0 .5rem; color: var(--muted); }
.step-card ul { margin: 0 0 0 1rem; padding: 0; color: #1f2b43; }
.step-card li { margin: .25rem 0; }

.automation-cards { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.auto-card { background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 1rem; box-shadow: 0 6px 14px rgba(16,24,40,.06); transition: transform .2s ease, box-shadow .2s ease; }
.auto-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(20,34,66,.1); }
.auto-top { display: flex; align-items: center; gap: .5rem; margin-bottom: .35rem; }
.auto-icon { width: 30px; height: 30px; border-radius: 8px; background: #eef4ff; display: inline-flex; align-items: center; justify-content: center; }
.auto-card h3 { margin: 0; font-size: 1rem; }
.auto-card p { margin: .35rem 0; color: #24314d; }
.auto-impact { margin-top: .5rem; font-weight: 700; color: #027a48; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 1rem; box-shadow: 0 8px 20px rgba(20,34,66,.05); transition: transform .22s ease, box-shadow .22s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(20,34,66,.1); }
.card h3 { margin: .1rem 0 .4rem; font-size: 1.02rem; }
.card p { margin: 0; color: var(--muted); line-height: 1.5; }
.danger { border-color: #f0d0d0; }

.solution-table { margin-top: 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: 1rem; overflow: hidden; }
.solution-table .row { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: .8rem; padding: .85rem 1rem; border-bottom: 1px solid #edf2fa; }
.solution-table .row:last-child { border-bottom: none; }
.solution-table .head { background: #f3f7ff; font-weight: 700; }

.case-grid { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.case-card { background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 1rem; transition: transform .22s ease, box-shadow .22s ease; }
.case-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(20,34,66,.09); }
.case-card h3 { margin: .1rem 0 .5rem; }
.case-card ul { margin: 0 0 0 1rem; color: #1f2b43; }
.case-card li { margin: .45rem 0; }
.case-card.success { border-color: #cde9dc; background: #f3fbf7; }

.pricing { display: grid; place-items: center; }
.price-card { width: min(620px,100%); background: #fff; border: 1px solid var(--line); border-radius: 1.2rem; padding: 1.3rem; box-shadow: 0 8px 20px rgba(16,24,40,.08); }
.tier { color: var(--accent); letter-spacing: .08em; font-weight: 700; font-size: .8rem; margin: 0; }
.price-card h3 { margin: .45rem 0 .4rem; }
.price { font-size: 2.45rem; font-weight: 800; margin: .2rem 0 .6rem; }
.price span { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-card ul { margin: 0 0 1rem 1rem; color: #1e2a44; }
.price-card li { margin: .35rem 0; }
.after { margin: 0 0 1rem; color: #31596b; font-weight: 600; }

.contact { margin-bottom: 3rem; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 1.4rem; }
.contact p { color: var(--muted); }
.contact-cta { margin-top: .8rem; display: flex; gap: .7rem; justify-content: center; }

.sync { background:#fff; border:1px solid var(--line); border-radius:1rem; padding:1.2rem; }
.sync-grid { margin-top:1rem; display:grid; grid-template-columns:repeat(3,1fr); gap:.8rem; }
.sync-card { border:1px solid var(--line); border-radius:.85rem; padding:.95rem; background:#fafcff; }
.sync-head { display:flex; align-items:center; gap:.55rem; margin-bottom:.35rem; }
.sync-icon { width:28px; height:28px; border-radius:8px; display:inline-flex; align-items:center; justify-content:center; background:#eaf1ff; font-size:15px; }
.sync-card h3 { margin:0; font-size:1rem; }
.sync-card p { margin:0; color:var(--muted); line-height:1.45; }
.sync-note { margin-top:.9rem; color:#334155; }
.sync-logos { display:flex; gap:.6rem; flex-wrap:wrap; margin-top:.6rem; }
.tool-badge { border:1px solid var(--line); background:#fff; border-radius:999px; padding:.36rem .72rem; font-size:.85rem; color:#374151; display:inline-flex; align-items:center; gap:.4rem; transition: transform .2s ease, box-shadow .2s ease; }
.tool-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(17,24,39,.08); }
.tool-badge svg { width:16px; height:16px; display:block; }
.sync-tagline { margin:.75rem 0 0; font-weight:700; color:#1f2937; }

.preview-section { overflow: hidden; }
.preview-grid { margin-top: 1.1rem; display: grid; grid-template-columns: 1.35fr .75fr; gap: .9rem; align-items: start; }
.preview-card { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: .7rem; box-shadow: 0 8px 16px rgba(16,24,40,.06); }
.preview-card img { width: 100%; height: auto; display: block; border-radius: .7rem; }
.preview-card.live iframe { width: 100%; height: 520px; border: 1px solid #dbe4f1; border-radius: .7rem; background: #f8fbff; }
.live-chip { display: inline-flex; margin: 0 0 .5rem; background: #e7f7ef; color: #027a48; border: 1px solid #bbf7d0; border-radius: 999px; padding: .2rem .55rem; font-size: .78rem; font-weight: 700; }
.preview-card figcaption { margin-top: .55rem; color: var(--muted); font-size: .92rem; }
.preview-card.mobile img { max-height: 520px; object-fit: contain; background: #f8fbff; }

.login-gateway { background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 1.2rem; }
.login-shell { margin-top: 1rem; display: grid; grid-template-columns: 1.2fr .8fr; gap: .9rem; }
.login-left { background: linear-gradient(180deg,#f8fbff,#f3f7ff); border: 1px solid #dbe7ff; border-radius: .9rem; padding: 1rem; }
.login-left h3 { margin-top: 0; }
.login-left ul { margin: .5rem 0 0 1rem; color: #24314d; }
.login-left li { margin: .45rem 0; }
.login-form { background: #fafcff; border: 1px solid var(--line); border-radius: .9rem; padding: 1rem; display: grid; gap: .45rem; }
.login-form label { font-size: .9rem; color: #334155; font-weight: 600; }
.login-form input { border: 1px solid #d8e2f1; border-radius: .7rem; padding: .72rem .8rem; font: inherit; }
.login-form input:focus { outline: none; border-color: #93c5fd; box-shadow: 0 0 0 3px rgba(59,130,246,.15); }
.login-form small { color: var(--muted); }

@media (max-width: 1020px) {
  .hero-visual-stack { grid-template-columns:1fr; }
  .hero-mini-grid { grid-template-columns:1fr 1fr; grid-template-rows:none; }
  .problem-grid, .stack-grid, .case-grid, .sync-grid, .timeline, .automation-cards, .journey-grid, .review-grid, .visual-offers .offers-grid, .impact-native, .quick-value-grid, .impact-gallery, .impact-single, .offer-split, .key-numbers, .problem-list, .plans-grid, .plans-grid-3, .conversion-steps, .situation-strip, .plan-paths, .integration-logos { grid-template-columns: 1fr 1fr; }
  .preview-grid, .login-shell { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .top-banner { font-size:.72rem; }
  .top-banner a { display:none; }
  .nav-links { display: none; }
  .nav-cta { gap:.35rem; }
  .hero-metrics, .problem-grid, .stack-grid, .case-grid, .sync-grid, .timeline, .automation-cards, .journey-grid, .review-grid, .visual-offers .offers-grid, .impact-native, .quick-value-grid, .impact-gallery, .impact-single, .offer-split, .key-numbers, .problem-list, .plans-grid, .plans-grid-3, .conversion-steps, .situation-strip, .plan-paths, .integration-logos { grid-template-columns: 1fr; }
  .solution-table .row { grid-template-columns: 1fr; }
  .contact-cta { flex-direction: column; }
}


.nav-cta { display:flex; gap:.5rem; align-items:center; }

/* ---------- Premium micro-interactions (sobre) ---------- */
:where(.card,.case-card,.step-card,.sync-card,.journey-step,.review-card,.offer-visual,.tool-badge,.btn,.auto-card,.price-card){
  will-change: transform, box-shadow;
}

:where(.card,.case-card,.step-card,.sync-card,.journey-step,.review-card,.offer-visual,.price-card){
  position: relative;
  overflow: hidden;
}

:where(.card,.case-card,.step-card,.sync-card,.journey-step,.review-card,.offer-visual,.price-card)::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent 35%,rgba(255,255,255,.52) 50%,transparent 65%);
  transform:translateX(-130%);
  opacity:0;
  transition:transform .75s ease,opacity .45s ease;
  pointer-events:none;
}

:where(.card,.case-card,.step-card,.sync-card,.journey-step,.review-card,.offer-visual,.price-card):hover::before{
  transform:translateX(130%);
  opacity:.85;
}

.nav-links a{
  padding-bottom: 4px;
}
.nav-links a:hover{
  transform: translateY(-1px);
}

.hero-cta .btn:first-child{
  box-shadow: 0 8px 18px rgba(16,24,40,.14);
}

.section{
  animation: revealSoft .7s cubic-bezier(.2,.65,.2,1) both;
}
.section:nth-of-type(2){animation-delay:.02s}
.section:nth-of-type(3){animation-delay:.04s}
.section:nth-of-type(4){animation-delay:.06s}
.section:nth-of-type(5){animation-delay:.08s}

@keyframes revealSoft {
  from { opacity: 0; transform: translateY(12px) scale(.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.step-badge{
  transition: transform .25s ease, background .25s ease;
}
.step-card:hover .step-badge{
  transform: scale(1.08);
  background: #dfe7f7;
}

.sync-card, .journey-step, .review-card{
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.sync-card:hover, .journey-step:hover, .review-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(16,24,40,.08);
  border-color: #d8e2f1;
}

.floating-cta{
  animation: floatCTA 2.8s ease-in-out infinite;
}
@keyframes floatCTA{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}

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

.user-journey { background:#fff; border:1px solid var(--line); border-radius:1rem; padding:1.2rem; }
.journey-grid { margin-top:1rem; display:grid; grid-template-columns:repeat(3,1fr); gap:.8rem; }
.journey-step { border:1px solid var(--line); border-radius:.9rem; padding:1rem; background:linear-gradient(180deg,#f9fbff,#f3f7ff); }
.journey-step span { width:28px; height:28px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; background:#111827; color:#fff; font-weight:700; font-size:.85rem; }
.journey-step h3 { margin:.5rem 0 .3rem; }
.journey-step p { margin:0; color:var(--muted); }

.floating-cta { position:fixed; right:18px; bottom:18px; z-index:40; background:#111827; color:#fff; text-decoration:none; padding:.78rem 1rem; border-radius:999px; font-weight:700; box-shadow:0 10px 20px rgba(16,24,40,.18); transition:transform .2s ease; }
.floating-cta:hover { transform:translateY(-2px); }


.trust-proof { background:#fff; border:1px solid var(--line); border-radius:1rem; padding:1.2rem; }
.review-grid { margin-top:1rem; display:grid; grid-template-columns:repeat(3,1fr); gap:.8rem; }
.review-card { background:#f9fafb; border:1px solid #eaecf0; border-radius:.9rem; padding:1rem; }
.review-card .stars { color:#f59e0b; letter-spacing:.08em; font-size:.9rem; margin-bottom:.45rem; }
.review-card p { margin:.2rem 0 .7rem; color:#344054; line-height:1.55; }
.review-card strong { color:#101828; font-size:.9rem; }
.trust-strip { margin-top:.9rem; display:flex; gap:.55rem; flex-wrap:wrap; }
.trust-strip span { background:#f2f4f7; border:1px solid #e4e7ec; border-radius:999px; padding:.36rem .7rem; font-size:.84rem; color:#475467; }

.nav-wrap { box-shadow: 0 1px 0 rgba(16,24,40,.04); }
.hero h1 { letter-spacing: -0.02em; }
.hero-sub { max-width: 780px; }


.bg-grid {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background-image: linear-gradient(to right, rgba(16,24,40,.035) 1px, transparent 1px), linear-gradient(to bottom, rgba(16,24,40,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 0%, black 35%, transparent 80%);
  animation: gridDrift 32s linear infinite;
}
.bg-wave {
  position: fixed; left: -20%; right: -20%; bottom: -120px; height: 260px; z-index: -2; pointer-events: none;
  background: radial-gradient(70% 120% at 50% 0%, rgba(148,163,184,.16), rgba(148,163,184,0));
  animation: waveMove 10s ease-in-out infinite;
}

@keyframes gridDrift {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(44px,44px,0); }
}
@keyframes waveMove {
  0%,100% { transform: translateY(0px); opacity: .9; }
  50% { transform: translateY(-10px); opacity: .65; }
}

.hero-metrics article { position: relative; overflow: hidden; }
.hero-metrics article::after {
  content: ''; position: absolute; top: -140%; left: -60%; width: 45%; height: 320%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.58), transparent);
  transform: rotate(18deg);
  animation: cardShine 8s ease-in-out infinite;
}
.hero-metrics article:nth-child(2)::after { animation-delay: 1.2s; }
.hero-metrics article:nth-child(3)::after { animation-delay: 2.3s; }

@keyframes cardShine {
  0%, 70% { left: -70%; }
  100% { left: 145%; }
}


.visual-offers .offers-grid { margin-top:1rem; display:grid; grid-template-columns:repeat(3,1fr); gap:.8rem; }
.offer-visual img { width:100%; border-radius:.7rem; border:1px solid #e4e7ec; background:#fff; }
.offer-visual h3 { margin:.7rem 0 .35rem; }
.offer-visual p { margin:0; color:var(--muted); }


.impact-visual { margin: 1rem 0 0; background:#fff; border:1px solid var(--line); border-radius:1rem; padding:.65rem; box-shadow:0 8px 16px rgba(16,24,40,.06); }
.impact-visual img { width:100%; display:block; border-radius:.7rem; }
.impact-visual figcaption { margin-top:.45rem; color:var(--muted); font-size:.9rem; }


.impact-native { margin-top: 1rem; display:grid; grid-template-columns:1fr 1fr; gap:.8rem; }
.impact-col { border:1px solid var(--line); border-radius:1rem; padding:1rem; background:#fff; }
.impact-col h3 { margin:.1rem 0 .45rem; }
.impact-col ul { margin:.2rem 0 .6rem 1rem; color:#344054; }
.impact-col li { margin:.3rem 0; }
.impact-stats { border-radius:.8rem; padding:.7rem .8rem; font-size:.95rem; }
.impact-stats p { margin:.25rem 0; }
.impact-col.before { border-color:#fecdca; background:linear-gradient(180deg,#fff5f5,#fff); }
.impact-col.before .impact-stats { background:#fff1f1; border:1px solid #fda29b; }
.impact-col.before strong { color:#b42318; }
.impact-col.after { border-color:#a6f4c5; background:linear-gradient(180deg,#f3fff8,#fff); }
.impact-col.after .impact-stats { background:#ecfdf3; border:1px solid #86efac; }
.impact-col.after strong { color:#027a48; }

.offer-visual { position:relative; }
.offer-badge { position:absolute; top:10px; left:10px; background:#111827; color:#fff; font-size:.75rem; font-weight:700; padding:.28rem .55rem; border-radius:999px; }
.offer-badge.secondary { background:#475467; }
.top-offer { border:2px solid #111827; box-shadow:0 10px 24px rgba(16,24,40,.12); }
.offer-meta { margin-top:.45rem !important; font-size:.86rem; color:#475467 !important; }


.hero-visual-stack { margin-top: 1rem; display:grid; grid-template-columns:1.2fr .8fr; gap:.75rem; align-items:stretch; }
.hero-shot { margin:0; background:#fff; border:1px solid var(--line); border-radius:14px; padding:.45rem; box-shadow:0 8px 18px rgba(16,24,40,.06); }
.hero-shot img { width:100%; height:100%; object-fit:cover; border-radius:10px; display:block; }
.hero-mini-grid { display:grid; grid-template-rows:1fr 1fr; gap:.75rem; }
.quick-value-grid { margin-top: 1rem; display:grid; grid-template-columns:repeat(4,1fr); gap:.6rem; }
.quick-value-grid article { background:#fff; border:1px solid var(--line); border-radius:12px; padding:.65rem; display:flex; align-items:center; gap:.45rem; }
.quick-value-grid span { width:28px; height:28px; display:inline-flex; align-items:center; justify-content:center; background:#f2f4f7; border-radius:8px; font-size:14px; }
.quick-value-grid p { margin:0; font-size:.86rem; color:#344054; font-weight:600; }


/* WOW HEADER (home) */
.nav-wow {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,250,252,.76));
  backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 1px solid rgba(148,163,184,.28);
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
}
.top-banner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  width:min(1160px,92vw);
  margin:0 auto;
  min-height:34px;
  font-size:.78rem;
  color:#475467;
}
.top-banner a {
  color:#0f172a;
  text-decoration:none;
  font-weight:700;
  border:1px solid #d0d5dd;
  padding:.18rem .55rem;
  border-radius:999px;
  background:#fff;
}
.brand { position: relative; }
.brand-orb {
  position:absolute;
  inset:-6px -8px;
  border-radius:14px;
  background: radial-gradient(60% 60% at 50% 50%, rgba(59,130,246,.18), rgba(59,130,246,0));
  z-index:-1;
  animation: pulseOrb 2.8s ease-in-out infinite;
}
.nav {
  min-height: 78px;
}
.nav-links a {
  font-weight:600;
  color:#475467;
}
.nav-links a:hover {
  color:#111827;
}
.nav-cta .btn-light {
  background: linear-gradient(180deg,#ffffff,#f8fafc);
  border-color:#cbd5e1;
}
.nav-cta .btn-light:hover {
  box-shadow: 0 10px 20px rgba(15,23,42,.10);
}

@keyframes pulseOrb {
  0%,100% { opacity:.55; transform: scale(1); }
  50% { opacity:.95; transform: scale(1.05); }
}


/* Hero visual-first upgrade */
main {
  position: relative;
}
main::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 96vw);
  height: 520px;
  background:
    radial-gradient(60% 70% at 20% 10%, rgba(59,130,246,.14), transparent 70%),
    radial-gradient(60% 70% at 80% 0%, rgba(16,185,129,.10), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,0));
  pointer-events: none;
  z-index: -1;
  border-radius: 32px;
}
.hero {
  animation: heroIn .85s cubic-bezier(.2,.8,.2,1) both;
}
.hero h1 {
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero h1 span {
  background: linear-gradient(90deg,#1d4ed8,#0f766e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-schematic {
  margin: 1rem 0 .2rem;
  display: grid;
  grid-template-columns: .9fr 1.2fr .9fr;
  gap: .7rem;
  align-items: center;
}
.node {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .75rem .85rem;
  box-shadow: 0 10px 24px rgba(16,24,40,.06);
  animation: fadeUp .7s ease both;
}
.node h4 { margin: .1rem 0 .45rem; font-size: .95rem; }
.node ul { margin: 0; padding-left: 1rem; color: #475467; font-size: .86rem; }
.node li { margin: .23rem 0; }
.node-problem { border-color: #fecaca; background: linear-gradient(180deg,#fff5f5,#fff); }
.node-result { border-color: #bbf7d0; background: linear-gradient(180deg,#f0fdf4,#fff); }
.flow-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .75rem;
  box-shadow: 0 10px 24px rgba(16,24,40,.05);
  animation: fadeUp .8s ease both;
}
.flow-pill {
  border: 1px solid #dbe2ea;
  background: #f8fafc;
  padding: .33rem .55rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  color: #344054;
}
.flow-arrow { color: #94a3b8; font-size: .85rem; }

@media (max-width: 1020px) {
  .hero-schematic { grid-template-columns: 1fr; }
  .flow-center { justify-content: flex-start; }
}


.impact-gallery {
  margin: 1rem 0 .6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
}
.impact-gallery figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .35rem;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(16,24,40,.06);
}
.impact-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  display: block;
  transition: transform .35s ease;
}
.impact-gallery figure:hover img { transform: scale(1.025); }


.impact-single {
  margin: 1rem auto .6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
.impact-laptop {
  margin:0;
  min-height: 290px;
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:.4rem;
  box-shadow:0 8px 16px rgba(16,24,40,.06);
  overflow:hidden;
}
.impact-laptop .label {
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  font-size:.74rem;
  font-weight:800;
  padding:.24rem .55rem;
  border-radius:999px;
  color:#fff;
}
.impact-laptop.before .label { background:#b42318; }
.impact-laptop.after .label { background:#027a48; }
.impact-laptop img {
  width:100%;
  display:block;
  border-radius:9px;
  max-height: 320px;
  object-fit: cover;
}
.impact-laptop.before img { filter: saturate(.75) contrast(.95); }
.impact-laptop.after img { filter: saturate(1.05) contrast(1.02); }

.single-hero { margin: 1rem 0 .6rem; }
.single-hero img { width: 100%; border-radius: 12px; border:1px solid var(--line); box-shadow:0 10px 20px rgba(16,24,40,.07); display:block; }


.offer-split {
  margin-top: .9rem;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.7rem;
}
.offer-card-lite, .offer-card-pro {
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:.8rem .9rem;
}
.offer-card-lite h3, .offer-card-pro h3 { margin:.1rem 0 .4rem; font-size:1rem; }
.offer-card-lite p, .offer-card-pro p { margin:0 0 .5rem; color:#475467; font-size:.9rem; }
.offer-card-lite ul, .offer-card-pro ul { margin:0; padding-left:1rem; color:#344054; font-size:.86rem; }
.offer-card-lite { border-color:#dbeafe; background:linear-gradient(180deg,#f8fbff,#fff); }
.offer-card-pro { border-color:#bbf7d0; background:linear-gradient(180deg,#f3fff8,#fff); }
.impact-single { max-width: 1080px; }
.impact-laptop img { max-height: 360px; object-fit: cover; }


.offer-split { align-items: stretch; }
.offer-card-lite, .offer-card-pro { display:flex; flex-direction:column; justify-content:space-between; min-height: 220px; }
.offer-card-lite ul, .offer-card-pro ul { margin-top:.35rem; }
.solution-table .row { align-items: start; }
.section-head { max-width: 1080px; }


/* Big key numbers without boxes */
.key-numbers {
  margin: 1.2rem auto 1rem;
  display:grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1.1rem;
  max-width: 1080px;
  text-align: center;
}
.key-numbers article {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: .35rem .25rem !important;
  animation: numberIn .75s cubic-bezier(.2,.8,.2,1) both;
}
.key-numbers article:nth-child(2){ animation-delay:.12s; }
.key-numbers article:nth-child(3){ animation-delay:.24s; }
.key-numbers article::after{ display:none !important; }
.key-numbers strong {
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  line-height: .95;
  letter-spacing: -0.02em;
  display:block;
  color:#1d4ed8;
}
.key-numbers article:nth-child(2) strong { color:#0f766e; }
.key-numbers article:nth-child(3) strong { color:#334155; }
.key-numbers span {
  display:block;
  margin-top:.25rem;
  color:#64748b;
  font-size:.85rem;
  font-weight:600;
}
@keyframes numberIn {
  from { opacity:0; transform: translateY(14px) scale(.94); }
  to { opacity:1; transform: translateY(0) scale(1); }
}

.impact-laptop figcaption {
  margin-top:.42rem;
  font-size:.84rem;
  font-weight:700;
  color:#475467;
}

.offer-compare .solution-table .row { padding: .65rem .85rem; }
.offer-compare .solution-table .head { background:#eef2f7; }


.problem-list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem 1rem;
}
.problem-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: .85rem;
  align-items: start;
  padding: .55rem .2rem;
  border-bottom: 1px solid #e5e7eb;
}
.problem-list span {
  width: 72px;
  height: 72px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: visible;
}
.problem-list span img { width: 64px; height: 64px; object-fit: contain; display:block; filter: drop-shadow(0 4px 10px rgba(15,23,42,.12)); }
.problem-list h3 { margin: .1rem 0 .2rem; font-size: 1.02rem; }
.problem-list p { margin: 0; color: #64748b; font-size: .9rem; }

.offer-card-lite, .offer-card-pro {
  min-height: 240px;
  padding: 1rem 1rem;
}
.offer-card-lite {
  border: 2px solid #93c5fd;
  background: linear-gradient(180deg,#eff6ff,#ffffff);
}
.offer-card-pro {
  border: 2px solid #86efac;
  background: linear-gradient(180deg,#ecfdf3,#ffffff);
}
.offer-card-lite h3, .offer-card-pro h3 {
  font-size: 1.08rem;
}
.offer-card-lite p, .offer-card-pro p {
  font-size: .92rem;
}


.hero-lux {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 5.2rem 1.2rem 2rem;
  isolation: isolate;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(.95);
}
.hero-lux::after {
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(248,250,252,.84));
}
.hero-lux .hero-sub,
.hero-lux .kicker,
.hero-lux h1 { max-width: 760px; }
.hero-lux h1 { font-size: clamp(2.2rem, 5.1vw, 4.2rem); }

.hero-support { margin: .55rem 0 0; color:#334155; font-size:.96rem; font-weight:600; }


/* Professional offer comparison */
.plans-compare {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border: 1px solid #d9e0ea;
  border-radius: 20px;
  background: linear-gradient(180deg,#ffffff,#f8fbff);
}
.plans-head { text-align:center; margin-bottom: .8rem; }
.plans-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  letter-spacing: -0.02em;
}
.plans-head p { margin: .35rem 0 0; color:#64748b; }
.plans-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.plan-card {
  position: relative;
  border: 1px solid #d5dbe6;
  border-radius: 16px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15,23,42,.06);
  transform: translateY(12px);
  opacity: 0;
  animation: planEnter .7s cubic-bezier(.2,.8,.2,1) forwards;
}
.plan-card:nth-child(2){ animation-delay:.14s; }
.plan-card .plan-badge {
  display:inline-block;
  margin:0 0 .45rem;
  padding:.22rem .55rem;
  border-radius:999px;
  font-size:.74rem;
  font-weight:800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.plan-card h3 { margin:.1rem 0 .35rem; font-size:1.2rem; }
.plan-card .plan-sub { margin:0 0 .55rem; color:#475467; font-size:.92rem; }
.plan-card ul { margin:0 0 .8rem; padding-left:1rem; color:#334155; font-size:.9rem; }
.plan-card li { margin:.28rem 0; }
.plan-card.starter .plan-badge { background:#e8f1ff; color:#1d4ed8; }
.plan-card.premium .plan-badge { background:#e8fff3; color:#027a48; }
.plan-card.featured {
  border: 2px solid #73d9a5;
  background: linear-gradient(180deg,#f2fff7,#ffffff 45%);
  box-shadow: 0 14px 30px rgba(2,122,72,.14);
}
@keyframes planEnter {
  from { opacity:0; transform:translateY(12px) scale(.98); }
  to { opacity:1; transform:translateY(0) scale(1); }
}


.billing-toggle {
  margin: .3rem auto .95rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .3rem;
  border:1px solid #d5dbe6;
  border-radius: 999px;
  background:#fff;
}
.billing-toggle span {
  font-size:.8rem;
  padding:.25rem .6rem;
  border-radius:999px;
  color:#64748b;
  font-weight:700;
}
.billing-toggle .active { background:#eef2ff; color:#1e3a8a; }

.plans-grid-3 { grid-template-columns: repeat(3,1fr); }
.plan-price {
  margin:0 0 .45rem;
  font-size:1.05rem;
  font-weight:800;
  color:#0f172a;
}
.plan-card.scale .plan-badge { background:#f1f5f9; color:#334155; }


.billing-toggle button {
  border: 0;
  background: transparent;
  color:#64748b;
  font-size:.8rem;
  padding:.25rem .65rem;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}
.billing-toggle button.active { background:#eef2ff; color:#1e3a8a; }

.referral-strip {
  margin: .6rem auto 1rem;
  max-width: 860px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:.8rem;
  padding:.65rem .75rem;
  border:1px dashed #c9d4e5;
  border-radius: 14px;
  background:#fbfdff;
}
.referral-strip p { margin:0; color:#334155; font-size:.84rem; }
.referral-input { display:flex; gap:.45rem; }
.referral-input input {
  border:1px solid #d0d5dd;
  border-radius:10px;
  padding:.45rem .6rem;
  font-size:.82rem;
  width:140px;
}
.referral-input button {
  border:0;
  border-radius:10px;
  padding:.45rem .7rem;
  font-size:.8rem;
  font-weight:700;
  background:#0f172a;
  color:#fff;
  cursor:pointer;
}
.plan-note {
  min-height: 1.1em;
  margin: -.1rem 0 .35rem;
  font-size:.78rem;
  color:#027a48;
  font-weight:700;
}

.hero-copy.centered { text-align:center; margin-inline:auto; }
.hero-copy.centered .hero-actions, .hero-copy.centered .hero-metrics { justify-content:center; }
.hero-copy.centered .kicker { margin-inline:auto; }

.billing-wrap{display:flex; align-items:center; justify-content:center; gap:.55rem; margin:.3rem auto .95rem;}
.billing-save{font-size:.8rem; color:#027a48; font-weight:700;}


.hero.hero-lux {
  display:flex;
  flex-direction:column;
  align-items:center;
}
.hero.hero-lux .hero-copy {
  width:100%;
  max-width: 1080px;
  margin-inline:auto;
  text-align:center !important;
}
.hero.hero-lux .hero-actions,
.hero.hero-lux .hero-metrics,
.hero.hero-lux .key-numbers {
  justify-content:center;
  margin-inline:auto;
}


.hero-trustline {
  margin:.45rem auto .2rem;
  font-size:.82rem;
  color:#334155;
  text-align:center;
  font-weight:600;
}



/* Premium comparison matrix */
.comparison-matrix {
  margin-top: 1rem;
  border: 1px solid #d9e2ef;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(15,23,42,.06);
}
.comparison-matrix .row {
  display:grid;
  grid-template-columns: .9fr 1.1fr 1.1fr;
  gap: .75rem;
  align-items: stretch;
  padding: .72rem .85rem;
  border-bottom: 1px solid #edf2f7;
}
.comparison-matrix .row.head {
  background:#f8fafc;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .04em;
  color:#334155;
}
.comparison-matrix .row:last-child { border-bottom: 0; }
.comparison-matrix .cell-title {
  font-weight: 700;
  color:#0f172a;
  align-self: center;
}
.comparison-matrix .manual,
.comparison-matrix .forge {
  border-radius: 12px;
  padding: .65rem .72rem;
  font-size: .88rem;
  line-height: 1.35;
}
.comparison-matrix .manual {
  background: #fff5f5;
  border: 1px solid #ffd9d9;
  color:#7a271a;
}
.comparison-matrix .forge {
  background:#f5fbf7;
  border: 1px solid #cdeedb;
  color:#065f46;
  box-shadow: inset 0 0 0 1px rgba(2,122,72,.06);
}
.comparison-matrix .manual::before,
.comparison-matrix .forge::before {
  display:inline-flex;
  width: 18px;
  justify-content:center;
  margin-right:.35rem;
  font-weight:900;
}
.comparison-matrix .manual::before { content:'✕'; color:#b42318; }
.comparison-matrix .forge::before { content:'✓'; color:#027a48; }
.comparison-matrix .col-manual { color:#b42318; }
.comparison-matrix .col-forge { color:#027a48; }

@media (max-width: 640px){ .comparison-matrix .row{grid-template-columns:1fr;} }

.plan-bridge{padding:.6rem 1rem; text-align:center;}
.plan-bridge p{margin:0; color:#334155; font-weight:600;}

.comparison-matrix .row .forge { font-weight: 600; }
.comparison-matrix .row:hover .forge { background: linear-gradient(180deg,#dcfce7,#c7f9da); transform: translateY(-1px); transition: .18s ease; }


.situation-strip {
  margin-top:.9rem;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.7rem;
}
.situation-strip article {
  display:grid;
  grid-template-columns:40px 1fr;
  gap:.6rem;
  align-items:start;
  padding:.7rem;
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#fff;
}
.situation-strip span { font-size:1.3rem; line-height:1; }
.situation-strip h3 { margin:.05rem 0 .2rem; font-size:.98rem; }
.situation-strip p { margin:0; color:#64748b; font-size:.86rem; }

.plan-paths {
  margin-top:.9rem;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.75rem;
}
.path-card {
  border:1px solid #dbe2ea;
  border-radius:14px;
  background:#fff;
  padding:.9rem;
}
.path-badge {
  display:inline-block;
  margin:0 0 .35rem;
  padding:.2rem .55rem;
  border-radius:999px;
  font-size:.72rem;
  font-weight:800;
}
.path-card h3 { margin:.1rem 0 .45rem; font-size:1.05rem; }
.path-card ul { margin:0; padding-left:1rem; color:#334155; font-size:.88rem; }
.path-card li { margin:.28rem 0; }
.path-card.no-plan .path-badge { background:#f1f5f9; color:#475467; }
.path-card.starter .path-badge { background:#e9f2ff; color:#1d4ed8; }
.path-card.premium .path-badge { background:#ecfdf3; color:#027a48; }
.path-card.starter { border-color:#cfe0ff; }
.path-card.premium { border-color:#bfe9cf; box-shadow:0 10px 20px rgba(2,122,72,.08); }


.integrations-strip { padding-top:.4rem; }
.integration-logos {
  margin-top:.8rem;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:.7rem;
}
.integration-logos article {
  display:flex;
  align-items:center;
  gap:.55rem;
  padding:.65rem .7rem;
  border:1px solid #e6ebf3;
  border-radius:12px;
  background:#fff;
}
.integration-logos img {
  width:28px;
  height:28px;
  object-fit:contain;
}
.integration-logos span {
  font-size:.9rem;
  font-weight:700;
  color:#334155;
}


.quick-compare { padding-top:.45rem; }
.quick-table {
  margin-top:.7rem;
  border:1px solid #dde3ec;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}
.q-row {
  display:grid;
  grid-template-columns:.7fr 1fr 1.2fr;
  gap:.6rem;
  padding:.7rem .8rem;
  border-bottom:1px solid #eef2f6;
}
.q-row:last-child{border-bottom:0;}
.q-head { background:#f8fafc; font-weight:800; color:#334155; }
.q-row span:first-child{font-weight:700; color:#0f172a;}

@media (max-width: 720px){ .q-row { grid-template-columns:1fr; } }


#solution {
  position: relative;
  border-radius: 20px;
  padding: 1.1rem;
  background: linear-gradient(135deg,#0f3b78 0%, #1d4f95 45%, #2b6cb0 100%);
  box-shadow: 0 18px 36px rgba(15,59,120,.22);
}
#solution .section-head h2,
#solution .section-head p,
#solution .problem-list h3,
#solution .problem-list p { color: #eef4ff; }
#solution .problem-list article {
  border-bottom-color: rgba(255,255,255,.22);
}
#solution .problem-list span {
  filter: drop-shadow(0 6px 14px rgba(2,6,23,.35));
}

#solution .problem-list span img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(21%) saturate(245%) hue-rotate(186deg) brightness(101%) contrast(98%);
}


/* Green DA block for implementation plan */
#process.section-alt-2 {
  background: linear-gradient(135deg,#0f5132 0%, #116149 45%, #1f7a5a 100%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(6,78,59,.22);
}
#process .section-head h2,
#process .section-head p { color:#ecfdf3; }

#process .process-grid {
  margin-top: 1rem;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .85rem;
}
#process .step-card {
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.28);
  min-height: 230px;
  box-shadow: 0 12px 26px rgba(2,44,34,.24);
  backdrop-filter: blur(6px);
}
#process .step-card h3,
#process .step-card p,
#process .step-card li { color:#ecfdf3; }
#process .step-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 1.1rem;
  background: rgba(255,255,255,.2);
  border:1px solid rgba(255,255,255,.38);
}
@media (max-width: 900px){
  #process .process-grid { grid-template-columns: 1fr; }
}


.auto-logos { display:inline-flex; align-items:center; gap:.25rem; }
.auto-logos img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.auto-top h3 { line-height:1.2; }

#process .step-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(2,44,34,.34); transition: .2s ease; }
