@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #faf9f7;
  --color-text: #2c2c2c;
  --color-accent: #6b5ce7;
  --color-accent-light: #e8e5fc;
  --color-warm: #f4ede4;
  --color-dark: #1a1a2e;
  --color-muted: #6e6e6e;
  --color-border: #e0ddd8;
  --color-white: #ffffff;
  --color-cta: #5a4fd4;
  --color-cta-hover: #4a3fc4;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 780px;
  --section-spacing: 5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-cta-hover);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 60%, rgba(107, 92, 231, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(107, 92, 231, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(107, 92, 231, 0.15);
  color: var(--color-accent);
  padding: 0.5rem 1.4rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(107, 92, 231, 0.2);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.hero-title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-visual {
  width: 220px;
  height: 220px;
  margin: 0 auto 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(107, 92, 231, 0.3);
  box-shadow: 0 0 60px rgba(107, 92, 231, 0.2), 0 0 120px rgba(107, 92, 231, 0.08);
  animation: float 5s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-micro {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.btn-primary {
  display: inline-block;
  background: var(--color-cta);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(90, 79, 212, 0.3);
}

.btn-primary:hover {
  background: var(--color-cta-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(90, 79, 212, 0.4);
}

.editorial-section {
  padding: var(--section-spacing) 0;
}

.editorial-section.alt-bg {
  background: var(--color-warm);
}

.editorial-section.dark-bg {
  background: var(--color-dark);
  color: var(--color-white);
}

.editorial-section.dark-bg .section-text {
  color: rgba(255, 255, 255, 0.8);
}

.editorial-section.dark-bg .highlight-text {
  color: var(--color-white);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.dark-bg .section-heading {
  color: var(--color-white);
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.highlight-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.7;
}

.section-image {
  margin: 3rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-image.full-bleed {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  border-radius: 0;
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--color-dark);
  border-left: 3px solid var(--color-accent);
  padding-left: 2rem;
  margin: 3rem 0;
  line-height: 1.5;
}

.dark-bg .pull-quote {
  color: var(--color-white);
  border-left-color: var(--color-accent);
}

.cta-block {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, rgba(107, 92, 231, 0.08) 100%);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
  margin: 3rem 0;
  border: 1px solid rgba(107, 92, 231, 0.1);
}

.cta-block h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--color-dark);
}

.cta-block p {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.dark-bg .cta-block {
  background: linear-gradient(135deg, rgba(107, 92, 231, 0.15) 0%, rgba(107, 92, 231, 0.05) 100%);
  border-color: rgba(107, 92, 231, 0.2);
}

.dark-bg .cta-block h3 {
  color: var(--color-white);
}

.dark-bg .cta-block p {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: #f5a623;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.features-list {
  list-style: none;
  margin: 2rem 0;
}

.features-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li i {
  color: var(--color-accent);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.dark-bg .features-list li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.3rem;
}

.dark-bg .stat-item .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 3rem auto;
  border-radius: 2px;
}

.inline-note {
  background: var(--color-warm);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--color-text);
  border-left: 3px solid var(--color-accent);
}

.dark-bg .inline-note {
  background: rgba(255, 255, 255, 0.05);
}

footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-company {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.footer-company strong {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 3.5rem;
  }

  .hero-section {
    min-height: 100vh;
    padding: 3rem 1.5rem;
  }

  .hero-visual {
    width: 160px;
    height: 160px;
  }

  .stat-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-block {
    padding: 2rem 1.5rem;
  }

  .pull-quote {
    padding-left: 1.5rem;
    font-size: 1.2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero-section {
    min-height: 60vh;
  }

  .section-image {
    margin: 2rem -1rem;
    border-radius: 0.5rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
