:root{--build-id:"fa4c2e43-d0c5-4220-8fc1-59dcd599ae47";}
:root {
  --primary: #7e22ce;
  --bg: #f3e8ff;
  --text: #6b21a8;
  --accent: #9333ea;
  --heading: var(--text);
  --link: var(--text);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 300;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

header {
  background: var(--primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.8;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 1.5rem;
  height: 2px;
  background: #fff;
  display: block;
}

.hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
}

.hero-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text);
  font-weight: 400;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 1.125rem 2.25rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0.5rem 0 0.5rem 0;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.cta-button:focus {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

section {
  padding: 6rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
}

.section-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
}

.container {
  padding: 0 2rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  padding: 0 2rem;
}

.feature-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  transform: rotate(-1deg);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 8px 24px rgba(126, 34, 206, 0.15);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
}

.feature-card p {
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
}

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

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--heading);
}

.bottom-cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 4rem;
}

.bottom-cta h2 {
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
}

.bottom-cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 400;
}

.bottom-cta .cta-button {
  background: #fff;
  color: var(--primary);
}

.bottom-cta .cta-button:hover {
  background: var(--bg);
}

footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  font-weight: 400;
}

.footer-section a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.8;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  padding: 0 2rem;
}

.content-box {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.content-box h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
}

.content-box p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 400;
}

.content-box ul {
  margin-left: 1.5rem;
  color: var(--text);
}

.content-box ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.contact-info {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 400;
}

.contact-info strong {
  font-weight: 600;
  color: var(--heading);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 3rem 0 1.5rem;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
}

.legal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 400;
}

.legal-content ul {
  margin: 1rem 0 1rem 2rem;
  color: var(--text);
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  font-weight: 400;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem;
    gap: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  section {
    padding: 4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}