.mainContent,
.mainContent * {
    box-sizing: border-box;
}

.mainContent {
    overflow-x: hidden;
    color: #1a1a2e;
    background: #ffffff;
}

.mainContent img {
    max-width: 100%;
    display: block;
}

.mainContent h1,
.mainContent h2,
.mainContent h3,
.mainContent h4,
.mainContent p,
.mainContent a,
.mainContent span,
.mainContent li,
.mainContent td,
.mainContent th,
.mainContent button {
    overflow-wrap: anywhere;
}

.heroSection {
    padding: 110px 20px 90px;
    background:
        radial-gradient(circle at top left, rgba(108, 63, 197, 0.14), transparent 30%),
        linear-gradient(135deg, #faf6ff 0%, #f4ebff 100%);
    position: relative;
    overflow: hidden;
}

.heroSection::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.65), rgba(255,255,255,0.1));
    pointer-events: none;
}

.heroContentContainer {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.releaseBubble,
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(108, 63, 197, 0.16);
    color: #6c3fc5;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 24px;
}

.heroIntro {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6c3fc5;
    margin: 0 0 10px;
}

.heroContentContainer h1 {
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.06;
    margin: 0 0 18px;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.heroContentContainer p {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 1.06rem;
    line-height: 1.8;
    color: #4b5563;
}

.heroBtnWrapper {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.heroCtaBtn,
.heroSecondaryBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.heroCtaBtn {
    color: #ffffff;
    background: linear-gradient(135deg, #7c4fe0 0%, #6c3fc5 100%);
    box-shadow: 0 10px 30px rgba(108, 63, 197, 0.25);
}

.heroSecondaryBtn {
    color: #1a1a2e;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 26, 46, 0.08);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.heroCtaBtn:hover,
.heroSecondaryBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.heroStatPills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.heroStatPills span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #4b5563;
    border: 1px solid rgba(108, 63, 197, 0.12);
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.contentSection,
.processSection,
.featuresSection,
.useCasesSection,
.dashboardSection,
.comparisonSection,
.faqSection,
.pricingPreviewSection,
.finalCtaSection {
    padding: 84px 20px;
}

.contentGrid,
.dashboardGrid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 26px;
    align-items: start;
}

.contentGrid.reverse {
    grid-template-columns: 0.9fr 1.3fr;
}

.contentCopy h2,
.sectionHeading h2,
.finalCtaSection h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    margin: 0 0 16px;
    color: #1a1a2e;
    line-height: 1.2;
}

.contentCopy p,
.sectionHeading p,
.dashboardCopy p,
.processCard p,
.featureCard p,
.useCaseCard p,
.faqAnswer p,
.pricingPreviewCard p,
.finalCtaSection p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 14px;
}

.infoCard,
.featureCard,
.useCaseCard,
.dashboardCard,
.processCard,
.pricingPreviewCard,
.faqItem {
    background: #ffffff;
    border: 1px solid rgba(108, 63, 197, 0.12);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.infoCard:hover,
.featureCard:hover,
.useCaseCard:hover,
.dashboardCard:hover,
.processCard:hover,
.pricingPreviewCard:hover,
.faqItem:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    border-color: rgba(108, 63, 197, 0.24);
}

.infoCard {
    padding: 24px;
}

.infoCard h3,
.featureCard h3,
.useCaseCard h3,
.processCard h3,
.dashboardCard strong {
    margin: 0 0 12px;
    color: #1a1a2e;
}

.infoCard ul,
.dashboardCopy ul {
    padding-left: 18px;
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
}

.accentCard {
    background: linear-gradient(135deg, #f9f5ff 0%, #ffffff 100%);
}

.contentSection,
.processSection,
.featuresSection,
.useCasesSection,
.dashboardSection,
.comparisonSection,
.faqSection,
.pricingPreviewSection,
.finalCtaSection {
    position: relative;
}

.contentSection::before,
.processSection::before,
.featuresSection::before,
.useCasesSection::before,
.dashboardSection::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(108, 63, 197, 0.02), transparent 60%);
    pointer-events: none;
}

.sectionHeading {
    max-width: 900px;
    margin: 0 auto 36px;
    text-align: center;
}

.processCards,
.featuresGrid,
.useCasesGrid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.processCard,
.featureCard,
.useCaseCard {
    padding: 24px;
}

.stepNumber,
.featureIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4ebff 0%, #efe3ff 100%);
    color: #6c3fc5;
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.featuresGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.useCasesGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboardSection {
    background: linear-gradient(180deg, #f9f5ff 0%, #ffffff 100%);
}

.dashboardCopy {
    padding-right: 10px;
}

.dashboardCard {
    padding: 24px;
}

.dashboardHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(108, 63, 197, 0.12);
    margin-bottom: 16px;
}

.dashboardBody {
    display: grid;
    gap: 12px;
}

.dashboardStat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f9f5ff;
    color: #1a1a2e;
}

.tableWrap {
    max-width: 1120px;
    margin: 0 auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

th,
td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(108, 63, 197, 0.12);
}

th {
    background: #f9f5ff;
    color: #1a1a2e;
    font-weight: 700;
}

.faqList {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faqItem {
    padding: 0 18px;
}

.faqQuestion {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 18px 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
}

.faqAnswer {
    display: none;
    padding: 0 0 18px;
}

.faqItem.active .faqAnswer {
    display: block;
}

.pricingPreviewCard {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    text-align: center;
}

.pricingPreviewCard a {
    color: #6c3fc5;
    font-weight: 600;
    text-decoration: none;
}

.finalCtaSection {
    text-align: center;
    background: linear-gradient(135deg, #f9f5ff 0%, #ffffff 100%);
}

.faqQuestion {
    transition: color 0.2s ease;
}

.faqQuestion:hover {
    color: #6c3fc5;
}

.trustBadges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.trustBadges span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(108, 63, 197, 0.12);
    color: #4b5563;
}

@media (max-width: 900px) {
    .contentGrid,
    .contentGrid.reverse,
    .dashboardGrid,
    .processCards,
    .featuresGrid,
    .useCasesGrid {
        grid-template-columns: 1fr;
    }

    .dashboardCopy {
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .heroSection {
        padding: 80px 16px 60px;
    }

    .contentSection,
    .processSection,
    .featuresSection,
    .useCasesSection,
    .dashboardSection,
    .comparisonSection,
    .faqSection,
    .pricingPreviewSection,
    .finalCtaSection {
        padding: 64px 16px;
    }

    .heroBtnWrapper {
        flex-direction: column;
    }

    .heroCtaBtn,
    .heroSecondaryBtn {
        width: 100%;
    }
}
