/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

.main {
    flex: 1;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    padding: 0 1rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    margin-right: 0.5rem;
}

.logo-text {
    font-weight: bold;
    font-size: 1.25rem;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: #374151;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #22c55e;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #374151;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    z-index: 999;
}

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

.nav-link-mobile {
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: #374151;
    padding: 0.5rem 0;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(to right, #22c55e, #84cc16);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(to right, #16a34a, #65a30d);
}

.btn-outline {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
}

.btn-outline:hover {
    background-color: #f9fafb;
}

.btn-secondary {
    background: white;
    color: #22c55e;
    border: 1px solid white;
}

.btn-secondary:hover {
    background-color: #f9fafb;
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 0.375rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-success {
    background-color: #dcfce7;
    color: #166534;
}

/* Hero Section */
.hero-section {
    padding: 3rem 0;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hero-description {
    max-width: 600px;
    color: #6b7280;
    font-size: 1.125rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.feature-item i {
    color: #22c55e;
}

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

.dashboard-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Platforms Section */
.platforms-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.platforms-header {
    text-align: center;
    margin-bottom: 2rem;
}

.platforms-subtitle {
    color: #6b7280;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-weight: 500;
}

.platform-item i {
    font-size: 1.5rem;
}

/* Section Headers */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    letter-spacing: -0.025em;
}

.section-description {
    max-width: 900px;
    color: #6b7280;
    font-size: 1.125rem;
}

/* Features Section */
.features-section {
    padding: 3rem 0;
}

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

/* Card Styles */
.card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #6b7280;
    line-height: 1.5;
}

.feature-icon {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #374151;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: #6b7280;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
}

.testimonial-text {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card-popular {
    border-color: #22c55e;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #22c55e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.price {
    font-size: 2.25rem;
    font-weight: bold;
    margin: 1rem 0;
}

.price-period {
    font-size: 0.875rem;
    font-weight: normal;
    color: #6b7280;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list .feature-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.features-list .feature-item:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    padding: 3rem 0;
    background: linear-gradient(to right, #22c55e, #84cc16);
    color: white;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: bold;
    letter-spacing: -0.025em;
}

.cta-description {
    max-width: 600px;
    color: #dcfce7;
    font-size: 1.125rem;
}

.cta-form {
    width: 100%;
    max-width: 400px;
}

.email-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.email-input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #dcfce7;
}

/* Footer */
.footer {
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.copyright {
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    font-size: 0.75rem;
    color: #374151;
    text-decoration: none;
}

.footer-link:hover {
    color: #22c55e;
}

/* Responsive Design */
@media (min-width: 400px) {
    .hero-actions {
        flex-direction: row;
    }
    
    .email-form {
        flex-direction: row;
    }
}

@media (min-width: 640px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .copyright {
        margin-left: 1rem;
    }
    
    .footer-nav {
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 6rem 0;
    }
    
    .features-section,
    .testimonials-section,
    .pricing-section {
        padding: 6rem 0;
    }
    
    .cta-section {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        gap: 1.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
    }
    
    .hero-section {
        padding: 8rem 0;
    }
    
    .features-section,
    .testimonials-section,
    .pricing-section {
        padding: 8rem 0;
    }
    
    .cta-section {
        padding: 8rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero-grid {
        grid-template-columns: 1fr 600px;
    }
    
    .hero-title {
        font-size: 3.75rem;
        line-height: 1;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .platforms-grid {
        gap: 1rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .btn-lg {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .header {
        padding: 0 0.5rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .features-section,
    .testimonials-section,
    .pricing-section,
    .cta-section {
        padding: 2rem 0;
    }
    
    .platforms-section {
        padding: 2rem 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.email-input:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.logo-link:hover .logo-image {
    transform: scale(1.05);
    transition: transform 0.2s;
}

.platform-item:hover {
    color: #22c55e;
    transition: color 0.2s;
}

/* Loading states */
.btn:active {
    transform: scale(0.98);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .badge-success {
        background-color: #000;
        color: #fff;
    }
    
    .btn-outline {
        border-color: #000;
    }
}
/* Privacy
 Policy Styles */
.privacy-header-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.privacy-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 2.25rem;
    font-weight: bold;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.privacy-description {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: #22c55e;
}

.privacy-content-section {
    padding: 3rem 0;
}

.privacy-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-toc {
    position: sticky;
    top: 6rem;
    height: fit-content;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.toc-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #374151;
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.4;
    transition: color 0.2s;
}

.toc-link:hover {
    color: #22c55e;
}

.privacy-sections {
    max-width: none;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-section:last-child {
    border-bottom: none;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    scroll-margin-top: 6rem;
}

.subsection-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.75rem 0;
}

.section-content {
    color: #4b5563;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 1rem;
}

.content-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
}

.contact-item i {
    color: #22c55e;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #374151;
}

/* Privacy Policy Responsive Design */
@media (max-width: 1024px) {
    .privacy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .privacy-toc {
        position: static;
        order: -1;
    }
    
    .toc-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .privacy-header-section {
        padding: 2rem 0;
    }
    
    .privacy-content-section {
        padding: 2rem 0;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-heading {
        font-size: 1.25rem;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item i {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .privacy-toc {
        padding: 1rem;
    }
    
    .privacy-section {
        margin-bottom: 2rem;
    }
    
    .content-list {
        padding-left: 1rem;
    }
}

/* Enhanced focus styles for privacy page */
.toc-link:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.privacy-link:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

/* Smooth scroll behavior for privacy sections */
.privacy-section {
    scroll-margin-top: 6rem;
}

/* Active table of contents link styling */
.toc-link.active {
    color: #22c55e;
    font-weight: 500;
}