/* ===========================================================
   LaraGo · Design System v2
   =========================================================== */

:root {
  --color-primary: #0F0F23;
  --color-primary-light: #1C1C40;
  --color-accent: #00E08A;
  --color-accent-dark: #00B86F;
  --color-accent-2: #00C2D1;
  --color-secondary: #FFB400;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F6FB;
  --color-text: #14142B;
  --color-text-muted: #5B5B72;
  --color-text-on-dark: #E7E7F3;
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1160px;
  --shadow: 0 10px 30px rgba(15, 15, 35, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 15, 35, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

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

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

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

body > section:first-of-type .container {
  margin-top: 50px;
}

body > section:first-of-type .container ~ .container {
  margin-top: 0;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-go {
  color: var(--color-primary);
}

/* ---------- Scroll progress bar ---------- */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-accent);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* ---------- Reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1017px) {
  .reveal {
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .grid .reveal:nth-child(n),
  .steps .reveal:nth-child(n) {
    transition-delay: 0s;
  }
}

.grid .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn svg { width: 16px; height: 16px; transition: transform 0.2s ease; }

.btn-primary {
  background: var(--gradient-accent);
  color: #06210F;
  box-shadow: 0 10px 24px rgba(0, 224, 138, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 224, 138, 0.38);
}

.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  background: transparent;
  border-color: rgba(231, 231, 243, 0.35);
  color: var(--color-text-on-dark);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(231, 231, 243, 0.6);
}

.btn-dark {
  background: var(--color-primary);
  color: #fff;
}

.btn-dark:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ---------- Tab content toggle (audience switch) ---------- */

[data-tab-content]:not(.active) {
  display: none;
}

.audience-switch {
  display: flex;
  width: fit-content;
  margin: 0 auto 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  position: relative;
  z-index: 2;
}

.audience-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text-on-dark);
  opacity: 0.72;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.audience-btn.active {
  background: var(--gradient-accent);
  color: #06210F;
  opacity: 1;
}

/* ---------- Language switch ---------- */

.lang-switch {
  display: flex;
  background: var(--color-bg-alt);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}

a.lang-btn {
  text-decoration: none;
  display: inline-block;
}

.lang-btn {
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
}

.lang-btn.active {
  background: var(--color-primary);
  color: #fff;
}

/* ---------- Header / floating nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px 0;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(15, 15, 35, 0.06);
  border-radius: 999px;
  padding: 10px 10px 10px 22px;
  box-shadow: var(--shadow);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-full {
  height: 30px;
  width: auto;
  display: block;
}

nav.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

nav.main-nav a {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--color-text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--color-accent-dark);
  border-bottom-color: var(--color-accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-cta {
  padding: 11px 16px;
  font-size: 0.84rem;
  white-space: nowrap;
}

.nav-cta[hidden] {
  display: none !important;
}

.nav-collapse {
  display: contents;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  padding: 96px 0 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: float 10s ease-in-out infinite;
  z-index: -1;
}

.hero-blob.b1 { width: 440px; height: 440px; background: var(--color-accent); top: -180px; right: -140px; }
.hero-blob.b2 { width: 300px; height: 300px; background: var(--color-accent-2); bottom: -40px; left: 6%; animation-delay: -3.5s; }
.hero-blob.b3 { width: 220px; height: 220px; background: var(--color-secondary); top: 38%; left: 48%; opacity: 0.22; animation-delay: -6.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-26px) scale(1.06); }
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--color-accent);
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero h1 > [data-tab-content] {
  display: block;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--color-text-on-dark);
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.hero-stats div span {
  font-size: 0.86rem;
  color: var(--color-text-on-dark);
  opacity: 0.72;
}

.hero-visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 34px;
  backdrop-filter: blur(6px);
}

.hero-visual ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.96rem;
}

.hero-visual li .ico-mini {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--gradient-accent);
  color: #06210F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual li .ico-mini svg { width: 16px; height: 16px; stroke: #06210F; }

.section-divider {
  display: block;
  width: 100%;
  height: 64px;
  position: relative;
  z-index: 2;
}

/* ---------- Marquee ---------- */

.marquee-section {
  background: var(--color-bg-alt);
  padding: 26px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 15, 35, 0.05);
}

.marquee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  opacity: 0.7;
}

.marquee-inner {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
}

.platform-logo {
  display: block;
  height: 26px;
  width: auto;
  opacity: 0.72;
  flex-shrink: 0;
}

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

/* ---------- Sections ---------- */

section {
  padding: 88px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 224, 138, 0.12);
  color: var(--color-accent-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.76rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

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

/* ---------- Cards / Grid ---------- */

.grid {
  display: grid;
  gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 15, 35, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 224, 138, 0.18);
}

.ico-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 224, 138, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card .ico-circle {
  margin-bottom: 18px;
}

.ico-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent-dark);
}

.card h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.96rem;
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  padding: 12px;
}

.step .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* ---------- Comparison ---------- */

.compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.compare .card {
  border-top: 4px solid var(--color-accent);
}

.compare.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.compare .card.owner {
  border-top-color: var(--color-accent-2);
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.compare ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-accent-dark);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 18px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.faq-answer a {
  color: var(--color-accent-dark);
  font-weight: 600;
}

.faq-answer strong {
  color: var(--color-text);
}

.compare li {
  display: flex;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--color-text);
  justify-content: center;
  text-align: center;
}

.compare li::before {
  content: "✓";
  color: var(--color-accent-dark);
  font-weight: 700;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--gradient-accent);
  border-radius: 28px;
  padding: 60px;
  text-align: center;
  color: #06210F;
}

.cta-banner h2 {
  color: #06210F;
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.cta-banner p {
  margin-bottom: 28px;
  opacity: 0.82;
  font-size: 1.05rem;
}

/* ---------- Forms ---------- */

.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  border: 1px solid rgba(15, 15, 35, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--color-text);
}

input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E1E2EE;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  color: var(--color-text);
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #E1E2EE;
  border-radius: 10px;
  padding: 12px 18px;
  flex: 1;
  cursor: pointer;
}

.radio-option input {
  width: auto;
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}

.form-success {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  font-size: 0.95rem;
  font-weight: 500;
}

.container > .form-success {
  margin-bottom: 32px;
}

/* ---------- Footer ---------- */

footer.site-footer {
  position: relative;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  padding: 64px 0 28px;
  overflow: hidden;
}

footer.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-grid p, .footer-grid a {
  color: var(--color-text-on-dark);
  opacity: 0.78;
  font-size: 0.92rem;
}

.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  margin-top: 6px;
  text-align: center;
}

.footer-legal p {
  font-size: 0.78rem;
  color: var(--color-text-on-dark);
  opacity: 0.55;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 8px;
}

.footer-legal .placeholder-flag {
  opacity: 1;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-legal-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-on-dark);
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal-links a:hover {
  opacity: 1;
  color: var(--color-accent);
}

/* ---------- Legal content page (privacidade.html) ---------- */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.legal-content ul {
  color: var(--color-text-muted);
  margin: 0 0 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-content .updated-note {
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* ---------- Page hero (sub-pages) ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-primary);
  color: #fff;
  padding: 88px 0 0;
  text-align: center;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 76px;
}

.page-hero h1 {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--color-text-on-dark);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Contact info list ---------- */

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-list .item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-list .ico-circle {
  margin-bottom: 0;
  flex-shrink: 0;
}

.placeholder-flag {
  display: inline-block;
  background: rgba(255, 180, 0, 0.15);
  color: #946200;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- Responsive ---------- */

@media (max-width: 1017px) {
  .nav-wrap { padding: 12px 14px; border-radius: 20px; }
  .nav-toggle { display: flex; }
  .nav-collapse {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 15, 35, 0.08);
  }
  .nav-collapse.open { display: flex; }
  nav.main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  nav.main-nav a { display: block; padding: 10px 6px; }
  .nav-right { width: 100%; justify-content: center; flex-wrap: wrap; }
  .nav-ctas { flex-direction: column; width: 100%; }
  .nav-ctas .nav-cta { width: 100%; text-align: center; white-space: normal; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .compare.cols-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding-top: 88px; }
  .hero h1 { font-size: 1.9rem; }
  .cta-banner { padding: 38px 24px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .audience-switch { flex-wrap: wrap; width: auto; max-width: 100%; justify-content: center; }
  .audience-btn { font-size: 0.78rem; padding: 9px 14px; }
}
