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

:root {
    --primary-purple: #7C3AED;
    --purple-light: #A78BFA;
    --purple-dark: #5B21B6;
    --purple-gradient: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    --primary-blue: #0B86CA;
    --dark-blue: #1B2B4A;
    --light-blue: #E8F4FA;
    --bg-blue: #D5E9F5;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light-gray: #9CA3AF;
    --white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-gray: #F3F4F6;
    --border-color: #E5E7EB;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: -0.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    background: transparent;
    color: var(--text-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-login:hover {
    background: var(--bg-gray);
    color: var(--primary-purple);
}

/* Buttons */
.btn-primary {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary-outline.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-secondary-outline:hover {
    background: rgba(124, 58, 237, 0.1);
}

.btn-link {
    background: transparent;
    color: var(--primary-purple);
    border: none;
    padding: 8px 0;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-link:hover {
    color: var(--purple-dark);
}

.btn-icon {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.hero-tagline {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-image {
    margin: 50px 0;
}

.dashboard-preview {
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.testimonials-carousel {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.testimonial-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.testimonial-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-item p {
    font-size: 14px;
    line-height: 1.4;
}

.testimonial-item small {
    color: var(--text-gray);
    font-size: 12px;
}

/* Features Grid Section */
.features-grid-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.features-grid-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--dark-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 12px;
}

.feature-icon.blue {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
}

.feature-card p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.dashboard-mockup {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--purple-gradient);
    text-align: center;
    color: var(--white);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-purple);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    color: var(--purple-dark);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--white);
}

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

.benefit-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.benefit-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Distinguishes Section */
.distinguishes-section {
    padding: 100px 0;
    background: var(--purple-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.distinguishes-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.distinguishes-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.distinguishes-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.feature-detail-card {
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    text-align: left;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.feature-detail-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-detail-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.feature-detail-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Pricing Preview */
.pricing-preview {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-preview h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--dark-blue);
}

.pricing-circle {
    text-align: center;
    margin-bottom: 50px;
}

.price-tag {
    display: inline-block;
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.price-tag span {
    font-size: 32px;
}

.testimonials-scroll {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.testimonial-bubble {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-bubble img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial-bubble p {
    margin: 0;
    font-size: 14px;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    border: 2px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

/* Time Saving Section */
.time-saving-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.feature-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-menu button {
    background: var(--bg-gray);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    color: var(--text-dark);
}

.feature-menu button:hover,
.feature-menu button.active {
    background: var(--primary-purple);
    color: var(--white);
}

.time-icon {
    font-size: 72px;
    margin: 30px 0;
}

.time-saving-section h2 {
    font-size: 36px;
    max-width: 900px;
    margin: 0 auto 30px;
    color: var(--dark-blue);
}

.time-saving-section > p {
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

.trial-info,
.refund-info {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-light);
    color: var(--text-dark);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.why-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.partners-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--dark-blue);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-gray);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--dark-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-header h4 {
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.testimonial-header p {
    font-size: 13px;
    color: var(--text-gray);
}

.social-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    margin-top: 5px;
}

.testimonial-card > p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.7;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-purple);
    width: 30px;
    border-radius: 5px;
}

/* Success Partners */
.success-partners {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.success-partners h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.success-partners > p {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-gray);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.partner-item {
    font-size: 48px;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.news-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.news-section > p {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-gray);
}

.news-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.carousel-btn {
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.news-logo {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-purple);
}

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

.pricing-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.rating {
    text-align: center;
    margin-bottom: 50px;
}

.stars {
    color: #FFB800;
    font-size: 20px;
    margin-right: 10px;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.pricing-column {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.pricing-column:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.pricing-column.popular {
    border-color: var(--primary-purple);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
}

.badge.free {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.badge.popular {
    background: var(--primary-purple);
    color: var(--white);
}

.plan-header h3 {
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.plan-header p {
    font-size: 14px;
    color: var(--text-gray);
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-blue);
}

.price-amount sup {
    font-size: 20px;
}

.price-period {
    font-size: 18px;
    color: var(--text-gray);
}

.plan-price p {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 5px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-gray);
    border-bottom: 1px solid #f0f0f0;
}

.plan-note {
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

/* New Services Section */
.new-services-section {
    padding: 100px 0;
    background: var(--white);
}

.new-services-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.new-services-section .section-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

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

.service-card {
    text-align: center;
    padding: 24px;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s;
}

.service-card:hover {
    background: var(--bg-light);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.service-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-blue);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-blue);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-gray);
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary-purple);
    font-weight: 300;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
}

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

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 56px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-content h2 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.contact-content > p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.contact-features {
    list-style: none;
}

.contact-features li {
    padding: 12px 0;
    color: var(--text-gray);
    font-size: 15px;
    border-bottom: 1px dotted #e0e0e0;
}

.btn-phone {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    background: var(--purple-dark);
}

.contact-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-contact {
    font-size: 14px;
    margin: 10px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-purple);
}

.footer-bottom {
    margin-bottom: 30px;
}

.footer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.footer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.card-icon {
    font-size: 36px;
}

.footer-card h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.footer-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-actions {
        gap: 10px;
    }
    
    .btn-login,
    .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 36px;
    }

    .pricing-table {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

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

    .contact-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 8px;
    }
    
    .btn-login {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-carousel {
        flex-direction: column;
        align-items: center;
    }

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

    .benefits-grid,
    .features-cards,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal a {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .btn-primary.btn-lg,
    .btn-secondary-outline.btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }

    .price-tag {
        font-size: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
