/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --charcoal: #1a1a2e;
  --charcoal-light: #24243e;
  --amber: #d4a574;
  --amber-light: #e2be96;
  --warm-white: #faf8f5;
  --sage: #8a9a7b;
  --sage-light: #a3b396;
  --coral: #c4756d;
  --coral-light: #d4908a;
  --red: #e05555;
  --red-bg: rgba(224, 85, 85, 0.08);
  --green: #5aad6a;
  --green-bg: rgba(90, 173, 106, 0.08);
  --text-dark: #2a2a3a;
  --text-medium: #5a5a6e;
  --text-light: #8a8a9e;
  --border-light: rgba(26, 26, 46, 0.08);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--amber);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--amber-light);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #16162b 40%, #1f1f3a 100%);
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 165, 116, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(138, 154, 123, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--amber);
  margin-bottom: 32px;
  position: relative;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(250, 248, 245, 0.7);
  max-width: 560px;
  margin-bottom: 40px;
  position: relative;
}

.hero-cta {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--amber);
  border-radius: 6px;
  color: var(--amber);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.3s, color 0.3s;
  position: relative;
}

.hero-cta:hover {
  background: var(--amber);
  color: var(--charcoal);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--charcoal);
  color: var(--warm-white);
}

.section--light {
  background: var(--warm-white);
  color: var(--text-dark);
}

.section--accent {
  background: linear-gradient(135deg, #1e1e36 0%, var(--charcoal) 100%);
  color: var(--warm-white);
}

.section--cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, #252545 100%);
  color: var(--warm-white);
  text-align: center;
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(250, 248, 245, 0.6);
  margin-bottom: 48px;
}

.section--dark .section-title,
.section--accent .section-title,
.section--cta .section-title {
  color: var(--warm-white);
}

.section--light .section-title {
  color: var(--text-dark);
}

.section-title + .audit-grid,
.section-title + .solution-grid,
.section-title + .comparison-grid {
  margin-top: 48px;
}

/* ===== AUDIT CARDS ===== */
.audit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

.audit-card {
  background: rgba(224, 85, 85, 0.06);
  border: 1px solid rgba(224, 85, 85, 0.15);
  border-left: 3px solid var(--coral);
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.audit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.audit-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.audit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--coral-light);
}

.audit-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(250, 248, 245, 0.75);
}

/* ===== SOLUTION CARDS ===== */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

.solution-card {
  background: rgba(90, 173, 106, 0.05);
  border: 1px solid rgba(138, 154, 123, 0.2);
  border-left: 3px solid var(--sage);
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.solution-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(138, 154, 123, 0.15);
}

.solution-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.solution-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--sage);
}

.solution-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-medium);
}

/* ===== COMPARISON ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.comparison-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--charcoal-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-header {
  padding: 24px;
  text-align: center;
}

.comparison-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.comparison-label {
  font-size: 0.85rem;
  opacity: 0.7;
}

.comparison-header--wix {
  background: rgba(224, 85, 85, 0.1);
  border-bottom: 2px solid var(--coral);
}

.comparison-header--wix h3 {
  color: var(--coral-light);
}

.comparison-header--aicity {
  background: rgba(138, 154, 123, 0.1);
  border-bottom: 2px solid var(--sage);
}

.comparison-header--aicity h3 {
  color: var(--sage-light);
}

.comparison-list {
  list-style: none;
  padding: 24px;
}

.comparison-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  color: rgba(250, 248, 245, 0.8);
  gap: 12px;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li span {
  text-align: right;
  font-weight: 500;
  white-space: nowrap;
}

.comparison-list .no {
  color: var(--coral);
}

.comparison-list .yes {
  color: var(--sage-light);
}

.comparison-total {
  padding: 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.comparison-price--small {
  font-size: 1.4rem;
  opacity: 0.8;
  margin-bottom: 12px;
}

.comparison-verdict {
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 8px;
}

.comparison-verdict--bad {
  color: var(--coral-light);
}

.comparison-verdict--good {
  color: var(--sage-light);
}

/* ===== AI TOOLS ===== */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

.ai-card {
  background: rgba(212, 165, 116, 0.06);
  border: 1px solid rgba(212, 165, 116, 0.12);
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ai-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.1);
}

.ai-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.ai-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--amber);
}

.ai-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(250, 248, 245, 0.75);
}

/* ===== CTA ===== */
.cta-text {
  font-size: 1.15rem;
  color: rgba(250, 248, 245, 0.75);
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  min-width: 260px;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn--primary:hover {
  background: var(--amber-light);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}

.btn--secondary:hover {
  background: rgba(212, 165, 116, 0.1);
  color: var(--amber-light);
}

.cta-fine {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.45);
}

/* ===== FOOTER ===== */
.footer {
  background: #111122;
  color: rgba(250, 248, 245, 0.5);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.85rem;
}

.footer p {
  margin-bottom: 8px;
}

.footer a {
  color: rgba(250, 248, 245, 0.6);
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (min-width: 640px) {
  .audit-grid,
  .solution-grid,
  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===== RESPONSIVE — DESKTOP ===== */
@media (min-width: 1024px) {
  .section {
    padding: 100px 0;
  }

  .audit-grid,
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ai-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .audit-card,
  .solution-card,
  .ai-card {
    padding: 28px;
  }
}
