
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --color-primary: #8B5CF6;
    /* brand-DEFAULT */
    --color-primary-dark: #7C3AED;
    /* brand-dark */
    --color-primary-deep: #4C1D95;
    /* brand-deep */
    --color-bg-light: #f3e8ffbe;
    /* brand-light */
    --color-accent: #D946EF;
    --color-text-main: #1F2937;
    --color-text-muted: #6B7280;
    --color-white: #ffffff;
    --color-bg-gray: #F9FAFB;

    --font-sans: 'Inter Tight', sans-serif;
    --font-serif: 'Instrument Serif', serif;

    --container-width: 1280px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text-main);
    background-color: var(--color-bg-gray);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Utilities --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.hidden-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hidden-mobile {
        display: block;
    }

    .hidden-desktop {
        display: none;
    }
}

/* Text Styles */
h1,
h2,
h3,
h4 {
    color: var(--color-text-main);
    line-height: 1.2;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-primary-dark);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary-dark);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-deep);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid #E5E7EB;
    color: var(--color-primary-dark);
}

.btn-outline:hover {
    background-color: var(--color-bg-light);
}

.btn-white {
    background-color: white;
    color: var(--color-primary-deep);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    background-color: #f3f4f6;
}

/* topbar */


.topnav {
    background-color: #7E22CE;
    text-align: center;
    border-radius: 30px;
    color: white;
    padding: 7px;
    margin: 10px
}

/* --- Navbar --- */
.navbar {
    background-color: rgba(227, 224, 224, 0.642);
    /* backdrop-filter: blur(12px); */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #111827;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4B5563;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-primary-dark);
}

.nav-actions {
    display: none;
    gap: 1rem;
}

@media (min-width: 768px) {

    .nav-links,
    .nav-actions {
        display: flex;
        align-items: center;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, hsl(208, 35%, 93%), #e0dcdc);
    overflow: hidden;
    text-align: center;
}

/* Hero Background  */

.hero-content {
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-bg-light);
    border: 1px solid #E9D5FF;
    color: #7E22CE;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 99px;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 21px;
    height: 21px;
    background-color: #e2c4f6c3;
    border-radius: 50%;
}


.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #161C52;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* Avatar Group */
.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-stack {
    display: flex;
    margin-right: 12px;
}

.avatar-stack img,
.avatar-stack{
    width: 300px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

/* Dashboard */

.dashboard-img {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 0;
    margin-top: 0;
    width: 100%;
    border-radius: 12px;
    display: block;
    opacity: 0.95;
    z-index: 1;
    top: 300px;
}

/* --- Partners Section --- */
.partners {
    padding: 2.5rem 0;
    text-align: center;
}

/* --- Features Section (Grid) --- */
.features {
    padding: 6rem 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: #F9FAFB;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: #F3E8FF;
    transform: translateY(-5px);
}

.card-visual {
    background: white;
    border-radius: var(--radius-md);
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.feature-text {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
}

/* --- Split Sections (Image + Text) --- */
.split-section {
    padding: 5rem 0;
    overflow: hidden;
    background: white;
}

.split-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .split-container {
        flex-direction: row;
    }

    .split-reverse {
        flex-direction: row-reverse;
    }

}

.img-container { */
    border-radius: var(--radius-xl);
    position: relative;
    width: 100%;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.icon-purple {
    background-color: #F3E8FF;
    color: var(--color-primary);
}

.icon-pink {
    background-color: #FCE7F3;
    color: #DB2777;
}

.icon-green {
    background-color: #DCFCE7;
    color: #16A34A;
}

/* --- Purple Grid Section --- */
.purple-grid-section {
    background-color: #77429A;
    color: white;
    padding: 6rem 0;
}


.grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}


@media (min-width: 768px) {
    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: background-color 0.3s;
}

.grid-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.grid-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* --- Pricing Section --- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: white;
    position: relative;
    transition: box-shadow 0.3s;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: #E9D5FF;
    background-color: #FAF5FF;
    transform: scale(1.05);
    z-index: 2;
}

@media (max-width: 767px) {
    .pricing-card.popular {
        transform: none;
        margin: 1rem 0;
    }
}

.pop-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #C084FC;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
}

.price-suffix {
    font-size: 0.875rem;
    color: #6B7280;
}

.pricing-list {
    margin: 2rem 0;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.pricing-item i {
    width: 1rem;
}

.check-green {
    color: #22C55E;
}

.check-brand {
    color: var(--color-primary-dark);
}

.x-gray {
    color: #9CA3AF;
}

.btn-full {
    width: 100%;
}

/* --- Testimonials --- */
.testimonials {
    padding: 6rem 0;
    background-color: #FAF5FF;
    display: flex;
    text-align: center;
    justify-content: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10rem;
    align-items: start;
    width: ;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.user-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
}

/* --- FAQ --- */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item.active {
    border-radius: var(--radius-lg);
    border-color: #E9D5FF;
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1F2937;
    gap: 20px;
}

.active .faq-btn {
    background-color: var(--color-primary-deep);
    color: white;
}

.faq-content {
    display: none;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    color: #4B5563;
    line-height: 1.6;
    background: white;
}

.active .faq-content {
    display: block;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--color-primary-deep);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* --- Bottom CTA --- */
.cta-section {
    padding: 4rem 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    height: 100%;
    position: relative;
    top: 110px;
    width: 100%;
}

.cta-box {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(to right, #C084FC, #8B5CF6, #6B21A8);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 70%;
}

.cta-bg-pattern {
    position: absolute;
    background-color: linear-gradient(to bottom, #77429A, #E6D7FF);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    font-size: 0.875rem;
    color: #F3E8FF;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-primary-deep);
    color: white;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #E9D5FF;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: #E5E7EB;
    color: #77429A;
    font-size: 30px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-evenly;
    }
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #77429A;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 1;
}