/* ADV.click — Sito marketing www (stile punk / reality check) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Urbanist:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep: #0a0e1a;
  --bg-card: rgba(18, 24, 42, 0.75);
  --bg-card-hover: rgba(28, 36, 58, 0.9);
  --accent: #6366f1;
  --accent-2: #22d3ee;
  --accent-3: #f472b6;
  --accent-warm: #fb923c;
  --text: #e8ecf4;
  --text-muted: #94a3b8;
  --border: rgba(99, 102, 241, 0.25);
  --border-strong: rgba(99, 102, 241, 0.45);
  --glow: 0 0 60px rgba(99, 102, 241, 0.15);
  --radius: 12px;
  --nav-h: 72px;
}

@keyframes punkPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(251, 146, 60, 0.25); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(99, 102, 241, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(34, 211, 238, 0.12), transparent),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(244, 114, 182, 0.08), transparent);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--accent); }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--border-strong);
  z-index: 1000;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-brand span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a:not(.nav-punk) {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.nav-links a:not(.nav-punk):hover,
.nav-links a:not(.nav-punk).active {
  color: var(--text);
  background: rgba(99, 102, 241, 0.15);
}

.nav-punk {
  margin-left: 0.15rem;
  padding: 0.5rem 1.1rem !important;
  border: 2px solid transparent;
  border-radius: 4px !important;
  font-family: 'Urbanist', ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-punk--suite {
  background: rgba(251, 146, 60, 0.18) !important;
  border-color: var(--accent-warm) !important;
  color: var(--accent-warm) !important;
  transform: rotate(-1.5deg);
}

.nav-punk--suite:hover,
.nav-punk--suite.active {
  background: rgba(251, 146, 60, 0.3) !important;
  color: #fff !important;
  transform: rotate(0deg) translateY(-1px);
}

.nav-punk--white-label {
  background: #fff !important;
  border-color: #fff !important;
  color: #0a0e1a !important;
  transform: rotate(0.5deg);
}

.nav-punk--white-label:hover,
.nav-punk--white-label.active {
  background: #f1f5f9 !important;
  border-color: #e2e8f0 !important;
  color: #0a0e1a !important;
  transform: rotate(0deg) translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.nav-punk--pricing {
  margin-left: 0.5rem;
  background: rgba(244, 114, 182, 0.15) !important;
  border-color: var(--accent-3) !important;
  color: var(--accent-3) !important;
  transform: rotate(-1deg);
}

.nav-punk--pricing:hover {
  background: rgba(244, 114, 182, 0.25) !important;
  color: var(--text) !important;
  transform: rotate(0deg) translateY(-1px);
}

.page {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  min-height: calc(78vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

.hero--compact {
  min-height: auto;
  padding: 3rem 2rem 2rem;
}

.hero--punk {
  min-height: auto;
  padding: 3.5rem 2rem 2.5rem;
}

.hero--punk .hero-bg {
  opacity: 0.06;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content { position: relative; max-width: 900px; }

.badge,
.pricing-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  background: rgba(244, 114, 182, 0.15);
  border: 2px solid var(--accent-3);
  font-family: 'Urbanist', ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-3);
  margin-bottom: 1.5rem;
  transform: rotate(-1.5deg);
}

.badge--hot,
.pricing-badge--hot {
  background: rgba(251, 146, 60, 0.2);
  border-color: var(--accent-warm);
  color: var(--accent-warm);
  animation: punkPulse 2s ease-in-out infinite;
}

.badge--calm,
.pricing-badge--calm {
  background: rgba(34, 211, 238, 0.12);
  border-color: var(--accent-2);
  color: var(--accent-2);
  transform: rotate(0.5deg);
}

.badge--mono {
  background: rgba(99, 102, 241, 0.12);
  border-color: var(--accent);
  color: var(--accent-2);
}

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-3);
}

.hero h1 .hero-strike {
  position: relative;
  display: inline-block;
}

.hero h1 .hero-strike::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  top: 52%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-3), var(--accent-warm));
  transform: rotate(-2deg);
  border-radius: 2px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hero p strong {
  color: var(--text);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-warm), #f472b6);
  color: #0a0e1a;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(251, 146, 60, 0.35);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px) rotate(-0.5deg);
  box-shadow: 0 8px 32px rgba(251, 146, 60, 0.45);
  color: #0a0e1a;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border-strong);
  border-radius: 4px;
}

.btn-ghost:hover {
  background: rgba(99, 102, 241, 0.12);
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

a.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px) rotate(-0.5deg);
  border-color: var(--accent-3);
  box-shadow: 0 16px 48px rgba(244, 114, 182, 0.15);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card-label {
  display: inline-block;
  font-family: 'Urbanist', ui-sans-serif, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
}

.card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; font-weight: 800; }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

.section { padding: 3rem 0; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--accent-2);
}

.section-title--punk {
  font-style: italic;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 720px;
  line-height: 1.65;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 2px dashed var(--border-strong);
}

.stat-value {
  font-family: 'Urbanist', ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-3);
  text-shadow: 0 0 30px rgba(244, 114, 182, 0.3);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.flow-section {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  position: relative;
}

.flow-section h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--accent-2);
  font-weight: 800;
}

.flow-section > p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 0.98rem; line-height: 1.65; }

.highlight-box {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(244, 114, 182, 0.06));
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.highlight-box--center { display: block; text-align: center; }

.highlight-box--punk {
  border: 2px dashed rgba(244, 114, 182, 0.4);
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.06), rgba(99, 102, 241, 0.08));
}

.highlight-box h2,
.highlight-box h3 {
  font-weight: 800;
  line-height: 1.2;
}

.highlight-box p {
  color: var(--text-muted);
  line-height: 1.65;
}

.highlight-box img,
.img-placeholder {
  width: 100%;
  border-radius: 12px;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(15, 23, 42, 0.6);
  border: 1px dashed var(--border);
}

.faq-list { margin: 2rem 0; }

.faq-item {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 700; }
.faq-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-2); }

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.breadcrumb li + li::before {
  content: '›';
  margin-right: 0.35rem;
  color: var(--text-muted);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  justify-content: center;
}

.service-pill {
  padding: 0.4rem 0.9rem;
  background: rgba(99, 102, 241, 0.12);
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: 'Urbanist', ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  color: var(--accent-2);
  transform: rotate(-0.5deg);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.area-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.area-card--bad {
  border-color: rgba(248, 113, 113, 0.45);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.06), transparent);
}

.area-card--good {
  border-color: rgba(34, 211, 238, 0.45);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.06), transparent);
}

.area-card h3 {
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.area-card--bad h3 { color: #f87171; }
.area-card--good h3 { color: var(--accent-2); }

.area-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.area-list li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.area-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.footer {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 2px solid var(--border);
  margin-top: 3rem;
}

/* Punk quote block (shared with quanto-costa) */
.punk-quote-block {
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.punk-quote {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  max-width: 620px;
  margin: 0 auto 0.75rem;
  color: var(--text);
  border-left: 4px solid var(--accent-3);
  padding-left: 1.25rem;
  text-align: left;
}

.punk-quote em {
  font-style: normal;
  color: var(--accent-3);
}

.punk-quote__attr {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Urbanist', ui-sans-serif, system-ui, sans-serif;
  text-align: left;
  max-width: 620px;
  margin: 0 auto;
  padding-left: 1.25rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin: 1rem 0;
}

.footer__nav a { color: var(--text-muted); }
.footer__nav a:hover { color: var(--accent-2); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.25rem 0 0.5rem;
}

.social-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(18, 24, 42, 0.55);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-links__item:hover {
  color: var(--accent-2);
  border-color: var(--border-strong);
  background: rgba(28, 36, 58, 0.85);
  transform: translateY(-1px);
}

.social-links__item svg {
  width: 1.15rem;
  height: 1.15rem;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.15s; }
.fade-in-delay-2 { animation-delay: 0.3s; }
.fade-in-delay-3 { animation-delay: 0.45s; }

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

@media (max-width: 900px) {
  .two-col, .highlight-box { grid-template-columns: 1fr; }
  .nav { padding: 0 1rem; }
  .nav-links a { padding: 0.4rem 0.6rem; font-size: 0.8rem; }
}

@media (max-width: 600px) {
  .nav-links .nav-hide-mobile { display: none; }
}

/* Blog prose */
.prose { max-width: 760px; margin: 0 auto 3rem; color: #cbd5e1; font-size: 1.05rem; }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem; color: var(--text); }
.prose p { margin-bottom: 1.25rem; }
.prose ul, .prose ol.prose-list { margin: 0 0 1.25rem 1.25rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose-figure { margin: 2rem 0; }
.prose-figure img { border-radius: 12px; width: 100%; }
.prose-figure figcaption { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; text-align: center; }

.article__header { max-width: 800px; margin: 0 auto 2rem; text-align: center; }
.article__title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; margin: 1rem 0; color: var(--text); }
.article__meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.article__lead { font-size: 1.15rem; color: var(--text-muted); }
.article__hero { max-width: 900px; margin: 0 auto 2rem; }
.article__hero img { width: 100%; border-radius: var(--radius); }

.highlight-card { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; padding: 0; overflow: hidden; }
.highlight-card .blog-card__body { padding: 2rem; }
.blog-card__image { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.blog-card__image--small { border-radius: 12px 12px 0 0; margin: -2rem -2rem 0; width: calc(100% + 4rem); max-width: none; }
.blog-card__link { color: var(--accent-2); font-weight: 600; font-size: 0.95rem; }

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

/* Demo form */
.demo-layout { align-items: start; }
.demo-form-card { position: sticky; top: calc(var(--nav-h) + 1rem); }
.demo-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.form-input, .demo-form select, .demo-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.6);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-input:focus, .demo-form select:focus, .demo-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-field--checkbox { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 0.5rem; }
.form-field--checkbox label { font-weight: 400; font-size: 0.85rem; flex: 1; color: var(--text-muted); }
.form-checkbox { margin-top: 0.2rem; accent-color: var(--accent); }
.form-hint { width: 100%; font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.form-errors { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.4); border-radius: 10px; padding: 0.75rem 1rem; color: #fca5a5; font-size: 0.9rem; }
.form-field .invalid-feedback, .form-field ul { list-style: none; margin: 0; padding: 0; color: #f87171; font-size: 0.8rem; }
.form-actions { margin-top: 0.5rem; }
.btn--block { width: 100%; justify-content: center; }
.demo-cta { margin: 3rem 0; }

/* Pricing CTA banner (site-wide) */
.pricing-cta-banner {
  margin: 3rem 0;
  text-align: center;
  border: 2px dashed rgba(244, 114, 182, 0.45);
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.08), rgba(99, 102, 241, 0.08));
}

.pricing-cta-banner__badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 4px;
  background: rgba(244, 114, 182, 0.15);
  border: 2px solid var(--accent-3);
  font-family: 'Urbanist', ui-sans-serif, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-3);
  margin-bottom: 1rem;
  transform: rotate(-1deg);
}

.pricing-cta-banner__text {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .demo-form-card { position: static; }
}
