/* Net Atelier vs Canva Comparison Styles */

:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE8;
  --bg-parchment: #E8E4DD;
  --surface: #FFFFFF;
  --primary: #1B3D2F;
  --primary-muted: #4A6358;
  --accent: #C67B5C;
  --accent-hover: #B36A4D;
  --text-headline: #2C2C2C;
  --text-body: #2C2C2C;
  --text-secondary: #6B6560;
  --text-muted: #9A9590;
  --border: #E8E4DD;
  --shadow-card: 0 2px 8px rgba(44,44,44,0.04), 0 8px 24px rgba(44,44,44,0.06);
  --shadow-hover: 0 4px 12px rgba(44,44,44,0.06), 0 16px 32px rgba(44,44,44,0.08);
  
  --max-width: 1200px;
  --section-padding-v: 160px;
  --card-padding: 32px;
  --card-radius: 2px;
}

/* Base Resets & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-body);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, .hero-title, .section-title {
  font-family: 'Playfair Display', serif;
  color: var(--text-headline);
  font-weight: 400;
}

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

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

.text-center { text-align: center; }
.mb-40 { margin-bottom: 40px; }
.mb-64 { margin-bottom: 64px; }

/* Typography Scale */
.overline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-title {
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.005em;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 16px 32px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
}

.btn-primary:hover {
  background: #2a4f3f;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--bg);
}

.btn-accent {
  background: var(--accent);
  color: #ffffff;
}

.btn-accent:hover {
  background: var(--accent-hover);
}

.btn-tertiary {
  background: none;
  border: none;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  padding: 0;
}

.btn-tertiary:hover {
  color: var(--primary-muted);
}

.btn-inverted-primary {
  background-color: var(--bg);
  color: var(--primary);
  padding: 18px 40px;
  border: none;
  border-radius: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-inverted-primary:hover {
  background-color: var(--bg-alt);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero-section {
  padding: 208px 0 128px; /* Account for 80px nav */
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero-container {
  max-width: 800px;
  text-align: center;
}

.hero-title {
  font-weight: 300;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 30px;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.hero-trust {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Comparison Table Section */
.comparison-section {
  padding: var(--section-padding-v) 0;
}

.table-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th, .compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.compare-table th {
  font-weight: 500;
  background-color: var(--bg-parchment);
  color: var(--text-headline);
}

.compare-table th.highlight-col {
  background-color: var(--primary);
  color: var(--bg);
}

.compare-table td.highlight-cell {
  background-color: rgba(27,61,47,0.04);
}

.compare-table tbody tr:nth-child(even) {
  background-color: var(--bg);
}

.compare-table tbody tr:nth-child(even) td.highlight-cell {
  background-color: rgba(27,61,47,0.06);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.price-row td {
  font-weight: 500;
  padding-top: 24px;
  padding-bottom: 24px;
}

.check { color: var(--primary); font-weight: bold; margin-right: 8px; }
.cross { color: var(--text-muted); margin-right: 8px; }
.highlight-cell .check { color: var(--primary); }

.acknowledgment-box {
  background-color: var(--bg-parchment);
  border-radius: var(--card-radius);
  padding: 20px 24px;
  max-width: 720px;
  margin: 32px auto 0;
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
}

/* The Gap Section */
.gap-section {
  padding: var(--section-padding-v) 0;
}

.visual-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  gap: 16px;
}

.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.flow-step.success .step-icon { border: 1px solid var(--primary); }
.flow-step.warning .step-icon { border: 1px solid var(--accent); }

.step-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.4;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.gap-callout {
  background-color: var(--bg-alt);
  border-radius: var(--card-radius);
  padding: 24px 32px;
  max-width: 720px;
  margin: 48px auto 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-headline);
  text-align: center;
}

.gap-subheadline {
  text-align: center;
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 17px;
  color: var(--text-secondary);
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 64px auto 0;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--card-radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 12px;
}

.stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Import Section */
.import-section {
  padding: var(--section-padding-v) 0;
}

.import-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.import-card {
  background: var(--surface);
  border-radius: var(--card-radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.step-badge {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  margin: 0 auto 24px;
}

.import-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.import-desc {
  font-size: 15px;
  color: var(--text-secondary);
}

.import-body {
  max-width: 680px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 17px;
  color: var(--text-secondary);
}

/* Social Proof Section */
.proof-section {
  padding: var(--section-padding-v) 0;
}

.testimonial-block {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 120px;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  z-index: 0;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 36px;
  color: var(--text-headline);
  max-width: 780px;
  margin: 0 auto 36px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: var(--bg-parchment);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
  margin: 0 auto;
}

.author-name {
  font-weight: 500;
  font-size: 15px;
  margin-top: 14px;
}

.author-title {
  font-size: 13px;
  color: var(--text-secondary);
}

.author-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-parchment);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--card-radius);
  margin-top: 8px;
}

/* Migration Section */
.migration-section {
  padding: var(--section-padding-v) 0;
}

.migration-table-container {
  max-width: 800px;
}

.migration-table th {
  background-color: var(--bg-parchment);
}

.migration-callout {
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  padding: 28px 36px;
  max-width: 720px;
  margin: 32px auto 0;
}

.callout-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.callout-body {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Pricing Section */
.pricing-section {
  padding: var(--section-padding-v) 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  border-radius: var(--card-radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.card-canva {
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--bg-parchment);
}

.card-time {
  background: var(--bg-alt);
  border-top: 3px solid #C9B899;
}

.card-netatelier {
  background: var(--primary);
  color: var(--bg);
}

.price-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.card-canva .price-label, .card-time .price-label { color: var(--text-muted); }
.card-netatelier .price-label { color: rgba(250,248,245,0.6); }

.price-value {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 8px;
}

.card-canva .price-value { color: var(--text-headline); }
.card-time .price-value { color: var(--primary); }
.card-netatelier .price-value { color: var(--bg); }

.price-period {
  font-size: 15px;
  margin-bottom: 24px;
}

.card-canva .price-period, .card-time .price-period { color: var(--text-secondary); }
.card-netatelier .price-period { color: rgba(250,248,245,0.8); }

.price-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: auto;
}

.price-annual {
  font-size: 13px;
  color: rgba(250,248,245,0.8);
  margin-bottom: 16px;
}

.price-subtext {
  font-size: 14px;
  color: rgba(250,248,245,0.7);
  margin-bottom: 32px;
}

.price-features {
  list-style: none;
  margin-top: auto;
}

.price-features li {
  font-size: 14px;
  color: var(--bg);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

/* FAQ Section */
.faq-section {
  padding: var(--section-padding-v) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-title {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 16px;
}

.faq-body {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border-left: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-left-color: var(--primary);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-headline);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Dark CTA Section */
.dark-cta-section {
  background-color: var(--primary);
  padding: 128px 0;
  position: relative;
}

.dark-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.dark-cta-title {
  font-size: 48px;
  color: var(--bg);
  margin-bottom: 20px;
}

.dark-cta-subtext {
  font-size: 18px;
  color: rgba(250,248,245,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
}

.dark-cta-fineprint {
  font-size: 13px;
  color: rgba(250,248,245,0.6);
  margin-top: 12px;
}

/* NAV */
.feature-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.feature-nav.scrolled {
  background: var(--bg);
  border-bottom-color: var(--border);
}

.nav-inner {
  width: min(calc(100% - 80px), 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.wordmark {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.nav-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-headline);
}

.nav-link.active {
  color: var(--text-headline);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  border-bottom: 1px solid var(--text-headline);
}

.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--primary);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-mobile-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-mobile-panel {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  display: grid;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.nav-mobile-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mobile-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* FOOTER */
.feature-footer {
  background: var(--primary);
  color: var(--bg);
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--bg);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

.footer-tagline {
  margin: 0;
  max-width: 240px;
  font-size: 14px;
  line-height: 22px;
  color: rgba(250, 248, 245, 0.6);
}

.footer-heading {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bg);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0 0 10px;
}

.footer-links a {
  color: rgba(250, 248, 245, 0.65);
  font-size: 14px;
  line-height: 2.2;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--bg);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 248, 245, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-copy,
.footer-bottom-links {
  font-size: 13px;
  line-height: 20px;
  color: rgba(250, 248, 245, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--bg);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .nav-inner {
    width: min(calc(100% - 48px), 1200px);
  }
  .nav-center {
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .pricing-cards, .import-steps {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    width: calc(100% - 40px);
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .nav-center,
  .nav-cta-wrap {
    display: none;
  }
  .nav-mobile-toggle {
    display: inline-flex;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  :root {
    --section-padding-v: 64px;
  }

  .hero-section {
    padding: 140px 0 80px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 48px;
  }

  .section-title {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-ctas {
    flex-direction: column;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }

  .visual-flow {
    flex-direction: column;
  }

  .flow-arrow svg {
    transform: rotate(90deg);
  }

  .stat-cards, .import-steps, .pricing-cards {
    grid-template-columns: 1fr;
  }

  .compare-table th, .compare-table td {
    padding: 16px;
    font-size: 14px;
  }
  
  .dark-cta-title {
    font-size: 36px;
  }
}
