@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #6B4EB2;
    /* Goresy Purple */
    --primary-dark: #5a4099;
    --secondary: #8F63D4;
    --text-main: #000000;
    --text-body: #475569;
    --text-light: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #F8FAFC;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --radius-full: 9999px;
    --radius-card: 32px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

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

.hidden {
    display: none !important;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.logo-icon {
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

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

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(107, 78, 178, 0.25);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(107, 78, 178, 0.35);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 50% 0%, #F5F3FF 0%, #FFFFFF 60%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-main);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: 0.3s;
    min-width: 180px;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-btn i {
    font-size: 1.8rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text span {
    font-size: 0.75rem;
    opacity: 0.9;
}

.btn-text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-image {
    width: 100%;
    margin-top: 20px;
}

.phone-mockup {
    max-width: 90%;
    width: 450px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    /* No animation for cleaner look, or subtle */
}

/* Features */
.features {
    padding: 120px 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-body);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-light);
    padding: 48px 32px;
    border-radius: var(--radius-card);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: var(--bg-white);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-body);
}

/* Business Section */
.business-section {
    padding: 120px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.business-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.business-image {
    flex: 1;
}

.dashboard-mockup {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.business-content {
    flex: 1;
}

.business-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text-main);
    line-height: 1.2;
}

.business-list {
    margin: 32px 0 40px;
}

.business-list li {
    margin-bottom: 20px;
    font-size: 1.15rem;
    display: flex;
    align-items: flex-start;
    /* Align to top for multi-line text */
    gap: 16px;
    font-weight: 500;
    color: var(--text-main);
}

.business-list i {
    color: var(--primary);
    font-size: 1.2rem;
    background: rgba(107, 78, 178, 0.1);
    padding: 6px;
    /* Slightly larger padding for visual balance */
    border-radius: 50%;
    margin-top: 2px;
    /* Visual alignment with the first line of text */
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--text-main);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Download Section */
.download-section {
    padding: 120px 0;
    background: var(--primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Abstract circles for bg interest */
.download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.download-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.download-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.download-section .store-btn {
    background: white;
    color: var(--primary);
}

.download-section .store-btn:hover {
    background: #f0f0f0;
}

/* Footer */
footer {
    padding: 60px 0;
    background: #FAFAFA;
    color: var(--text-body);
    border-top: 1px solid #eee;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container p {
    font-weight: 500;
}

.socials {
    display: flex;
    gap: 24px;
}

.socials a {
    font-size: 1.4rem;
    color: var(--text-body);
    transition: 0.3s;
}

.socials a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Deep Link */
.btn-primary-lg {
    display: inline-flex;
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(107, 78, 178, 0.3);
}

.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(107, 78, 178, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero {
        padding-top: 140px;
    }

    .business-container {
        flex-direction: column;
        text-align: center;
    }

    .business-image {
        order: -1;
    }

    .business-list {
        display: inline-block;
        text-align: left;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 6px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-body);
}

.pricing-toggle .active {
    color: var(--text-main);
}

.toggle-switch {
    width: 44px;
    height: 24px;
    background: var(--primary);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch.active::after {
    transform: translateX(20px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    box-shadow: 0 10px 40px rgba(107, 78, 178, 0.1);
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-header {
    text-align: center;
    margin-bottom: 32px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card-header .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.card-header .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-body);
}

.plan-desc {
    font-size: 0.9rem;
    margin-top: 8px;
    color: var(--text-body);
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.features-list i {
    color: #10B981;
    /* Success Green */
    font-size: 1rem;
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    background: #f0f0f0;
    color: var(--text-main);
    transition: 0.3s;
}

.btn-plan:hover {
    background: #e0e0e0;
}

.btn-plan.btn-featured {
    background: var(--primary);
    color: white;
}

.btn-plan.btn-featured:hover {
    background: var(--primary-dark);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.quote {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-main);
}

.divider {
    height: 1px;
    background: #eee;
    margin-bottom: 24px;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author .avatar {
    width: 48px;
    height: 48px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #666;
}

.author .info h4 {
    font-size: 1rem;
    font-weight: 700;
}

.author .info p {
    font-size: 0.85rem;
    color: var(--text-body);
}

.author .rating {
    margin-left: auto;
    color: #FFD700;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: white;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 78, 178, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.full-width {
    width: 100%;
    margin-bottom: 32px;
}

.btn-submit {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 48px;
    border-radius: var(--radius-full);
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 78, 178, 0.2);
}

.discount-badge {
    display: inline-block;
    background: #10B981;
    /* Success Green */
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.discount-badge.hidden {
    display: none;
}