/* ============================================
   PRESENCEWORKS — PREMIUM STYLES
   ============================================ */

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

:root {
  --cream: #faf9f7;
  --white: #ffffff;
  --ink: #0f0e0d;
  --ink-mid: #3d3b38;
  --ink-soft: #7a7772;
  --accent: #c47b3a;
  --accent-light: #f5ede2;
  --accent-warm-bg: #fdf6ee;
  --success: #2d6a4f;
  --border: rgba(15,14,13,0.08);
  --shadow-sm: 0 2px 8px rgba(15,14,13,0.06);
  --shadow-md: 0 8px 32px rgba(15,14,13,0.10);
  --shadow-lg: 0 24px 64px rgba(15,14,13,0.13);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  font-size: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
em { font-style: italic; color: var(--accent); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label.light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  max-width: 700px;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,123,58,0.35);
}
.btn-primary:hover {
  background: #b36e30;
  box-shadow: 0 8px 28px rgba(196,123,58,0.45);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-mid);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--cream);
  border-color: rgba(15,14,13,0.2);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(15,14,13,0.25);
}
.btn-dark:hover {
  background: #2a2825;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(15,14,13,0.35);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
  background: var(--white);
}
.hero-gradient {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196,123,58,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-micro {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--ink);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 28px;
  letter-spacing: 0.02em;
}
.trust-icon {
  color: var(--accent);
  font-size: 0.5rem;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

/* ---- SECTION BASE ---- */
.section { padding: 112px 0; }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); }
.bg-accent-warm { background: var(--accent-warm-bg); }

/* ---- PROBLEM ---- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.problem-bad {
  background: #fdf2f2;
  border: 1.5px solid rgba(200,50,50,0.12);
}
.problem-good {
  background: #f2fdf6;
  border: 1.5px solid rgba(45,106,79,0.15);
  box-shadow: var(--shadow-md);
}
.problem-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.6;
}
.problem-bad .problem-card-label { color: #c23b3b; }
.problem-good .problem-card-label { color: var(--success); }

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-list li {
  font-size: 0.975rem;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
  color: var(--ink-mid);
}
.problem-bad .problem-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #c23b3b;
  font-size: 0.8rem;
  top: 2px;
  font-weight: 700;
}
.problem-good .problem-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-size: 0.85rem;
  top: 1px;
  font-weight: 700;
}

/* ---- SOLUTION ---- */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.solution-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.solution-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.solution-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.solution-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---- BENEFITS ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: block;
}
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.925rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---- PROCESS ---- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
  max-width: 680px;
}
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 40px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
}
.process-step:hover { box-shadow: var(--shadow-md); }
.process-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(196,123,58,0.4), transparent);
  margin-left: 59px;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.925rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---- OUTCOMES ---- */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.outcome-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--white);
}
.outcome-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.outcome-browser {
  background: #f0efed;
  padding: 12px;
  border-bottom: 1px solid var(--border);
}
.browser-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}
.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15,14,13,0.2);
}
.outcome-preview {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.preview-bar {
  height: 4px;
  border-radius: 4px;
  background: var(--accent);
  width: 40px;
  margin-bottom: 4px;
}
.preview-headline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.preview-sub {
  font-size: 0.72rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.preview-cta {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
}
.outcome-label {
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---- WHY DIFFERENT ---- */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.comparison-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--white);
}
.comparison-bad {
  opacity: 0.75;
}
.comparison-bad h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-mid);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.comparison-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comparison-bad ul li {
  font-size: 0.875rem;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.comparison-bad ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: rgba(15,14,13,0.3);
}
.comparison-pw {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pw-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.comparison-pw ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding-left: 22px;
  position: relative;
}
.comparison-pw ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.975rem;
  color: var(--ink-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--ink);
}
.author-biz {
  font-size: 0.825rem;
  color: var(--ink-soft);
}

/* ---- OFFER ---- */
.offer .section-label,
.offer .section-title { text-align: center; }
.offer .section-title { max-width: 100%; margin-bottom: 48px; }
.offer-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.offer-left h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  padding-left: 24px;
  position: relative;
}
.offer-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.offer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.offer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.offer-desc {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.offer-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---- FAQ ---- */
.faq-container { max-width: 720px; }
.faq-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--cream); }
.faq-question[aria-expanded="true"] { background: var(--cream); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 28px 24px;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ---- FINAL CTA ---- */
.final-cta { text-align: center; }
.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.final-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
}
.final-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.final-micro {
  font-size: 0.825rem;
  color: var(--ink-soft);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--ink);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.footer-copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .comparison-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .section { padding: 80px 0; }
  .hero { padding: 120px 0 80px; }
  .hero-headline { font-size: 2.2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .offer-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
  .process-step { padding: 28px 24px; }
  .process-connector { margin-left: 43px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 8px; }
  .trust-divider { display: none; }
  .trust-item { padding: 6px 12px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}
