/* Start custom CSS for html, class: .elementor-element-d3939a1 *//* ==========================================================================
   zoundio — Home Page Styles
   Design concept: "Site Blueprint" — websites & SEO visibility drawn like
   architectural plans: grid paper, measurement lines, crosshair marks,
   a signal-orange accent standing in for "visibility going live".
   ========================================================================== */

:root {
  /* Brand color system */
  --brand-primary: #1F3A5F;      /* deep blueprint navy — headings, primary UI */
  --brand-primary-light: #2E4F7C;
  --brand-accent: #FF6B35;       /* signal orange — CTAs, live/visibility cues */
  --brand-accent-dark: #E5551F;
  --background: #F6F7F4;         /* paper */
  --surface: #FFFFFF;
  --surface-alt: #EEF1EC;
  --text-primary: #10151A;
  --text-secondary: #52605C;
  --border: #DCE1DA;
  --border-strong: #C3CBC2;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(16, 21, 26, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 21, 26, 0.08);
  --shadow-lg: 0 20px 48px rgba(16, 21, 26, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
}

main { display: block; overflow-x: clip; }

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

/* Eyebrow / mono labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-accent-dark);
  margin: 0 0 var(--space-2);
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18);
}

/* Headings */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 600;
}

p { margin: 0; }

.section-head {
  max-width: 640px;
  margin: 0 0 var(--space-4);
}

.section-head p {
  margin-top: var(--space-2);
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

/* Crosshair corner marks — a recurring "blueprint" motif */
.blueprint-frame {
  position: relative;
}

.blueprint-frame::before,
.blueprint-frame::after {
  content: '+';
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--border-strong);
  line-height: 1;
}

.blueprint-frame::before { top: -6px; left: -6px; }
.blueprint-frame::after { bottom: -6px; right: -6px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9em 1.7em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  min-height: 48px;
}

.btn-primary {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--brand-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  background: var(--surface);
}

.btn:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
}

.btn-large { padding: 1.05em 2.1em; font-size: 1.05rem; }

/* ============================= HERO ============================= */

.hero {
  padding-top: clamp(3rem, 8vw, 5.5rem);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-5);
  align-items: center;
}

.hero-copy h1 { margin-bottom: var(--space-3); }

.hero-copy .accent { color: var(--brand-accent-dark); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 46ch;
  margin-bottom: var(--space-4);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-row span { display: flex; align-items: center; gap: 0.5em; }
.trust-row span::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brand-primary);
  display: inline-block;
}

/* Hero visual: a "site under construction becoming visible" mockup */
.hero-visual {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
  animation: rise 0.9s var(--ease) both;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: var(--space-2);
  border-bottom: 1px dashed var(--border-strong);
  margin-bottom: var(--space-2);
}

.browser-chrome .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border-strong);
}

.browser-chrome .url {
  margin-left: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  background: var(--surface-alt);
  border-radius: 4px;
  padding: 0.3em 0.8em;
  flex: 1;
}

.rank-graph {
  height: 160px;
  position: relative;
}

.rank-graph svg { width: 100%; height: 100%; overflow: visible; }

.rank-graph .line-path {
  stroke: var(--brand-accent);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw 1.6s 0.4s var(--ease) forwards;
}

.rank-graph .area-fill {
  fill: url(#riseGradient);
  opacity: 0;
  animation: fadeIn 1s 1.4s var(--ease) forwards;
}

.rank-graph .grid-line { stroke: var(--border); stroke-width: 1; }

.rank-graph .dot-marker {
  fill: var(--brand-primary);
  opacity: 0;
  animation: fadeIn 0.4s 1.9s var(--ease) forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px dashed var(--border-strong);
}

.hero-stats .stat-num {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--brand-primary);
  font-weight: 600;
}

.hero-stats .stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ============================= PROBLEM/SOLUTION ============================= */

.problem-solution {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.problem-list, .solution-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.problem-list .eyebrow, .solution-block .eyebrow { }

.problem-item {
  display: flex;
  gap: 0.75em;
  align-items: baseline;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.problem-item:last-child { border-bottom: none; }

.problem-item::before {
  content: '×';
  font-family: var(--font-mono);
  color: var(--brand-accent-dark);
  font-weight: 700;
}

.solution-block {
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-4);
  justify-content: center;
}

.solution-block .eyebrow { color: #FFD6C4; }
.solution-block .eyebrow::before { background: var(--brand-accent); }
.solution-block h3 { color: #fff; margin-bottom: var(--space-2); }
.solution-block p { color: rgba(255,255,255,0.82); }

/* ============================= WHAT YOU GET ============================= */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.offer-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--brand-accent-dark);
}

.offer-card h3 { margin-bottom: 0.15em; }
.offer-card p { color: var(--text-secondary); font-size: 0.95rem; }

.offer-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-primary);
}

/* ============================= HOW IT WORKS ============================= */

.process {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  counter-reset: step;
}

.process-rail::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.process-step .step-num {
  counter-increment: step;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: var(--space-1);
}

.process-step:nth-child(4) .step-num {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #fff;
}

.process-step p { color: var(--text-secondary); font-size: 0.95rem; }

/* ============================= BENEFITS ============================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3) var(--space-4);
}

.benefit-item {
  display: flex;
  gap: 0.85em;
  align-items: flex-start;
}

.benefit-check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(31, 58, 95, 0.08);
  color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

.benefit-item h3 { font-size: 1rem; margin-bottom: 0.2em; }
.benefit-item p { color: var(--text-secondary); font-size: 0.92rem; }

/* ============================= WHY ZOUNDIO ============================= */

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-5);
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-row {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
}

.why-row:last-child { border-bottom: none; }

.why-row .why-mark {
  font-family: var(--font-mono);
  color: var(--brand-accent-dark);
  font-size: 0.85rem;
  padding-top: 0.2em;
}

.why-row h3 { margin-bottom: 0.3em; }
.why-row p { color: var(--text-secondary); font-size: 0.95rem; }

.why-panel {
  background: var(--brand-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  color: #fff;
  position: sticky;
  top: var(--space-3);
}

.why-panel .eyebrow { color: #FFD6C4; }
.why-panel .eyebrow::before { background: var(--brand-accent); }
.why-panel h3 { color: #fff; }
.why-panel p { color: rgba(255,255,255,0.8); margin-top: var(--space-2); }

.compare-table {
  margin-top: var(--space-3);
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table th, .compare-table td {
  text-align: left;
  padding: 0.6em 0.4em;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}

.compare-table th { font-family: var(--font-mono); font-weight: 500; color: #fff; }

/* ============================= SOCIAL PROOF ============================= */

.proof-panel {
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.proof-panel h3 { margin-bottom: var(--space-2); }
.proof-panel p { color: var(--text-secondary); max-width: 52ch; margin-inline: auto; }

/* ============================= FAQ ============================= */

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  color: var(--brand-accent-dark);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-answer {
  padding: 0 var(--space-3) var(--space-3);
  color: var(--text-secondary);
  font-size: 0.96rem;
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: -3px;
}

/* ============================= FINAL CTA ============================= */

.final-cta {
  background: var(--brand-primary);
  border-radius: var(--radius-lg);
  margin-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,107,53,0.25), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,107,53,0.15), transparent 45%);
  pointer-events: none;
}

.final-cta > * { position: relative; }

.final-cta h2 { color: #fff; max-width: 20ch; margin-inline: auto; }

.final-cta p.lead {
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin: var(--space-2) auto var(--space-4);
  font-size: 1.05rem;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  font-family: var(--font-mono);
  margin-bottom: var(--space-3);
}

.price-tag .amount { font-size: 2.2rem; font-weight: 700; color: #fff; }
.price-tag .cycle { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.final-cta .reassure {
  margin-top: var(--space-3);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-mono);
}

.final-cta .btn-primary {
  font-size: 1.1rem;
}

/* ============================= UTILITIES ============================= */

.card-icon-svg { width: 22px; height: 22px; }

/* ============================= RESPONSIVE ============================= */

@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-panel { position: static; }
  .process-rail { grid-template-columns: repeat(2, 1fr); row-gap: var(--space-4); }
  .process-rail::before { display: none; }
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .ps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .offer-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-rail { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .trust-row { flex-direction: column; gap: var(--space-1); }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }
  .final-cta { margin-inline: 1rem; }
}

/* ============================= REDUCED MOTION ============================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .rank-graph .line-path { stroke-dashoffset: 0; }
  .rank-graph .area-fill, .rank-graph .dot-marker { opacity: 1; }
}/* End custom CSS */